@memberjunction/server 5.41.0 → 5.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agentSessions/SessionJanitor.d.ts.map +1 -1
- package/dist/agentSessions/SessionJanitor.js +5 -1
- package/dist/agentSessions/SessionJanitor.js.map +1 -1
- package/dist/agentSessions/SessionManager.d.ts +15 -2
- package/dist/agentSessions/SessionManager.d.ts.map +1 -1
- package/dist/agentSessions/SessionManager.js +50 -11
- package/dist/agentSessions/SessionManager.js.map +1 -1
- package/dist/agentSessions/index.d.ts +1 -0
- package/dist/agentSessions/index.d.ts.map +1 -1
- package/dist/agentSessions/index.js +5 -0
- package/dist/agentSessions/index.js.map +1 -1
- package/dist/agentSessions/remoteBrowserGoalEngine.d.ts +102 -0
- package/dist/agentSessions/remoteBrowserGoalEngine.d.ts.map +1 -0
- package/dist/agentSessions/remoteBrowserGoalEngine.js +164 -0
- package/dist/agentSessions/remoteBrowserGoalEngine.js.map +1 -0
- package/dist/agentSessions/remoteBrowserGoalRegistry.d.ts +66 -0
- package/dist/agentSessions/remoteBrowserGoalRegistry.d.ts.map +1 -0
- package/dist/agentSessions/remoteBrowserGoalRegistry.js +86 -0
- package/dist/agentSessions/remoteBrowserGoalRegistry.js.map +1 -0
- package/dist/auth/initializeProviders.d.ts.map +1 -1
- package/dist/auth/initializeProviders.js +4 -7
- package/dist/auth/initializeProviders.js.map +1 -1
- package/dist/config.d.ts +7 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +12 -2
- package/dist/config.js.map +1 -1
- package/dist/generated/generated.d.ts +612 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +6934 -3626
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +38 -17
- package/dist/index.js.map +1 -1
- package/dist/integration/CustomColumnPromoter.d.ts +108 -0
- package/dist/integration/CustomColumnPromoter.d.ts.map +1 -0
- package/dist/integration/CustomColumnPromoter.js +508 -0
- package/dist/integration/CustomColumnPromoter.js.map +1 -0
- package/dist/logging/StartupLogger.d.ts +57 -1
- package/dist/logging/StartupLogger.d.ts.map +1 -1
- package/dist/logging/StartupLogger.js +115 -6
- package/dist/logging/StartupLogger.js.map +1 -1
- package/dist/resolvers/ExecuteRemoteOperationResolver.d.ts +46 -0
- package/dist/resolvers/ExecuteRemoteOperationResolver.d.ts.map +1 -0
- package/dist/resolvers/ExecuteRemoteOperationResolver.js +192 -0
- package/dist/resolvers/ExecuteRemoteOperationResolver.js.map +1 -0
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts +101 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts.map +1 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.js +629 -58
- package/dist/resolvers/IntegrationDiscoveryResolver.js.map +1 -1
- package/dist/resolvers/RealtimeBridgeResolver.d.ts +130 -0
- package/dist/resolvers/RealtimeBridgeResolver.d.ts.map +1 -0
- package/dist/resolvers/RealtimeBridgeResolver.js +580 -0
- package/dist/resolvers/RealtimeBridgeResolver.js.map +1 -0
- package/dist/resolvers/RemoteBrowserActionResolver.d.ts +78 -5
- package/dist/resolvers/RemoteBrowserActionResolver.d.ts.map +1 -1
- package/dist/resolvers/RemoteBrowserActionResolver.js +227 -15
- package/dist/resolvers/RemoteBrowserActionResolver.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +0 -7
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/dist/resolvers/RunTemplateResolver.d.ts +8 -0
- package/dist/resolvers/RunTemplateResolver.d.ts.map +1 -1
- package/dist/resolvers/RunTemplateResolver.js +8 -0
- package/dist/resolvers/RunTemplateResolver.js.map +1 -1
- package/dist/rest/setupRESTEndpoints.d.ts.map +1 -1
- package/dist/rest/setupRESTEndpoints.js +5 -3
- package/dist/rest/setupRESTEndpoints.js.map +1 -1
- package/package.json +83 -78
- package/src/__tests__/RealtimeBridgeResolver.test.ts +100 -0
- package/src/__tests__/RemoteBrowserAudioStream.test.ts +8 -1
- package/src/__tests__/RemoteBrowserGoalEngine.test.ts +144 -0
- package/src/__tests__/remoteBrowserGoalRegistry.test.ts +81 -0
- package/src/agentSessions/SessionJanitor.ts +15 -1
- package/src/agentSessions/SessionManager.ts +59 -10
- package/src/agentSessions/index.ts +5 -0
- package/src/agentSessions/remoteBrowserGoalEngine.ts +191 -0
- package/src/agentSessions/remoteBrowserGoalRegistry.ts +122 -0
- package/src/auth/initializeProviders.ts +4 -7
- package/src/config.ts +13 -2
- package/src/generated/generated.ts +2502 -198
- package/src/index.ts +38 -17
- package/src/integration/CustomColumnPromoter.ts +597 -0
- package/src/logging/StartupLogger.ts +130 -6
- package/src/resolvers/ExecuteRemoteOperationResolver.ts +164 -0
- package/src/resolvers/IntegrationDiscoveryResolver.ts +490 -53
- package/src/resolvers/RealtimeBridgeResolver.ts +493 -0
- package/src/resolvers/RemoteBrowserActionResolver.ts +232 -17
- package/src/resolvers/RunAIAgentResolver.ts +1 -9
- package/src/resolvers/RunTemplateResolver.ts +8 -0
- package/src/rest/setupRESTEndpoints.ts +5 -3
|
@@ -267,6 +267,7 @@ export declare class MJActionExecutionLog_ {
|
|
|
267
267
|
Message?: string;
|
|
268
268
|
Action: string;
|
|
269
269
|
User: string;
|
|
270
|
+
MJProcessRunDetails_ActionExecutionLogIDArray: MJProcessRunDetail_[];
|
|
270
271
|
}
|
|
271
272
|
export declare class CreateMJActionExecutionLogInput {
|
|
272
273
|
ID?: string;
|
|
@@ -307,6 +308,7 @@ export declare class MJActionExecutionLogResolver extends ResolverBase {
|
|
|
307
308
|
RunMJActionExecutionLogViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
308
309
|
RunMJActionExecutionLogDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
309
310
|
MJActionExecutionLog(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJActionExecutionLog_ | null>;
|
|
311
|
+
MJProcessRunDetails_ActionExecutionLogIDArray(mjactionexecutionlog_: MJActionExecutionLog_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
310
312
|
CreateMJActionExecutionLog(input: CreateMJActionExecutionLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
311
313
|
UpdateMJActionExecutionLog(input: UpdateMJActionExecutionLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
312
314
|
DeleteMJActionExecutionLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -555,6 +557,7 @@ export declare class MJAction_ {
|
|
|
555
557
|
MJActionExecutionLogs_ActionIDArray: MJActionExecutionLog_[];
|
|
556
558
|
MJActionAuthorizations_ActionIDArray: MJActionAuthorization_[];
|
|
557
559
|
MJActions_ParentIDArray: MJAction_[];
|
|
560
|
+
MJRecordProcesses_ActionIDArray: MJRecordProcess_[];
|
|
558
561
|
}
|
|
559
562
|
export declare class CreateMJActionInput {
|
|
560
563
|
ID?: string;
|
|
@@ -639,6 +642,7 @@ export declare class MJActionResolver extends ResolverBase {
|
|
|
639
642
|
MJActionExecutionLogs_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
640
643
|
MJActionAuthorizations_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
641
644
|
MJActions_ParentIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
645
|
+
MJRecordProcesses_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
642
646
|
CreateMJAction(input: CreateMJActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
643
647
|
UpdateMJAction(input: UpdateMJActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
644
648
|
DeleteMJAction(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2167,6 +2171,7 @@ export declare class MJAIAgentRun_ {
|
|
|
2167
2171
|
MJAIAgentRequests_ResumingAgentRunIDArray: MJAIAgentRequest_[];
|
|
2168
2172
|
MJAIPromptRuns_AgentRunIDArray: MJAIPromptRun_[];
|
|
2169
2173
|
MJAIAgentRuns_LastRunIDArray: MJAIAgentRun_[];
|
|
2174
|
+
MJProcessRunDetails_AIAgentRunIDArray: MJProcessRunDetail_[];
|
|
2170
2175
|
}
|
|
2171
2176
|
export declare class CreateMJAIAgentRunInput {
|
|
2172
2177
|
ID?: string;
|
|
@@ -2294,6 +2299,7 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
2294
2299
|
MJAIAgentRequests_ResumingAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2295
2300
|
MJAIPromptRuns_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2296
2301
|
MJAIAgentRuns_LastRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2302
|
+
MJProcessRunDetails_AIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2297
2303
|
CreateMJAIAgentRun(input: CreateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2298
2304
|
UpdateMJAIAgentRun(input: UpdateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2299
2305
|
DeleteMJAIAgentRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2982,6 +2988,7 @@ export declare class MJAIAgent_ {
|
|
|
2982
2988
|
MJAIAgentCoAgents_CoAgentIDArray: MJAIAgentCoAgent_[];
|
|
2983
2989
|
MJAIAgentCoAgents_TargetAgentIDArray: MJAIAgentCoAgent_[];
|
|
2984
2990
|
MJAIBridgeAgentIdentities_AgentIDArray: MJAIBridgeAgentIdentity_[];
|
|
2991
|
+
MJRecordProcesses_AgentIDArray: MJRecordProcess_[];
|
|
2985
2992
|
}
|
|
2986
2993
|
export declare class CreateMJAIAgentInput {
|
|
2987
2994
|
ID?: string;
|
|
@@ -3170,6 +3177,7 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
3170
3177
|
MJAIAgentCoAgents_CoAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3171
3178
|
MJAIAgentCoAgents_TargetAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3172
3179
|
MJAIBridgeAgentIdentities_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3180
|
+
MJRecordProcesses_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3173
3181
|
CreateMJAIAgent(input: CreateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3174
3182
|
UpdateMJAIAgent(input: UpdateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3175
3183
|
DeleteMJAIAgent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4938,6 +4946,7 @@ export declare class MJAIPrompt_ {
|
|
|
4938
4946
|
MJAIPromptRuns_JudgeIDArray: MJAIPromptRun_[];
|
|
4939
4947
|
MJAIAgents_ContextCompressionPromptIDArray: MJAIAgent_[];
|
|
4940
4948
|
MJActions_DefaultCompactPromptIDArray: MJAction_[];
|
|
4949
|
+
MJRecordProcesses_PromptIDArray: MJRecordProcess_[];
|
|
4941
4950
|
}
|
|
4942
4951
|
export declare class CreateMJAIPromptInput {
|
|
4943
4952
|
ID?: string;
|
|
@@ -5078,6 +5087,7 @@ export declare class MJAIPromptResolver extends ResolverBase {
|
|
|
5078
5087
|
MJAIPromptRuns_JudgeIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5079
5088
|
MJAIAgents_ContextCompressionPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5080
5089
|
MJActions_DefaultCompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5090
|
+
MJRecordProcesses_PromptIDArray(mjaiprompt_: MJAIPrompt_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5081
5091
|
CreateMJAIPrompt(input: CreateMJAIPromptInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5082
5092
|
UpdateMJAIPrompt(input: UpdateMJAIPromptInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5083
5093
|
DeleteMJAIPrompt(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11384,6 +11394,10 @@ export declare class MJEntity_ {
|
|
|
11384
11394
|
MJEntityFormOverrides_EntityIDArray: MJEntityFormOverride_[];
|
|
11385
11395
|
MJClusterAnalysis_EntityIDArray: MJClusterAnalysis_[];
|
|
11386
11396
|
MJSignatureRequests_EntityIDArray: MJSignatureRequest_[];
|
|
11397
|
+
MJProcessRunDetails_EntityIDArray: MJProcessRunDetail_[];
|
|
11398
|
+
MJProcessRuns_EntityIDArray: MJProcessRun_[];
|
|
11399
|
+
MJRecordProcessWatermarks_EntityIDArray: MJRecordProcessWatermark_[];
|
|
11400
|
+
MJRecordProcesses_EntityIDArray: MJRecordProcess_[];
|
|
11387
11401
|
}
|
|
11388
11402
|
export declare class CreateMJEntityInput {
|
|
11389
11403
|
ID?: string;
|
|
@@ -11591,6 +11605,10 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
11591
11605
|
MJEntityFormOverrides_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11592
11606
|
MJClusterAnalysis_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11593
11607
|
MJSignatureRequests_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11608
|
+
MJProcessRunDetails_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11609
|
+
MJProcessRuns_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11610
|
+
MJRecordProcessWatermarks_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11611
|
+
MJRecordProcesses_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11594
11612
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11595
11613
|
UpdateMJEntity(input: UpdateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11596
11614
|
DeleteMJEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11691,6 +11709,7 @@ export declare class MJEntityActionInvocation_ {
|
|
|
11691
11709
|
Status: string;
|
|
11692
11710
|
_mj__CreatedAt: Date;
|
|
11693
11711
|
_mj__UpdatedAt: Date;
|
|
11712
|
+
RuntimeUXDriverClass?: string;
|
|
11694
11713
|
EntityAction: string;
|
|
11695
11714
|
InvocationType: string;
|
|
11696
11715
|
}
|
|
@@ -11699,6 +11718,7 @@ export declare class CreateMJEntityActionInvocationInput {
|
|
|
11699
11718
|
EntityActionID?: string;
|
|
11700
11719
|
InvocationTypeID?: string;
|
|
11701
11720
|
Status?: string;
|
|
11721
|
+
RuntimeUXDriverClass: string | null;
|
|
11702
11722
|
RestoreContext___?: RestoreContextInput;
|
|
11703
11723
|
}
|
|
11704
11724
|
export declare class UpdateMJEntityActionInvocationInput {
|
|
@@ -11706,6 +11726,7 @@ export declare class UpdateMJEntityActionInvocationInput {
|
|
|
11706
11726
|
EntityActionID?: string;
|
|
11707
11727
|
InvocationTypeID?: string;
|
|
11708
11728
|
Status?: string;
|
|
11729
|
+
RuntimeUXDriverClass?: string | null;
|
|
11709
11730
|
OldValues___?: KeyValuePairInput[];
|
|
11710
11731
|
RestoreContext___?: RestoreContextInput;
|
|
11711
11732
|
}
|
|
@@ -13798,6 +13819,12 @@ export declare class MJIntegrationObject_ {
|
|
|
13798
13819
|
DeleteIDLocation?: string;
|
|
13799
13820
|
IncrementalWatermarkField?: string;
|
|
13800
13821
|
MetadataSource: string;
|
|
13822
|
+
SupportsCreate: boolean;
|
|
13823
|
+
SupportsUpdate: boolean;
|
|
13824
|
+
SupportsDelete: boolean;
|
|
13825
|
+
SyncStrategy?: string;
|
|
13826
|
+
ContentHashApplicable: boolean;
|
|
13827
|
+
StableOrderingKey?: string;
|
|
13801
13828
|
Integration: string;
|
|
13802
13829
|
MJIntegrationObjectFields_IntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
13803
13830
|
MJIntegrationObjectFields_RelatedIntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
@@ -13838,6 +13865,12 @@ export declare class CreateMJIntegrationObjectInput {
|
|
|
13838
13865
|
DeleteIDLocation: string | null;
|
|
13839
13866
|
IncrementalWatermarkField: string | null;
|
|
13840
13867
|
MetadataSource?: string;
|
|
13868
|
+
SupportsCreate?: boolean;
|
|
13869
|
+
SupportsUpdate?: boolean;
|
|
13870
|
+
SupportsDelete?: boolean;
|
|
13871
|
+
SyncStrategy: string | null;
|
|
13872
|
+
ContentHashApplicable?: boolean;
|
|
13873
|
+
StableOrderingKey: string | null;
|
|
13841
13874
|
RestoreContext___?: RestoreContextInput;
|
|
13842
13875
|
}
|
|
13843
13876
|
export declare class UpdateMJIntegrationObjectInput {
|
|
@@ -13876,6 +13909,12 @@ export declare class UpdateMJIntegrationObjectInput {
|
|
|
13876
13909
|
DeleteIDLocation?: string | null;
|
|
13877
13910
|
IncrementalWatermarkField?: string | null;
|
|
13878
13911
|
MetadataSource?: string;
|
|
13912
|
+
SupportsCreate?: boolean;
|
|
13913
|
+
SupportsUpdate?: boolean;
|
|
13914
|
+
SupportsDelete?: boolean;
|
|
13915
|
+
SyncStrategy?: string | null;
|
|
13916
|
+
ContentHashApplicable?: boolean;
|
|
13917
|
+
StableOrderingKey?: string | null;
|
|
13879
13918
|
OldValues___?: KeyValuePairInput[];
|
|
13880
13919
|
RestoreContext___?: RestoreContextInput;
|
|
13881
13920
|
}
|
|
@@ -14009,6 +14048,7 @@ export declare class MJIntegration_ {
|
|
|
14009
14048
|
ID: string;
|
|
14010
14049
|
CredentialTypeID?: string;
|
|
14011
14050
|
Icon?: string;
|
|
14051
|
+
Configuration?: string;
|
|
14012
14052
|
CredentialType?: string;
|
|
14013
14053
|
MJCompanyIntegrations_IntegrationIDArray: MJCompanyIntegration_[];
|
|
14014
14054
|
MJIntegrationURLFormats_IntegrationIDArray: MJIntegrationURLFormat_[];
|
|
@@ -14026,6 +14066,7 @@ export declare class CreateMJIntegrationInput {
|
|
|
14026
14066
|
ID?: string;
|
|
14027
14067
|
CredentialTypeID: string | null;
|
|
14028
14068
|
Icon: string | null;
|
|
14069
|
+
Configuration: string | null;
|
|
14029
14070
|
RestoreContext___?: RestoreContextInput;
|
|
14030
14071
|
}
|
|
14031
14072
|
export declare class UpdateMJIntegrationInput {
|
|
@@ -14039,6 +14080,7 @@ export declare class UpdateMJIntegrationInput {
|
|
|
14039
14080
|
ID: string;
|
|
14040
14081
|
CredentialTypeID?: string | null;
|
|
14041
14082
|
Icon?: string | null;
|
|
14083
|
+
Configuration?: string | null;
|
|
14042
14084
|
OldValues___?: KeyValuePairInput[];
|
|
14043
14085
|
RestoreContext___?: RestoreContextInput;
|
|
14044
14086
|
}
|
|
@@ -14439,6 +14481,7 @@ export declare class MJList_ {
|
|
|
14439
14481
|
MJListDetails_ListIDArray: MJListDetail_[];
|
|
14440
14482
|
MJListInvitations_ListIDArray: MJListInvitation_[];
|
|
14441
14483
|
MJListShares_ListIDArray: MJListShare_[];
|
|
14484
|
+
MJRecordProcesses_ScopeListIDArray: MJRecordProcess_[];
|
|
14442
14485
|
}
|
|
14443
14486
|
export declare class CreateMJListInput {
|
|
14444
14487
|
ID?: string;
|
|
@@ -14493,6 +14536,7 @@ export declare class MJListResolver extends ResolverBase {
|
|
|
14493
14536
|
MJListDetails_ListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14494
14537
|
MJListInvitations_ListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14495
14538
|
MJListShares_ListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14539
|
+
MJRecordProcesses_ScopeListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14496
14540
|
CreateMJList(input: CreateMJListInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14497
14541
|
UpdateMJList(input: UpdateMJListInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14498
14542
|
DeleteMJList(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15719,6 +15763,7 @@ export declare class MJOpenApp_ {
|
|
|
15719
15763
|
Status: string;
|
|
15720
15764
|
_mj__CreatedAt: Date;
|
|
15721
15765
|
_mj__UpdatedAt: Date;
|
|
15766
|
+
Subpath?: string;
|
|
15722
15767
|
InstalledByUser: string;
|
|
15723
15768
|
MJOpenAppDependencies_DependsOnAppIDArray: MJOpenAppDependency_[];
|
|
15724
15769
|
MJOpenAppDependencies_OpenAppIDArray: MJOpenAppDependency_[];
|
|
@@ -15743,6 +15788,7 @@ export declare class CreateMJOpenAppInput {
|
|
|
15743
15788
|
ConfigurationSchemaJSON: string | null;
|
|
15744
15789
|
InstalledByUserID?: string;
|
|
15745
15790
|
Status?: string;
|
|
15791
|
+
Subpath: string | null;
|
|
15746
15792
|
RestoreContext___?: RestoreContextInput;
|
|
15747
15793
|
}
|
|
15748
15794
|
export declare class UpdateMJOpenAppInput {
|
|
@@ -15764,6 +15810,7 @@ export declare class UpdateMJOpenAppInput {
|
|
|
15764
15810
|
ConfigurationSchemaJSON?: string | null;
|
|
15765
15811
|
InstalledByUserID?: string;
|
|
15766
15812
|
Status?: string;
|
|
15813
|
+
Subpath?: string | null;
|
|
15767
15814
|
OldValues___?: KeyValuePairInput[];
|
|
15768
15815
|
RestoreContext___?: RestoreContextInput;
|
|
15769
15816
|
}
|
|
@@ -15976,6 +16023,184 @@ export declare class MJPermissionDomainResolver extends ResolverBase {
|
|
|
15976
16023
|
UpdateMJPermissionDomain(input: UpdateMJPermissionDomainInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15977
16024
|
DeleteMJPermissionDomain(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15978
16025
|
}
|
|
16026
|
+
export declare class MJProcessRunDetail_ {
|
|
16027
|
+
ID: string;
|
|
16028
|
+
ProcessRunID: string;
|
|
16029
|
+
EntityID: string;
|
|
16030
|
+
RecordID: string;
|
|
16031
|
+
Status: string;
|
|
16032
|
+
StartedAt?: Date;
|
|
16033
|
+
CompletedAt?: Date;
|
|
16034
|
+
DurationMs?: number;
|
|
16035
|
+
AttemptCount: number;
|
|
16036
|
+
ResultPayload?: string;
|
|
16037
|
+
ErrorMessage?: string;
|
|
16038
|
+
ActionExecutionLogID?: string;
|
|
16039
|
+
AIAgentRunID?: string;
|
|
16040
|
+
_mj__CreatedAt: Date;
|
|
16041
|
+
_mj__UpdatedAt: Date;
|
|
16042
|
+
Entity: string;
|
|
16043
|
+
ActionExecutionLog?: string;
|
|
16044
|
+
AIAgentRun?: string;
|
|
16045
|
+
}
|
|
16046
|
+
export declare class CreateMJProcessRunDetailInput {
|
|
16047
|
+
ID?: string;
|
|
16048
|
+
ProcessRunID?: string;
|
|
16049
|
+
EntityID?: string;
|
|
16050
|
+
RecordID?: string;
|
|
16051
|
+
Status?: string;
|
|
16052
|
+
StartedAt: Date | null;
|
|
16053
|
+
CompletedAt: Date | null;
|
|
16054
|
+
DurationMs: number | null;
|
|
16055
|
+
AttemptCount?: number;
|
|
16056
|
+
ResultPayload: string | null;
|
|
16057
|
+
ErrorMessage: string | null;
|
|
16058
|
+
ActionExecutionLogID: string | null;
|
|
16059
|
+
AIAgentRunID: string | null;
|
|
16060
|
+
RestoreContext___?: RestoreContextInput;
|
|
16061
|
+
}
|
|
16062
|
+
export declare class UpdateMJProcessRunDetailInput {
|
|
16063
|
+
ID: string;
|
|
16064
|
+
ProcessRunID?: string;
|
|
16065
|
+
EntityID?: string;
|
|
16066
|
+
RecordID?: string;
|
|
16067
|
+
Status?: string;
|
|
16068
|
+
StartedAt?: Date | null;
|
|
16069
|
+
CompletedAt?: Date | null;
|
|
16070
|
+
DurationMs?: number | null;
|
|
16071
|
+
AttemptCount?: number;
|
|
16072
|
+
ResultPayload?: string | null;
|
|
16073
|
+
ErrorMessage?: string | null;
|
|
16074
|
+
ActionExecutionLogID?: string | null;
|
|
16075
|
+
AIAgentRunID?: string | null;
|
|
16076
|
+
OldValues___?: KeyValuePairInput[];
|
|
16077
|
+
RestoreContext___?: RestoreContextInput;
|
|
16078
|
+
}
|
|
16079
|
+
export declare class RunMJProcessRunDetailViewResult {
|
|
16080
|
+
Results: MJProcessRunDetail_[];
|
|
16081
|
+
UserViewRunID?: string;
|
|
16082
|
+
RowCount: number;
|
|
16083
|
+
TotalRowCount: number;
|
|
16084
|
+
ExecutionTime: number;
|
|
16085
|
+
ErrorMessage?: string;
|
|
16086
|
+
Success: boolean;
|
|
16087
|
+
}
|
|
16088
|
+
export declare class MJProcessRunDetailResolver extends ResolverBase {
|
|
16089
|
+
RunMJProcessRunDetailViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16090
|
+
RunMJProcessRunDetailViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16091
|
+
RunMJProcessRunDetailDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16092
|
+
MJProcessRunDetail(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJProcessRunDetail_ | null>;
|
|
16093
|
+
CreateMJProcessRunDetail(input: CreateMJProcessRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16094
|
+
UpdateMJProcessRunDetail(input: UpdateMJProcessRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16095
|
+
DeleteMJProcessRunDetail(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16096
|
+
}
|
|
16097
|
+
export declare class MJProcessRun_ {
|
|
16098
|
+
ID: string;
|
|
16099
|
+
RecordProcessID?: string;
|
|
16100
|
+
EntityID?: string;
|
|
16101
|
+
TriggeredBy: string;
|
|
16102
|
+
SourceType: string;
|
|
16103
|
+
SourceID?: string;
|
|
16104
|
+
SourceFilter?: string;
|
|
16105
|
+
ScheduledJobRunID?: string;
|
|
16106
|
+
Status: string;
|
|
16107
|
+
StartTime?: Date;
|
|
16108
|
+
EndTime?: Date;
|
|
16109
|
+
TotalItemCount?: number;
|
|
16110
|
+
ProcessedItems: number;
|
|
16111
|
+
SuccessCount: number;
|
|
16112
|
+
ErrorCount: number;
|
|
16113
|
+
SkippedCount: number;
|
|
16114
|
+
LastProcessedOffset?: number;
|
|
16115
|
+
LastProcessedKey?: string;
|
|
16116
|
+
BatchSize?: number;
|
|
16117
|
+
CancellationRequested: boolean;
|
|
16118
|
+
Configuration?: string;
|
|
16119
|
+
ErrorMessage?: string;
|
|
16120
|
+
StartedByUserID?: string;
|
|
16121
|
+
_mj__CreatedAt: Date;
|
|
16122
|
+
_mj__UpdatedAt: Date;
|
|
16123
|
+
DryRun: boolean;
|
|
16124
|
+
RecordProcess?: string;
|
|
16125
|
+
Entity?: string;
|
|
16126
|
+
ScheduledJobRun?: string;
|
|
16127
|
+
StartedByUser?: string;
|
|
16128
|
+
MJProcessRunDetails_ProcessRunIDArray: MJProcessRunDetail_[];
|
|
16129
|
+
}
|
|
16130
|
+
export declare class CreateMJProcessRunInput {
|
|
16131
|
+
ID?: string;
|
|
16132
|
+
RecordProcessID: string | null;
|
|
16133
|
+
EntityID: string | null;
|
|
16134
|
+
TriggeredBy?: string;
|
|
16135
|
+
SourceType?: string;
|
|
16136
|
+
SourceID: string | null;
|
|
16137
|
+
SourceFilter: string | null;
|
|
16138
|
+
ScheduledJobRunID: string | null;
|
|
16139
|
+
Status?: string;
|
|
16140
|
+
StartTime: Date | null;
|
|
16141
|
+
EndTime: Date | null;
|
|
16142
|
+
TotalItemCount: number | null;
|
|
16143
|
+
ProcessedItems?: number;
|
|
16144
|
+
SuccessCount?: number;
|
|
16145
|
+
ErrorCount?: number;
|
|
16146
|
+
SkippedCount?: number;
|
|
16147
|
+
LastProcessedOffset: number | null;
|
|
16148
|
+
LastProcessedKey: string | null;
|
|
16149
|
+
BatchSize: number | null;
|
|
16150
|
+
CancellationRequested?: boolean;
|
|
16151
|
+
Configuration: string | null;
|
|
16152
|
+
ErrorMessage: string | null;
|
|
16153
|
+
StartedByUserID: string | null;
|
|
16154
|
+
DryRun?: boolean;
|
|
16155
|
+
RestoreContext___?: RestoreContextInput;
|
|
16156
|
+
}
|
|
16157
|
+
export declare class UpdateMJProcessRunInput {
|
|
16158
|
+
ID: string;
|
|
16159
|
+
RecordProcessID?: string | null;
|
|
16160
|
+
EntityID?: string | null;
|
|
16161
|
+
TriggeredBy?: string;
|
|
16162
|
+
SourceType?: string;
|
|
16163
|
+
SourceID?: string | null;
|
|
16164
|
+
SourceFilter?: string | null;
|
|
16165
|
+
ScheduledJobRunID?: string | null;
|
|
16166
|
+
Status?: string;
|
|
16167
|
+
StartTime?: Date | null;
|
|
16168
|
+
EndTime?: Date | null;
|
|
16169
|
+
TotalItemCount?: number | null;
|
|
16170
|
+
ProcessedItems?: number;
|
|
16171
|
+
SuccessCount?: number;
|
|
16172
|
+
ErrorCount?: number;
|
|
16173
|
+
SkippedCount?: number;
|
|
16174
|
+
LastProcessedOffset?: number | null;
|
|
16175
|
+
LastProcessedKey?: string | null;
|
|
16176
|
+
BatchSize?: number | null;
|
|
16177
|
+
CancellationRequested?: boolean;
|
|
16178
|
+
Configuration?: string | null;
|
|
16179
|
+
ErrorMessage?: string | null;
|
|
16180
|
+
StartedByUserID?: string | null;
|
|
16181
|
+
DryRun?: boolean;
|
|
16182
|
+
OldValues___?: KeyValuePairInput[];
|
|
16183
|
+
RestoreContext___?: RestoreContextInput;
|
|
16184
|
+
}
|
|
16185
|
+
export declare class RunMJProcessRunViewResult {
|
|
16186
|
+
Results: MJProcessRun_[];
|
|
16187
|
+
UserViewRunID?: string;
|
|
16188
|
+
RowCount: number;
|
|
16189
|
+
TotalRowCount: number;
|
|
16190
|
+
ExecutionTime: number;
|
|
16191
|
+
ErrorMessage?: string;
|
|
16192
|
+
Success: boolean;
|
|
16193
|
+
}
|
|
16194
|
+
export declare class MJProcessRunResolver extends ResolverBase {
|
|
16195
|
+
RunMJProcessRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16196
|
+
RunMJProcessRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16197
|
+
RunMJProcessRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16198
|
+
MJProcessRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJProcessRun_ | null>;
|
|
16199
|
+
MJProcessRunDetails_ProcessRunIDArray(mjprocessrun_: MJProcessRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16200
|
+
CreateMJProcessRun(input: CreateMJProcessRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16201
|
+
UpdateMJProcessRun(input: UpdateMJProcessRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16202
|
+
DeleteMJProcessRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16203
|
+
}
|
|
15979
16204
|
export declare class MJProject_ {
|
|
15980
16205
|
ID: string;
|
|
15981
16206
|
EnvironmentID: string;
|
|
@@ -17355,6 +17580,385 @@ export declare class MJRecordMergeLogResolver extends ResolverBase {
|
|
|
17355
17580
|
UpdateMJRecordMergeLog(input: UpdateMJRecordMergeLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17356
17581
|
DeleteMJRecordMergeLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17357
17582
|
}
|
|
17583
|
+
export declare class MJRecordProcessCategory_ {
|
|
17584
|
+
ID: string;
|
|
17585
|
+
Name: string;
|
|
17586
|
+
Description?: string;
|
|
17587
|
+
ParentID?: string;
|
|
17588
|
+
_mj__CreatedAt: Date;
|
|
17589
|
+
_mj__UpdatedAt: Date;
|
|
17590
|
+
Parent?: string;
|
|
17591
|
+
RootParentID?: string;
|
|
17592
|
+
MJRecordProcessCategories_ParentIDArray: MJRecordProcessCategory_[];
|
|
17593
|
+
MJRecordProcesses_CategoryIDArray: MJRecordProcess_[];
|
|
17594
|
+
}
|
|
17595
|
+
export declare class CreateMJRecordProcessCategoryInput {
|
|
17596
|
+
ID?: string;
|
|
17597
|
+
Name?: string;
|
|
17598
|
+
Description: string | null;
|
|
17599
|
+
ParentID: string | null;
|
|
17600
|
+
RestoreContext___?: RestoreContextInput;
|
|
17601
|
+
}
|
|
17602
|
+
export declare class UpdateMJRecordProcessCategoryInput {
|
|
17603
|
+
ID: string;
|
|
17604
|
+
Name?: string;
|
|
17605
|
+
Description?: string | null;
|
|
17606
|
+
ParentID?: string | null;
|
|
17607
|
+
OldValues___?: KeyValuePairInput[];
|
|
17608
|
+
RestoreContext___?: RestoreContextInput;
|
|
17609
|
+
}
|
|
17610
|
+
export declare class RunMJRecordProcessCategoryViewResult {
|
|
17611
|
+
Results: MJRecordProcessCategory_[];
|
|
17612
|
+
UserViewRunID?: string;
|
|
17613
|
+
RowCount: number;
|
|
17614
|
+
TotalRowCount: number;
|
|
17615
|
+
ExecutionTime: number;
|
|
17616
|
+
ErrorMessage?: string;
|
|
17617
|
+
Success: boolean;
|
|
17618
|
+
}
|
|
17619
|
+
export declare class MJRecordProcessCategoryResolver extends ResolverBase {
|
|
17620
|
+
RunMJRecordProcessCategoryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17621
|
+
RunMJRecordProcessCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17622
|
+
RunMJRecordProcessCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17623
|
+
MJRecordProcessCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordProcessCategory_ | null>;
|
|
17624
|
+
MJRecordProcessCategories_ParentIDArray(mjrecordprocesscategory_: MJRecordProcessCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17625
|
+
MJRecordProcesses_CategoryIDArray(mjrecordprocesscategory_: MJRecordProcessCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17626
|
+
CreateMJRecordProcessCategory(input: CreateMJRecordProcessCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17627
|
+
UpdateMJRecordProcessCategory(input: UpdateMJRecordProcessCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17628
|
+
DeleteMJRecordProcessCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17629
|
+
}
|
|
17630
|
+
export declare class MJRecordProcessWatermark_ {
|
|
17631
|
+
ID: string;
|
|
17632
|
+
RecordProcessID: string;
|
|
17633
|
+
EntityID: string;
|
|
17634
|
+
RecordID: string;
|
|
17635
|
+
Hash: string;
|
|
17636
|
+
LastProcessedAt: Date;
|
|
17637
|
+
_mj__CreatedAt: Date;
|
|
17638
|
+
_mj__UpdatedAt: Date;
|
|
17639
|
+
RecordProcess: string;
|
|
17640
|
+
Entity: string;
|
|
17641
|
+
}
|
|
17642
|
+
export declare class CreateMJRecordProcessWatermarkInput {
|
|
17643
|
+
ID?: string;
|
|
17644
|
+
RecordProcessID?: string;
|
|
17645
|
+
EntityID?: string;
|
|
17646
|
+
RecordID?: string;
|
|
17647
|
+
Hash?: string;
|
|
17648
|
+
LastProcessedAt?: Date;
|
|
17649
|
+
RestoreContext___?: RestoreContextInput;
|
|
17650
|
+
}
|
|
17651
|
+
export declare class UpdateMJRecordProcessWatermarkInput {
|
|
17652
|
+
ID: string;
|
|
17653
|
+
RecordProcessID?: string;
|
|
17654
|
+
EntityID?: string;
|
|
17655
|
+
RecordID?: string;
|
|
17656
|
+
Hash?: string;
|
|
17657
|
+
LastProcessedAt?: Date;
|
|
17658
|
+
OldValues___?: KeyValuePairInput[];
|
|
17659
|
+
RestoreContext___?: RestoreContextInput;
|
|
17660
|
+
}
|
|
17661
|
+
export declare class RunMJRecordProcessWatermarkViewResult {
|
|
17662
|
+
Results: MJRecordProcessWatermark_[];
|
|
17663
|
+
UserViewRunID?: string;
|
|
17664
|
+
RowCount: number;
|
|
17665
|
+
TotalRowCount: number;
|
|
17666
|
+
ExecutionTime: number;
|
|
17667
|
+
ErrorMessage?: string;
|
|
17668
|
+
Success: boolean;
|
|
17669
|
+
}
|
|
17670
|
+
export declare class MJRecordProcessWatermarkResolver extends ResolverBase {
|
|
17671
|
+
RunMJRecordProcessWatermarkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17672
|
+
RunMJRecordProcessWatermarkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17673
|
+
RunMJRecordProcessWatermarkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17674
|
+
MJRecordProcessWatermark(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordProcessWatermark_ | null>;
|
|
17675
|
+
CreateMJRecordProcessWatermark(input: CreateMJRecordProcessWatermarkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17676
|
+
UpdateMJRecordProcessWatermark(input: UpdateMJRecordProcessWatermarkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17677
|
+
DeleteMJRecordProcessWatermark(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17678
|
+
}
|
|
17679
|
+
export declare class MJRecordProcess_ {
|
|
17680
|
+
ID: string;
|
|
17681
|
+
Name: string;
|
|
17682
|
+
Description?: string;
|
|
17683
|
+
CategoryID?: string;
|
|
17684
|
+
EntityID: string;
|
|
17685
|
+
Status: string;
|
|
17686
|
+
WorkType: string;
|
|
17687
|
+
ActionID?: string;
|
|
17688
|
+
AgentID?: string;
|
|
17689
|
+
PromptID?: string;
|
|
17690
|
+
ScopeType: string;
|
|
17691
|
+
ScopeViewID?: string;
|
|
17692
|
+
ScopeListID?: string;
|
|
17693
|
+
ScopeFilter?: string;
|
|
17694
|
+
OnChangeEnabled: boolean;
|
|
17695
|
+
OnChangeInvocationType?: string;
|
|
17696
|
+
OnChangeFilter?: string;
|
|
17697
|
+
ScheduleEnabled: boolean;
|
|
17698
|
+
CronExpression?: string;
|
|
17699
|
+
Timezone?: string;
|
|
17700
|
+
OnDemandEnabled: boolean;
|
|
17701
|
+
InputMapping?: string;
|
|
17702
|
+
OutputMapping?: string;
|
|
17703
|
+
SkipUnchanged: boolean;
|
|
17704
|
+
WatermarkStrategy?: string;
|
|
17705
|
+
BatchSize?: number;
|
|
17706
|
+
MaxConcurrency?: number;
|
|
17707
|
+
_mj__CreatedAt: Date;
|
|
17708
|
+
_mj__UpdatedAt: Date;
|
|
17709
|
+
Configuration?: string;
|
|
17710
|
+
Category?: string;
|
|
17711
|
+
Entity: string;
|
|
17712
|
+
Action?: string;
|
|
17713
|
+
Agent?: string;
|
|
17714
|
+
Prompt?: string;
|
|
17715
|
+
ScopeView?: string;
|
|
17716
|
+
ScopeList?: string;
|
|
17717
|
+
MJRecordProcessWatermarks_RecordProcessIDArray: MJRecordProcessWatermark_[];
|
|
17718
|
+
MJProcessRuns_RecordProcessIDArray: MJProcessRun_[];
|
|
17719
|
+
}
|
|
17720
|
+
export declare class CreateMJRecordProcessInput {
|
|
17721
|
+
ID?: string;
|
|
17722
|
+
Name?: string;
|
|
17723
|
+
Description: string | null;
|
|
17724
|
+
CategoryID: string | null;
|
|
17725
|
+
EntityID?: string;
|
|
17726
|
+
Status?: string;
|
|
17727
|
+
WorkType?: string;
|
|
17728
|
+
ActionID: string | null;
|
|
17729
|
+
AgentID: string | null;
|
|
17730
|
+
PromptID: string | null;
|
|
17731
|
+
ScopeType?: string;
|
|
17732
|
+
ScopeViewID: string | null;
|
|
17733
|
+
ScopeListID: string | null;
|
|
17734
|
+
ScopeFilter: string | null;
|
|
17735
|
+
OnChangeEnabled?: boolean;
|
|
17736
|
+
OnChangeInvocationType: string | null;
|
|
17737
|
+
OnChangeFilter: string | null;
|
|
17738
|
+
ScheduleEnabled?: boolean;
|
|
17739
|
+
CronExpression: string | null;
|
|
17740
|
+
Timezone?: string | null;
|
|
17741
|
+
OnDemandEnabled?: boolean;
|
|
17742
|
+
InputMapping: string | null;
|
|
17743
|
+
OutputMapping: string | null;
|
|
17744
|
+
SkipUnchanged?: boolean;
|
|
17745
|
+
WatermarkStrategy: string | null;
|
|
17746
|
+
BatchSize?: number | null;
|
|
17747
|
+
MaxConcurrency?: number | null;
|
|
17748
|
+
Configuration: string | null;
|
|
17749
|
+
RestoreContext___?: RestoreContextInput;
|
|
17750
|
+
}
|
|
17751
|
+
export declare class UpdateMJRecordProcessInput {
|
|
17752
|
+
ID: string;
|
|
17753
|
+
Name?: string;
|
|
17754
|
+
Description?: string | null;
|
|
17755
|
+
CategoryID?: string | null;
|
|
17756
|
+
EntityID?: string;
|
|
17757
|
+
Status?: string;
|
|
17758
|
+
WorkType?: string;
|
|
17759
|
+
ActionID?: string | null;
|
|
17760
|
+
AgentID?: string | null;
|
|
17761
|
+
PromptID?: string | null;
|
|
17762
|
+
ScopeType?: string;
|
|
17763
|
+
ScopeViewID?: string | null;
|
|
17764
|
+
ScopeListID?: string | null;
|
|
17765
|
+
ScopeFilter?: string | null;
|
|
17766
|
+
OnChangeEnabled?: boolean;
|
|
17767
|
+
OnChangeInvocationType?: string | null;
|
|
17768
|
+
OnChangeFilter?: string | null;
|
|
17769
|
+
ScheduleEnabled?: boolean;
|
|
17770
|
+
CronExpression?: string | null;
|
|
17771
|
+
Timezone?: string | null;
|
|
17772
|
+
OnDemandEnabled?: boolean;
|
|
17773
|
+
InputMapping?: string | null;
|
|
17774
|
+
OutputMapping?: string | null;
|
|
17775
|
+
SkipUnchanged?: boolean;
|
|
17776
|
+
WatermarkStrategy?: string | null;
|
|
17777
|
+
BatchSize?: number | null;
|
|
17778
|
+
MaxConcurrency?: number | null;
|
|
17779
|
+
Configuration?: string | null;
|
|
17780
|
+
OldValues___?: KeyValuePairInput[];
|
|
17781
|
+
RestoreContext___?: RestoreContextInput;
|
|
17782
|
+
}
|
|
17783
|
+
export declare class RunMJRecordProcessViewResult {
|
|
17784
|
+
Results: MJRecordProcess_[];
|
|
17785
|
+
UserViewRunID?: string;
|
|
17786
|
+
RowCount: number;
|
|
17787
|
+
TotalRowCount: number;
|
|
17788
|
+
ExecutionTime: number;
|
|
17789
|
+
ErrorMessage?: string;
|
|
17790
|
+
Success: boolean;
|
|
17791
|
+
}
|
|
17792
|
+
export declare class MJRecordProcessResolver extends ResolverBase {
|
|
17793
|
+
RunMJRecordProcessViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17794
|
+
RunMJRecordProcessViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17795
|
+
RunMJRecordProcessDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17796
|
+
MJRecordProcess(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordProcess_ | null>;
|
|
17797
|
+
MJRecordProcessWatermarks_RecordProcessIDArray(mjrecordprocess_: MJRecordProcess_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17798
|
+
MJProcessRuns_RecordProcessIDArray(mjrecordprocess_: MJRecordProcess_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17799
|
+
CreateMJRecordProcess(input: CreateMJRecordProcessInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17800
|
+
UpdateMJRecordProcess(input: UpdateMJRecordProcessInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17801
|
+
DeleteMJRecordProcess(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17802
|
+
}
|
|
17803
|
+
export declare class MJRemoteOperationCategory_ {
|
|
17804
|
+
ID: string;
|
|
17805
|
+
Name: string;
|
|
17806
|
+
Description?: string;
|
|
17807
|
+
ParentID?: string;
|
|
17808
|
+
_mj__CreatedAt: Date;
|
|
17809
|
+
_mj__UpdatedAt: Date;
|
|
17810
|
+
Parent?: string;
|
|
17811
|
+
RootParentID?: string;
|
|
17812
|
+
MJRemoteOperationCategories_ParentIDArray: MJRemoteOperationCategory_[];
|
|
17813
|
+
MJRemoteOperations_CategoryIDArray: MJRemoteOperation_[];
|
|
17814
|
+
}
|
|
17815
|
+
export declare class CreateMJRemoteOperationCategoryInput {
|
|
17816
|
+
ID?: string;
|
|
17817
|
+
Name?: string;
|
|
17818
|
+
Description: string | null;
|
|
17819
|
+
ParentID: string | null;
|
|
17820
|
+
RestoreContext___?: RestoreContextInput;
|
|
17821
|
+
}
|
|
17822
|
+
export declare class UpdateMJRemoteOperationCategoryInput {
|
|
17823
|
+
ID: string;
|
|
17824
|
+
Name?: string;
|
|
17825
|
+
Description?: string | null;
|
|
17826
|
+
ParentID?: string | null;
|
|
17827
|
+
OldValues___?: KeyValuePairInput[];
|
|
17828
|
+
RestoreContext___?: RestoreContextInput;
|
|
17829
|
+
}
|
|
17830
|
+
export declare class RunMJRemoteOperationCategoryViewResult {
|
|
17831
|
+
Results: MJRemoteOperationCategory_[];
|
|
17832
|
+
UserViewRunID?: string;
|
|
17833
|
+
RowCount: number;
|
|
17834
|
+
TotalRowCount: number;
|
|
17835
|
+
ExecutionTime: number;
|
|
17836
|
+
ErrorMessage?: string;
|
|
17837
|
+
Success: boolean;
|
|
17838
|
+
}
|
|
17839
|
+
export declare class MJRemoteOperationCategoryResolver extends ResolverBase {
|
|
17840
|
+
RunMJRemoteOperationCategoryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17841
|
+
RunMJRemoteOperationCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17842
|
+
RunMJRemoteOperationCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17843
|
+
MJRemoteOperationCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRemoteOperationCategory_ | null>;
|
|
17844
|
+
MJRemoteOperationCategories_ParentIDArray(mjremoteoperationcategory_: MJRemoteOperationCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17845
|
+
MJRemoteOperations_CategoryIDArray(mjremoteoperationcategory_: MJRemoteOperationCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17846
|
+
CreateMJRemoteOperationCategory(input: CreateMJRemoteOperationCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17847
|
+
UpdateMJRemoteOperationCategory(input: UpdateMJRemoteOperationCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17848
|
+
DeleteMJRemoteOperationCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17849
|
+
}
|
|
17850
|
+
export declare class MJRemoteOperation_ {
|
|
17851
|
+
ID: string;
|
|
17852
|
+
Name: string;
|
|
17853
|
+
OperationKey: string;
|
|
17854
|
+
CategoryID?: string;
|
|
17855
|
+
Description?: string;
|
|
17856
|
+
InputTypeName?: string;
|
|
17857
|
+
InputTypeDefinition?: string;
|
|
17858
|
+
InputTypeIsArray: boolean;
|
|
17859
|
+
OutputTypeName?: string;
|
|
17860
|
+
OutputTypeDefinition?: string;
|
|
17861
|
+
OutputTypeIsArray: boolean;
|
|
17862
|
+
ExecutionMode: string;
|
|
17863
|
+
RequiredScope?: string;
|
|
17864
|
+
RequiresSystemUser: boolean;
|
|
17865
|
+
GenerationType: string;
|
|
17866
|
+
Code?: string;
|
|
17867
|
+
CodeApprovalStatus: string;
|
|
17868
|
+
CodeApprovedByUserID?: string;
|
|
17869
|
+
CodeApprovedAt?: Date;
|
|
17870
|
+
ContractFingerprint?: string;
|
|
17871
|
+
Status: string;
|
|
17872
|
+
CacheTTLSeconds?: number;
|
|
17873
|
+
TimeoutMS?: number;
|
|
17874
|
+
MaxConcurrency?: number;
|
|
17875
|
+
_mj__CreatedAt: Date;
|
|
17876
|
+
_mj__UpdatedAt: Date;
|
|
17877
|
+
CodeLocked: boolean;
|
|
17878
|
+
CodeComments?: string;
|
|
17879
|
+
Libraries?: string;
|
|
17880
|
+
Category?: string;
|
|
17881
|
+
CodeApprovedByUser?: string;
|
|
17882
|
+
}
|
|
17883
|
+
export declare class CreateMJRemoteOperationInput {
|
|
17884
|
+
ID?: string;
|
|
17885
|
+
Name?: string;
|
|
17886
|
+
OperationKey?: string;
|
|
17887
|
+
CategoryID: string | null;
|
|
17888
|
+
Description: string | null;
|
|
17889
|
+
InputTypeName: string | null;
|
|
17890
|
+
InputTypeDefinition: string | null;
|
|
17891
|
+
InputTypeIsArray?: boolean;
|
|
17892
|
+
OutputTypeName: string | null;
|
|
17893
|
+
OutputTypeDefinition: string | null;
|
|
17894
|
+
OutputTypeIsArray?: boolean;
|
|
17895
|
+
ExecutionMode?: string;
|
|
17896
|
+
RequiredScope: string | null;
|
|
17897
|
+
RequiresSystemUser?: boolean;
|
|
17898
|
+
GenerationType?: string;
|
|
17899
|
+
Code: string | null;
|
|
17900
|
+
CodeApprovalStatus?: string;
|
|
17901
|
+
CodeApprovedByUserID: string | null;
|
|
17902
|
+
CodeApprovedAt: Date | null;
|
|
17903
|
+
ContractFingerprint: string | null;
|
|
17904
|
+
Status?: string;
|
|
17905
|
+
CacheTTLSeconds: number | null;
|
|
17906
|
+
TimeoutMS: number | null;
|
|
17907
|
+
MaxConcurrency: number | null;
|
|
17908
|
+
CodeLocked?: boolean;
|
|
17909
|
+
CodeComments: string | null;
|
|
17910
|
+
Libraries: string | null;
|
|
17911
|
+
RestoreContext___?: RestoreContextInput;
|
|
17912
|
+
}
|
|
17913
|
+
export declare class UpdateMJRemoteOperationInput {
|
|
17914
|
+
ID: string;
|
|
17915
|
+
Name?: string;
|
|
17916
|
+
OperationKey?: string;
|
|
17917
|
+
CategoryID?: string | null;
|
|
17918
|
+
Description?: string | null;
|
|
17919
|
+
InputTypeName?: string | null;
|
|
17920
|
+
InputTypeDefinition?: string | null;
|
|
17921
|
+
InputTypeIsArray?: boolean;
|
|
17922
|
+
OutputTypeName?: string | null;
|
|
17923
|
+
OutputTypeDefinition?: string | null;
|
|
17924
|
+
OutputTypeIsArray?: boolean;
|
|
17925
|
+
ExecutionMode?: string;
|
|
17926
|
+
RequiredScope?: string | null;
|
|
17927
|
+
RequiresSystemUser?: boolean;
|
|
17928
|
+
GenerationType?: string;
|
|
17929
|
+
Code?: string | null;
|
|
17930
|
+
CodeApprovalStatus?: string;
|
|
17931
|
+
CodeApprovedByUserID?: string | null;
|
|
17932
|
+
CodeApprovedAt?: Date | null;
|
|
17933
|
+
ContractFingerprint?: string | null;
|
|
17934
|
+
Status?: string;
|
|
17935
|
+
CacheTTLSeconds?: number | null;
|
|
17936
|
+
TimeoutMS?: number | null;
|
|
17937
|
+
MaxConcurrency?: number | null;
|
|
17938
|
+
CodeLocked?: boolean;
|
|
17939
|
+
CodeComments?: string | null;
|
|
17940
|
+
Libraries?: string | null;
|
|
17941
|
+
OldValues___?: KeyValuePairInput[];
|
|
17942
|
+
RestoreContext___?: RestoreContextInput;
|
|
17943
|
+
}
|
|
17944
|
+
export declare class RunMJRemoteOperationViewResult {
|
|
17945
|
+
Results: MJRemoteOperation_[];
|
|
17946
|
+
UserViewRunID?: string;
|
|
17947
|
+
RowCount: number;
|
|
17948
|
+
TotalRowCount: number;
|
|
17949
|
+
ExecutionTime: number;
|
|
17950
|
+
ErrorMessage?: string;
|
|
17951
|
+
Success: boolean;
|
|
17952
|
+
}
|
|
17953
|
+
export declare class MJRemoteOperationResolver extends ResolverBase {
|
|
17954
|
+
RunMJRemoteOperationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17955
|
+
RunMJRemoteOperationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17956
|
+
RunMJRemoteOperationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17957
|
+
MJRemoteOperation(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRemoteOperation_ | null>;
|
|
17958
|
+
CreateMJRemoteOperation(input: CreateMJRemoteOperationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17959
|
+
UpdateMJRemoteOperation(input: UpdateMJRemoteOperationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17960
|
+
DeleteMJRemoteOperation(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17961
|
+
}
|
|
17358
17962
|
export declare class MJReportCategory_ {
|
|
17359
17963
|
ID: string;
|
|
17360
17964
|
Name: string;
|
|
@@ -18083,6 +18687,7 @@ export declare class MJScheduledJobRun_ {
|
|
|
18083
18687
|
_mj__UpdatedAt: Date;
|
|
18084
18688
|
ScheduledJob: string;
|
|
18085
18689
|
ExecutedByUser?: string;
|
|
18690
|
+
MJProcessRuns_ScheduledJobRunIDArray: MJProcessRun_[];
|
|
18086
18691
|
MJAIAgentRuns_ScheduledJobRunIDArray: MJAIAgentRun_[];
|
|
18087
18692
|
MJCompanyIntegrationRuns_ScheduledJobRunIDArray: MJCompanyIntegrationRun_[];
|
|
18088
18693
|
}
|
|
@@ -18127,6 +18732,7 @@ export declare class MJScheduledJobRunResolver extends ResolverBase {
|
|
|
18127
18732
|
RunMJScheduledJobRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18128
18733
|
RunMJScheduledJobRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18129
18734
|
MJScheduledJobRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledJobRun_ | null>;
|
|
18735
|
+
MJProcessRuns_ScheduledJobRunIDArray(mjscheduledjobrun_: MJScheduledJobRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18130
18736
|
MJAIAgentRuns_ScheduledJobRunIDArray(mjscheduledjobrun_: MJScheduledJobRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18131
18737
|
MJCompanyIntegrationRuns_ScheduledJobRunIDArray(mjscheduledjobrun_: MJScheduledJobRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18132
18738
|
CreateMJScheduledJobRun(input: CreateMJScheduledJobRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -21622,6 +22228,7 @@ export declare class MJUserView_ {
|
|
|
21622
22228
|
MJEntityRelationships_DisplayUserViewIDArray: MJEntityRelationship_[];
|
|
21623
22229
|
MJUserViewRuns_UserViewIDArray: MJUserViewRun_[];
|
|
21624
22230
|
MJLists_SourceViewIDArray: MJList_[];
|
|
22231
|
+
MJRecordProcesses_ScopeViewIDArray: MJRecordProcess_[];
|
|
21625
22232
|
}
|
|
21626
22233
|
export declare class CreateMJUserViewInput {
|
|
21627
22234
|
ID?: string;
|
|
@@ -21693,6 +22300,7 @@ export declare class MJUserViewResolverBase extends ResolverBase {
|
|
|
21693
22300
|
MJEntityRelationships_DisplayUserViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21694
22301
|
MJUserViewRuns_UserViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21695
22302
|
MJLists_SourceViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
22303
|
+
MJRecordProcesses_ScopeViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21696
22304
|
CreateMJUserView(input: CreateMJUserViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21697
22305
|
UpdateMJUserView(input: UpdateMJUserViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21698
22306
|
DeleteMJUserView(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -21823,6 +22431,8 @@ export declare class MJUser_ {
|
|
|
21823
22431
|
MJMagicLinkInvites_CreatedByUserIDArray: MJMagicLinkInvite_[];
|
|
21824
22432
|
MJAIAgentSessions_UserIDArray: MJAIAgentSession_[];
|
|
21825
22433
|
MJAIAgentSessionBridgeParticipants_UserIDArray: MJAIAgentSessionBridgeParticipant_[];
|
|
22434
|
+
MJRemoteOperations_CodeApprovedByUserIDArray: MJRemoteOperation_[];
|
|
22435
|
+
MJProcessRuns_StartedByUserIDArray: MJProcessRun_[];
|
|
21826
22436
|
}
|
|
21827
22437
|
export declare class CreateMJUserInput {
|
|
21828
22438
|
ID?: string;
|
|
@@ -21977,6 +22587,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
21977
22587
|
MJMagicLinkInvites_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21978
22588
|
MJAIAgentSessions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21979
22589
|
MJAIAgentSessionBridgeParticipants_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
22590
|
+
MJRemoteOperations_CodeApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
22591
|
+
MJProcessRuns_StartedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21980
22592
|
CreateMJUser(input: CreateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21981
22593
|
UpdateMJUser(input: UpdateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21982
22594
|
DeleteMJUser(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|