@memberjunction/server 5.33.0 → 5.34.1
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 +2 -1
- package/dist/agents/skip-agent.d.ts +3 -1
- package/dist/agents/skip-agent.d.ts.map +1 -1
- package/dist/agents/skip-agent.js +15 -3
- package/dist/agents/skip-agent.js.map +1 -1
- package/dist/generated/generated.d.ts +922 -376
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +5669 -2512
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.d.ts +1 -1
- package/dist/generic/ResolverBase.d.ts.map +1 -1
- package/dist/generic/ResolverBase.js +9 -2
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/generic/RunViewResolver.d.ts +5 -1
- package/dist/generic/RunViewResolver.d.ts.map +1 -1
- package/dist/generic/RunViewResolver.js +33 -2
- package/dist/generic/RunViewResolver.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +17 -2
- package/dist/index.js.map +1 -1
- package/dist/resolvers/AvailableSearchProvidersResolver.d.ts +26 -0
- package/dist/resolvers/AvailableSearchProvidersResolver.d.ts.map +1 -0
- package/dist/resolvers/AvailableSearchProvidersResolver.js +65 -0
- package/dist/resolvers/AvailableSearchProvidersResolver.js.map +1 -0
- package/dist/resolvers/ComponentRegistryResolver.d.ts +11 -25
- package/dist/resolvers/ComponentRegistryResolver.d.ts.map +1 -1
- package/dist/resolvers/ComponentRegistryResolver.js +51 -93
- package/dist/resolvers/ComponentRegistryResolver.js.map +1 -1
- package/dist/resolvers/QuerySystemUserResolver.d.ts +18 -0
- package/dist/resolvers/QuerySystemUserResolver.d.ts.map +1 -1
- package/dist/resolvers/QuerySystemUserResolver.js +68 -6
- package/dist/resolvers/QuerySystemUserResolver.js.map +1 -1
- package/dist/resolvers/SearchKnowledgeResolver.d.ts +44 -1
- package/dist/resolvers/SearchKnowledgeResolver.d.ts.map +1 -1
- package/dist/resolvers/SearchKnowledgeResolver.js +217 -7
- package/dist/resolvers/SearchKnowledgeResolver.js.map +1 -1
- package/dist/resolvers/SearchKnowledgeStreamResolver.d.ts +79 -0
- package/dist/resolvers/SearchKnowledgeStreamResolver.d.ts.map +1 -0
- package/dist/resolvers/SearchKnowledgeStreamResolver.js +342 -0
- package/dist/resolvers/SearchKnowledgeStreamResolver.js.map +1 -0
- package/dist/types.d.ts +6 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +68 -68
- package/src/agents/skip-agent.ts +18 -4
- package/src/generated/generated.ts +4376 -2227
- package/src/generic/ResolverBase.ts +11 -2
- package/src/generic/RunViewResolver.ts +29 -2
- package/src/index.ts +17 -2
- package/src/resolvers/AvailableSearchProvidersResolver.ts +43 -0
- package/src/resolvers/ComponentRegistryResolver.ts +71 -123
- package/src/resolvers/QuerySystemUserResolver.ts +68 -6
- package/src/resolvers/SearchKnowledgeResolver.ts +205 -4
- package/src/resolvers/SearchKnowledgeStreamResolver.ts +338 -0
- package/src/types.ts +6 -1
|
@@ -546,12 +546,12 @@ export declare class MJAction_ {
|
|
|
546
546
|
MJActionParams_ActionIDArray: MJActionParam_[];
|
|
547
547
|
MJActionLibraries_ActionIDArray: MJActionLibrary_[];
|
|
548
548
|
MJActionResultCodes_ActionIDArray: MJActionResultCode_[];
|
|
549
|
-
MJScheduledActions_ActionIDArray: MJScheduledAction_[];
|
|
550
549
|
MJAIAgentActions_ActionIDArray: MJAIAgentAction_[];
|
|
551
550
|
MJMCPServerTools_GeneratedActionIDArray: MJMCPServerTool_[];
|
|
551
|
+
MJScheduledActions_ActionIDArray: MJScheduledAction_[];
|
|
552
552
|
MJActionContexts_ActionIDArray: MJActionContext_[];
|
|
553
|
-
MJEntityActions_ActionIDArray: MJEntityAction_[];
|
|
554
553
|
MJAIAgentSteps_ActionIDArray: MJAIAgentStep_[];
|
|
554
|
+
MJEntityActions_ActionIDArray: MJEntityAction_[];
|
|
555
555
|
MJActionExecutionLogs_ActionIDArray: MJActionExecutionLog_[];
|
|
556
556
|
MJActionAuthorizations_ActionIDArray: MJActionAuthorization_[];
|
|
557
557
|
MJActions_ParentIDArray: MJAction_[];
|
|
@@ -630,12 +630,12 @@ export declare class MJActionResolver extends ResolverBase {
|
|
|
630
630
|
MJActionParams_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
631
631
|
MJActionLibraries_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
632
632
|
MJActionResultCodes_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
633
|
-
MJScheduledActions_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
634
633
|
MJAIAgentActions_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
635
634
|
MJMCPServerTools_GeneratedActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
635
|
+
MJScheduledActions_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
636
636
|
MJActionContexts_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
637
|
-
MJEntityActions_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
638
637
|
MJAIAgentSteps_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
638
|
+
MJEntityActions_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
639
639
|
MJActionExecutionLogs_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
640
640
|
MJActionAuthorizations_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
641
641
|
MJActions_ParentIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -2035,12 +2035,12 @@ export declare class MJAIAgentRun_ {
|
|
|
2035
2035
|
PrimaryScopeEntity?: string;
|
|
2036
2036
|
RootParentRunID?: string;
|
|
2037
2037
|
RootLastRunID?: string;
|
|
2038
|
-
MJAIAgentRunSteps_AgentRunIDArray: MJAIAgentRunStep_[];
|
|
2039
|
-
MJAIAgentRuns_ParentRunIDArray: MJAIAgentRun_[];
|
|
2040
2038
|
MJAIAgentExamples_SourceAIAgentRunIDArray: MJAIAgentExample_[];
|
|
2041
2039
|
MJAIAgentNotes_SourceAIAgentRunIDArray: MJAIAgentNote_[];
|
|
2042
|
-
MJAIAgentRunMedias_AgentRunIDArray: MJAIAgentRunMedia_[];
|
|
2043
2040
|
MJAIAgentRequests_OriginatingAgentRunIDArray: MJAIAgentRequest_[];
|
|
2041
|
+
MJAIAgentRunMedias_AgentRunIDArray: MJAIAgentRunMedia_[];
|
|
2042
|
+
MJAIAgentRunSteps_AgentRunIDArray: MJAIAgentRunStep_[];
|
|
2043
|
+
MJAIAgentRuns_ParentRunIDArray: MJAIAgentRun_[];
|
|
2044
2044
|
MJAIAgentRequests_ResumingAgentRunIDArray: MJAIAgentRequest_[];
|
|
2045
2045
|
MJAIPromptRuns_AgentRunIDArray: MJAIPromptRun_[];
|
|
2046
2046
|
MJAIAgentRuns_LastRunIDArray: MJAIAgentRun_[];
|
|
@@ -2154,12 +2154,12 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
2154
2154
|
RunMJAIAgentRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2155
2155
|
RunMJAIAgentRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2156
2156
|
MJAIAgentRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentRun_ | null>;
|
|
2157
|
-
MJAIAgentRunSteps_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2158
|
-
MJAIAgentRuns_ParentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2159
2157
|
MJAIAgentExamples_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2160
2158
|
MJAIAgentNotes_SourceAIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2161
|
-
MJAIAgentRunMedias_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2162
2159
|
MJAIAgentRequests_OriginatingAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2160
|
+
MJAIAgentRunMedias_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2161
|
+
MJAIAgentRunSteps_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2162
|
+
MJAIAgentRuns_ParentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2163
2163
|
MJAIAgentRequests_ResumingAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2164
2164
|
MJAIPromptRuns_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2165
2165
|
MJAIAgentRuns_LastRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -2167,6 +2167,77 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
2167
2167
|
UpdateMJAIAgentRun(input: UpdateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2168
2168
|
DeleteMJAIAgentRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2169
2169
|
}
|
|
2170
|
+
export declare class MJAIAgentSearchScope_ {
|
|
2171
|
+
ID: string;
|
|
2172
|
+
AgentID: string;
|
|
2173
|
+
SearchScopeID: string;
|
|
2174
|
+
Phase: string;
|
|
2175
|
+
Status: string;
|
|
2176
|
+
StartAt?: Date;
|
|
2177
|
+
EndAt?: Date;
|
|
2178
|
+
Priority: number;
|
|
2179
|
+
MaxResults?: number;
|
|
2180
|
+
MinScore?: number;
|
|
2181
|
+
QueryTemplateID?: string;
|
|
2182
|
+
FusionWeightsOverride?: string;
|
|
2183
|
+
IsDefault: boolean;
|
|
2184
|
+
_mj__CreatedAt: Date;
|
|
2185
|
+
_mj__UpdatedAt: Date;
|
|
2186
|
+
Agent?: string;
|
|
2187
|
+
SearchScope: string;
|
|
2188
|
+
QueryTemplate?: string;
|
|
2189
|
+
}
|
|
2190
|
+
export declare class CreateMJAIAgentSearchScopeInput {
|
|
2191
|
+
ID?: string;
|
|
2192
|
+
AgentID?: string;
|
|
2193
|
+
SearchScopeID?: string;
|
|
2194
|
+
Phase?: string;
|
|
2195
|
+
Status?: string;
|
|
2196
|
+
StartAt: Date | null;
|
|
2197
|
+
EndAt: Date | null;
|
|
2198
|
+
Priority?: number;
|
|
2199
|
+
MaxResults: number | null;
|
|
2200
|
+
MinScore: number | null;
|
|
2201
|
+
QueryTemplateID: string | null;
|
|
2202
|
+
FusionWeightsOverride: string | null;
|
|
2203
|
+
IsDefault?: boolean;
|
|
2204
|
+
RestoreContext___?: RestoreContextInput;
|
|
2205
|
+
}
|
|
2206
|
+
export declare class UpdateMJAIAgentSearchScopeInput {
|
|
2207
|
+
ID: string;
|
|
2208
|
+
AgentID?: string;
|
|
2209
|
+
SearchScopeID?: string;
|
|
2210
|
+
Phase?: string;
|
|
2211
|
+
Status?: string;
|
|
2212
|
+
StartAt?: Date | null;
|
|
2213
|
+
EndAt?: Date | null;
|
|
2214
|
+
Priority?: number;
|
|
2215
|
+
MaxResults?: number | null;
|
|
2216
|
+
MinScore?: number | null;
|
|
2217
|
+
QueryTemplateID?: string | null;
|
|
2218
|
+
FusionWeightsOverride?: string | null;
|
|
2219
|
+
IsDefault?: boolean;
|
|
2220
|
+
OldValues___?: KeyValuePairInput[];
|
|
2221
|
+
RestoreContext___?: RestoreContextInput;
|
|
2222
|
+
}
|
|
2223
|
+
export declare class RunMJAIAgentSearchScopeViewResult {
|
|
2224
|
+
Results: MJAIAgentSearchScope_[];
|
|
2225
|
+
UserViewRunID?: string;
|
|
2226
|
+
RowCount: number;
|
|
2227
|
+
TotalRowCount: number;
|
|
2228
|
+
ExecutionTime: number;
|
|
2229
|
+
ErrorMessage?: string;
|
|
2230
|
+
Success: boolean;
|
|
2231
|
+
}
|
|
2232
|
+
export declare class MJAIAgentSearchScopeResolver extends ResolverBase {
|
|
2233
|
+
RunMJAIAgentSearchScopeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2234
|
+
RunMJAIAgentSearchScopeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2235
|
+
RunMJAIAgentSearchScopeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2236
|
+
MJAIAgentSearchScope(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentSearchScope_ | null>;
|
|
2237
|
+
CreateMJAIAgentSearchScope(input: CreateMJAIAgentSearchScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2238
|
+
UpdateMJAIAgentSearchScope(input: UpdateMJAIAgentSearchScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2239
|
+
DeleteMJAIAgentSearchScope(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2240
|
+
}
|
|
2170
2241
|
export declare class MJAIAgentStepPath_ {
|
|
2171
2242
|
ID: string;
|
|
2172
2243
|
OriginStepID: string;
|
|
@@ -2456,6 +2527,7 @@ export declare class MJAIAgent_ {
|
|
|
2456
2527
|
CategoryID?: string;
|
|
2457
2528
|
AllowEphemeralClientTools: boolean;
|
|
2458
2529
|
DefaultStorageAccountID?: string;
|
|
2530
|
+
SearchScopeAccess: string;
|
|
2459
2531
|
Parent?: string;
|
|
2460
2532
|
ContextCompressionPrompt?: string;
|
|
2461
2533
|
Type?: string;
|
|
@@ -2466,24 +2538,26 @@ export declare class MJAIAgent_ {
|
|
|
2466
2538
|
DefaultStorageAccount?: string;
|
|
2467
2539
|
RootParentID?: string;
|
|
2468
2540
|
MJAIAgentActions_AgentIDArray: MJAIAgentAction_[];
|
|
2469
|
-
MJAIAgentModels_AgentIDArray: MJAIAgentModel_[];
|
|
2470
|
-
MJAIAgentLearningCycles_AgentIDArray: MJAIAgentLearningCycle_[];
|
|
2471
|
-
MJAIAgentRequests_AgentIDArray: MJAIAgentRequest_[];
|
|
2472
|
-
MJAIAgentSteps_SubAgentIDArray: MJAIAgentStep_[];
|
|
2473
|
-
MJAIAgentRelationships_SubAgentIDArray: MJAIAgentRelationship_[];
|
|
2474
2541
|
MJAIAgentArtifactTypes_AgentIDArray: MJAIAgentArtifactType_[];
|
|
2475
|
-
|
|
2542
|
+
MJAIAgentClientTools_AgentIDArray: MJAIAgentClientTool_[];
|
|
2476
2543
|
MJAIAgentDataSources_AgentIDArray: MJAIAgentDataSource_[];
|
|
2544
|
+
MJAIAgentLearningCycles_AgentIDArray: MJAIAgentLearningCycle_[];
|
|
2477
2545
|
MJAIAgentModalities_AgentIDArray: MJAIAgentModality_[];
|
|
2478
|
-
|
|
2546
|
+
MJAIAgentModels_AgentIDArray: MJAIAgentModel_[];
|
|
2547
|
+
MJAIAgentPermissions_AgentIDArray: MJAIAgentPermission_[];
|
|
2548
|
+
MJAIAgentRelationships_SubAgentIDArray: MJAIAgentRelationship_[];
|
|
2549
|
+
MJAIAgentRequests_AgentIDArray: MJAIAgentRequest_[];
|
|
2550
|
+
MJAIAgentSearchScopes_AgentIDArray: MJAIAgentSearchScope_[];
|
|
2551
|
+
MJAIAgentSteps_SubAgentIDArray: MJAIAgentStep_[];
|
|
2552
|
+
MJSearchExecutionLogs_AIAgentIDArray: MJSearchExecutionLog_[];
|
|
2553
|
+
MJAIAgentConfigurations_AgentIDArray: MJAIAgentConfiguration_[];
|
|
2554
|
+
MJAIAgentExamples_AgentIDArray: MJAIAgentExample_[];
|
|
2479
2555
|
MJAIAgentNotes_AgentIDArray: MJAIAgentNote_[];
|
|
2480
2556
|
MJAIAgentPrompts_AgentIDArray: MJAIAgentPrompt_[];
|
|
2557
|
+
MJAIAgentRelationships_AgentIDArray: MJAIAgentRelationship_[];
|
|
2481
2558
|
MJAIAgentRuns_AgentIDArray: MJAIAgentRun_[];
|
|
2482
2559
|
MJAIAgentSteps_AgentIDArray: MJAIAgentStep_[];
|
|
2483
|
-
MJAIAgentRelationships_AgentIDArray: MJAIAgentRelationship_[];
|
|
2484
2560
|
MJTasks_AgentIDArray: MJTask_[];
|
|
2485
|
-
MJAIAgentExamples_AgentIDArray: MJAIAgentExample_[];
|
|
2486
|
-
MJAIAgentConfigurations_AgentIDArray: MJAIAgentConfiguration_[];
|
|
2487
2561
|
MJAIPromptRuns_AgentIDArray: MJAIPromptRun_[];
|
|
2488
2562
|
MJAIResultCache_AgentIDArray: MJAIResultCache_[];
|
|
2489
2563
|
MJConversationDetails_AgentIDArray: MJConversationDetail_[];
|
|
@@ -2553,6 +2627,7 @@ export declare class CreateMJAIAgentInput {
|
|
|
2553
2627
|
CategoryID: string | null;
|
|
2554
2628
|
AllowEphemeralClientTools?: boolean;
|
|
2555
2629
|
DefaultStorageAccountID: string | null;
|
|
2630
|
+
SearchScopeAccess?: string;
|
|
2556
2631
|
RestoreContext___?: RestoreContextInput;
|
|
2557
2632
|
}
|
|
2558
2633
|
export declare class UpdateMJAIAgentInput {
|
|
@@ -2618,6 +2693,7 @@ export declare class UpdateMJAIAgentInput {
|
|
|
2618
2693
|
CategoryID?: string | null;
|
|
2619
2694
|
AllowEphemeralClientTools?: boolean;
|
|
2620
2695
|
DefaultStorageAccountID?: string | null;
|
|
2696
|
+
SearchScopeAccess?: string;
|
|
2621
2697
|
OldValues___?: KeyValuePairInput[];
|
|
2622
2698
|
RestoreContext___?: RestoreContextInput;
|
|
2623
2699
|
}
|
|
@@ -2636,24 +2712,26 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
2636
2712
|
RunMJAIAgentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2637
2713
|
MJAIAgent(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgent_ | null>;
|
|
2638
2714
|
MJAIAgentActions_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2639
|
-
MJAIAgentModels_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2640
|
-
MJAIAgentLearningCycles_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2641
|
-
MJAIAgentRequests_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2642
|
-
MJAIAgentSteps_SubAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2643
|
-
MJAIAgentRelationships_SubAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2644
2715
|
MJAIAgentArtifactTypes_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2645
|
-
|
|
2716
|
+
MJAIAgentClientTools_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2646
2717
|
MJAIAgentDataSources_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2718
|
+
MJAIAgentLearningCycles_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2647
2719
|
MJAIAgentModalities_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2648
|
-
|
|
2720
|
+
MJAIAgentModels_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2721
|
+
MJAIAgentPermissions_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2722
|
+
MJAIAgentRelationships_SubAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2723
|
+
MJAIAgentRequests_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2724
|
+
MJAIAgentSearchScopes_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2725
|
+
MJAIAgentSteps_SubAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2726
|
+
MJSearchExecutionLogs_AIAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2727
|
+
MJAIAgentConfigurations_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2728
|
+
MJAIAgentExamples_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2649
2729
|
MJAIAgentNotes_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2650
2730
|
MJAIAgentPrompts_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2731
|
+
MJAIAgentRelationships_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2651
2732
|
MJAIAgentRuns_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2652
2733
|
MJAIAgentSteps_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2653
|
-
MJAIAgentRelationships_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2654
2734
|
MJTasks_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2655
|
-
MJAIAgentExamples_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2656
|
-
MJAIAgentConfigurations_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2657
2735
|
MJAIPromptRuns_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2658
2736
|
MJAIResultCache_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2659
2737
|
MJConversationDetails_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -2843,9 +2921,9 @@ export declare class MJAIConfiguration_ {
|
|
|
2843
2921
|
DefaultStorageProvider?: string;
|
|
2844
2922
|
Parent?: string;
|
|
2845
2923
|
RootParentID?: string;
|
|
2924
|
+
MJAIAgentConfigurations_AIConfigurationIDArray: MJAIAgentConfiguration_[];
|
|
2846
2925
|
MJAIAgentPrompts_ConfigurationIDArray: MJAIAgentPrompt_[];
|
|
2847
2926
|
MJAIConfigurationParams_ConfigurationIDArray: MJAIConfigurationParam_[];
|
|
2848
|
-
MJAIAgentConfigurations_AIConfigurationIDArray: MJAIAgentConfiguration_[];
|
|
2849
2927
|
MJAIPromptModels_ConfigurationIDArray: MJAIPromptModel_[];
|
|
2850
2928
|
MJAIPromptRuns_ConfigurationIDArray: MJAIPromptRun_[];
|
|
2851
2929
|
MJAIResultCache_ConfigurationIDArray: MJAIResultCache_[];
|
|
@@ -2893,9 +2971,9 @@ export declare class MJAIConfigurationResolver extends ResolverBase {
|
|
|
2893
2971
|
RunMJAIConfigurationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2894
2972
|
RunMJAIConfigurationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2895
2973
|
MJAIConfiguration(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIConfiguration_ | null>;
|
|
2974
|
+
MJAIAgentConfigurations_AIConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2896
2975
|
MJAIAgentPrompts_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2897
2976
|
MJAIConfigurationParams_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2898
|
-
MJAIAgentConfigurations_AIConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2899
2977
|
MJAIPromptModels_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2900
2978
|
MJAIPromptRuns_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2901
2979
|
MJAIResultCache_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -2977,10 +3055,10 @@ export declare class MJAIModality_ {
|
|
|
2977
3055
|
MJAIAgentModalities_ModalityIDArray: MJAIAgentModality_[];
|
|
2978
3056
|
MJAIModelModalities_ModalityIDArray: MJAIModelModality_[];
|
|
2979
3057
|
MJAIModelTypes_DefaultInputModalityIDArray: MJAIModelType_[];
|
|
2980
|
-
MJConversationDetailAttachments_ModalityIDArray: MJConversationDetailAttachment_[];
|
|
2981
3058
|
MJAIPromptRunMedias_ModalityIDArray: MJAIPromptRunMedia_[];
|
|
2982
|
-
|
|
3059
|
+
MJConversationDetailAttachments_ModalityIDArray: MJConversationDetailAttachment_[];
|
|
2983
3060
|
MJAIAgentRunMedias_ModalityIDArray: MJAIAgentRunMedia_[];
|
|
3061
|
+
MJAIModelTypes_DefaultOutputModalityIDArray: MJAIModelType_[];
|
|
2984
3062
|
}
|
|
2985
3063
|
export declare class CreateMJAIModalityInput {
|
|
2986
3064
|
ID?: string;
|
|
@@ -3024,10 +3102,10 @@ export declare class MJAIModalityResolver extends ResolverBase {
|
|
|
3024
3102
|
MJAIAgentModalities_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3025
3103
|
MJAIModelModalities_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3026
3104
|
MJAIModelTypes_DefaultInputModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3027
|
-
MJConversationDetailAttachments_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3028
3105
|
MJAIPromptRunMedias_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3029
|
-
|
|
3106
|
+
MJConversationDetailAttachments_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3030
3107
|
MJAIAgentRunMedias_ModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3108
|
+
MJAIModelTypes_DefaultOutputModalityIDArray(mjaimodality_: MJAIModality_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3031
3109
|
CreateMJAIModality(input: CreateMJAIModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3032
3110
|
UpdateMJAIModality(input: UpdateMJAIModalityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3033
3111
|
DeleteMJAIModality(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3509,27 +3587,27 @@ export declare class MJAIModel_ {
|
|
|
3509
3587
|
SupportsEffortLevel?: boolean;
|
|
3510
3588
|
MJAIActions_DefaultModelIDArray: MJAIAction_[];
|
|
3511
3589
|
MJAIModelActions_AIModelIDArray: MJAIModelAction_[];
|
|
3512
|
-
MJVectorIndexes_EmbeddingModelIDArray: MJVectorIndex_[];
|
|
3513
3590
|
MJEntityDocuments_AIModelIDArray: MJEntityDocument_[];
|
|
3514
|
-
|
|
3515
|
-
MJContentTypes_AIModelIDArray: MJContentType_[];
|
|
3516
|
-
MJAIResultCache_AIModelIDArray: MJAIResultCache_[];
|
|
3591
|
+
MJVectorIndexes_EmbeddingModelIDArray: MJVectorIndex_[];
|
|
3517
3592
|
MJAIAgentExamples_EmbeddingModelIDArray: MJAIAgentExample_[];
|
|
3518
3593
|
MJAIAgentNotes_EmbeddingModelIDArray: MJAIAgentNote_[];
|
|
3519
3594
|
MJAIModelArchitectures_ModelIDArray: MJAIModelArchitecture_[];
|
|
3520
3595
|
MJAIModelModalities_ModelIDArray: MJAIModelModality_[];
|
|
3596
|
+
MJAIResultCache_AIModelIDArray: MJAIResultCache_[];
|
|
3597
|
+
MJContentTypes_AIModelIDArray: MJContentType_[];
|
|
3598
|
+
MJEntityAIActions_AIModelIDArray: MJEntityAIAction_[];
|
|
3521
3599
|
MJAIAgentModels_ModelIDArray: MJAIAgentModel_[];
|
|
3522
3600
|
MJAIModelVendors_ModelIDArray: MJAIModelVendor_[];
|
|
3523
|
-
MJGeneratedCodes_GeneratedByModelIDArray: MJGeneratedCode_[];
|
|
3524
3601
|
MJAIModelCosts_ModelIDArray: MJAIModelCost_[];
|
|
3525
|
-
MJContentTypes_EmbeddingModelIDArray: MJContentType_[];
|
|
3526
3602
|
MJContentItems_EmbeddingModelIDArray: MJContentItem_[];
|
|
3603
|
+
MJContentTypes_EmbeddingModelIDArray: MJContentType_[];
|
|
3604
|
+
MJGeneratedCodes_GeneratedByModelIDArray: MJGeneratedCode_[];
|
|
3527
3605
|
MJAIPromptModels_ModelIDArray: MJAIPromptModel_[];
|
|
3528
3606
|
MJContentSources_EmbeddingModelIDArray: MJContentSource_[];
|
|
3529
3607
|
MJAIPromptRuns_OriginalModelIDArray: MJAIPromptRun_[];
|
|
3530
3608
|
MJAIAgentRuns_OverrideModelIDArray: MJAIAgentRun_[];
|
|
3531
|
-
MJQueries_EmbeddingModelIDArray: MJQuery_[];
|
|
3532
3609
|
MJAIPromptRuns_ModelIDArray: MJAIPromptRun_[];
|
|
3610
|
+
MJQueries_EmbeddingModelIDArray: MJQuery_[];
|
|
3533
3611
|
MJTags_EmbeddingModelIDArray: MJTag_[];
|
|
3534
3612
|
MJAIModels_PriorVersionIDArray: MJAIModel_[];
|
|
3535
3613
|
}
|
|
@@ -3597,27 +3675,27 @@ export declare class MJAIModelResolver extends ResolverBase {
|
|
|
3597
3675
|
AllMJAIModels({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3598
3676
|
MJAIActions_DefaultModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3599
3677
|
MJAIModelActions_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3600
|
-
MJVectorIndexes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3601
3678
|
MJEntityDocuments_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3602
|
-
|
|
3603
|
-
MJContentTypes_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3604
|
-
MJAIResultCache_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3679
|
+
MJVectorIndexes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3605
3680
|
MJAIAgentExamples_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3606
3681
|
MJAIAgentNotes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3607
3682
|
MJAIModelArchitectures_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3608
3683
|
MJAIModelModalities_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3684
|
+
MJAIResultCache_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3685
|
+
MJContentTypes_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3686
|
+
MJEntityAIActions_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3609
3687
|
MJAIAgentModels_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3610
3688
|
MJAIModelVendors_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3611
|
-
MJGeneratedCodes_GeneratedByModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3612
3689
|
MJAIModelCosts_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3613
|
-
MJContentTypes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3614
3690
|
MJContentItems_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3691
|
+
MJContentTypes_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3692
|
+
MJGeneratedCodes_GeneratedByModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3615
3693
|
MJAIPromptModels_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3616
3694
|
MJContentSources_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3617
3695
|
MJAIPromptRuns_OriginalModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3618
3696
|
MJAIAgentRuns_OverrideModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3619
|
-
MJQueries_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3620
3697
|
MJAIPromptRuns_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3698
|
+
MJQueries_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3621
3699
|
MJTags_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3622
3700
|
MJAIModels_PriorVersionIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3623
3701
|
CreateMJAIModel(input: CreateMJAIModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3925,8 +4003,8 @@ export declare class MJAIPromptRun_ {
|
|
|
3925
4003
|
RootParentID?: string;
|
|
3926
4004
|
RootRerunFromPromptRunID?: string;
|
|
3927
4005
|
MJContentProcessRunPromptRuns_AIPromptRunIDArray: MJContentProcessRunPromptRun_[];
|
|
3928
|
-
MJAIPromptRuns_RerunFromPromptRunIDArray: MJAIPromptRun_[];
|
|
3929
4006
|
MJAIPromptRunMedias_PromptRunIDArray: MJAIPromptRunMedia_[];
|
|
4007
|
+
MJAIPromptRuns_RerunFromPromptRunIDArray: MJAIPromptRun_[];
|
|
3930
4008
|
MJAIResultCache_PromptRunIDArray: MJAIResultCache_[];
|
|
3931
4009
|
MJAIPromptRuns_ParentIDArray: MJAIPromptRun_[];
|
|
3932
4010
|
}
|
|
@@ -4118,8 +4196,8 @@ export declare class MJAIPromptRunResolver extends ResolverBase {
|
|
|
4118
4196
|
RunMJAIPromptRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4119
4197
|
MJAIPromptRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIPromptRun_ | null>;
|
|
4120
4198
|
MJContentProcessRunPromptRuns_AIPromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4121
|
-
MJAIPromptRuns_RerunFromPromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4122
4199
|
MJAIPromptRunMedias_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4200
|
+
MJAIPromptRuns_RerunFromPromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4123
4201
|
MJAIResultCache_PromptRunIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4124
4202
|
MJAIPromptRuns_ParentIDArray(mjaipromptrun_: MJAIPromptRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4125
4203
|
CreateMJAIPromptRun(input: CreateMJAIPromptRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4227,17 +4305,17 @@ export declare class MJAIPrompt_ {
|
|
|
4227
4305
|
AIModelType?: string;
|
|
4228
4306
|
ResultSelectorPrompt?: string;
|
|
4229
4307
|
RootResultSelectorPromptID?: string;
|
|
4230
|
-
MJAIResultCache_AIPromptIDArray: MJAIResultCache_[];
|
|
4231
|
-
MJAIConfigurations_DefaultPromptForContextSummarizationIDArray: MJAIConfiguration_[];
|
|
4232
|
-
MJAIAgentTypes_SystemPromptIDArray: MJAIAgentType_[];
|
|
4233
4308
|
MJAIAgentActions_CompactPromptIDArray: MJAIAgentAction_[];
|
|
4309
|
+
MJAIAgentTypes_SystemPromptIDArray: MJAIAgentType_[];
|
|
4310
|
+
MJAIConfigurations_DefaultPromptForContextSummarizationIDArray: MJAIConfiguration_[];
|
|
4311
|
+
MJAIResultCache_AIPromptIDArray: MJAIResultCache_[];
|
|
4234
4312
|
MJAIConfigurations_DefaultPromptForContextCompressionIDArray: MJAIConfiguration_[];
|
|
4235
4313
|
MJAIPrompts_ResultSelectorPromptIDArray: MJAIPrompt_[];
|
|
4236
4314
|
MJAIAgentPrompts_PromptIDArray: MJAIAgentPrompt_[];
|
|
4237
|
-
MJAIPromptModels_PromptIDArray: MJAIPromptModel_[];
|
|
4238
4315
|
MJAIAgentSteps_PromptIDArray: MJAIAgentStep_[];
|
|
4239
|
-
|
|
4316
|
+
MJAIPromptModels_PromptIDArray: MJAIPromptModel_[];
|
|
4240
4317
|
MJAIPromptRuns_ChildPromptIDArray: MJAIPromptRun_[];
|
|
4318
|
+
MJAIPromptRuns_PromptIDArray: MJAIPromptRun_[];
|
|
4241
4319
|
MJAIPromptRuns_JudgeIDArray: MJAIPromptRun_[];
|
|
4242
4320
|
MJAIAgents_ContextCompressionPromptIDArray: MJAIAgent_[];
|
|
4243
4321
|
MJActions_DefaultCompactPromptIDArray: MJAction_[];
|
|
@@ -4367,17 +4445,17 @@ export declare class MJAIPromptResolver extends ResolverBase {
|
|
|
4367
4445
|
RunMJAIPromptViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4368
4446
|
RunMJAIPromptDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4369
4447
|
MJAIPrompt(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIPrompt_ | null>;
|
|
4370
|
-
MJAIResultCache_AIPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4371
|
-
MJAIConfigurations_DefaultPromptForContextSummarizationIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4372
|
-
MJAIAgentTypes_SystemPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4373
4448
|
MJAIAgentActions_CompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4449
|
+
MJAIAgentTypes_SystemPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4450
|
+
MJAIConfigurations_DefaultPromptForContextSummarizationIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4451
|
+
MJAIResultCache_AIPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4374
4452
|
MJAIConfigurations_DefaultPromptForContextCompressionIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4375
4453
|
MJAIPrompts_ResultSelectorPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4376
4454
|
MJAIAgentPrompts_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4377
|
-
MJAIPromptModels_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4378
4455
|
MJAIAgentSteps_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4379
|
-
|
|
4456
|
+
MJAIPromptModels_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4380
4457
|
MJAIPromptRuns_ChildPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4458
|
+
MJAIPromptRuns_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4381
4459
|
MJAIPromptRuns_JudgeIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4382
4460
|
MJAIAgents_ContextCompressionPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4383
4461
|
MJActions_DefaultCompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -4399,7 +4477,7 @@ export declare class MJAIResultCache_ {
|
|
|
4399
4477
|
VendorID?: string;
|
|
4400
4478
|
AgentID?: string;
|
|
4401
4479
|
ConfigurationID?: string;
|
|
4402
|
-
PromptEmbedding?:
|
|
4480
|
+
PromptEmbedding?: string;
|
|
4403
4481
|
PromptRunID?: string;
|
|
4404
4482
|
AIPrompt: string;
|
|
4405
4483
|
AIModel: string;
|
|
@@ -4420,7 +4498,7 @@ export declare class CreateMJAIResultCacheInput {
|
|
|
4420
4498
|
VendorID: string | null;
|
|
4421
4499
|
AgentID: string | null;
|
|
4422
4500
|
ConfigurationID: string | null;
|
|
4423
|
-
PromptEmbedding:
|
|
4501
|
+
PromptEmbedding: string | null;
|
|
4424
4502
|
PromptRunID: string | null;
|
|
4425
4503
|
RestoreContext___?: RestoreContextInput;
|
|
4426
4504
|
}
|
|
@@ -4436,7 +4514,7 @@ export declare class UpdateMJAIResultCacheInput {
|
|
|
4436
4514
|
VendorID?: string | null;
|
|
4437
4515
|
AgentID?: string | null;
|
|
4438
4516
|
ConfigurationID?: string | null;
|
|
4439
|
-
PromptEmbedding?:
|
|
4517
|
+
PromptEmbedding?: string | null;
|
|
4440
4518
|
PromptRunID?: string | null;
|
|
4441
4519
|
OldValues___?: KeyValuePairInput[];
|
|
4442
4520
|
RestoreContext___?: RestoreContextInput;
|
|
@@ -4555,13 +4633,13 @@ export declare class MJAIVendor_ {
|
|
|
4555
4633
|
_mj__UpdatedAt: Date;
|
|
4556
4634
|
CredentialTypeID?: string;
|
|
4557
4635
|
CredentialType?: string;
|
|
4636
|
+
MJAICredentialBindings_AIVendorIDArray: MJAICredentialBinding_[];
|
|
4637
|
+
MJAIModelCosts_VendorIDArray: MJAIModelCost_[];
|
|
4558
4638
|
MJAIModelVendors_VendorIDArray: MJAIModelVendor_[];
|
|
4559
4639
|
MJAIPromptModels_VendorIDArray: MJAIPromptModel_[];
|
|
4560
4640
|
MJAIPromptRuns_VendorIDArray: MJAIPromptRun_[];
|
|
4561
4641
|
MJAIResultCache_VendorIDArray: MJAIResultCache_[];
|
|
4562
4642
|
MJAIVendorTypes_VendorIDArray: MJAIVendorType_[];
|
|
4563
|
-
MJAIModelCosts_VendorIDArray: MJAIModelCost_[];
|
|
4564
|
-
MJAICredentialBindings_AIVendorIDArray: MJAICredentialBinding_[];
|
|
4565
4643
|
MJAIAgentRuns_OverrideVendorIDArray: MJAIAgentRun_[];
|
|
4566
4644
|
}
|
|
4567
4645
|
export declare class CreateMJAIVendorInput {
|
|
@@ -4593,13 +4671,13 @@ export declare class MJAIVendorResolver extends ResolverBase {
|
|
|
4593
4671
|
RunMJAIVendorViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4594
4672
|
RunMJAIVendorDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4595
4673
|
MJAIVendor(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIVendor_ | null>;
|
|
4674
|
+
MJAICredentialBindings_AIVendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4675
|
+
MJAIModelCosts_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4596
4676
|
MJAIModelVendors_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4597
4677
|
MJAIPromptModels_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4598
4678
|
MJAIPromptRuns_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4599
4679
|
MJAIResultCache_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4600
4680
|
MJAIVendorTypes_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4601
|
-
MJAIModelCosts_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4602
|
-
MJAICredentialBindings_AIVendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4603
4681
|
MJAIAgentRuns_OverrideVendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4604
4682
|
CreateMJAIVendor(input: CreateMJAIVendorInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4605
4683
|
UpdateMJAIVendor(input: UpdateMJAIVendorInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4883,9 +4961,9 @@ export declare class MJAPIKey_ {
|
|
|
4883
4961
|
_mj__UpdatedAt: Date;
|
|
4884
4962
|
User: string;
|
|
4885
4963
|
CreatedByUser: string;
|
|
4964
|
+
MJAPIKeyApplications_APIKeyIDArray: MJAPIKeyApplication_[];
|
|
4886
4965
|
MJAPIKeyScopes_APIKeyIDArray: MJAPIKeyScope_[];
|
|
4887
4966
|
MJAPIKeyUsageLogs_APIKeyIDArray: MJAPIKeyUsageLog_[];
|
|
4888
|
-
MJAPIKeyApplications_APIKeyIDArray: MJAPIKeyApplication_[];
|
|
4889
4967
|
}
|
|
4890
4968
|
export declare class CreateMJAPIKeyInput {
|
|
4891
4969
|
ID?: string;
|
|
@@ -4926,9 +5004,9 @@ export declare class MJAPIKeyResolver extends ResolverBase {
|
|
|
4926
5004
|
RunMJAPIKeyViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4927
5005
|
RunMJAPIKeyDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4928
5006
|
MJAPIKey(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAPIKey_ | null>;
|
|
5007
|
+
MJAPIKeyApplications_APIKeyIDArray(mjapikey_: MJAPIKey_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4929
5008
|
MJAPIKeyScopes_APIKeyIDArray(mjapikey_: MJAPIKey_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4930
5009
|
MJAPIKeyUsageLogs_APIKeyIDArray(mjapikey_: MJAPIKey_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4931
|
-
MJAPIKeyApplications_APIKeyIDArray(mjapikey_: MJAPIKey_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4932
5010
|
CreateMJAPIKey(input: CreateMJAPIKeyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4933
5011
|
UpdateMJAPIKey(input: UpdateMJAPIKeyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4934
5012
|
DeleteMJAPIKey(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4947,8 +5025,8 @@ export declare class MJAPIScope_ {
|
|
|
4947
5025
|
UIConfig?: string;
|
|
4948
5026
|
Parent?: string;
|
|
4949
5027
|
RootParentID?: string;
|
|
4950
|
-
MJAPIKeyScopes_ScopeIDArray: MJAPIKeyScope_[];
|
|
4951
5028
|
MJAPIApplicationScopes_ScopeIDArray: MJAPIApplicationScope_[];
|
|
5029
|
+
MJAPIKeyScopes_ScopeIDArray: MJAPIKeyScope_[];
|
|
4952
5030
|
MJAPIScopes_ParentIDArray: MJAPIScope_[];
|
|
4953
5031
|
}
|
|
4954
5032
|
export declare class CreateMJAPIScopeInput {
|
|
@@ -4990,8 +5068,8 @@ export declare class MJAPIScopeResolver extends ResolverBase {
|
|
|
4990
5068
|
RunMJAPIScopeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4991
5069
|
RunMJAPIScopeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4992
5070
|
MJAPIScope(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAPIScope_ | null>;
|
|
4993
|
-
MJAPIKeyScopes_ScopeIDArray(mjapiscope_: MJAPIScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4994
5071
|
MJAPIApplicationScopes_ScopeIDArray(mjapiscope_: MJAPIScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5072
|
+
MJAPIKeyScopes_ScopeIDArray(mjapiscope_: MJAPIScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4995
5073
|
MJAPIScopes_ParentIDArray(mjapiscope_: MJAPIScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4996
5074
|
CreateMJAPIScope(input: CreateMJAPIScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4997
5075
|
UpdateMJAPIScope(input: UpdateMJAPIScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5158,11 +5236,11 @@ export declare class MJApplication_ {
|
|
|
5158
5236
|
Path: string;
|
|
5159
5237
|
AutoUpdatePath: boolean;
|
|
5160
5238
|
MJApplicationEntities_ApplicationIDArray: MJApplicationEntity_[];
|
|
5161
|
-
MJUserApplications_ApplicationIDArray: MJUserApplication_[];
|
|
5162
5239
|
MJApplicationSettings_ApplicationIDArray: MJApplicationSetting_[];
|
|
5240
|
+
MJUserApplications_ApplicationIDArray: MJUserApplication_[];
|
|
5163
5241
|
MJDashboards_ApplicationIDArray: MJDashboard_[];
|
|
5164
|
-
MJDashboardUserPreferences_ApplicationIDArray: MJDashboardUserPreference_[];
|
|
5165
5242
|
MJApplicationRoles_ApplicationIDArray: MJApplicationRole_[];
|
|
5243
|
+
MJDashboardUserPreferences_ApplicationIDArray: MJDashboardUserPreference_[];
|
|
5166
5244
|
}
|
|
5167
5245
|
export declare class CreateMJApplicationInput {
|
|
5168
5246
|
ID?: string;
|
|
@@ -5219,11 +5297,11 @@ export declare class MJApplicationResolver extends ResolverBase {
|
|
|
5219
5297
|
MJApplication(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJApplication_ | null>;
|
|
5220
5298
|
AllMJApplications({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5221
5299
|
MJApplicationEntities_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5222
|
-
MJUserApplications_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5223
5300
|
MJApplicationSettings_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5301
|
+
MJUserApplications_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5224
5302
|
MJDashboards_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5225
|
-
MJDashboardUserPreferences_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5226
5303
|
MJApplicationRoles_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5304
|
+
MJDashboardUserPreferences_ApplicationIDArray(mjapplication_: MJApplication_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5227
5305
|
CreateMJApplication(input: CreateMJApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5228
5306
|
UpdateMJApplication(input: UpdateMJApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5229
5307
|
DeleteMJApplication(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5581,10 +5659,10 @@ export declare class MJArtifactType_ {
|
|
|
5581
5659
|
ToolLibraryClass?: string;
|
|
5582
5660
|
Parent?: string;
|
|
5583
5661
|
RootParentID?: string;
|
|
5584
|
-
MJConversationArtifacts_ArtifactTypeIDArray: MJConversationArtifact_[];
|
|
5585
5662
|
MJAIAgentArtifactTypes_ArtifactTypeIDArray: MJAIAgentArtifactType_[];
|
|
5586
|
-
|
|
5663
|
+
MJConversationArtifacts_ArtifactTypeIDArray: MJConversationArtifact_[];
|
|
5587
5664
|
MJArtifactTypes_ParentIDArray: MJArtifactType_[];
|
|
5665
|
+
MJArtifacts_TypeIDArray: MJArtifact_[];
|
|
5588
5666
|
MJAIAgents_DefaultArtifactTypeIDArray: MJAIAgent_[];
|
|
5589
5667
|
}
|
|
5590
5668
|
export declare class CreateMJArtifactTypeInput {
|
|
@@ -5630,10 +5708,10 @@ export declare class MJArtifactTypeResolver extends ResolverBase {
|
|
|
5630
5708
|
RunMJArtifactTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5631
5709
|
RunMJArtifactTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5632
5710
|
MJArtifactType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArtifactType_ | null>;
|
|
5633
|
-
MJConversationArtifacts_ArtifactTypeIDArray(mjartifacttype_: MJArtifactType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5634
5711
|
MJAIAgentArtifactTypes_ArtifactTypeIDArray(mjartifacttype_: MJArtifactType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5635
|
-
|
|
5712
|
+
MJConversationArtifacts_ArtifactTypeIDArray(mjartifacttype_: MJArtifactType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5636
5713
|
MJArtifactTypes_ParentIDArray(mjartifacttype_: MJArtifactType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5714
|
+
MJArtifacts_TypeIDArray(mjartifacttype_: MJArtifactType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5637
5715
|
MJAIAgents_DefaultArtifactTypeIDArray(mjartifacttype_: MJArtifactType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5638
5716
|
CreateMJArtifactType(input: CreateMJArtifactTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5639
5717
|
UpdateMJArtifactType(input: UpdateMJArtifactTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5756,8 +5834,8 @@ export declare class MJArtifactVersion_ {
|
|
|
5756
5834
|
File?: string;
|
|
5757
5835
|
MJArtifactVersionAttributes_ArtifactVersionIDArray: MJArtifactVersionAttribute_[];
|
|
5758
5836
|
MJCollectionArtifacts_ArtifactVersionIDArray: MJCollectionArtifact_[];
|
|
5759
|
-
MJConversationDetailArtifacts_ArtifactVersionIDArray: MJConversationDetailArtifact_[];
|
|
5760
5837
|
MJArtifactUses_ArtifactVersionIDArray: MJArtifactUse_[];
|
|
5838
|
+
MJConversationDetailArtifacts_ArtifactVersionIDArray: MJConversationDetailArtifact_[];
|
|
5761
5839
|
}
|
|
5762
5840
|
export declare class CreateMJArtifactVersionInput {
|
|
5763
5841
|
ID?: string;
|
|
@@ -5812,8 +5890,8 @@ export declare class MJArtifactVersionResolver extends ResolverBase {
|
|
|
5812
5890
|
MJArtifactVersion(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArtifactVersion_ | null>;
|
|
5813
5891
|
MJArtifactVersionAttributes_ArtifactVersionIDArray(mjartifactversion_: MJArtifactVersion_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5814
5892
|
MJCollectionArtifacts_ArtifactVersionIDArray(mjartifactversion_: MJArtifactVersion_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5815
|
-
MJConversationDetailArtifacts_ArtifactVersionIDArray(mjartifactversion_: MJArtifactVersion_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5816
5893
|
MJArtifactUses_ArtifactVersionIDArray(mjartifactversion_: MJArtifactVersion_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5894
|
+
MJConversationDetailArtifacts_ArtifactVersionIDArray(mjartifactversion_: MJArtifactVersion_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5817
5895
|
CreateMJArtifactVersion(input: CreateMJArtifactVersionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5818
5896
|
UpdateMJArtifactVersion(input: UpdateMJArtifactVersionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5819
5897
|
DeleteMJArtifactVersion(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5889,8 +5967,8 @@ export declare class MJAuditLogType_ {
|
|
|
5889
5967
|
Parent?: string;
|
|
5890
5968
|
Authorization?: string;
|
|
5891
5969
|
RootParentID?: string;
|
|
5892
|
-
MJAuditLogs_AuditLogTypeIDArray: MJAuditLog_[];
|
|
5893
5970
|
MJAuditLogTypes_ParentIDArray: MJAuditLogType_[];
|
|
5971
|
+
MJAuditLogs_AuditLogTypeIDArray: MJAuditLog_[];
|
|
5894
5972
|
}
|
|
5895
5973
|
export declare class CreateMJAuditLogTypeInput {
|
|
5896
5974
|
ID?: string;
|
|
@@ -5924,8 +6002,8 @@ export declare class MJAuditLogTypeResolver extends ResolverBase {
|
|
|
5924
6002
|
RunMJAuditLogTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5925
6003
|
MJAuditLogType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAuditLogType_ | null>;
|
|
5926
6004
|
AllMJAuditLogTypes({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5927
|
-
MJAuditLogs_AuditLogTypeIDArray(mjauditlogtype_: MJAuditLogType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5928
6005
|
MJAuditLogTypes_ParentIDArray(mjauditlogtype_: MJAuditLogType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6006
|
+
MJAuditLogs_AuditLogTypeIDArray(mjauditlogtype_: MJAuditLogType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5929
6007
|
CreateMJAuditLogType(input: CreateMJAuditLogTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5930
6008
|
UpdateMJAuditLogType(input: UpdateMJAuditLogTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5931
6009
|
DeleteMJAuditLogType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6045,11 +6123,11 @@ export declare class MJAuthorization_ {
|
|
|
6045
6123
|
_mj__UpdatedAt: Date;
|
|
6046
6124
|
Parent?: string;
|
|
6047
6125
|
RootParentID?: string;
|
|
6048
|
-
|
|
6049
|
-
MJAuthorizations_ParentIDArray: MJAuthorization_[];
|
|
6126
|
+
MJActionAuthorizations_AuthorizationIDArray: MJActionAuthorization_[];
|
|
6050
6127
|
MJAuditLogTypes_AuthorizationIDArray: MJAuditLogType_[];
|
|
6051
6128
|
MJAuditLogs_AuthorizationIDArray: MJAuditLog_[];
|
|
6052
|
-
|
|
6129
|
+
MJAuthorizationRoles_AuthorizationIDArray: MJAuthorizationRole_[];
|
|
6130
|
+
MJAuthorizations_ParentIDArray: MJAuthorization_[];
|
|
6053
6131
|
}
|
|
6054
6132
|
export declare class CreateMJAuthorizationInput {
|
|
6055
6133
|
ID?: string;
|
|
@@ -6085,11 +6163,11 @@ export declare class MJAuthorizationResolver extends ResolverBase {
|
|
|
6085
6163
|
RunMJAuthorizationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6086
6164
|
MJAuthorization(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAuthorization_ | null>;
|
|
6087
6165
|
AllMJAuthorizations({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6088
|
-
|
|
6089
|
-
MJAuthorizations_ParentIDArray(mjauthorization_: MJAuthorization_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6166
|
+
MJActionAuthorizations_AuthorizationIDArray(mjauthorization_: MJAuthorization_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6090
6167
|
MJAuditLogTypes_AuthorizationIDArray(mjauthorization_: MJAuthorization_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6091
6168
|
MJAuditLogs_AuthorizationIDArray(mjauthorization_: MJAuthorization_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6092
|
-
|
|
6169
|
+
MJAuthorizationRoles_AuthorizationIDArray(mjauthorization_: MJAuthorization_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6170
|
+
MJAuthorizations_ParentIDArray(mjauthorization_: MJAuthorization_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6093
6171
|
CreateMJAuthorization(input: CreateMJAuthorizationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6094
6172
|
UpdateMJAuthorization(input: UpdateMJAuthorizationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6095
6173
|
DeleteMJAuthorization(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6433,8 +6511,8 @@ export declare class MJCommunicationProvider_ {
|
|
|
6433
6511
|
SupportsForwarding: boolean;
|
|
6434
6512
|
SupportsReplying: boolean;
|
|
6435
6513
|
SupportsDrafts: boolean;
|
|
6436
|
-
MJCommunicationProviderMessageTypes_CommunicationProviderIDArray: MJCommunicationProviderMessageType_[];
|
|
6437
6514
|
MJCommunicationLogs_CommunicationProviderIDArray: MJCommunicationLog_[];
|
|
6515
|
+
MJCommunicationProviderMessageTypes_CommunicationProviderIDArray: MJCommunicationProviderMessageType_[];
|
|
6438
6516
|
}
|
|
6439
6517
|
export declare class CreateMJCommunicationProviderInput {
|
|
6440
6518
|
ID?: string;
|
|
@@ -6477,8 +6555,8 @@ export declare class MJCommunicationProviderResolver extends ResolverBase {
|
|
|
6477
6555
|
RunMJCommunicationProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6478
6556
|
RunMJCommunicationProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6479
6557
|
MJCommunicationProvider(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCommunicationProvider_ | null>;
|
|
6480
|
-
MJCommunicationProviderMessageTypes_CommunicationProviderIDArray(mjcommunicationprovider_: MJCommunicationProvider_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6481
6558
|
MJCommunicationLogs_CommunicationProviderIDArray(mjcommunicationprovider_: MJCommunicationProvider_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6559
|
+
MJCommunicationProviderMessageTypes_CommunicationProviderIDArray(mjcommunicationprovider_: MJCommunicationProvider_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6482
6560
|
CreateMJCommunicationProvider(input: CreateMJCommunicationProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6483
6561
|
UpdateMJCommunicationProvider(input: UpdateMJCommunicationProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6484
6562
|
DeleteMJCommunicationProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6548,8 +6626,8 @@ export declare class MJCompany_ {
|
|
|
6548
6626
|
Domain?: string;
|
|
6549
6627
|
_mj__CreatedAt: Date;
|
|
6550
6628
|
_mj__UpdatedAt: Date;
|
|
6551
|
-
MJEmployees_CompanyIDArray: MJEmployee_[];
|
|
6552
6629
|
MJCompanyIntegrations_CompanyIDArray: MJCompanyIntegration_[];
|
|
6630
|
+
MJEmployees_CompanyIDArray: MJEmployee_[];
|
|
6553
6631
|
MJMCPServerConnections_CompanyIDArray: MJMCPServerConnection_[];
|
|
6554
6632
|
MJAIAgentNotes_CompanyIDArray: MJAIAgentNote_[];
|
|
6555
6633
|
MJAIAgentExamples_CompanyIDArray: MJAIAgentExample_[];
|
|
@@ -6588,8 +6666,8 @@ export declare class MJCompanyResolver extends ResolverBase {
|
|
|
6588
6666
|
RunMJCompanyDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6589
6667
|
MJCompany(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCompany_ | null>;
|
|
6590
6668
|
AllMJCompanies({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6591
|
-
MJEmployees_CompanyIDArray(mjcompany_: MJCompany_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6592
6669
|
MJCompanyIntegrations_CompanyIDArray(mjcompany_: MJCompany_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6670
|
+
MJEmployees_CompanyIDArray(mjcompany_: MJCompany_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6593
6671
|
MJMCPServerConnections_CompanyIDArray(mjcompany_: MJCompany_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6594
6672
|
MJAIAgentNotes_CompanyIDArray(mjcompany_: MJCompany_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6595
6673
|
MJAIAgentExamples_CompanyIDArray(mjcompany_: MJCompany_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -6910,8 +6988,8 @@ export declare class MJCompanyIntegrationRun_ {
|
|
|
6910
6988
|
Company: string;
|
|
6911
6989
|
RunByUser: string;
|
|
6912
6990
|
MJCompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray: MJCompanyIntegrationRunAPILog_[];
|
|
6913
|
-
MJErrorLogs_CompanyIntegrationRunIDArray: MJErrorLog_[];
|
|
6914
6991
|
MJCompanyIntegrationRunDetails_CompanyIntegrationRunIDArray: MJCompanyIntegrationRunDetail_[];
|
|
6992
|
+
MJErrorLogs_CompanyIntegrationRunIDArray: MJErrorLog_[];
|
|
6915
6993
|
}
|
|
6916
6994
|
export declare class CreateMJCompanyIntegrationRunInput {
|
|
6917
6995
|
ID?: string;
|
|
@@ -6957,8 +7035,8 @@ export declare class MJCompanyIntegrationRunResolver extends ResolverBase {
|
|
|
6957
7035
|
RunMJCompanyIntegrationRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6958
7036
|
MJCompanyIntegrationRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCompanyIntegrationRun_ | null>;
|
|
6959
7037
|
MJCompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray(mjcompanyintegrationrun_: MJCompanyIntegrationRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6960
|
-
MJErrorLogs_CompanyIntegrationRunIDArray(mjcompanyintegrationrun_: MJCompanyIntegrationRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6961
7038
|
MJCompanyIntegrationRunDetails_CompanyIntegrationRunIDArray(mjcompanyintegrationrun_: MJCompanyIntegrationRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7039
|
+
MJErrorLogs_CompanyIntegrationRunIDArray(mjcompanyintegrationrun_: MJCompanyIntegrationRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6962
7040
|
CreateMJCompanyIntegrationRun(input: CreateMJCompanyIntegrationRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6963
7041
|
UpdateMJCompanyIntegrationRun(input: UpdateMJCompanyIntegrationRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6964
7042
|
DeleteMJCompanyIntegrationRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7052,10 +7130,10 @@ export declare class MJCompanyIntegration_ {
|
|
|
7052
7130
|
LastRunID?: string;
|
|
7053
7131
|
LastRunStartedAt?: Date;
|
|
7054
7132
|
LastRunEndedAt?: Date;
|
|
7055
|
-
MJLists_CompanyIntegrationIDArray: MJList_[];
|
|
7056
|
-
MJEmployeeCompanyIntegrations_CompanyIntegrationIDArray: MJEmployeeCompanyIntegration_[];
|
|
7057
|
-
MJCompanyIntegrationRuns_CompanyIntegrationIDArray: MJCompanyIntegrationRun_[];
|
|
7058
7133
|
MJCompanyIntegrationRecordMaps_CompanyIntegrationIDArray: MJCompanyIntegrationRecordMap_[];
|
|
7134
|
+
MJCompanyIntegrationRuns_CompanyIntegrationIDArray: MJCompanyIntegrationRun_[];
|
|
7135
|
+
MJEmployeeCompanyIntegrations_CompanyIntegrationIDArray: MJEmployeeCompanyIntegration_[];
|
|
7136
|
+
MJLists_CompanyIntegrationIDArray: MJList_[];
|
|
7059
7137
|
MJCompanyIntegrationEntityMaps_CompanyIntegrationIDArray: MJCompanyIntegrationEntityMap_[];
|
|
7060
7138
|
}
|
|
7061
7139
|
export declare class CreateMJCompanyIntegrationInput {
|
|
@@ -7135,10 +7213,10 @@ export declare class MJCompanyIntegrationResolver extends ResolverBase {
|
|
|
7135
7213
|
RunMJCompanyIntegrationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7136
7214
|
RunMJCompanyIntegrationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7137
7215
|
MJCompanyIntegration(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCompanyIntegration_ | null>;
|
|
7138
|
-
MJLists_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7139
|
-
MJEmployeeCompanyIntegrations_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7140
|
-
MJCompanyIntegrationRuns_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7141
7216
|
MJCompanyIntegrationRecordMaps_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7217
|
+
MJCompanyIntegrationRuns_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7218
|
+
MJEmployeeCompanyIntegrations_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7219
|
+
MJLists_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7142
7220
|
MJCompanyIntegrationEntityMaps_CompanyIntegrationIDArray(mjcompanyintegration_: MJCompanyIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7143
7221
|
CreateMJCompanyIntegration(input: CreateMJCompanyIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7144
7222
|
UpdateMJCompanyIntegration(input: UpdateMJCompanyIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8629,8 +8707,8 @@ export declare class MJConversationDetail_ {
|
|
|
8629
8707
|
MJAIAgentNotes_SourceConversationDetailIDArray: MJAIAgentNote_[];
|
|
8630
8708
|
MJAIAgentRuns_ConversationDetailIDArray: MJAIAgentRun_[];
|
|
8631
8709
|
MJConversationDetails_ParentIDArray: MJConversationDetail_[];
|
|
8632
|
-
MJTasks_ConversationDetailIDArray: MJTask_[];
|
|
8633
8710
|
MJAIAgentExamples_SourceConversationDetailIDArray: MJAIAgentExample_[];
|
|
8711
|
+
MJTasks_ConversationDetailIDArray: MJTask_[];
|
|
8634
8712
|
}
|
|
8635
8713
|
export declare class CreateMJConversationDetailInput {
|
|
8636
8714
|
ID?: string;
|
|
@@ -8710,8 +8788,8 @@ export declare class MJConversationDetailResolver extends ResolverBase {
|
|
|
8710
8788
|
MJAIAgentNotes_SourceConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8711
8789
|
MJAIAgentRuns_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8712
8790
|
MJConversationDetails_ParentIDArray(mjconversationdetail_: MJConversationDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8713
|
-
MJTasks_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8714
8791
|
MJAIAgentExamples_SourceConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8792
|
+
MJTasks_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8715
8793
|
CreateMJConversationDetail(input: CreateMJConversationDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8716
8794
|
UpdateMJConversationDetail(input: UpdateMJConversationDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8717
8795
|
DeleteMJConversationDetail(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8743,8 +8821,8 @@ export declare class MJConversation_ {
|
|
|
8743
8821
|
MJConversationDetails_ConversationIDArray: MJConversationDetail_[];
|
|
8744
8822
|
MJReports_ConversationIDArray: MJReport_[];
|
|
8745
8823
|
MJConversationArtifacts_ConversationIDArray: MJConversationArtifact_[];
|
|
8746
|
-
MJAIAgentRuns_ConversationIDArray: MJAIAgentRun_[];
|
|
8747
8824
|
MJAIAgentNotes_SourceConversationIDArray: MJAIAgentNote_[];
|
|
8825
|
+
MJAIAgentRuns_ConversationIDArray: MJAIAgentRun_[];
|
|
8748
8826
|
MJAIAgentExamples_SourceConversationIDArray: MJAIAgentExample_[];
|
|
8749
8827
|
}
|
|
8750
8828
|
export declare class CreateMJConversationInput {
|
|
@@ -8801,8 +8879,8 @@ export declare class MJConversationResolver extends ResolverBase {
|
|
|
8801
8879
|
MJConversationDetails_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8802
8880
|
MJReports_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8803
8881
|
MJConversationArtifacts_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8804
|
-
MJAIAgentRuns_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8805
8882
|
MJAIAgentNotes_SourceConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8883
|
+
MJAIAgentRuns_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8806
8884
|
MJAIAgentExamples_SourceConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8807
8885
|
CreateMJConversation(input: CreateMJConversationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8808
8886
|
UpdateMJConversation(input: UpdateMJConversationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -9068,8 +9146,8 @@ export declare class MJDashboardCategory_ {
|
|
|
9068
9146
|
Parent?: string;
|
|
9069
9147
|
User: string;
|
|
9070
9148
|
RootParentID?: string;
|
|
9071
|
-
MJDashboards_CategoryIDArray: MJDashboard_[];
|
|
9072
9149
|
MJDashboardCategories_ParentIDArray: MJDashboardCategory_[];
|
|
9150
|
+
MJDashboards_CategoryIDArray: MJDashboard_[];
|
|
9073
9151
|
MJDashboardCategoryLinks_DashboardCategoryIDArray: MJDashboardCategoryLink_[];
|
|
9074
9152
|
MJDashboardCategoryPermissions_DashboardCategoryIDArray: MJDashboardCategoryPermission_[];
|
|
9075
9153
|
}
|
|
@@ -9104,8 +9182,8 @@ export declare class MJDashboardCategoryResolver extends ResolverBase {
|
|
|
9104
9182
|
RunMJDashboardCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9105
9183
|
RunMJDashboardCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9106
9184
|
MJDashboardCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDashboardCategory_ | null>;
|
|
9107
|
-
MJDashboards_CategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9108
9185
|
MJDashboardCategories_ParentIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9186
|
+
MJDashboards_CategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9109
9187
|
MJDashboardCategoryLinks_DashboardCategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9110
9188
|
MJDashboardCategoryPermissions_DashboardCategoryIDArray(mjdashboardcategory_: MJDashboardCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9111
9189
|
CreateMJDashboardCategory(input: CreateMJDashboardCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -9443,10 +9521,10 @@ export declare class MJDashboard_ {
|
|
|
9443
9521
|
Category?: string;
|
|
9444
9522
|
Application?: string;
|
|
9445
9523
|
Environment: string;
|
|
9446
|
-
MJDashboardUserStates_DashboardIDArray: MJDashboardUserState_[];
|
|
9447
9524
|
MJDashboardCategoryLinks_DashboardIDArray: MJDashboardCategoryLink_[];
|
|
9448
|
-
|
|
9525
|
+
MJDashboardUserStates_DashboardIDArray: MJDashboardUserState_[];
|
|
9449
9526
|
MJDashboardPermissions_DashboardIDArray: MJDashboardPermission_[];
|
|
9527
|
+
MJDashboardUserPreferences_DashboardIDArray: MJDashboardUserPreference_[];
|
|
9450
9528
|
}
|
|
9451
9529
|
export declare class CreateMJDashboardInput {
|
|
9452
9530
|
ID?: string;
|
|
@@ -9495,10 +9573,10 @@ export declare class MJDashboardResolver extends ResolverBase {
|
|
|
9495
9573
|
RunMJDashboardViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9496
9574
|
RunMJDashboardDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9497
9575
|
MJDashboard(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDashboard_ | null>;
|
|
9498
|
-
MJDashboardUserStates_DashboardIDArray(mjdashboard_: MJDashboard_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9499
9576
|
MJDashboardCategoryLinks_DashboardIDArray(mjdashboard_: MJDashboard_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9500
|
-
|
|
9577
|
+
MJDashboardUserStates_DashboardIDArray(mjdashboard_: MJDashboard_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9501
9578
|
MJDashboardPermissions_DashboardIDArray(mjdashboard_: MJDashboard_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9579
|
+
MJDashboardUserPreferences_DashboardIDArray(mjdashboard_: MJDashboard_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9502
9580
|
CreateMJDashboard(input: CreateMJDashboardInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9503
9581
|
UpdateMJDashboard(input: UpdateMJDashboardInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9504
9582
|
DeleteMJDashboard(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10080,10 +10158,10 @@ export declare class MJEmployee_ {
|
|
|
10080
10158
|
SupervisorFirstName?: string;
|
|
10081
10159
|
SupervisorLastName?: string;
|
|
10082
10160
|
SupervisorEmail?: string;
|
|
10083
|
-
MJEmployees_SupervisorIDArray: MJEmployee_[];
|
|
10084
10161
|
MJEmployeeCompanyIntegrations_EmployeeIDArray: MJEmployeeCompanyIntegration_[];
|
|
10085
10162
|
MJEmployeeRoles_EmployeeIDArray: MJEmployeeRole_[];
|
|
10086
10163
|
MJEmployeeSkills_EmployeeIDArray: MJEmployeeSkill_[];
|
|
10164
|
+
MJEmployees_SupervisorIDArray: MJEmployee_[];
|
|
10087
10165
|
MJUsers_EmployeeIDArray: MJUser_[];
|
|
10088
10166
|
}
|
|
10089
10167
|
export declare class CreateMJEmployeeInput {
|
|
@@ -10126,10 +10204,10 @@ export declare class MJEmployeeResolver extends ResolverBase {
|
|
|
10126
10204
|
RunMJEmployeeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10127
10205
|
MJEmployee(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEmployee_ | null>;
|
|
10128
10206
|
AllMJEmployees({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10129
|
-
MJEmployees_SupervisorIDArray(mjemployee_: MJEmployee_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10130
10207
|
MJEmployeeCompanyIntegrations_EmployeeIDArray(mjemployee_: MJEmployee_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10131
10208
|
MJEmployeeRoles_EmployeeIDArray(mjemployee_: MJEmployee_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10132
10209
|
MJEmployeeSkills_EmployeeIDArray(mjemployee_: MJEmployee_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10210
|
+
MJEmployees_SupervisorIDArray(mjemployee_: MJEmployee_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10133
10211
|
MJUsers_EmployeeIDArray(mjemployee_: MJEmployee_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10134
10212
|
CreateMJEmployee(input: CreateMJEmployeeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10135
10213
|
UpdateMJEmployee(input: UpdateMJEmployeeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10386,64 +10464,65 @@ export declare class MJEntity_ {
|
|
|
10386
10464
|
ParentEntity?: string;
|
|
10387
10465
|
ParentBaseTable?: string;
|
|
10388
10466
|
ParentBaseView?: string;
|
|
10467
|
+
MJApplicationEntities_EntityIDArray: MJApplicationEntity_[];
|
|
10468
|
+
MJAuditLogs_EntityIDArray: MJAuditLog_[];
|
|
10469
|
+
MJCompanyIntegrationRecordMaps_EntityIDArray: MJCompanyIntegrationRecordMap_[];
|
|
10470
|
+
MJCompanyIntegrationRunDetails_EntityIDArray: MJCompanyIntegrationRunDetail_[];
|
|
10471
|
+
MJConversations_LinkedEntityIDArray: MJConversation_[];
|
|
10472
|
+
MJDataContextItems_EntityIDArray: MJDataContextItem_[];
|
|
10473
|
+
MJDatasetItems_EntityIDArray: MJDatasetItem_[];
|
|
10474
|
+
MJDuplicateRuns_EntityIDArray: MJDuplicateRun_[];
|
|
10475
|
+
MJEntities_ParentIDArray: MJEntity_[];
|
|
10476
|
+
MJEntityActions_EntityIDArray: MJEntityAction_[];
|
|
10477
|
+
MJEntityAIActions_OutputEntityIDArray: MJEntityAIAction_[];
|
|
10478
|
+
MJEntityCommunicationMessageTypes_EntityIDArray: MJEntityCommunicationMessageType_[];
|
|
10479
|
+
MJEntityDocuments_EntityIDArray: MJEntityDocument_[];
|
|
10389
10480
|
MJEntityFields_EntityIDArray: MJEntityField_[];
|
|
10390
10481
|
MJEntityPermissions_EntityIDArray: MJEntityPermission_[];
|
|
10482
|
+
MJEntityRecordDocuments_EntityIDArray: MJEntityRecordDocument_[];
|
|
10391
10483
|
MJEntityRelationships_EntityIDArray: MJEntityRelationship_[];
|
|
10392
|
-
|
|
10393
|
-
|
|
10484
|
+
MJEntitySettings_EntityIDArray: MJEntitySetting_[];
|
|
10485
|
+
MJFileEntityRecordLinks_EntityIDArray: MJFileEntityRecordLink_[];
|
|
10394
10486
|
MJIntegrationURLFormats_EntityIDArray: MJIntegrationURLFormat_[];
|
|
10395
|
-
MJEntities_ParentIDArray: MJEntity_[];
|
|
10396
|
-
MJUserFavorites_EntityIDArray: MJUserFavorite_[];
|
|
10397
|
-
MJCompanyIntegrationRunDetails_EntityIDArray: MJCompanyIntegrationRunDetail_[];
|
|
10398
|
-
MJApplicationEntities_EntityIDArray: MJApplicationEntity_[];
|
|
10399
|
-
MJUserApplicationEntities_EntityIDArray: MJUserApplicationEntity_[];
|
|
10400
10487
|
MJLists_EntityIDArray: MJList_[];
|
|
10401
|
-
|
|
10488
|
+
MJQueryFields_SourceEntityIDArray: MJQueryField_[];
|
|
10489
|
+
MJRecommendationItems_DestinationEntityIDArray: MJRecommendationItem_[];
|
|
10490
|
+
MJRecommendations_SourceEntityIDArray: MJRecommendation_[];
|
|
10402
10491
|
MJRecordChanges_EntityIDArray: MJRecordChange_[];
|
|
10403
|
-
|
|
10492
|
+
MJRecordMergeLogs_EntityIDArray: MJRecordMergeLog_[];
|
|
10404
10493
|
MJResourceTypes_EntityIDArray: MJResourceType_[];
|
|
10405
10494
|
MJTaggedItems_EntityIDArray: MJTaggedItem_[];
|
|
10406
|
-
MJDatasetItems_EntityIDArray: MJDatasetItem_[];
|
|
10407
|
-
MJCompanyIntegrationRecordMaps_EntityIDArray: MJCompanyIntegrationRecordMap_[];
|
|
10408
|
-
MJRecordMergeLogs_EntityIDArray: MJRecordMergeLog_[];
|
|
10409
|
-
MJQueryFields_SourceEntityIDArray: MJQueryField_[];
|
|
10410
|
-
MJConversations_LinkedEntityIDArray: MJConversation_[];
|
|
10411
|
-
MJEntityDocuments_EntityIDArray: MJEntityDocument_[];
|
|
10412
|
-
MJDataContextItems_EntityIDArray: MJDataContextItem_[];
|
|
10413
|
-
MJUsers_LinkedEntityIDArray: MJUser_[];
|
|
10414
|
-
MJEntityRecordDocuments_EntityIDArray: MJEntityRecordDocument_[];
|
|
10415
|
-
MJFileEntityRecordLinks_EntityIDArray: MJFileEntityRecordLink_[];
|
|
10416
|
-
MJUserViewCategories_EntityIDArray: MJUserViewCategory_[];
|
|
10417
|
-
MJEntitySettings_EntityIDArray: MJEntitySetting_[];
|
|
10418
|
-
MJDuplicateRuns_EntityIDArray: MJDuplicateRun_[];
|
|
10419
|
-
MJEntityActions_EntityIDArray: MJEntityAction_[];
|
|
10420
10495
|
MJTemplateParams_EntityIDArray: MJTemplateParam_[];
|
|
10421
|
-
|
|
10422
|
-
|
|
10423
|
-
|
|
10424
|
-
|
|
10496
|
+
MJUserApplicationEntities_EntityIDArray: MJUserApplicationEntity_[];
|
|
10497
|
+
MJUserFavorites_EntityIDArray: MJUserFavorite_[];
|
|
10498
|
+
MJUserRecordLogs_EntityIDArray: MJUserRecordLog_[];
|
|
10499
|
+
MJUserViewCategories_EntityIDArray: MJUserViewCategory_[];
|
|
10500
|
+
MJUserViews_EntityIDArray: MJUserView_[];
|
|
10501
|
+
MJUsers_LinkedEntityIDArray: MJUser_[];
|
|
10425
10502
|
MJAccessControlRules_EntityIDArray: MJAccessControlRule_[];
|
|
10426
|
-
MJRecordLinks_TargetEntityIDArray: MJRecordLink_[];
|
|
10427
10503
|
MJAIAgentExamples_PrimaryScopeEntityIDArray: MJAIAgentExample_[];
|
|
10428
10504
|
MJAIAgentNotes_PrimaryScopeEntityIDArray: MJAIAgentNote_[];
|
|
10429
|
-
MJVersionLabelItems_EntityIDArray: MJVersionLabelItem_[];
|
|
10430
|
-
MJVersionLabels_EntityIDArray: MJVersionLabel_[];
|
|
10431
10505
|
MJEntityAIActions_EntityIDArray: MJEntityAIAction_[];
|
|
10432
|
-
MJEntityRelationships_RelatedEntityIDArray: MJEntityRelationship_[];
|
|
10433
10506
|
MJEntityOrganicKeyRelatedEntities_RelatedEntityIDArray: MJEntityOrganicKeyRelatedEntity_[];
|
|
10434
10507
|
MJEntityOrganicKeys_EntityIDArray: MJEntityOrganicKey_[];
|
|
10508
|
+
MJEntityRelationships_RelatedEntityIDArray: MJEntityRelationship_[];
|
|
10509
|
+
MJQueryEntities_EntityIDArray: MJQueryEntity_[];
|
|
10435
10510
|
MJRecordGeoCodes_EntityIDArray: MJRecordGeoCode_[];
|
|
10511
|
+
MJRecordLinks_TargetEntityIDArray: MJRecordLink_[];
|
|
10436
10512
|
MJTagScopes_ScopeEntityIDArray: MJTagScope_[];
|
|
10437
|
-
|
|
10438
|
-
|
|
10439
|
-
MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
|
|
10440
|
-
MJEntityFields_RelatedEntityIDArray: MJEntityField_[];
|
|
10513
|
+
MJVersionLabelItems_EntityIDArray: MJVersionLabelItem_[];
|
|
10514
|
+
MJVersionLabels_EntityIDArray: MJVersionLabel_[];
|
|
10441
10515
|
MJArchiveConfigurationEntities_EntityIDArray: MJArchiveConfigurationEntity_[];
|
|
10442
10516
|
MJArchiveRunDetails_EntityIDArray: MJArchiveRunDetail_[];
|
|
10443
|
-
|
|
10517
|
+
MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
|
|
10518
|
+
MJEntityFields_RelatedEntityIDArray: MJEntityField_[];
|
|
10519
|
+
MJGeneratedCodes_LinkedEntityIDArray: MJGeneratedCode_[];
|
|
10520
|
+
MJRecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
10521
|
+
MJSearchScopeEntities_EntityIDArray: MJSearchScopeEntity_[];
|
|
10444
10522
|
MJContentSources_EntityIDArray: MJContentSource_[];
|
|
10445
|
-
|
|
10523
|
+
MJResourceTypes_CategoryEntityIDArray: MJResourceType_[];
|
|
10446
10524
|
MJAIAgentRuns_PrimaryScopeEntityIDArray: MJAIAgentRun_[];
|
|
10525
|
+
MJTestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
10447
10526
|
}
|
|
10448
10527
|
export declare class CreateMJEntityInput {
|
|
10449
10528
|
ID?: string;
|
|
@@ -10589,64 +10668,65 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
10589
10668
|
RunMJEntityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10590
10669
|
MJEntity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEntity_ | null>;
|
|
10591
10670
|
AllMJEntities({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10671
|
+
MJApplicationEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10672
|
+
MJAuditLogs_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10673
|
+
MJCompanyIntegrationRecordMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10674
|
+
MJCompanyIntegrationRunDetails_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10675
|
+
MJConversations_LinkedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10676
|
+
MJDataContextItems_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10677
|
+
MJDatasetItems_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10678
|
+
MJDuplicateRuns_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10679
|
+
MJEntities_ParentIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10680
|
+
MJEntityActions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10681
|
+
MJEntityAIActions_OutputEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10682
|
+
MJEntityCommunicationMessageTypes_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10683
|
+
MJEntityDocuments_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10592
10684
|
MJEntityFields_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10593
10685
|
MJEntityPermissions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10686
|
+
MJEntityRecordDocuments_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10594
10687
|
MJEntityRelationships_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10595
|
-
|
|
10596
|
-
|
|
10688
|
+
MJEntitySettings_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10689
|
+
MJFileEntityRecordLinks_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10597
10690
|
MJIntegrationURLFormats_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10598
|
-
MJEntities_ParentIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10599
|
-
MJUserFavorites_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10600
|
-
MJCompanyIntegrationRunDetails_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10601
|
-
MJApplicationEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10602
|
-
MJUserApplicationEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10603
10691
|
MJLists_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10604
|
-
|
|
10692
|
+
MJQueryFields_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10693
|
+
MJRecommendationItems_DestinationEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10694
|
+
MJRecommendations_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10605
10695
|
MJRecordChanges_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10606
|
-
|
|
10696
|
+
MJRecordMergeLogs_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10607
10697
|
MJResourceTypes_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10608
10698
|
MJTaggedItems_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10609
|
-
MJDatasetItems_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10610
|
-
MJCompanyIntegrationRecordMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10611
|
-
MJRecordMergeLogs_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10612
|
-
MJQueryFields_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10613
|
-
MJConversations_LinkedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10614
|
-
MJEntityDocuments_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10615
|
-
MJDataContextItems_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10616
|
-
MJUsers_LinkedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10617
|
-
MJEntityRecordDocuments_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10618
|
-
MJFileEntityRecordLinks_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10619
|
-
MJUserViewCategories_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10620
|
-
MJEntitySettings_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10621
|
-
MJDuplicateRuns_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10622
|
-
MJEntityActions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10623
10699
|
MJTemplateParams_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10624
|
-
|
|
10625
|
-
|
|
10626
|
-
|
|
10627
|
-
|
|
10700
|
+
MJUserApplicationEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10701
|
+
MJUserFavorites_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10702
|
+
MJUserRecordLogs_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10703
|
+
MJUserViewCategories_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10704
|
+
MJUserViews_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10705
|
+
MJUsers_LinkedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10628
10706
|
MJAccessControlRules_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10629
|
-
MJRecordLinks_TargetEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10630
10707
|
MJAIAgentExamples_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10631
10708
|
MJAIAgentNotes_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10632
|
-
MJVersionLabelItems_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10633
|
-
MJVersionLabels_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10634
10709
|
MJEntityAIActions_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10635
|
-
MJEntityRelationships_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10636
10710
|
MJEntityOrganicKeyRelatedEntities_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10637
10711
|
MJEntityOrganicKeys_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10712
|
+
MJEntityRelationships_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10713
|
+
MJQueryEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10638
10714
|
MJRecordGeoCodes_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10715
|
+
MJRecordLinks_TargetEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10639
10716
|
MJTagScopes_ScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10640
|
-
|
|
10641
|
-
|
|
10642
|
-
MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10643
|
-
MJEntityFields_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10717
|
+
MJVersionLabelItems_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10718
|
+
MJVersionLabels_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10644
10719
|
MJArchiveConfigurationEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10645
10720
|
MJArchiveRunDetails_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10646
|
-
|
|
10721
|
+
MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10722
|
+
MJEntityFields_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10723
|
+
MJGeneratedCodes_LinkedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10724
|
+
MJRecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10725
|
+
MJSearchScopeEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10647
10726
|
MJContentSources_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10648
|
-
|
|
10727
|
+
MJResourceTypes_CategoryEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10649
10728
|
MJAIAgentRuns_PrimaryScopeEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10729
|
+
MJTestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10650
10730
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10651
10731
|
UpdateMJEntity(input: UpdateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10652
10732
|
DeleteMJEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10841,8 +10921,8 @@ export declare class MJEntityAction_ {
|
|
|
10841
10921
|
ID: string;
|
|
10842
10922
|
Entity: string;
|
|
10843
10923
|
Action: string;
|
|
10844
|
-
MJEntityActionInvocations_EntityActionIDArray: MJEntityActionInvocation_[];
|
|
10845
10924
|
MJEntityActionFilters_EntityActionIDArray: MJEntityActionFilter_[];
|
|
10925
|
+
MJEntityActionInvocations_EntityActionIDArray: MJEntityActionInvocation_[];
|
|
10846
10926
|
MJEntityActionParams_EntityActionIDArray: MJEntityActionParam_[];
|
|
10847
10927
|
}
|
|
10848
10928
|
export declare class CreateMJEntityActionInput {
|
|
@@ -10874,8 +10954,8 @@ export declare class MJEntityActionResolver extends ResolverBase {
|
|
|
10874
10954
|
RunMJEntityActionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10875
10955
|
RunMJEntityActionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10876
10956
|
MJEntityAction(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEntityAction_ | null>;
|
|
10877
|
-
MJEntityActionInvocations_EntityActionIDArray(mjentityaction_: MJEntityAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10878
10957
|
MJEntityActionFilters_EntityActionIDArray(mjentityaction_: MJEntityAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10958
|
+
MJEntityActionInvocations_EntityActionIDArray(mjentityaction_: MJEntityAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10879
10959
|
MJEntityActionParams_EntityActionIDArray(mjentityaction_: MJEntityAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10880
10960
|
CreateMJEntityAction(input: CreateMJEntityActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10881
10961
|
UpdateMJEntityAction(input: UpdateMJEntityActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11365,6 +11445,7 @@ export declare class MJEntityField_ {
|
|
|
11365
11445
|
AutoUpdateUserSearchPredicate: boolean;
|
|
11366
11446
|
AutoUpdateFullTextSearch: boolean;
|
|
11367
11447
|
AutoUpdateExtendedType: boolean;
|
|
11448
|
+
IsComputed: boolean;
|
|
11368
11449
|
FieldCodeName?: string;
|
|
11369
11450
|
Entity: string;
|
|
11370
11451
|
SchemaName: string;
|
|
@@ -11431,6 +11512,7 @@ export declare class CreateMJEntityFieldInput {
|
|
|
11431
11512
|
AutoUpdateUserSearchPredicate?: boolean;
|
|
11432
11513
|
AutoUpdateFullTextSearch?: boolean;
|
|
11433
11514
|
AutoUpdateExtendedType?: boolean;
|
|
11515
|
+
IsComputed?: boolean;
|
|
11434
11516
|
RestoreContext___?: RestoreContextInput;
|
|
11435
11517
|
}
|
|
11436
11518
|
export declare class UpdateMJEntityFieldInput {
|
|
@@ -11484,6 +11566,7 @@ export declare class UpdateMJEntityFieldInput {
|
|
|
11484
11566
|
AutoUpdateUserSearchPredicate?: boolean;
|
|
11485
11567
|
AutoUpdateFullTextSearch?: boolean;
|
|
11486
11568
|
AutoUpdateExtendedType?: boolean;
|
|
11569
|
+
IsComputed?: boolean;
|
|
11487
11570
|
OldValues___?: KeyValuePairInput[];
|
|
11488
11571
|
RestoreContext___?: RestoreContextInput;
|
|
11489
11572
|
}
|
|
@@ -12152,8 +12235,8 @@ export declare class MJFileCategory_ {
|
|
|
12152
12235
|
_mj__UpdatedAt: Date;
|
|
12153
12236
|
Parent?: string;
|
|
12154
12237
|
RootParentID?: string;
|
|
12155
|
-
MJFiles_CategoryIDArray: MJFile_[];
|
|
12156
12238
|
MJFileCategories_ParentIDArray: MJFileCategory_[];
|
|
12239
|
+
MJFiles_CategoryIDArray: MJFile_[];
|
|
12157
12240
|
}
|
|
12158
12241
|
export declare class CreateMJFileCategoryInput {
|
|
12159
12242
|
ID?: string;
|
|
@@ -12184,8 +12267,8 @@ export declare class MJFileCategoryResolver extends ResolverBase {
|
|
|
12184
12267
|
RunMJFileCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12185
12268
|
RunMJFileCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12186
12269
|
MJFileCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFileCategory_ | null>;
|
|
12187
|
-
MJFiles_CategoryIDArray(mjfilecategory_: MJFileCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12188
12270
|
MJFileCategories_ParentIDArray(mjfilecategory_: MJFileCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12271
|
+
MJFiles_CategoryIDArray(mjfilecategory_: MJFileCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12189
12272
|
CreateMJFileCategory(input: CreateMJFileCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12190
12273
|
UpdateMJFileCategory(input: UpdateMJFileCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12191
12274
|
DeleteMJFileCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -12299,8 +12382,9 @@ export declare class MJFileStorageAccount_ {
|
|
|
12299
12382
|
Credential: string;
|
|
12300
12383
|
MJAIAgentTypes_DefaultStorageAccountIDArray: MJAIAgentType_[];
|
|
12301
12384
|
MJArchiveConfigurations_StorageAccountIDArray: MJArchiveConfiguration_[];
|
|
12302
|
-
|
|
12385
|
+
MJSearchScopeStorageAccounts_FileStorageAccountIDArray: MJSearchScopeStorageAccount_[];
|
|
12303
12386
|
MJAIAgentCategories_DefaultStorageAccountIDArray: MJAIAgentCategory_[];
|
|
12387
|
+
MJFileStorageAccountPermissions_FileStorageAccountIDArray: MJFileStorageAccountPermission_[];
|
|
12304
12388
|
MJAIAgents_DefaultStorageAccountIDArray: MJAIAgent_[];
|
|
12305
12389
|
}
|
|
12306
12390
|
export declare class CreateMJFileStorageAccountInput {
|
|
@@ -12338,8 +12422,9 @@ export declare class MJFileStorageAccountResolver extends ResolverBase {
|
|
|
12338
12422
|
MJFileStorageAccount(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFileStorageAccount_ | null>;
|
|
12339
12423
|
MJAIAgentTypes_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12340
12424
|
MJArchiveConfigurations_StorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12341
|
-
|
|
12425
|
+
MJSearchScopeStorageAccounts_FileStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12342
12426
|
MJAIAgentCategories_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12427
|
+
MJFileStorageAccountPermissions_FileStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12343
12428
|
MJAIAgents_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12344
12429
|
CreateMJFileStorageAccount(input: CreateMJFileStorageAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
12345
12430
|
UpdateMJFileStorageAccount(input: UpdateMJFileStorageAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -12950,8 +13035,8 @@ export declare class MJIntegration_ {
|
|
|
12950
13035
|
CredentialTypeID?: string;
|
|
12951
13036
|
Icon?: string;
|
|
12952
13037
|
CredentialType?: string;
|
|
12953
|
-
MJIntegrationURLFormats_IntegrationIDArray: MJIntegrationURLFormat_[];
|
|
12954
13038
|
MJCompanyIntegrations_IntegrationIDArray: MJCompanyIntegration_[];
|
|
13039
|
+
MJIntegrationURLFormats_IntegrationIDArray: MJIntegrationURLFormat_[];
|
|
12955
13040
|
MJRecordChanges_IntegrationIDArray: MJRecordChange_[];
|
|
12956
13041
|
MJIntegrationObjects_IntegrationIDArray: MJIntegrationObject_[];
|
|
12957
13042
|
}
|
|
@@ -12997,8 +13082,8 @@ export declare class MJIntegrationResolver extends ResolverBase {
|
|
|
12997
13082
|
RunMJIntegrationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12998
13083
|
MJIntegration(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJIntegration_ | null>;
|
|
12999
13084
|
AllMJIntegrations({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13000
|
-
MJIntegrationURLFormats_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13001
13085
|
MJCompanyIntegrations_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13086
|
+
MJIntegrationURLFormats_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13002
13087
|
MJRecordChanges_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13003
13088
|
MJIntegrationObjects_IntegrationIDArray(mjintegration_: MJIntegration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13004
13089
|
CreateMJIntegration(input: CreateMJIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -13367,10 +13452,10 @@ export declare class MJList_ {
|
|
|
13367
13452
|
User: string;
|
|
13368
13453
|
Category?: string;
|
|
13369
13454
|
CompanyIntegration?: string;
|
|
13370
|
-
MJListDetails_ListIDArray: MJListDetail_[];
|
|
13371
13455
|
MJDuplicateRuns_SourceListIDArray: MJDuplicateRun_[];
|
|
13372
|
-
|
|
13456
|
+
MJListDetails_ListIDArray: MJListDetail_[];
|
|
13373
13457
|
MJListInvitations_ListIDArray: MJListInvitation_[];
|
|
13458
|
+
MJListShares_ListIDArray: MJListShare_[];
|
|
13374
13459
|
}
|
|
13375
13460
|
export declare class CreateMJListInput {
|
|
13376
13461
|
ID?: string;
|
|
@@ -13409,10 +13494,10 @@ export declare class MJListResolver extends ResolverBase {
|
|
|
13409
13494
|
RunMJListViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13410
13495
|
RunMJListDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13411
13496
|
MJList(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJList_ | null>;
|
|
13412
|
-
MJListDetails_ListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13413
13497
|
MJDuplicateRuns_SourceListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13414
|
-
|
|
13498
|
+
MJListDetails_ListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13415
13499
|
MJListInvitations_ListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13500
|
+
MJListShares_ListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13416
13501
|
CreateMJList(input: CreateMJListInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13417
13502
|
UpdateMJList(input: UpdateMJListInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13418
13503
|
DeleteMJList(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -13544,9 +13629,9 @@ export declare class MJMCPServerConnection_ {
|
|
|
13544
13629
|
Company?: string;
|
|
13545
13630
|
MJMCPServerConnectionTools_MCPServerConnectionIDArray: MJMCPServerConnectionTool_[];
|
|
13546
13631
|
MJMCPToolExecutionLogs_MCPServerConnectionIDArray: MJMCPToolExecutionLog_[];
|
|
13632
|
+
MJOAuthAuthorizationStates_MCPServerConnectionIDArray: MJOAuthAuthorizationState_[];
|
|
13547
13633
|
MJOAuthClientRegistrations_MCPServerConnectionIDArray: MJOAuthClientRegistration_[];
|
|
13548
13634
|
MJOAuthTokens_MCPServerConnectionIDArray: MJOAuthToken_[];
|
|
13549
|
-
MJOAuthAuthorizationStates_MCPServerConnectionIDArray: MJOAuthAuthorizationState_[];
|
|
13550
13635
|
MJMCPServerConnectionPermissions_MCPServerConnectionIDArray: MJMCPServerConnectionPermission_[];
|
|
13551
13636
|
}
|
|
13552
13637
|
export declare class CreateMJMCPServerConnectionInput {
|
|
@@ -13606,9 +13691,9 @@ export declare class MJMCPServerConnectionResolver extends ResolverBase {
|
|
|
13606
13691
|
MJMCPServerConnection(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServerConnection_ | null>;
|
|
13607
13692
|
MJMCPServerConnectionTools_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13608
13693
|
MJMCPToolExecutionLogs_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13694
|
+
MJOAuthAuthorizationStates_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13609
13695
|
MJOAuthClientRegistrations_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13610
13696
|
MJOAuthTokens_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13611
|
-
MJOAuthAuthorizationStates_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13612
13697
|
MJMCPServerConnectionPermissions_MCPServerConnectionIDArray(mjmcpserverconnection_: MJMCPServerConnection_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13613
13698
|
CreateMJMCPServerConnection(input: CreateMJMCPServerConnectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13614
13699
|
UpdateMJMCPServerConnection(input: UpdateMJMCPServerConnectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -14750,14 +14835,14 @@ export declare class MJQuery_ {
|
|
|
14750
14835
|
Category?: string;
|
|
14751
14836
|
EmbeddingModel?: string;
|
|
14752
14837
|
SQLDialect: string;
|
|
14838
|
+
MJDataContextItems_QueryIDArray: MJDataContextItem_[];
|
|
14753
14839
|
MJQueryFields_QueryIDArray: MJQueryField_[];
|
|
14754
14840
|
MJQueryPermissions_QueryIDArray: MJQueryPermission_[];
|
|
14755
|
-
MJDataContextItems_QueryIDArray: MJDataContextItem_[];
|
|
14756
|
-
MJQueryParameters_QueryIDArray: MJQueryParameter_[];
|
|
14757
14841
|
MJQueryDependencies_DependsOnQueryIDArray: MJQueryDependency_[];
|
|
14842
|
+
MJQueryParameters_QueryIDArray: MJQueryParameter_[];
|
|
14843
|
+
MJQueryDependencies_QueryIDArray: MJQueryDependency_[];
|
|
14758
14844
|
MJQueryEntities_QueryIDArray: MJQueryEntity_[];
|
|
14759
14845
|
MJQuerySQLs_QueryIDArray: MJQuerySQL_[];
|
|
14760
|
-
MJQueryDependencies_QueryIDArray: MJQueryDependency_[];
|
|
14761
14846
|
}
|
|
14762
14847
|
export declare class CreateMJQueryInput {
|
|
14763
14848
|
ID?: string;
|
|
@@ -14824,14 +14909,14 @@ export declare class MJQueryResolver extends ResolverBase {
|
|
|
14824
14909
|
RunMJQueryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14825
14910
|
RunMJQueryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14826
14911
|
MJQuery(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJQuery_ | null>;
|
|
14912
|
+
MJDataContextItems_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14827
14913
|
MJQueryFields_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14828
14914
|
MJQueryPermissions_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14829
|
-
MJDataContextItems_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14830
|
-
MJQueryParameters_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14831
14915
|
MJQueryDependencies_DependsOnQueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14916
|
+
MJQueryParameters_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14917
|
+
MJQueryDependencies_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14832
14918
|
MJQueryEntities_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14833
14919
|
MJQuerySQLs_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14834
|
-
MJQueryDependencies_QueryIDArray(mjquery_: MJQuery_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14835
14920
|
CreateMJQuery(input: CreateMJQueryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14836
14921
|
UpdateMJQuery(input: UpdateMJQueryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14837
14922
|
DeleteMJQuery(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -14851,8 +14936,8 @@ export declare class MJQueryCategory_ {
|
|
|
14851
14936
|
Parent?: string;
|
|
14852
14937
|
User: string;
|
|
14853
14938
|
RootParentID?: string;
|
|
14854
|
-
MJQueryCategories_ParentIDArray: MJQueryCategory_[];
|
|
14855
14939
|
MJQueries_CategoryIDArray: MJQuery_[];
|
|
14940
|
+
MJQueryCategories_ParentIDArray: MJQueryCategory_[];
|
|
14856
14941
|
}
|
|
14857
14942
|
export declare class CreateMJQueryCategoryInput {
|
|
14858
14943
|
ID?: string;
|
|
@@ -14893,8 +14978,8 @@ export declare class MJQueryCategoryResolver extends ResolverBase {
|
|
|
14893
14978
|
RunMJQueryCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14894
14979
|
RunMJQueryCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14895
14980
|
MJQueryCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJQueryCategory_ | null>;
|
|
14896
|
-
MJQueryCategories_ParentIDArray(mjquerycategory_: MJQueryCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14897
14981
|
MJQueries_CategoryIDArray(mjquerycategory_: MJQueryCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14982
|
+
MJQueryCategories_ParentIDArray(mjquerycategory_: MJQueryCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14898
14983
|
CreateMJQueryCategory(input: CreateMJQueryCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14899
14984
|
UpdateMJQueryCategory(input: UpdateMJQueryCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14900
14985
|
DeleteMJQueryCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15669,8 +15754,8 @@ export declare class MJRecordChange_ {
|
|
|
15669
15754
|
Integration?: string;
|
|
15670
15755
|
RestoredFrom?: string;
|
|
15671
15756
|
RootRestoredFromID?: string;
|
|
15672
|
-
MJVersionLabelItems_RecordChangeIDArray: MJVersionLabelItem_[];
|
|
15673
15757
|
MJRecordChanges_RestoredFromIDArray: MJRecordChange_[];
|
|
15758
|
+
MJVersionLabelItems_RecordChangeIDArray: MJVersionLabelItem_[];
|
|
15674
15759
|
}
|
|
15675
15760
|
export declare class CreateMJRecordChangeInput {
|
|
15676
15761
|
ID?: string;
|
|
@@ -15727,8 +15812,8 @@ export declare class MJRecordChangeResolver extends ResolverBase {
|
|
|
15727
15812
|
RunMJRecordChangeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15728
15813
|
RunMJRecordChangeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15729
15814
|
MJRecordChange(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordChange_ | null>;
|
|
15730
|
-
MJVersionLabelItems_RecordChangeIDArray(mjrecordchange_: MJRecordChange_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15731
15815
|
MJRecordChanges_RestoredFromIDArray(mjrecordchange_: MJRecordChange_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15816
|
+
MJVersionLabelItems_RecordChangeIDArray(mjrecordchange_: MJRecordChange_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15732
15817
|
CreateMJRecordChange(input: CreateMJRecordChangeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15733
15818
|
UpdateMJRecordChange(input: UpdateMJRecordChangeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15734
15819
|
DeleteMJRecordChange(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15927,8 +16012,8 @@ export declare class MJRecordMergeLog_ {
|
|
|
15927
16012
|
Entity: string;
|
|
15928
16013
|
InitiatedByUser: string;
|
|
15929
16014
|
ApprovedByUser?: string;
|
|
15930
|
-
MJRecordMergeDeletionLogs_RecordMergeLogIDArray: MJRecordMergeDeletionLog_[];
|
|
15931
16015
|
MJDuplicateRunDetailMatches_RecordMergeLogIDArray: MJDuplicateRunDetailMatch_[];
|
|
16016
|
+
MJRecordMergeDeletionLogs_RecordMergeLogIDArray: MJRecordMergeDeletionLog_[];
|
|
15932
16017
|
}
|
|
15933
16018
|
export declare class CreateMJRecordMergeLogInput {
|
|
15934
16019
|
ID?: string;
|
|
@@ -15973,8 +16058,8 @@ export declare class MJRecordMergeLogResolver extends ResolverBase {
|
|
|
15973
16058
|
RunMJRecordMergeLogViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15974
16059
|
RunMJRecordMergeLogDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
15975
16060
|
MJRecordMergeLog(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordMergeLog_ | null>;
|
|
15976
|
-
MJRecordMergeDeletionLogs_RecordMergeLogIDArray(mjrecordmergelog_: MJRecordMergeLog_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15977
16061
|
MJDuplicateRunDetailMatches_RecordMergeLogIDArray(mjrecordmergelog_: MJRecordMergeLog_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16062
|
+
MJRecordMergeDeletionLogs_RecordMergeLogIDArray(mjrecordmergelog_: MJRecordMergeLog_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
15978
16063
|
CreateMJRecordMergeLog(input: CreateMJRecordMergeLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15979
16064
|
UpdateMJRecordMergeLog(input: UpdateMJRecordMergeLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15980
16065
|
DeleteMJRecordMergeLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -16449,16 +16534,17 @@ export declare class MJRole_ {
|
|
|
16449
16534
|
SQLName?: string;
|
|
16450
16535
|
_mj__CreatedAt: Date;
|
|
16451
16536
|
_mj__UpdatedAt: Date;
|
|
16537
|
+
MJAuthorizationRoles_RoleIDArray: MJAuthorizationRole_[];
|
|
16452
16538
|
MJEmployeeRoles_RoleIDArray: MJEmployeeRole_[];
|
|
16453
16539
|
MJEntityPermissions_RoleIDArray: MJEntityPermission_[];
|
|
16454
|
-
MJUserRoles_RoleIDArray: MJUserRole_[];
|
|
16455
|
-
MJAuthorizationRoles_RoleIDArray: MJAuthorizationRole_[];
|
|
16456
16540
|
MJQueryPermissions_RoleIDArray: MJQueryPermission_[];
|
|
16457
|
-
|
|
16458
|
-
MJMCPServerConnectionPermissions_RoleIDArray: MJMCPServerConnectionPermission_[];
|
|
16459
|
-
MJFileStorageAccountPermissions_RoleIDArray: MJFileStorageAccountPermission_[];
|
|
16541
|
+
MJUserRoles_RoleIDArray: MJUserRole_[];
|
|
16460
16542
|
MJApplicationRoles_RoleIDArray: MJApplicationRole_[];
|
|
16543
|
+
MJFileStorageAccountPermissions_RoleIDArray: MJFileStorageAccountPermission_[];
|
|
16544
|
+
MJMCPServerConnectionPermissions_RoleIDArray: MJMCPServerConnectionPermission_[];
|
|
16545
|
+
MJResourcePermissions_RoleIDArray: MJResourcePermission_[];
|
|
16461
16546
|
MJAIAgentPermissions_RoleIDArray: MJAIAgentPermission_[];
|
|
16547
|
+
MJSearchScopePermissions_RoleIDArray: MJSearchScopePermission_[];
|
|
16462
16548
|
}
|
|
16463
16549
|
export declare class CreateMJRoleInput {
|
|
16464
16550
|
ID?: string;
|
|
@@ -16492,16 +16578,17 @@ export declare class MJRoleResolver extends ResolverBase {
|
|
|
16492
16578
|
RunMJRoleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16493
16579
|
MJRole(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRole_ | null>;
|
|
16494
16580
|
AllMJRoles({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16581
|
+
MJAuthorizationRoles_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16495
16582
|
MJEmployeeRoles_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16496
16583
|
MJEntityPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16497
|
-
MJUserRoles_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16498
|
-
MJAuthorizationRoles_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16499
16584
|
MJQueryPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16500
|
-
|
|
16501
|
-
MJMCPServerConnectionPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16502
|
-
MJFileStorageAccountPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16585
|
+
MJUserRoles_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16503
16586
|
MJApplicationRoles_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16587
|
+
MJFileStorageAccountPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16588
|
+
MJMCPServerConnectionPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16589
|
+
MJResourcePermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16504
16590
|
MJAIAgentPermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16591
|
+
MJSearchScopePermissions_RoleIDArray(mjrole_: MJRole_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16505
16592
|
CreateMJRole(input: CreateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16506
16593
|
UpdateMJRole(input: UpdateMJRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16507
16594
|
DeleteMJRole(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -16966,29 +17053,98 @@ export declare class MJSchemaInfoResolver extends ResolverBase {
|
|
|
16966
17053
|
UpdateMJSchemaInfo(input: UpdateMJSchemaInfoInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16967
17054
|
DeleteMJSchemaInfo(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16968
17055
|
}
|
|
16969
|
-
export declare class
|
|
17056
|
+
export declare class MJSearchExecutionLog_ {
|
|
16970
17057
|
ID: string;
|
|
16971
|
-
|
|
16972
|
-
|
|
16973
|
-
|
|
17058
|
+
SearchScopeID?: string;
|
|
17059
|
+
UserID?: string;
|
|
17060
|
+
AIAgentID?: string;
|
|
17061
|
+
Query: string;
|
|
17062
|
+
TotalDurationMs: number;
|
|
17063
|
+
ResultCount: number;
|
|
17064
|
+
RerankerName?: string;
|
|
17065
|
+
RerankerCostCents?: number;
|
|
16974
17066
|
Status: string;
|
|
16975
|
-
|
|
16976
|
-
|
|
16977
|
-
MaxResultsOverride?: number;
|
|
16978
|
-
ProviderConfig?: string;
|
|
16979
|
-
CredentialID?: string;
|
|
16980
|
-
DisplayName?: string;
|
|
16981
|
-
Icon?: string;
|
|
16982
|
-
Comments?: string;
|
|
17067
|
+
FailureReason?: string;
|
|
17068
|
+
ProvidersJSON?: string;
|
|
16983
17069
|
_mj__CreatedAt: Date;
|
|
16984
17070
|
_mj__UpdatedAt: Date;
|
|
16985
|
-
|
|
17071
|
+
SearchScope?: string;
|
|
17072
|
+
User?: string;
|
|
17073
|
+
AIAgent?: string;
|
|
16986
17074
|
}
|
|
16987
|
-
export declare class
|
|
17075
|
+
export declare class CreateMJSearchExecutionLogInput {
|
|
16988
17076
|
ID?: string;
|
|
16989
|
-
|
|
16990
|
-
|
|
16991
|
-
|
|
17077
|
+
SearchScopeID: string | null;
|
|
17078
|
+
UserID: string | null;
|
|
17079
|
+
AIAgentID: string | null;
|
|
17080
|
+
Query?: string;
|
|
17081
|
+
TotalDurationMs?: number;
|
|
17082
|
+
ResultCount?: number;
|
|
17083
|
+
RerankerName: string | null;
|
|
17084
|
+
RerankerCostCents: number | null;
|
|
17085
|
+
Status?: string;
|
|
17086
|
+
FailureReason: string | null;
|
|
17087
|
+
ProvidersJSON: string | null;
|
|
17088
|
+
RestoreContext___?: RestoreContextInput;
|
|
17089
|
+
}
|
|
17090
|
+
export declare class UpdateMJSearchExecutionLogInput {
|
|
17091
|
+
ID: string;
|
|
17092
|
+
SearchScopeID?: string | null;
|
|
17093
|
+
UserID?: string | null;
|
|
17094
|
+
AIAgentID?: string | null;
|
|
17095
|
+
Query?: string;
|
|
17096
|
+
TotalDurationMs?: number;
|
|
17097
|
+
ResultCount?: number;
|
|
17098
|
+
RerankerName?: string | null;
|
|
17099
|
+
RerankerCostCents?: number | null;
|
|
17100
|
+
Status?: string;
|
|
17101
|
+
FailureReason?: string | null;
|
|
17102
|
+
ProvidersJSON?: string | null;
|
|
17103
|
+
OldValues___?: KeyValuePairInput[];
|
|
17104
|
+
RestoreContext___?: RestoreContextInput;
|
|
17105
|
+
}
|
|
17106
|
+
export declare class RunMJSearchExecutionLogViewResult {
|
|
17107
|
+
Results: MJSearchExecutionLog_[];
|
|
17108
|
+
UserViewRunID?: string;
|
|
17109
|
+
RowCount: number;
|
|
17110
|
+
TotalRowCount: number;
|
|
17111
|
+
ExecutionTime: number;
|
|
17112
|
+
ErrorMessage?: string;
|
|
17113
|
+
Success: boolean;
|
|
17114
|
+
}
|
|
17115
|
+
export declare class MJSearchExecutionLogResolver extends ResolverBase {
|
|
17116
|
+
RunMJSearchExecutionLogViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17117
|
+
RunMJSearchExecutionLogViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17118
|
+
RunMJSearchExecutionLogDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17119
|
+
MJSearchExecutionLog(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchExecutionLog_ | null>;
|
|
17120
|
+
CreateMJSearchExecutionLog(input: CreateMJSearchExecutionLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17121
|
+
UpdateMJSearchExecutionLog(input: UpdateMJSearchExecutionLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17122
|
+
DeleteMJSearchExecutionLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17123
|
+
}
|
|
17124
|
+
export declare class MJSearchProvider_ {
|
|
17125
|
+
ID: string;
|
|
17126
|
+
Name: string;
|
|
17127
|
+
Description?: string;
|
|
17128
|
+
DriverClass: string;
|
|
17129
|
+
Status: string;
|
|
17130
|
+
Priority: number;
|
|
17131
|
+
SupportsPreview: boolean;
|
|
17132
|
+
MaxResultsOverride?: number;
|
|
17133
|
+
ProviderConfig?: string;
|
|
17134
|
+
CredentialID?: string;
|
|
17135
|
+
DisplayName?: string;
|
|
17136
|
+
Icon?: string;
|
|
17137
|
+
Comments?: string;
|
|
17138
|
+
_mj__CreatedAt: Date;
|
|
17139
|
+
_mj__UpdatedAt: Date;
|
|
17140
|
+
Credential?: string;
|
|
17141
|
+
MJSearchScopeProviders_SearchProviderIDArray: MJSearchScopeProvider_[];
|
|
17142
|
+
}
|
|
17143
|
+
export declare class CreateMJSearchProviderInput {
|
|
17144
|
+
ID?: string;
|
|
17145
|
+
Name?: string;
|
|
17146
|
+
Description: string | null;
|
|
17147
|
+
DriverClass?: string;
|
|
16992
17148
|
Status?: string;
|
|
16993
17149
|
Priority?: number;
|
|
16994
17150
|
SupportsPreview?: boolean;
|
|
@@ -17031,10 +17187,388 @@ export declare class MJSearchProviderResolver extends ResolverBase {
|
|
|
17031
17187
|
RunMJSearchProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17032
17188
|
RunMJSearchProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17033
17189
|
MJSearchProvider(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchProvider_ | null>;
|
|
17190
|
+
MJSearchScopeProviders_SearchProviderIDArray(mjsearchprovider_: MJSearchProvider_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17034
17191
|
CreateMJSearchProvider(input: CreateMJSearchProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17035
17192
|
UpdateMJSearchProvider(input: UpdateMJSearchProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17036
17193
|
DeleteMJSearchProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17037
17194
|
}
|
|
17195
|
+
export declare class MJSearchScopeEntity_ {
|
|
17196
|
+
ID: string;
|
|
17197
|
+
SearchScopeID: string;
|
|
17198
|
+
EntityID: string;
|
|
17199
|
+
ExtraFilter?: string;
|
|
17200
|
+
UserSearchString?: string;
|
|
17201
|
+
_mj__CreatedAt: Date;
|
|
17202
|
+
_mj__UpdatedAt: Date;
|
|
17203
|
+
SearchScope: string;
|
|
17204
|
+
Entity: string;
|
|
17205
|
+
}
|
|
17206
|
+
export declare class CreateMJSearchScopeEntityInput {
|
|
17207
|
+
ID?: string;
|
|
17208
|
+
SearchScopeID?: string;
|
|
17209
|
+
EntityID?: string;
|
|
17210
|
+
ExtraFilter: string | null;
|
|
17211
|
+
UserSearchString: string | null;
|
|
17212
|
+
RestoreContext___?: RestoreContextInput;
|
|
17213
|
+
}
|
|
17214
|
+
export declare class UpdateMJSearchScopeEntityInput {
|
|
17215
|
+
ID: string;
|
|
17216
|
+
SearchScopeID?: string;
|
|
17217
|
+
EntityID?: string;
|
|
17218
|
+
ExtraFilter?: string | null;
|
|
17219
|
+
UserSearchString?: string | null;
|
|
17220
|
+
OldValues___?: KeyValuePairInput[];
|
|
17221
|
+
RestoreContext___?: RestoreContextInput;
|
|
17222
|
+
}
|
|
17223
|
+
export declare class RunMJSearchScopeEntityViewResult {
|
|
17224
|
+
Results: MJSearchScopeEntity_[];
|
|
17225
|
+
UserViewRunID?: string;
|
|
17226
|
+
RowCount: number;
|
|
17227
|
+
TotalRowCount: number;
|
|
17228
|
+
ExecutionTime: number;
|
|
17229
|
+
ErrorMessage?: string;
|
|
17230
|
+
Success: boolean;
|
|
17231
|
+
}
|
|
17232
|
+
export declare class MJSearchScopeEntityResolver extends ResolverBase {
|
|
17233
|
+
RunMJSearchScopeEntityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17234
|
+
RunMJSearchScopeEntityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17235
|
+
RunMJSearchScopeEntityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17236
|
+
MJSearchScopeEntity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopeEntity_ | null>;
|
|
17237
|
+
CreateMJSearchScopeEntity(input: CreateMJSearchScopeEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17238
|
+
UpdateMJSearchScopeEntity(input: UpdateMJSearchScopeEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17239
|
+
DeleteMJSearchScopeEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17240
|
+
}
|
|
17241
|
+
export declare class MJSearchScopeExternalIndex_ {
|
|
17242
|
+
ID: string;
|
|
17243
|
+
SearchScopeID: string;
|
|
17244
|
+
IndexType: string;
|
|
17245
|
+
VectorIndexID?: string;
|
|
17246
|
+
ExternalIndexName?: string;
|
|
17247
|
+
ExternalIndexConfig?: string;
|
|
17248
|
+
MetadataFilter?: string;
|
|
17249
|
+
_mj__CreatedAt: Date;
|
|
17250
|
+
_mj__UpdatedAt: Date;
|
|
17251
|
+
SearchScope: string;
|
|
17252
|
+
VectorIndex?: string;
|
|
17253
|
+
}
|
|
17254
|
+
export declare class CreateMJSearchScopeExternalIndexInput {
|
|
17255
|
+
ID?: string;
|
|
17256
|
+
SearchScopeID?: string;
|
|
17257
|
+
IndexType?: string;
|
|
17258
|
+
VectorIndexID: string | null;
|
|
17259
|
+
ExternalIndexName: string | null;
|
|
17260
|
+
ExternalIndexConfig: string | null;
|
|
17261
|
+
MetadataFilter: string | null;
|
|
17262
|
+
RestoreContext___?: RestoreContextInput;
|
|
17263
|
+
}
|
|
17264
|
+
export declare class UpdateMJSearchScopeExternalIndexInput {
|
|
17265
|
+
ID: string;
|
|
17266
|
+
SearchScopeID?: string;
|
|
17267
|
+
IndexType?: string;
|
|
17268
|
+
VectorIndexID?: string | null;
|
|
17269
|
+
ExternalIndexName?: string | null;
|
|
17270
|
+
ExternalIndexConfig?: string | null;
|
|
17271
|
+
MetadataFilter?: string | null;
|
|
17272
|
+
OldValues___?: KeyValuePairInput[];
|
|
17273
|
+
RestoreContext___?: RestoreContextInput;
|
|
17274
|
+
}
|
|
17275
|
+
export declare class RunMJSearchScopeExternalIndexViewResult {
|
|
17276
|
+
Results: MJSearchScopeExternalIndex_[];
|
|
17277
|
+
UserViewRunID?: string;
|
|
17278
|
+
RowCount: number;
|
|
17279
|
+
TotalRowCount: number;
|
|
17280
|
+
ExecutionTime: number;
|
|
17281
|
+
ErrorMessage?: string;
|
|
17282
|
+
Success: boolean;
|
|
17283
|
+
}
|
|
17284
|
+
export declare class MJSearchScopeExternalIndexResolver extends ResolverBase {
|
|
17285
|
+
RunMJSearchScopeExternalIndexViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17286
|
+
RunMJSearchScopeExternalIndexViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17287
|
+
RunMJSearchScopeExternalIndexDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17288
|
+
MJSearchScopeExternalIndex(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopeExternalIndex_ | null>;
|
|
17289
|
+
CreateMJSearchScopeExternalIndex(input: CreateMJSearchScopeExternalIndexInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17290
|
+
UpdateMJSearchScopeExternalIndex(input: UpdateMJSearchScopeExternalIndexInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17291
|
+
DeleteMJSearchScopeExternalIndex(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17292
|
+
}
|
|
17293
|
+
export declare class MJSearchScopePermission_ {
|
|
17294
|
+
ID: string;
|
|
17295
|
+
SearchScopeID: string;
|
|
17296
|
+
UserID?: string;
|
|
17297
|
+
RoleID?: string;
|
|
17298
|
+
PermissionLevel: string;
|
|
17299
|
+
_mj__CreatedAt: Date;
|
|
17300
|
+
_mj__UpdatedAt: Date;
|
|
17301
|
+
SearchScope: string;
|
|
17302
|
+
User?: string;
|
|
17303
|
+
Role?: string;
|
|
17304
|
+
}
|
|
17305
|
+
export declare class CreateMJSearchScopePermissionInput {
|
|
17306
|
+
ID?: string;
|
|
17307
|
+
SearchScopeID?: string;
|
|
17308
|
+
UserID: string | null;
|
|
17309
|
+
RoleID: string | null;
|
|
17310
|
+
PermissionLevel?: string;
|
|
17311
|
+
RestoreContext___?: RestoreContextInput;
|
|
17312
|
+
}
|
|
17313
|
+
export declare class UpdateMJSearchScopePermissionInput {
|
|
17314
|
+
ID: string;
|
|
17315
|
+
SearchScopeID?: string;
|
|
17316
|
+
UserID?: string | null;
|
|
17317
|
+
RoleID?: string | null;
|
|
17318
|
+
PermissionLevel?: string;
|
|
17319
|
+
OldValues___?: KeyValuePairInput[];
|
|
17320
|
+
RestoreContext___?: RestoreContextInput;
|
|
17321
|
+
}
|
|
17322
|
+
export declare class RunMJSearchScopePermissionViewResult {
|
|
17323
|
+
Results: MJSearchScopePermission_[];
|
|
17324
|
+
UserViewRunID?: string;
|
|
17325
|
+
RowCount: number;
|
|
17326
|
+
TotalRowCount: number;
|
|
17327
|
+
ExecutionTime: number;
|
|
17328
|
+
ErrorMessage?: string;
|
|
17329
|
+
Success: boolean;
|
|
17330
|
+
}
|
|
17331
|
+
export declare class MJSearchScopePermissionResolver extends ResolverBase {
|
|
17332
|
+
RunMJSearchScopePermissionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17333
|
+
RunMJSearchScopePermissionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17334
|
+
RunMJSearchScopePermissionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17335
|
+
MJSearchScopePermission(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopePermission_ | null>;
|
|
17336
|
+
CreateMJSearchScopePermission(input: CreateMJSearchScopePermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17337
|
+
UpdateMJSearchScopePermission(input: UpdateMJSearchScopePermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17338
|
+
DeleteMJSearchScopePermission(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17339
|
+
}
|
|
17340
|
+
export declare class MJSearchScopeProvider_ {
|
|
17341
|
+
ID: string;
|
|
17342
|
+
SearchScopeID: string;
|
|
17343
|
+
SearchProviderID: string;
|
|
17344
|
+
Enabled: boolean;
|
|
17345
|
+
MaxResultsOverride?: number;
|
|
17346
|
+
ProviderConfigOverride?: string;
|
|
17347
|
+
QueryTransformTemplateID?: string;
|
|
17348
|
+
_mj__CreatedAt: Date;
|
|
17349
|
+
_mj__UpdatedAt: Date;
|
|
17350
|
+
SearchScope: string;
|
|
17351
|
+
SearchProvider: string;
|
|
17352
|
+
QueryTransformTemplate?: string;
|
|
17353
|
+
}
|
|
17354
|
+
export declare class CreateMJSearchScopeProviderInput {
|
|
17355
|
+
ID?: string;
|
|
17356
|
+
SearchScopeID?: string;
|
|
17357
|
+
SearchProviderID?: string;
|
|
17358
|
+
Enabled?: boolean;
|
|
17359
|
+
MaxResultsOverride: number | null;
|
|
17360
|
+
ProviderConfigOverride: string | null;
|
|
17361
|
+
QueryTransformTemplateID: string | null;
|
|
17362
|
+
RestoreContext___?: RestoreContextInput;
|
|
17363
|
+
}
|
|
17364
|
+
export declare class UpdateMJSearchScopeProviderInput {
|
|
17365
|
+
ID: string;
|
|
17366
|
+
SearchScopeID?: string;
|
|
17367
|
+
SearchProviderID?: string;
|
|
17368
|
+
Enabled?: boolean;
|
|
17369
|
+
MaxResultsOverride?: number | null;
|
|
17370
|
+
ProviderConfigOverride?: string | null;
|
|
17371
|
+
QueryTransformTemplateID?: string | null;
|
|
17372
|
+
OldValues___?: KeyValuePairInput[];
|
|
17373
|
+
RestoreContext___?: RestoreContextInput;
|
|
17374
|
+
}
|
|
17375
|
+
export declare class RunMJSearchScopeProviderViewResult {
|
|
17376
|
+
Results: MJSearchScopeProvider_[];
|
|
17377
|
+
UserViewRunID?: string;
|
|
17378
|
+
RowCount: number;
|
|
17379
|
+
TotalRowCount: number;
|
|
17380
|
+
ExecutionTime: number;
|
|
17381
|
+
ErrorMessage?: string;
|
|
17382
|
+
Success: boolean;
|
|
17383
|
+
}
|
|
17384
|
+
export declare class MJSearchScopeProviderResolver extends ResolverBase {
|
|
17385
|
+
RunMJSearchScopeProviderViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17386
|
+
RunMJSearchScopeProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17387
|
+
RunMJSearchScopeProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17388
|
+
MJSearchScopeProvider(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopeProvider_ | null>;
|
|
17389
|
+
CreateMJSearchScopeProvider(input: CreateMJSearchScopeProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17390
|
+
UpdateMJSearchScopeProvider(input: UpdateMJSearchScopeProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17391
|
+
DeleteMJSearchScopeProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17392
|
+
}
|
|
17393
|
+
export declare class MJSearchScopeStorageAccount_ {
|
|
17394
|
+
ID: string;
|
|
17395
|
+
SearchScopeID: string;
|
|
17396
|
+
FileStorageAccountID: string;
|
|
17397
|
+
FolderPath?: string;
|
|
17398
|
+
_mj__CreatedAt: Date;
|
|
17399
|
+
_mj__UpdatedAt: Date;
|
|
17400
|
+
SearchScope: string;
|
|
17401
|
+
FileStorageAccount: string;
|
|
17402
|
+
}
|
|
17403
|
+
export declare class CreateMJSearchScopeStorageAccountInput {
|
|
17404
|
+
ID?: string;
|
|
17405
|
+
SearchScopeID?: string;
|
|
17406
|
+
FileStorageAccountID?: string;
|
|
17407
|
+
FolderPath: string | null;
|
|
17408
|
+
RestoreContext___?: RestoreContextInput;
|
|
17409
|
+
}
|
|
17410
|
+
export declare class UpdateMJSearchScopeStorageAccountInput {
|
|
17411
|
+
ID: string;
|
|
17412
|
+
SearchScopeID?: string;
|
|
17413
|
+
FileStorageAccountID?: string;
|
|
17414
|
+
FolderPath?: string | null;
|
|
17415
|
+
OldValues___?: KeyValuePairInput[];
|
|
17416
|
+
RestoreContext___?: RestoreContextInput;
|
|
17417
|
+
}
|
|
17418
|
+
export declare class RunMJSearchScopeStorageAccountViewResult {
|
|
17419
|
+
Results: MJSearchScopeStorageAccount_[];
|
|
17420
|
+
UserViewRunID?: string;
|
|
17421
|
+
RowCount: number;
|
|
17422
|
+
TotalRowCount: number;
|
|
17423
|
+
ExecutionTime: number;
|
|
17424
|
+
ErrorMessage?: string;
|
|
17425
|
+
Success: boolean;
|
|
17426
|
+
}
|
|
17427
|
+
export declare class MJSearchScopeStorageAccountResolver extends ResolverBase {
|
|
17428
|
+
RunMJSearchScopeStorageAccountViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17429
|
+
RunMJSearchScopeStorageAccountViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17430
|
+
RunMJSearchScopeStorageAccountDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17431
|
+
MJSearchScopeStorageAccount(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopeStorageAccount_ | null>;
|
|
17432
|
+
CreateMJSearchScopeStorageAccount(input: CreateMJSearchScopeStorageAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17433
|
+
UpdateMJSearchScopeStorageAccount(input: UpdateMJSearchScopeStorageAccountInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17434
|
+
DeleteMJSearchScopeStorageAccount(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17435
|
+
}
|
|
17436
|
+
export declare class MJSearchScopeTestQuery_ {
|
|
17437
|
+
ID: string;
|
|
17438
|
+
SearchScopeID: string;
|
|
17439
|
+
Label: string;
|
|
17440
|
+
Query: string;
|
|
17441
|
+
ExpectedTopResultEntity?: string;
|
|
17442
|
+
ExpectedTopResultRecordID?: string;
|
|
17443
|
+
Notes?: string;
|
|
17444
|
+
_mj__CreatedAt: Date;
|
|
17445
|
+
_mj__UpdatedAt: Date;
|
|
17446
|
+
SearchScope: string;
|
|
17447
|
+
}
|
|
17448
|
+
export declare class CreateMJSearchScopeTestQueryInput {
|
|
17449
|
+
ID?: string;
|
|
17450
|
+
SearchScopeID?: string;
|
|
17451
|
+
Label?: string;
|
|
17452
|
+
Query?: string;
|
|
17453
|
+
ExpectedTopResultEntity: string | null;
|
|
17454
|
+
ExpectedTopResultRecordID: string | null;
|
|
17455
|
+
Notes: string | null;
|
|
17456
|
+
RestoreContext___?: RestoreContextInput;
|
|
17457
|
+
}
|
|
17458
|
+
export declare class UpdateMJSearchScopeTestQueryInput {
|
|
17459
|
+
ID: string;
|
|
17460
|
+
SearchScopeID?: string;
|
|
17461
|
+
Label?: string;
|
|
17462
|
+
Query?: string;
|
|
17463
|
+
ExpectedTopResultEntity?: string | null;
|
|
17464
|
+
ExpectedTopResultRecordID?: string | null;
|
|
17465
|
+
Notes?: string | null;
|
|
17466
|
+
OldValues___?: KeyValuePairInput[];
|
|
17467
|
+
RestoreContext___?: RestoreContextInput;
|
|
17468
|
+
}
|
|
17469
|
+
export declare class RunMJSearchScopeTestQueryViewResult {
|
|
17470
|
+
Results: MJSearchScopeTestQuery_[];
|
|
17471
|
+
UserViewRunID?: string;
|
|
17472
|
+
RowCount: number;
|
|
17473
|
+
TotalRowCount: number;
|
|
17474
|
+
ExecutionTime: number;
|
|
17475
|
+
ErrorMessage?: string;
|
|
17476
|
+
Success: boolean;
|
|
17477
|
+
}
|
|
17478
|
+
export declare class MJSearchScopeTestQueryResolver extends ResolverBase {
|
|
17479
|
+
RunMJSearchScopeTestQueryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17480
|
+
RunMJSearchScopeTestQueryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17481
|
+
RunMJSearchScopeTestQueryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17482
|
+
MJSearchScopeTestQuery(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScopeTestQuery_ | null>;
|
|
17483
|
+
CreateMJSearchScopeTestQuery(input: CreateMJSearchScopeTestQueryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17484
|
+
UpdateMJSearchScopeTestQuery(input: UpdateMJSearchScopeTestQueryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17485
|
+
DeleteMJSearchScopeTestQuery(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17486
|
+
}
|
|
17487
|
+
export declare class MJSearchScope_ {
|
|
17488
|
+
ID: string;
|
|
17489
|
+
Name: string;
|
|
17490
|
+
Description?: string;
|
|
17491
|
+
Icon?: string;
|
|
17492
|
+
IsGlobal: boolean;
|
|
17493
|
+
IsDefault: boolean;
|
|
17494
|
+
OwnerUserID?: string;
|
|
17495
|
+
Status: string;
|
|
17496
|
+
StartAt?: Date;
|
|
17497
|
+
EndAt?: Date;
|
|
17498
|
+
ScopeConfig?: string;
|
|
17499
|
+
SearchContextConfig?: string;
|
|
17500
|
+
RerankerBudgetCents?: number;
|
|
17501
|
+
_mj__CreatedAt: Date;
|
|
17502
|
+
_mj__UpdatedAt: Date;
|
|
17503
|
+
OwnerUser?: string;
|
|
17504
|
+
MJSearchScopeEntities_SearchScopeIDArray: MJSearchScopeEntity_[];
|
|
17505
|
+
MJSearchScopeExternalIndexes_SearchScopeIDArray: MJSearchScopeExternalIndex_[];
|
|
17506
|
+
MJSearchScopePermissions_SearchScopeIDArray: MJSearchScopePermission_[];
|
|
17507
|
+
MJSearchScopeProviders_SearchScopeIDArray: MJSearchScopeProvider_[];
|
|
17508
|
+
MJSearchScopeStorageAccounts_SearchScopeIDArray: MJSearchScopeStorageAccount_[];
|
|
17509
|
+
MJSearchScopeTestQueries_SearchScopeIDArray: MJSearchScopeTestQuery_[];
|
|
17510
|
+
MJAIAgentSearchScopes_SearchScopeIDArray: MJAIAgentSearchScope_[];
|
|
17511
|
+
MJSearchExecutionLogs_SearchScopeIDArray: MJSearchExecutionLog_[];
|
|
17512
|
+
}
|
|
17513
|
+
export declare class CreateMJSearchScopeInput {
|
|
17514
|
+
ID?: string;
|
|
17515
|
+
Name?: string;
|
|
17516
|
+
Description: string | null;
|
|
17517
|
+
Icon: string | null;
|
|
17518
|
+
IsGlobal?: boolean;
|
|
17519
|
+
IsDefault?: boolean;
|
|
17520
|
+
OwnerUserID: string | null;
|
|
17521
|
+
Status?: string;
|
|
17522
|
+
StartAt: Date | null;
|
|
17523
|
+
EndAt: Date | null;
|
|
17524
|
+
ScopeConfig: string | null;
|
|
17525
|
+
SearchContextConfig: string | null;
|
|
17526
|
+
RerankerBudgetCents: number | null;
|
|
17527
|
+
RestoreContext___?: RestoreContextInput;
|
|
17528
|
+
}
|
|
17529
|
+
export declare class UpdateMJSearchScopeInput {
|
|
17530
|
+
ID: string;
|
|
17531
|
+
Name?: string;
|
|
17532
|
+
Description?: string | null;
|
|
17533
|
+
Icon?: string | null;
|
|
17534
|
+
IsGlobal?: boolean;
|
|
17535
|
+
IsDefault?: boolean;
|
|
17536
|
+
OwnerUserID?: string | null;
|
|
17537
|
+
Status?: string;
|
|
17538
|
+
StartAt?: Date | null;
|
|
17539
|
+
EndAt?: Date | null;
|
|
17540
|
+
ScopeConfig?: string | null;
|
|
17541
|
+
SearchContextConfig?: string | null;
|
|
17542
|
+
RerankerBudgetCents?: number | null;
|
|
17543
|
+
OldValues___?: KeyValuePairInput[];
|
|
17544
|
+
RestoreContext___?: RestoreContextInput;
|
|
17545
|
+
}
|
|
17546
|
+
export declare class RunMJSearchScopeViewResult {
|
|
17547
|
+
Results: MJSearchScope_[];
|
|
17548
|
+
UserViewRunID?: string;
|
|
17549
|
+
RowCount: number;
|
|
17550
|
+
TotalRowCount: number;
|
|
17551
|
+
ExecutionTime: number;
|
|
17552
|
+
ErrorMessage?: string;
|
|
17553
|
+
Success: boolean;
|
|
17554
|
+
}
|
|
17555
|
+
export declare class MJSearchScopeResolver extends ResolverBase {
|
|
17556
|
+
RunMJSearchScopeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17557
|
+
RunMJSearchScopeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17558
|
+
RunMJSearchScopeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17559
|
+
MJSearchScope(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJSearchScope_ | null>;
|
|
17560
|
+
MJSearchScopeEntities_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17561
|
+
MJSearchScopeExternalIndexes_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17562
|
+
MJSearchScopePermissions_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17563
|
+
MJSearchScopeProviders_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17564
|
+
MJSearchScopeStorageAccounts_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17565
|
+
MJSearchScopeTestQueries_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17566
|
+
MJAIAgentSearchScopes_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17567
|
+
MJSearchExecutionLogs_SearchScopeIDArray(mjsearchscope_: MJSearchScope_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17568
|
+
CreateMJSearchScope(input: CreateMJSearchScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17569
|
+
UpdateMJSearchScope(input: UpdateMJSearchScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17570
|
+
DeleteMJSearchScope(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17571
|
+
}
|
|
17038
17572
|
export declare class MJSkill_ {
|
|
17039
17573
|
ID: string;
|
|
17040
17574
|
Name: string;
|
|
@@ -17527,18 +18061,18 @@ export declare class MJTag_ {
|
|
|
17527
18061
|
EmbeddingModel?: string;
|
|
17528
18062
|
RootParentID?: string;
|
|
17529
18063
|
RootMergedIntoTagID?: string;
|
|
17530
|
-
MJTags_ParentIDArray: MJTag_[];
|
|
17531
18064
|
MJTaggedItems_TagIDArray: MJTaggedItem_[];
|
|
17532
|
-
|
|
18065
|
+
MJTags_ParentIDArray: MJTag_[];
|
|
17533
18066
|
MJContentItemTags_TagIDArray: MJContentItemTag_[];
|
|
18067
|
+
MJTagCoOccurrences_TagBIDArray: MJTagCoOccurrence_[];
|
|
17534
18068
|
MJTagSynonyms_TagIDArray: MJTagSynonym_[];
|
|
17535
18069
|
MJTagAuditLogs_RelatedTagIDArray: MJTagAuditLog_[];
|
|
17536
18070
|
MJTagCoOccurrences_TagAIDArray: MJTagCoOccurrence_[];
|
|
17537
18071
|
MJTagScopes_TagIDArray: MJTagScope_[];
|
|
17538
18072
|
MJTagSuggestions_ProposedParentIDArray: MJTagSuggestion_[];
|
|
17539
18073
|
MJTagAuditLogs_TagIDArray: MJTagAuditLog_[];
|
|
17540
|
-
MJTags_MergedIntoTagIDArray: MJTag_[];
|
|
17541
18074
|
MJTagSuggestions_BestMatchTagIDArray: MJTagSuggestion_[];
|
|
18075
|
+
MJTags_MergedIntoTagIDArray: MJTag_[];
|
|
17542
18076
|
MJTagSuggestions_ResolvedTagIDArray: MJTagSuggestion_[];
|
|
17543
18077
|
}
|
|
17544
18078
|
export declare class CreateMJTagInput {
|
|
@@ -17594,18 +18128,18 @@ export declare class MJTagResolver extends ResolverBase {
|
|
|
17594
18128
|
RunMJTagViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17595
18129
|
RunMJTagDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17596
18130
|
MJTag(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTag_ | null>;
|
|
17597
|
-
MJTags_ParentIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17598
18131
|
MJTaggedItems_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17599
|
-
|
|
18132
|
+
MJTags_ParentIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17600
18133
|
MJContentItemTags_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18134
|
+
MJTagCoOccurrences_TagBIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17601
18135
|
MJTagSynonyms_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17602
18136
|
MJTagAuditLogs_RelatedTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17603
18137
|
MJTagCoOccurrences_TagAIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17604
18138
|
MJTagScopes_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17605
18139
|
MJTagSuggestions_ProposedParentIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17606
18140
|
MJTagAuditLogs_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17607
|
-
MJTags_MergedIntoTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17608
18141
|
MJTagSuggestions_BestMatchTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18142
|
+
MJTags_MergedIntoTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17609
18143
|
MJTagSuggestions_ResolvedTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17610
18144
|
CreateMJTag(input: CreateMJTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17611
18145
|
UpdateMJTag(input: UpdateMJTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -17793,8 +18327,8 @@ export declare class MJTemplateCategory_ {
|
|
|
17793
18327
|
Parent?: string;
|
|
17794
18328
|
User: string;
|
|
17795
18329
|
RootParentID?: string;
|
|
17796
|
-
MJTemplates_CategoryIDArray: MJTemplate_[];
|
|
17797
18330
|
MJTemplateCategories_ParentIDArray: MJTemplateCategory_[];
|
|
18331
|
+
MJTemplates_CategoryIDArray: MJTemplate_[];
|
|
17798
18332
|
}
|
|
17799
18333
|
export declare class CreateMJTemplateCategoryInput {
|
|
17800
18334
|
ID?: string;
|
|
@@ -17827,8 +18361,8 @@ export declare class MJTemplateCategoryResolver extends ResolverBase {
|
|
|
17827
18361
|
RunMJTemplateCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17828
18362
|
RunMJTemplateCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17829
18363
|
MJTemplateCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTemplateCategory_ | null>;
|
|
17830
|
-
MJTemplates_CategoryIDArray(mjtemplatecategory_: MJTemplateCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17831
18364
|
MJTemplateCategories_ParentIDArray(mjtemplatecategory_: MJTemplateCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18365
|
+
MJTemplates_CategoryIDArray(mjtemplatecategory_: MJTemplateCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17832
18366
|
CreateMJTemplateCategory(input: CreateMJTemplateCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17833
18367
|
UpdateMJTemplateCategory(input: UpdateMJTemplateCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17834
18368
|
DeleteMJTemplateCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -18015,11 +18549,13 @@ export declare class MJTemplate_ {
|
|
|
18015
18549
|
_mj__UpdatedAt: Date;
|
|
18016
18550
|
Category?: string;
|
|
18017
18551
|
User: string;
|
|
18018
|
-
MJTemplateParams_TemplateIDArray: MJTemplateParam_[];
|
|
18019
18552
|
MJTemplateContents_TemplateIDArray: MJTemplateContent_[];
|
|
18553
|
+
MJTemplateParams_TemplateIDArray: MJTemplateParam_[];
|
|
18020
18554
|
MJUserNotificationTypes_EmailTemplateIDArray: MJUserNotificationType_[];
|
|
18021
18555
|
MJAIPrompts_TemplateIDArray: MJAIPrompt_[];
|
|
18556
|
+
MJSearchScopeProviders_QueryTransformTemplateIDArray: MJSearchScopeProvider_[];
|
|
18022
18557
|
MJUserNotificationTypes_SMSTemplateIDArray: MJUserNotificationType_[];
|
|
18558
|
+
MJAIAgentSearchScopes_QueryTemplateIDArray: MJAIAgentSearchScope_[];
|
|
18023
18559
|
MJEntityDocuments_TemplateIDArray: MJEntityDocument_[];
|
|
18024
18560
|
}
|
|
18025
18561
|
export declare class CreateMJTemplateInput {
|
|
@@ -18061,11 +18597,13 @@ export declare class MJTemplateResolver extends ResolverBase {
|
|
|
18061
18597
|
RunMJTemplateViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18062
18598
|
RunMJTemplateDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18063
18599
|
MJTemplate(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTemplate_ | null>;
|
|
18064
|
-
MJTemplateParams_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18065
18600
|
MJTemplateContents_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18601
|
+
MJTemplateParams_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18066
18602
|
MJUserNotificationTypes_EmailTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18067
18603
|
MJAIPrompts_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18604
|
+
MJSearchScopeProviders_QueryTransformTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18068
18605
|
MJUserNotificationTypes_SMSTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18606
|
+
MJAIAgentSearchScopes_QueryTemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18069
18607
|
MJEntityDocuments_TemplateIDArray(mjtemplate_: MJTemplate_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18070
18608
|
CreateMJTemplate(input: CreateMJTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
18071
18609
|
UpdateMJTemplate(input: UpdateMJTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -19418,9 +19956,9 @@ export declare class MJUserView_ {
|
|
|
19418
19956
|
UserType: string;
|
|
19419
19957
|
Entity: string;
|
|
19420
19958
|
EntityBaseView: string;
|
|
19959
|
+
MJDataContextItems_ViewIDArray: MJDataContextItem_[];
|
|
19421
19960
|
MJEntityRelationships_DisplayUserViewIDArray: MJEntityRelationship_[];
|
|
19422
19961
|
MJUserViewRuns_UserViewIDArray: MJUserViewRun_[];
|
|
19423
|
-
MJDataContextItems_ViewIDArray: MJDataContextItem_[];
|
|
19424
19962
|
}
|
|
19425
19963
|
export declare class CreateMJUserViewInput {
|
|
19426
19964
|
ID?: string;
|
|
@@ -19486,9 +20024,9 @@ export declare class MJUserViewResolverBase extends ResolverBase {
|
|
|
19486
20024
|
RunMJUserViewDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19487
20025
|
MJUserView(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJUserView_ | null>;
|
|
19488
20026
|
AllMJUserViews({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20027
|
+
MJDataContextItems_ViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19489
20028
|
MJEntityRelationships_DisplayUserViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19490
20029
|
MJUserViewRuns_UserViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19491
|
-
MJDataContextItems_ViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19492
20030
|
CreateMJUserView(input: CreateMJUserViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19493
20031
|
UpdateMJUserView(input: UpdateMJUserViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19494
20032
|
DeleteMJUserView(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -19516,98 +20054,101 @@ export declare class MJUser_ {
|
|
|
19516
20054
|
EmployeeTitle?: string;
|
|
19517
20055
|
EmployeeSupervisor?: string;
|
|
19518
20056
|
EmployeeSupervisorEmail?: string;
|
|
19519
|
-
|
|
19520
|
-
|
|
19521
|
-
MJWorkspaces_UserIDArray: MJWorkspace_[];
|
|
19522
|
-
MJReports_UserIDArray: MJReport_[];
|
|
19523
|
-
MJReportSnapshots_UserIDArray: MJReportSnapshot_[];
|
|
19524
|
-
MJRecordChanges_UserIDArray: MJRecordChange_[];
|
|
19525
|
-
MJDashboards_UserIDArray: MJDashboard_[];
|
|
19526
|
-
MJUserViewRuns_RunByUserIDArray: MJUserViewRun_[];
|
|
20057
|
+
MJActionExecutionLogs_UserIDArray: MJActionExecutionLog_[];
|
|
20058
|
+
MJActions_CodeApprovedByUserIDArray: MJAction_[];
|
|
19527
20059
|
MJAuditLogs_UserIDArray: MJAuditLog_[];
|
|
19528
|
-
|
|
19529
|
-
MJUserFavorites_UserIDArray: MJUserFavorite_[];
|
|
19530
|
-
MJUserRecordLogs_UserIDArray: MJUserRecordLog_[];
|
|
19531
|
-
MJUserViews_UserIDArray: MJUserView_[];
|
|
20060
|
+
MJCommunicationRuns_UserIDArray: MJCommunicationRun_[];
|
|
19532
20061
|
MJCompanyIntegrationRuns_RunByUserIDArray: MJCompanyIntegrationRun_[];
|
|
19533
|
-
MJUserNotifications_UserIDArray: MJUserNotification_[];
|
|
19534
20062
|
MJConversations_UserIDArray: MJConversation_[];
|
|
19535
|
-
MJRecordMergeLogs_ApprovedByUserIDArray: MJRecordMergeLog_[];
|
|
19536
|
-
MJDataContexts_UserIDArray: MJDataContext_[];
|
|
19537
|
-
MJReportCategories_UserIDArray: MJReportCategory_[];
|
|
19538
|
-
MJUserViewCategories_UserIDArray: MJUserViewCategory_[];
|
|
19539
20063
|
MJDashboardCategories_UserIDArray: MJDashboardCategory_[];
|
|
19540
|
-
|
|
20064
|
+
MJDashboards_UserIDArray: MJDashboard_[];
|
|
20065
|
+
MJDataContexts_UserIDArray: MJDataContext_[];
|
|
19541
20066
|
MJDuplicateRuns_StartedByUserIDArray: MJDuplicateRun_[];
|
|
19542
|
-
|
|
19543
|
-
|
|
19544
|
-
MJCommunicationRuns_UserIDArray: MJCommunicationRun_[];
|
|
19545
|
-
MJTemplates_UserIDArray: MJTemplate_[];
|
|
19546
|
-
MJTemplateCategories_UserIDArray: MJTemplateCategory_[];
|
|
20067
|
+
MJLists_UserIDArray: MJList_[];
|
|
20068
|
+
MJQueryCategories_UserIDArray: MJQueryCategory_[];
|
|
19547
20069
|
MJRecommendationRuns_RunByUserIDArray: MJRecommendationRun_[];
|
|
19548
20070
|
MJRecordChangeReplayRuns_UserIDArray: MJRecordChangeReplayRun_[];
|
|
19549
|
-
|
|
19550
|
-
|
|
19551
|
-
|
|
20071
|
+
MJRecordChanges_UserIDArray: MJRecordChange_[];
|
|
20072
|
+
MJRecordMergeLogs_ApprovedByUserIDArray: MJRecordMergeLog_[];
|
|
20073
|
+
MJReportCategories_UserIDArray: MJReportCategory_[];
|
|
20074
|
+
MJReportSnapshots_UserIDArray: MJReportSnapshot_[];
|
|
20075
|
+
MJReports_UserIDArray: MJReport_[];
|
|
20076
|
+
MJTemplateCategories_UserIDArray: MJTemplateCategory_[];
|
|
20077
|
+
MJTemplates_UserIDArray: MJTemplate_[];
|
|
20078
|
+
MJUserApplications_UserIDArray: MJUserApplication_[];
|
|
20079
|
+
MJUserFavorites_UserIDArray: MJUserFavorite_[];
|
|
20080
|
+
MJUserNotifications_UserIDArray: MJUserNotification_[];
|
|
20081
|
+
MJUserRecordLogs_UserIDArray: MJUserRecordLog_[];
|
|
20082
|
+
MJUserRoles_UserIDArray: MJUserRole_[];
|
|
20083
|
+
MJUserViewCategories_UserIDArray: MJUserViewCategory_[];
|
|
20084
|
+
MJUserViewRuns_RunByUserIDArray: MJUserViewRun_[];
|
|
20085
|
+
MJUserViews_UserIDArray: MJUserView_[];
|
|
20086
|
+
MJWorkspaces_UserIDArray: MJWorkspace_[];
|
|
19552
20087
|
MJAIAgentNotes_UserIDArray: MJAIAgentNote_[];
|
|
19553
20088
|
MJAIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
19554
|
-
|
|
19555
|
-
|
|
19556
|
-
MJDashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
19557
|
-
MJArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
19558
|
-
MJPublicLinks_UserIDArray: MJPublicLink_[];
|
|
19559
|
-
MJScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
19560
|
-
MJScheduledJobs_OwnerUserIDArray: MJScheduledJob_[];
|
|
20089
|
+
MJAPIKeys_CreatedByUserIDArray: MJAPIKey_[];
|
|
20090
|
+
MJArchiveConfigurations_CreatedByUserIDArray: MJArchiveConfiguration_[];
|
|
19561
20091
|
MJArtifactPermissions_SharedByUserIDArray: MJArtifactPermission_[];
|
|
19562
20092
|
MJArtifactUses_UserIDArray: MJArtifactUse_[];
|
|
20093
|
+
MJArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
20094
|
+
MJContentItemDuplicates_ResolvedByUserIDArray: MJContentItemDuplicate_[];
|
|
20095
|
+
MJContentProcessRuns_StartedByUserIDArray: MJContentProcessRun_[];
|
|
19563
20096
|
MJConversationDetailRatings_UserIDArray: MJConversationDetailRating_[];
|
|
19564
|
-
MJTestRunFeedbacks_ReviewerUserIDArray: MJTestRunFeedback_[];
|
|
19565
|
-
MJTestSuiteRuns_RunByUserIDArray: MJTestSuiteRun_[];
|
|
19566
|
-
MJUserSettings_UserIDArray: MJUserSetting_[];
|
|
19567
|
-
MJListInvitations_CreatedByUserIDArray: MJListInvitation_[];
|
|
19568
|
-
MJListShares_UserIDArray: MJListShare_[];
|
|
19569
20097
|
MJDashboardCategoryLinks_UserIDArray: MJDashboardCategoryLink_[];
|
|
19570
20098
|
MJDashboardCategoryPermissions_SharedByUserIDArray: MJDashboardCategoryPermission_[];
|
|
19571
20099
|
MJDashboardPermissions_UserIDArray: MJDashboardPermission_[];
|
|
19572
|
-
|
|
19573
|
-
|
|
20100
|
+
MJDashboardUserPreferences_UserIDArray: MJDashboardUserPreference_[];
|
|
20101
|
+
MJDashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
20102
|
+
MJKnowledgeHubSavedSearches_UserIDArray: MJKnowledgeHubSavedSearch_[];
|
|
20103
|
+
MJListCategories_UserIDArray: MJListCategory_[];
|
|
20104
|
+
MJListInvitations_CreatedByUserIDArray: MJListInvitation_[];
|
|
20105
|
+
MJListShares_UserIDArray: MJListShare_[];
|
|
19574
20106
|
MJMCPToolExecutionLogs_UserIDArray: MJMCPToolExecutionLog_[];
|
|
19575
|
-
|
|
20107
|
+
MJMCPToolFavorites_UserIDArray: MJMCPToolFavorite_[];
|
|
19576
20108
|
MJOAuthAuthorizationStates_UserIDArray: MJOAuthAuthorizationState_[];
|
|
19577
20109
|
MJOpenAppInstallHistories_ExecutedByUserIDArray: MJOpenAppInstallHistory_[];
|
|
19578
20110
|
MJOpenApps_InstalledByUserIDArray: MJOpenApp_[];
|
|
19579
|
-
|
|
19580
|
-
|
|
19581
|
-
|
|
19582
|
-
MJTagAuditLogs_PerformedByUserIDArray: MJTagAuditLog_[];
|
|
19583
|
-
MJArchiveConfigurations_CreatedByUserIDArray: MJArchiveConfiguration_[];
|
|
19584
|
-
MJMCPToolFavorites_UserIDArray: MJMCPToolFavorite_[];
|
|
20111
|
+
MJPublicLinks_UserIDArray: MJPublicLink_[];
|
|
20112
|
+
MJReportUserStates_UserIDArray: MJReportUserState_[];
|
|
20113
|
+
MJResourceLinks_UserIDArray: MJResourceLink_[];
|
|
19585
20114
|
MJResourcePermissions_SharedByUserIDArray: MJResourcePermission_[];
|
|
20115
|
+
MJScheduledActions_CreatedByUserIDArray: MJScheduledAction_[];
|
|
20116
|
+
MJScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
20117
|
+
MJScheduledJobs_OwnerUserIDArray: MJScheduledJob_[];
|
|
20118
|
+
MJSearchScopes_OwnerUserIDArray: MJSearchScope_[];
|
|
20119
|
+
MJTagAuditLogs_PerformedByUserIDArray: MJTagAuditLog_[];
|
|
19586
20120
|
MJTagSuggestions_ReviewedByUserIDArray: MJTagSuggestion_[];
|
|
19587
|
-
|
|
19588
|
-
|
|
19589
|
-
|
|
20121
|
+
MJTestRunFeedbacks_ReviewerUserIDArray: MJTestRunFeedback_[];
|
|
20122
|
+
MJTestSuiteRuns_RunByUserIDArray: MJTestSuiteRun_[];
|
|
20123
|
+
MJUserNotificationPreferences_UserIDArray: MJUserNotificationPreference_[];
|
|
20124
|
+
MJUserSettings_UserIDArray: MJUserSetting_[];
|
|
20125
|
+
MJVersionLabelRestores_UserIDArray: MJVersionLabelRestore_[];
|
|
19590
20126
|
MJAccessControlRules_GrantedByUserIDArray: MJAccessControlRule_[];
|
|
20127
|
+
MJAIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
20128
|
+
MJAPIKeys_UserIDArray: MJAPIKey_[];
|
|
20129
|
+
MJArchiveRuns_UserIDArray: MJArchiveRun_[];
|
|
20130
|
+
MJArtifactPermissions_UserIDArray: MJArtifactPermission_[];
|
|
19591
20131
|
MJArtifacts_UserIDArray: MJArtifact_[];
|
|
19592
|
-
MJScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
19593
20132
|
MJCollectionPermissions_UserIDArray: MJCollectionPermission_[];
|
|
19594
|
-
|
|
19595
|
-
MJTestRuns_RunByUserIDArray: MJTestRun_[];
|
|
20133
|
+
MJConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
19596
20134
|
MJDashboardCategoryPermissions_UserIDArray: MJDashboardCategoryPermission_[];
|
|
19597
20135
|
MJDashboardPermissions_SharedByUserIDArray: MJDashboardPermission_[];
|
|
19598
|
-
MJAPIKeys_UserIDArray: MJAPIKey_[];
|
|
19599
|
-
MJMCPServerConnectionPermissions_UserIDArray: MJMCPServerConnectionPermission_[];
|
|
19600
|
-
MJVersionLabels_CreatedByUserIDArray: MJVersionLabel_[];
|
|
19601
20136
|
MJDuplicateRuns_ApprovedByUserIDArray: MJDuplicateRun_[];
|
|
19602
20137
|
MJFileStorageAccountPermissions_UserIDArray: MJFileStorageAccountPermission_[];
|
|
19603
|
-
|
|
19604
|
-
|
|
20138
|
+
MJMCPServerConnectionPermissions_UserIDArray: MJMCPServerConnectionPermission_[];
|
|
20139
|
+
MJResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
20140
|
+
MJScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
20141
|
+
MJTestRuns_RunByUserIDArray: MJTestRun_[];
|
|
20142
|
+
MJVersionLabels_CreatedByUserIDArray: MJVersionLabel_[];
|
|
19605
20143
|
MJAIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
20144
|
+
MJAIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
19606
20145
|
MJCollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
19607
20146
|
MJCollections_OwnerIDArray: MJCollection_[];
|
|
19608
20147
|
MJRecordMergeLogs_InitiatedByUserIDArray: MJRecordMergeLog_[];
|
|
19609
|
-
|
|
20148
|
+
MJSearchExecutionLogs_UserIDArray: MJSearchExecutionLog_[];
|
|
20149
|
+
MJSearchScopePermissions_UserIDArray: MJSearchScopePermission_[];
|
|
19610
20150
|
MJAIAgentExamples_UserIDArray: MJAIAgentExample_[];
|
|
20151
|
+
MJTasks_UserIDArray: MJTask_[];
|
|
19611
20152
|
MJAIAgents_OwnerUserIDArray: MJAIAgent_[];
|
|
19612
20153
|
}
|
|
19613
20154
|
export declare class CreateMJUserInput {
|
|
@@ -19660,98 +20201,101 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
19660
20201
|
RunMJUserDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19661
20202
|
MJUser(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJUser_ | null>;
|
|
19662
20203
|
AllMJUsers({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19663
|
-
|
|
19664
|
-
|
|
19665
|
-
MJWorkspaces_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19666
|
-
MJReports_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19667
|
-
MJReportSnapshots_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19668
|
-
MJRecordChanges_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19669
|
-
MJDashboards_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19670
|
-
MJUserViewRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20204
|
+
MJActionExecutionLogs_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20205
|
+
MJActions_CodeApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19671
20206
|
MJAuditLogs_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19672
|
-
|
|
19673
|
-
MJUserFavorites_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19674
|
-
MJUserRecordLogs_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19675
|
-
MJUserViews_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20207
|
+
MJCommunicationRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19676
20208
|
MJCompanyIntegrationRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19677
|
-
MJUserNotifications_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19678
20209
|
MJConversations_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19679
|
-
MJRecordMergeLogs_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19680
|
-
MJDataContexts_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19681
|
-
MJReportCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19682
|
-
MJUserViewCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19683
20210
|
MJDashboardCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19684
|
-
|
|
20211
|
+
MJDashboards_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20212
|
+
MJDataContexts_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19685
20213
|
MJDuplicateRuns_StartedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19686
|
-
|
|
19687
|
-
|
|
19688
|
-
MJCommunicationRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19689
|
-
MJTemplates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19690
|
-
MJTemplateCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20214
|
+
MJLists_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20215
|
+
MJQueryCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19691
20216
|
MJRecommendationRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19692
20217
|
MJRecordChangeReplayRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19693
|
-
|
|
19694
|
-
|
|
19695
|
-
|
|
20218
|
+
MJRecordChanges_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20219
|
+
MJRecordMergeLogs_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20220
|
+
MJReportCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20221
|
+
MJReportSnapshots_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20222
|
+
MJReports_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20223
|
+
MJTemplateCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20224
|
+
MJTemplates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20225
|
+
MJUserApplications_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20226
|
+
MJUserFavorites_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20227
|
+
MJUserNotifications_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20228
|
+
MJUserRecordLogs_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20229
|
+
MJUserRoles_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20230
|
+
MJUserViewCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20231
|
+
MJUserViewRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20232
|
+
MJUserViews_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20233
|
+
MJWorkspaces_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19696
20234
|
MJAIAgentNotes_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19697
20235
|
MJAIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19698
|
-
|
|
19699
|
-
|
|
19700
|
-
MJDashboardUserStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19701
|
-
MJArtifactVersions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19702
|
-
MJPublicLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19703
|
-
MJScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19704
|
-
MJScheduledJobs_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20236
|
+
MJAPIKeys_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20237
|
+
MJArchiveConfigurations_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19705
20238
|
MJArtifactPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19706
20239
|
MJArtifactUses_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20240
|
+
MJArtifactVersions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20241
|
+
MJContentItemDuplicates_ResolvedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20242
|
+
MJContentProcessRuns_StartedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19707
20243
|
MJConversationDetailRatings_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19708
|
-
MJTestRunFeedbacks_ReviewerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19709
|
-
MJTestSuiteRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19710
|
-
MJUserSettings_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19711
|
-
MJListInvitations_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19712
|
-
MJListShares_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19713
20244
|
MJDashboardCategoryLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19714
20245
|
MJDashboardCategoryPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19715
20246
|
MJDashboardPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19716
|
-
|
|
19717
|
-
|
|
20247
|
+
MJDashboardUserPreferences_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20248
|
+
MJDashboardUserStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20249
|
+
MJKnowledgeHubSavedSearches_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20250
|
+
MJListCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20251
|
+
MJListInvitations_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20252
|
+
MJListShares_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19718
20253
|
MJMCPToolExecutionLogs_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19719
|
-
|
|
20254
|
+
MJMCPToolFavorites_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19720
20255
|
MJOAuthAuthorizationStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19721
20256
|
MJOpenAppInstallHistories_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19722
20257
|
MJOpenApps_InstalledByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19723
|
-
|
|
19724
|
-
|
|
19725
|
-
|
|
19726
|
-
MJTagAuditLogs_PerformedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19727
|
-
MJArchiveConfigurations_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19728
|
-
MJMCPToolFavorites_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20258
|
+
MJPublicLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20259
|
+
MJReportUserStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20260
|
+
MJResourceLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19729
20261
|
MJResourcePermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20262
|
+
MJScheduledActions_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20263
|
+
MJScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20264
|
+
MJScheduledJobs_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20265
|
+
MJSearchScopes_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20266
|
+
MJTagAuditLogs_PerformedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19730
20267
|
MJTagSuggestions_ReviewedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19731
|
-
|
|
19732
|
-
|
|
19733
|
-
|
|
20268
|
+
MJTestRunFeedbacks_ReviewerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20269
|
+
MJTestSuiteRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20270
|
+
MJUserNotificationPreferences_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20271
|
+
MJUserSettings_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20272
|
+
MJVersionLabelRestores_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19734
20273
|
MJAccessControlRules_GrantedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20274
|
+
MJAIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20275
|
+
MJAPIKeys_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20276
|
+
MJArchiveRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20277
|
+
MJArtifactPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19735
20278
|
MJArtifacts_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19736
|
-
MJScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19737
20279
|
MJCollectionPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19738
|
-
|
|
19739
|
-
MJTestRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20280
|
+
MJConversationDetails_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19740
20281
|
MJDashboardCategoryPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19741
20282
|
MJDashboardPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19742
|
-
MJAPIKeys_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19743
|
-
MJMCPServerConnectionPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19744
|
-
MJVersionLabels_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19745
20283
|
MJDuplicateRuns_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19746
20284
|
MJFileStorageAccountPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19747
|
-
|
|
19748
|
-
|
|
20285
|
+
MJMCPServerConnectionPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20286
|
+
MJResourcePermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20287
|
+
MJScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20288
|
+
MJTestRuns_RunByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20289
|
+
MJVersionLabels_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19749
20290
|
MJAIAgentPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20291
|
+
MJAIAgentRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19750
20292
|
MJCollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19751
20293
|
MJCollections_OwnerIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19752
20294
|
MJRecordMergeLogs_InitiatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19753
|
-
|
|
20295
|
+
MJSearchExecutionLogs_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20296
|
+
MJSearchScopePermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19754
20297
|
MJAIAgentExamples_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20298
|
+
MJTasks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19755
20299
|
MJAIAgents_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19756
20300
|
CreateMJUser(input: CreateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19757
20301
|
UpdateMJUser(input: UpdateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -19768,8 +20312,8 @@ export declare class MJVectorDatabase_ {
|
|
|
19768
20312
|
Configuration?: string;
|
|
19769
20313
|
CredentialID?: string;
|
|
19770
20314
|
Credential?: string;
|
|
19771
|
-
MJVectorIndexes_VectorDatabaseIDArray: MJVectorIndex_[];
|
|
19772
20315
|
MJEntityDocuments_VectorDatabaseIDArray: MJEntityDocument_[];
|
|
20316
|
+
MJVectorIndexes_VectorDatabaseIDArray: MJVectorIndex_[];
|
|
19773
20317
|
}
|
|
19774
20318
|
export declare class CreateMJVectorDatabaseInput {
|
|
19775
20319
|
ID?: string;
|
|
@@ -19806,8 +20350,8 @@ export declare class MJVectorDatabaseResolver extends ResolverBase {
|
|
|
19806
20350
|
RunMJVectorDatabaseViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19807
20351
|
RunMJVectorDatabaseDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19808
20352
|
MJVectorDatabase(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJVectorDatabase_ | null>;
|
|
19809
|
-
MJVectorIndexes_VectorDatabaseIDArray(mjvectordatabase_: MJVectorDatabase_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19810
20353
|
MJEntityDocuments_VectorDatabaseIDArray(mjvectordatabase_: MJVectorDatabase_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20354
|
+
MJVectorIndexes_VectorDatabaseIDArray(mjvectordatabase_: MJVectorDatabase_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19811
20355
|
CreateMJVectorDatabase(input: CreateMJVectorDatabaseInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19812
20356
|
UpdateMJVectorDatabase(input: UpdateMJVectorDatabaseInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19813
20357
|
DeleteMJVectorDatabase(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -19827,8 +20371,9 @@ export declare class MJVectorIndex_ {
|
|
|
19827
20371
|
VectorDatabase: string;
|
|
19828
20372
|
EmbeddingModel: string;
|
|
19829
20373
|
MJEntityRecordDocuments_VectorIndexIDArray: MJEntityRecordDocument_[];
|
|
19830
|
-
|
|
20374
|
+
MJSearchScopeExternalIndexes_VectorIndexIDArray: MJSearchScopeExternalIndex_[];
|
|
19831
20375
|
MJContentTypes_VectorIndexIDArray: MJContentType_[];
|
|
20376
|
+
MJEntityDocuments_VectorIndexIDArray: MJEntityDocument_[];
|
|
19832
20377
|
MJContentSources_VectorIndexIDArray: MJContentSource_[];
|
|
19833
20378
|
}
|
|
19834
20379
|
export declare class CreateMJVectorIndexInput {
|
|
@@ -19871,8 +20416,9 @@ export declare class MJVectorIndexResolver extends ResolverBase {
|
|
|
19871
20416
|
RunMJVectorIndexDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19872
20417
|
MJVectorIndex(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJVectorIndex_ | null>;
|
|
19873
20418
|
MJEntityRecordDocuments_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19874
|
-
|
|
20419
|
+
MJSearchScopeExternalIndexes_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19875
20420
|
MJContentTypes_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20421
|
+
MJEntityDocuments_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19876
20422
|
MJContentSources_VectorIndexIDArray(mjvectorindex_: MJVectorIndex_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19877
20423
|
CreateMJVectorIndex(input: CreateMJVectorIndexInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19878
20424
|
UpdateMJVectorIndex(input: UpdateMJVectorIndexInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|