@memberjunction/server 5.41.0 → 5.42.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/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 +591 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +6832 -3610
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +33 -16
- 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 +27 -0
- package/dist/resolvers/ExecuteRemoteOperationResolver.d.ts.map +1 -0
- package/dist/resolvers/ExecuteRemoteOperationResolver.js +136 -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 +544 -42
- package/dist/resolvers/IntegrationDiscoveryResolver.js.map +1 -1
- package/dist/resolvers/RealtimeBridgeResolver.d.ts +121 -0
- package/dist/resolvers/RealtimeBridgeResolver.d.ts.map +1 -0
- package/dist/resolvers/RealtimeBridgeResolver.js +533 -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/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/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 +2444 -205
- package/src/index.ts +33 -16
- package/src/integration/CustomColumnPromoter.ts +597 -0
- package/src/logging/StartupLogger.ts +130 -6
- package/src/resolvers/ExecuteRemoteOperationResolver.ts +108 -0
- package/src/resolvers/IntegrationDiscoveryResolver.ts +396 -37
- package/src/resolvers/RealtimeBridgeResolver.ts +450 -0
- package/src/resolvers/RemoteBrowserActionResolver.ts +232 -17
- package/src/resolvers/RunAIAgentResolver.ts +1 -9
- 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>;
|
|
@@ -13798,6 +13816,12 @@ export declare class MJIntegrationObject_ {
|
|
|
13798
13816
|
DeleteIDLocation?: string;
|
|
13799
13817
|
IncrementalWatermarkField?: string;
|
|
13800
13818
|
MetadataSource: string;
|
|
13819
|
+
SupportsCreate: boolean;
|
|
13820
|
+
SupportsUpdate: boolean;
|
|
13821
|
+
SupportsDelete: boolean;
|
|
13822
|
+
SyncStrategy?: string;
|
|
13823
|
+
ContentHashApplicable: boolean;
|
|
13824
|
+
StableOrderingKey?: string;
|
|
13801
13825
|
Integration: string;
|
|
13802
13826
|
MJIntegrationObjectFields_IntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
13803
13827
|
MJIntegrationObjectFields_RelatedIntegrationObjectIDArray: MJIntegrationObjectField_[];
|
|
@@ -13838,6 +13862,12 @@ export declare class CreateMJIntegrationObjectInput {
|
|
|
13838
13862
|
DeleteIDLocation: string | null;
|
|
13839
13863
|
IncrementalWatermarkField: string | null;
|
|
13840
13864
|
MetadataSource?: string;
|
|
13865
|
+
SupportsCreate?: boolean;
|
|
13866
|
+
SupportsUpdate?: boolean;
|
|
13867
|
+
SupportsDelete?: boolean;
|
|
13868
|
+
SyncStrategy: string | null;
|
|
13869
|
+
ContentHashApplicable?: boolean;
|
|
13870
|
+
StableOrderingKey: string | null;
|
|
13841
13871
|
RestoreContext___?: RestoreContextInput;
|
|
13842
13872
|
}
|
|
13843
13873
|
export declare class UpdateMJIntegrationObjectInput {
|
|
@@ -13876,6 +13906,12 @@ export declare class UpdateMJIntegrationObjectInput {
|
|
|
13876
13906
|
DeleteIDLocation?: string | null;
|
|
13877
13907
|
IncrementalWatermarkField?: string | null;
|
|
13878
13908
|
MetadataSource?: string;
|
|
13909
|
+
SupportsCreate?: boolean;
|
|
13910
|
+
SupportsUpdate?: boolean;
|
|
13911
|
+
SupportsDelete?: boolean;
|
|
13912
|
+
SyncStrategy?: string | null;
|
|
13913
|
+
ContentHashApplicable?: boolean;
|
|
13914
|
+
StableOrderingKey?: string | null;
|
|
13879
13915
|
OldValues___?: KeyValuePairInput[];
|
|
13880
13916
|
RestoreContext___?: RestoreContextInput;
|
|
13881
13917
|
}
|
|
@@ -14009,6 +14045,7 @@ export declare class MJIntegration_ {
|
|
|
14009
14045
|
ID: string;
|
|
14010
14046
|
CredentialTypeID?: string;
|
|
14011
14047
|
Icon?: string;
|
|
14048
|
+
Configuration?: string;
|
|
14012
14049
|
CredentialType?: string;
|
|
14013
14050
|
MJCompanyIntegrations_IntegrationIDArray: MJCompanyIntegration_[];
|
|
14014
14051
|
MJIntegrationURLFormats_IntegrationIDArray: MJIntegrationURLFormat_[];
|
|
@@ -14026,6 +14063,7 @@ export declare class CreateMJIntegrationInput {
|
|
|
14026
14063
|
ID?: string;
|
|
14027
14064
|
CredentialTypeID: string | null;
|
|
14028
14065
|
Icon: string | null;
|
|
14066
|
+
Configuration: string | null;
|
|
14029
14067
|
RestoreContext___?: RestoreContextInput;
|
|
14030
14068
|
}
|
|
14031
14069
|
export declare class UpdateMJIntegrationInput {
|
|
@@ -14039,6 +14077,7 @@ export declare class UpdateMJIntegrationInput {
|
|
|
14039
14077
|
ID: string;
|
|
14040
14078
|
CredentialTypeID?: string | null;
|
|
14041
14079
|
Icon?: string | null;
|
|
14080
|
+
Configuration?: string | null;
|
|
14042
14081
|
OldValues___?: KeyValuePairInput[];
|
|
14043
14082
|
RestoreContext___?: RestoreContextInput;
|
|
14044
14083
|
}
|
|
@@ -14439,6 +14478,7 @@ export declare class MJList_ {
|
|
|
14439
14478
|
MJListDetails_ListIDArray: MJListDetail_[];
|
|
14440
14479
|
MJListInvitations_ListIDArray: MJListInvitation_[];
|
|
14441
14480
|
MJListShares_ListIDArray: MJListShare_[];
|
|
14481
|
+
MJRecordProcesses_ScopeListIDArray: MJRecordProcess_[];
|
|
14442
14482
|
}
|
|
14443
14483
|
export declare class CreateMJListInput {
|
|
14444
14484
|
ID?: string;
|
|
@@ -14493,6 +14533,7 @@ export declare class MJListResolver extends ResolverBase {
|
|
|
14493
14533
|
MJListDetails_ListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14494
14534
|
MJListInvitations_ListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14495
14535
|
MJListShares_ListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14536
|
+
MJRecordProcesses_ScopeListIDArray(mjlist_: MJList_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
14496
14537
|
CreateMJList(input: CreateMJListInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14497
14538
|
UpdateMJList(input: UpdateMJListInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14498
14539
|
DeleteMJList(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -15976,6 +16017,181 @@ export declare class MJPermissionDomainResolver extends ResolverBase {
|
|
|
15976
16017
|
UpdateMJPermissionDomain(input: UpdateMJPermissionDomainInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15977
16018
|
DeleteMJPermissionDomain(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
15978
16019
|
}
|
|
16020
|
+
export declare class MJProcessRunDetail_ {
|
|
16021
|
+
ID: string;
|
|
16022
|
+
ProcessRunID: string;
|
|
16023
|
+
EntityID: string;
|
|
16024
|
+
RecordID: string;
|
|
16025
|
+
Status: string;
|
|
16026
|
+
StartedAt?: Date;
|
|
16027
|
+
CompletedAt?: Date;
|
|
16028
|
+
DurationMs?: number;
|
|
16029
|
+
AttemptCount: number;
|
|
16030
|
+
ResultPayload?: string;
|
|
16031
|
+
ErrorMessage?: string;
|
|
16032
|
+
ActionExecutionLogID?: string;
|
|
16033
|
+
AIAgentRunID?: string;
|
|
16034
|
+
_mj__CreatedAt: Date;
|
|
16035
|
+
_mj__UpdatedAt: Date;
|
|
16036
|
+
Entity: string;
|
|
16037
|
+
ActionExecutionLog?: string;
|
|
16038
|
+
AIAgentRun?: string;
|
|
16039
|
+
}
|
|
16040
|
+
export declare class CreateMJProcessRunDetailInput {
|
|
16041
|
+
ID?: string;
|
|
16042
|
+
ProcessRunID?: string;
|
|
16043
|
+
EntityID?: string;
|
|
16044
|
+
RecordID?: string;
|
|
16045
|
+
Status?: string;
|
|
16046
|
+
StartedAt: Date | null;
|
|
16047
|
+
CompletedAt: Date | null;
|
|
16048
|
+
DurationMs: number | null;
|
|
16049
|
+
AttemptCount?: number;
|
|
16050
|
+
ResultPayload: string | null;
|
|
16051
|
+
ErrorMessage: string | null;
|
|
16052
|
+
ActionExecutionLogID: string | null;
|
|
16053
|
+
AIAgentRunID: string | null;
|
|
16054
|
+
RestoreContext___?: RestoreContextInput;
|
|
16055
|
+
}
|
|
16056
|
+
export declare class UpdateMJProcessRunDetailInput {
|
|
16057
|
+
ID: string;
|
|
16058
|
+
ProcessRunID?: string;
|
|
16059
|
+
EntityID?: string;
|
|
16060
|
+
RecordID?: string;
|
|
16061
|
+
Status?: string;
|
|
16062
|
+
StartedAt?: Date | null;
|
|
16063
|
+
CompletedAt?: Date | null;
|
|
16064
|
+
DurationMs?: number | null;
|
|
16065
|
+
AttemptCount?: number;
|
|
16066
|
+
ResultPayload?: string | null;
|
|
16067
|
+
ErrorMessage?: string | null;
|
|
16068
|
+
ActionExecutionLogID?: string | null;
|
|
16069
|
+
AIAgentRunID?: string | null;
|
|
16070
|
+
OldValues___?: KeyValuePairInput[];
|
|
16071
|
+
RestoreContext___?: RestoreContextInput;
|
|
16072
|
+
}
|
|
16073
|
+
export declare class RunMJProcessRunDetailViewResult {
|
|
16074
|
+
Results: MJProcessRunDetail_[];
|
|
16075
|
+
UserViewRunID?: string;
|
|
16076
|
+
RowCount: number;
|
|
16077
|
+
TotalRowCount: number;
|
|
16078
|
+
ExecutionTime: number;
|
|
16079
|
+
ErrorMessage?: string;
|
|
16080
|
+
Success: boolean;
|
|
16081
|
+
}
|
|
16082
|
+
export declare class MJProcessRunDetailResolver extends ResolverBase {
|
|
16083
|
+
RunMJProcessRunDetailViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16084
|
+
RunMJProcessRunDetailViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16085
|
+
RunMJProcessRunDetailDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16086
|
+
MJProcessRunDetail(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJProcessRunDetail_ | null>;
|
|
16087
|
+
CreateMJProcessRunDetail(input: CreateMJProcessRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16088
|
+
UpdateMJProcessRunDetail(input: UpdateMJProcessRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16089
|
+
DeleteMJProcessRunDetail(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16090
|
+
}
|
|
16091
|
+
export declare class MJProcessRun_ {
|
|
16092
|
+
ID: string;
|
|
16093
|
+
RecordProcessID?: string;
|
|
16094
|
+
EntityID?: string;
|
|
16095
|
+
TriggeredBy: string;
|
|
16096
|
+
SourceType: string;
|
|
16097
|
+
SourceID?: string;
|
|
16098
|
+
SourceFilter?: string;
|
|
16099
|
+
ScheduledJobRunID?: string;
|
|
16100
|
+
Status: string;
|
|
16101
|
+
StartTime?: Date;
|
|
16102
|
+
EndTime?: Date;
|
|
16103
|
+
TotalItemCount?: number;
|
|
16104
|
+
ProcessedItems: number;
|
|
16105
|
+
SuccessCount: number;
|
|
16106
|
+
ErrorCount: number;
|
|
16107
|
+
SkippedCount: number;
|
|
16108
|
+
LastProcessedOffset?: number;
|
|
16109
|
+
LastProcessedKey?: string;
|
|
16110
|
+
BatchSize?: number;
|
|
16111
|
+
CancellationRequested: boolean;
|
|
16112
|
+
Configuration?: string;
|
|
16113
|
+
ErrorMessage?: string;
|
|
16114
|
+
StartedByUserID?: string;
|
|
16115
|
+
_mj__CreatedAt: Date;
|
|
16116
|
+
_mj__UpdatedAt: Date;
|
|
16117
|
+
RecordProcess?: string;
|
|
16118
|
+
Entity?: string;
|
|
16119
|
+
ScheduledJobRun?: string;
|
|
16120
|
+
StartedByUser?: string;
|
|
16121
|
+
MJProcessRunDetails_ProcessRunIDArray: MJProcessRunDetail_[];
|
|
16122
|
+
}
|
|
16123
|
+
export declare class CreateMJProcessRunInput {
|
|
16124
|
+
ID?: string;
|
|
16125
|
+
RecordProcessID: string | null;
|
|
16126
|
+
EntityID: string | null;
|
|
16127
|
+
TriggeredBy?: string;
|
|
16128
|
+
SourceType?: string;
|
|
16129
|
+
SourceID: string | null;
|
|
16130
|
+
SourceFilter: string | null;
|
|
16131
|
+
ScheduledJobRunID: string | null;
|
|
16132
|
+
Status?: string;
|
|
16133
|
+
StartTime: Date | null;
|
|
16134
|
+
EndTime: Date | null;
|
|
16135
|
+
TotalItemCount: number | null;
|
|
16136
|
+
ProcessedItems?: number;
|
|
16137
|
+
SuccessCount?: number;
|
|
16138
|
+
ErrorCount?: number;
|
|
16139
|
+
SkippedCount?: number;
|
|
16140
|
+
LastProcessedOffset: number | null;
|
|
16141
|
+
LastProcessedKey: string | null;
|
|
16142
|
+
BatchSize: number | null;
|
|
16143
|
+
CancellationRequested?: boolean;
|
|
16144
|
+
Configuration: string | null;
|
|
16145
|
+
ErrorMessage: string | null;
|
|
16146
|
+
StartedByUserID: string | null;
|
|
16147
|
+
RestoreContext___?: RestoreContextInput;
|
|
16148
|
+
}
|
|
16149
|
+
export declare class UpdateMJProcessRunInput {
|
|
16150
|
+
ID: string;
|
|
16151
|
+
RecordProcessID?: string | null;
|
|
16152
|
+
EntityID?: string | null;
|
|
16153
|
+
TriggeredBy?: string;
|
|
16154
|
+
SourceType?: string;
|
|
16155
|
+
SourceID?: string | null;
|
|
16156
|
+
SourceFilter?: string | null;
|
|
16157
|
+
ScheduledJobRunID?: string | null;
|
|
16158
|
+
Status?: string;
|
|
16159
|
+
StartTime?: Date | null;
|
|
16160
|
+
EndTime?: Date | null;
|
|
16161
|
+
TotalItemCount?: number | null;
|
|
16162
|
+
ProcessedItems?: number;
|
|
16163
|
+
SuccessCount?: number;
|
|
16164
|
+
ErrorCount?: number;
|
|
16165
|
+
SkippedCount?: number;
|
|
16166
|
+
LastProcessedOffset?: number | null;
|
|
16167
|
+
LastProcessedKey?: string | null;
|
|
16168
|
+
BatchSize?: number | null;
|
|
16169
|
+
CancellationRequested?: boolean;
|
|
16170
|
+
Configuration?: string | null;
|
|
16171
|
+
ErrorMessage?: string | null;
|
|
16172
|
+
StartedByUserID?: string | null;
|
|
16173
|
+
OldValues___?: KeyValuePairInput[];
|
|
16174
|
+
RestoreContext___?: RestoreContextInput;
|
|
16175
|
+
}
|
|
16176
|
+
export declare class RunMJProcessRunViewResult {
|
|
16177
|
+
Results: MJProcessRun_[];
|
|
16178
|
+
UserViewRunID?: string;
|
|
16179
|
+
RowCount: number;
|
|
16180
|
+
TotalRowCount: number;
|
|
16181
|
+
ExecutionTime: number;
|
|
16182
|
+
ErrorMessage?: string;
|
|
16183
|
+
Success: boolean;
|
|
16184
|
+
}
|
|
16185
|
+
export declare class MJProcessRunResolver extends ResolverBase {
|
|
16186
|
+
RunMJProcessRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16187
|
+
RunMJProcessRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16188
|
+
RunMJProcessRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
16189
|
+
MJProcessRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJProcessRun_ | null>;
|
|
16190
|
+
MJProcessRunDetails_ProcessRunIDArray(mjprocessrun_: MJProcessRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16191
|
+
CreateMJProcessRun(input: CreateMJProcessRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16192
|
+
UpdateMJProcessRun(input: UpdateMJProcessRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16193
|
+
DeleteMJProcessRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16194
|
+
}
|
|
15979
16195
|
export declare class MJProject_ {
|
|
15980
16196
|
ID: string;
|
|
15981
16197
|
EnvironmentID: string;
|
|
@@ -17355,6 +17571,373 @@ export declare class MJRecordMergeLogResolver extends ResolverBase {
|
|
|
17355
17571
|
UpdateMJRecordMergeLog(input: UpdateMJRecordMergeLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17356
17572
|
DeleteMJRecordMergeLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17357
17573
|
}
|
|
17574
|
+
export declare class MJRecordProcessCategory_ {
|
|
17575
|
+
ID: string;
|
|
17576
|
+
Name: string;
|
|
17577
|
+
Description?: string;
|
|
17578
|
+
ParentID?: string;
|
|
17579
|
+
_mj__CreatedAt: Date;
|
|
17580
|
+
_mj__UpdatedAt: Date;
|
|
17581
|
+
Parent?: string;
|
|
17582
|
+
RootParentID?: string;
|
|
17583
|
+
MJRecordProcessCategories_ParentIDArray: MJRecordProcessCategory_[];
|
|
17584
|
+
MJRecordProcesses_CategoryIDArray: MJRecordProcess_[];
|
|
17585
|
+
}
|
|
17586
|
+
export declare class CreateMJRecordProcessCategoryInput {
|
|
17587
|
+
ID?: string;
|
|
17588
|
+
Name?: string;
|
|
17589
|
+
Description: string | null;
|
|
17590
|
+
ParentID: string | null;
|
|
17591
|
+
RestoreContext___?: RestoreContextInput;
|
|
17592
|
+
}
|
|
17593
|
+
export declare class UpdateMJRecordProcessCategoryInput {
|
|
17594
|
+
ID: string;
|
|
17595
|
+
Name?: string;
|
|
17596
|
+
Description?: string | null;
|
|
17597
|
+
ParentID?: string | null;
|
|
17598
|
+
OldValues___?: KeyValuePairInput[];
|
|
17599
|
+
RestoreContext___?: RestoreContextInput;
|
|
17600
|
+
}
|
|
17601
|
+
export declare class RunMJRecordProcessCategoryViewResult {
|
|
17602
|
+
Results: MJRecordProcessCategory_[];
|
|
17603
|
+
UserViewRunID?: string;
|
|
17604
|
+
RowCount: number;
|
|
17605
|
+
TotalRowCount: number;
|
|
17606
|
+
ExecutionTime: number;
|
|
17607
|
+
ErrorMessage?: string;
|
|
17608
|
+
Success: boolean;
|
|
17609
|
+
}
|
|
17610
|
+
export declare class MJRecordProcessCategoryResolver extends ResolverBase {
|
|
17611
|
+
RunMJRecordProcessCategoryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17612
|
+
RunMJRecordProcessCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17613
|
+
RunMJRecordProcessCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17614
|
+
MJRecordProcessCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordProcessCategory_ | null>;
|
|
17615
|
+
MJRecordProcessCategories_ParentIDArray(mjrecordprocesscategory_: MJRecordProcessCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17616
|
+
MJRecordProcesses_CategoryIDArray(mjrecordprocesscategory_: MJRecordProcessCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17617
|
+
CreateMJRecordProcessCategory(input: CreateMJRecordProcessCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17618
|
+
UpdateMJRecordProcessCategory(input: UpdateMJRecordProcessCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17619
|
+
DeleteMJRecordProcessCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17620
|
+
}
|
|
17621
|
+
export declare class MJRecordProcessWatermark_ {
|
|
17622
|
+
ID: string;
|
|
17623
|
+
RecordProcessID: string;
|
|
17624
|
+
EntityID: string;
|
|
17625
|
+
RecordID: string;
|
|
17626
|
+
Hash: string;
|
|
17627
|
+
LastProcessedAt: Date;
|
|
17628
|
+
_mj__CreatedAt: Date;
|
|
17629
|
+
_mj__UpdatedAt: Date;
|
|
17630
|
+
RecordProcess: string;
|
|
17631
|
+
Entity: string;
|
|
17632
|
+
}
|
|
17633
|
+
export declare class CreateMJRecordProcessWatermarkInput {
|
|
17634
|
+
ID?: string;
|
|
17635
|
+
RecordProcessID?: string;
|
|
17636
|
+
EntityID?: string;
|
|
17637
|
+
RecordID?: string;
|
|
17638
|
+
Hash?: string;
|
|
17639
|
+
LastProcessedAt?: Date;
|
|
17640
|
+
RestoreContext___?: RestoreContextInput;
|
|
17641
|
+
}
|
|
17642
|
+
export declare class UpdateMJRecordProcessWatermarkInput {
|
|
17643
|
+
ID: string;
|
|
17644
|
+
RecordProcessID?: string;
|
|
17645
|
+
EntityID?: string;
|
|
17646
|
+
RecordID?: string;
|
|
17647
|
+
Hash?: string;
|
|
17648
|
+
LastProcessedAt?: Date;
|
|
17649
|
+
OldValues___?: KeyValuePairInput[];
|
|
17650
|
+
RestoreContext___?: RestoreContextInput;
|
|
17651
|
+
}
|
|
17652
|
+
export declare class RunMJRecordProcessWatermarkViewResult {
|
|
17653
|
+
Results: MJRecordProcessWatermark_[];
|
|
17654
|
+
UserViewRunID?: string;
|
|
17655
|
+
RowCount: number;
|
|
17656
|
+
TotalRowCount: number;
|
|
17657
|
+
ExecutionTime: number;
|
|
17658
|
+
ErrorMessage?: string;
|
|
17659
|
+
Success: boolean;
|
|
17660
|
+
}
|
|
17661
|
+
export declare class MJRecordProcessWatermarkResolver extends ResolverBase {
|
|
17662
|
+
RunMJRecordProcessWatermarkViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17663
|
+
RunMJRecordProcessWatermarkViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17664
|
+
RunMJRecordProcessWatermarkDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17665
|
+
MJRecordProcessWatermark(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordProcessWatermark_ | null>;
|
|
17666
|
+
CreateMJRecordProcessWatermark(input: CreateMJRecordProcessWatermarkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17667
|
+
UpdateMJRecordProcessWatermark(input: UpdateMJRecordProcessWatermarkInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17668
|
+
DeleteMJRecordProcessWatermark(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17669
|
+
}
|
|
17670
|
+
export declare class MJRecordProcess_ {
|
|
17671
|
+
ID: string;
|
|
17672
|
+
Name: string;
|
|
17673
|
+
Description?: string;
|
|
17674
|
+
CategoryID?: string;
|
|
17675
|
+
EntityID: string;
|
|
17676
|
+
Status: string;
|
|
17677
|
+
WorkType: string;
|
|
17678
|
+
ActionID?: string;
|
|
17679
|
+
AgentID?: string;
|
|
17680
|
+
PromptID?: string;
|
|
17681
|
+
ScopeType: string;
|
|
17682
|
+
ScopeViewID?: string;
|
|
17683
|
+
ScopeListID?: string;
|
|
17684
|
+
ScopeFilter?: string;
|
|
17685
|
+
OnChangeEnabled: boolean;
|
|
17686
|
+
OnChangeInvocationType?: string;
|
|
17687
|
+
OnChangeFilter?: string;
|
|
17688
|
+
ScheduleEnabled: boolean;
|
|
17689
|
+
CronExpression?: string;
|
|
17690
|
+
Timezone?: string;
|
|
17691
|
+
OnDemandEnabled: boolean;
|
|
17692
|
+
InputMapping?: string;
|
|
17693
|
+
OutputMapping?: string;
|
|
17694
|
+
SkipUnchanged: boolean;
|
|
17695
|
+
WatermarkStrategy?: string;
|
|
17696
|
+
BatchSize?: number;
|
|
17697
|
+
MaxConcurrency?: number;
|
|
17698
|
+
_mj__CreatedAt: Date;
|
|
17699
|
+
_mj__UpdatedAt: Date;
|
|
17700
|
+
Category?: string;
|
|
17701
|
+
Entity: string;
|
|
17702
|
+
Action?: string;
|
|
17703
|
+
Agent?: string;
|
|
17704
|
+
Prompt?: string;
|
|
17705
|
+
ScopeView?: string;
|
|
17706
|
+
ScopeList?: string;
|
|
17707
|
+
MJRecordProcessWatermarks_RecordProcessIDArray: MJRecordProcessWatermark_[];
|
|
17708
|
+
MJProcessRuns_RecordProcessIDArray: MJProcessRun_[];
|
|
17709
|
+
}
|
|
17710
|
+
export declare class CreateMJRecordProcessInput {
|
|
17711
|
+
ID?: string;
|
|
17712
|
+
Name?: string;
|
|
17713
|
+
Description: string | null;
|
|
17714
|
+
CategoryID: string | null;
|
|
17715
|
+
EntityID?: string;
|
|
17716
|
+
Status?: string;
|
|
17717
|
+
WorkType?: string;
|
|
17718
|
+
ActionID: string | null;
|
|
17719
|
+
AgentID: string | null;
|
|
17720
|
+
PromptID: string | null;
|
|
17721
|
+
ScopeType?: string;
|
|
17722
|
+
ScopeViewID: string | null;
|
|
17723
|
+
ScopeListID: string | null;
|
|
17724
|
+
ScopeFilter: string | null;
|
|
17725
|
+
OnChangeEnabled?: boolean;
|
|
17726
|
+
OnChangeInvocationType: string | null;
|
|
17727
|
+
OnChangeFilter: string | null;
|
|
17728
|
+
ScheduleEnabled?: boolean;
|
|
17729
|
+
CronExpression: string | null;
|
|
17730
|
+
Timezone?: string | null;
|
|
17731
|
+
OnDemandEnabled?: boolean;
|
|
17732
|
+
InputMapping: string | null;
|
|
17733
|
+
OutputMapping: string | null;
|
|
17734
|
+
SkipUnchanged?: boolean;
|
|
17735
|
+
WatermarkStrategy: string | null;
|
|
17736
|
+
BatchSize?: number | null;
|
|
17737
|
+
MaxConcurrency?: number | null;
|
|
17738
|
+
RestoreContext___?: RestoreContextInput;
|
|
17739
|
+
}
|
|
17740
|
+
export declare class UpdateMJRecordProcessInput {
|
|
17741
|
+
ID: string;
|
|
17742
|
+
Name?: string;
|
|
17743
|
+
Description?: string | null;
|
|
17744
|
+
CategoryID?: string | null;
|
|
17745
|
+
EntityID?: string;
|
|
17746
|
+
Status?: string;
|
|
17747
|
+
WorkType?: string;
|
|
17748
|
+
ActionID?: string | null;
|
|
17749
|
+
AgentID?: string | null;
|
|
17750
|
+
PromptID?: string | null;
|
|
17751
|
+
ScopeType?: string;
|
|
17752
|
+
ScopeViewID?: string | null;
|
|
17753
|
+
ScopeListID?: string | null;
|
|
17754
|
+
ScopeFilter?: string | null;
|
|
17755
|
+
OnChangeEnabled?: boolean;
|
|
17756
|
+
OnChangeInvocationType?: string | null;
|
|
17757
|
+
OnChangeFilter?: string | null;
|
|
17758
|
+
ScheduleEnabled?: boolean;
|
|
17759
|
+
CronExpression?: string | null;
|
|
17760
|
+
Timezone?: string | null;
|
|
17761
|
+
OnDemandEnabled?: boolean;
|
|
17762
|
+
InputMapping?: string | null;
|
|
17763
|
+
OutputMapping?: string | null;
|
|
17764
|
+
SkipUnchanged?: boolean;
|
|
17765
|
+
WatermarkStrategy?: string | null;
|
|
17766
|
+
BatchSize?: number | null;
|
|
17767
|
+
MaxConcurrency?: number | null;
|
|
17768
|
+
OldValues___?: KeyValuePairInput[];
|
|
17769
|
+
RestoreContext___?: RestoreContextInput;
|
|
17770
|
+
}
|
|
17771
|
+
export declare class RunMJRecordProcessViewResult {
|
|
17772
|
+
Results: MJRecordProcess_[];
|
|
17773
|
+
UserViewRunID?: string;
|
|
17774
|
+
RowCount: number;
|
|
17775
|
+
TotalRowCount: number;
|
|
17776
|
+
ExecutionTime: number;
|
|
17777
|
+
ErrorMessage?: string;
|
|
17778
|
+
Success: boolean;
|
|
17779
|
+
}
|
|
17780
|
+
export declare class MJRecordProcessResolver extends ResolverBase {
|
|
17781
|
+
RunMJRecordProcessViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17782
|
+
RunMJRecordProcessViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17783
|
+
RunMJRecordProcessDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17784
|
+
MJRecordProcess(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRecordProcess_ | null>;
|
|
17785
|
+
MJRecordProcessWatermarks_RecordProcessIDArray(mjrecordprocess_: MJRecordProcess_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17786
|
+
MJProcessRuns_RecordProcessIDArray(mjrecordprocess_: MJRecordProcess_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17787
|
+
CreateMJRecordProcess(input: CreateMJRecordProcessInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17788
|
+
UpdateMJRecordProcess(input: UpdateMJRecordProcessInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17789
|
+
DeleteMJRecordProcess(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17790
|
+
}
|
|
17791
|
+
export declare class MJRemoteOperationCategory_ {
|
|
17792
|
+
ID: string;
|
|
17793
|
+
Name: string;
|
|
17794
|
+
Description?: string;
|
|
17795
|
+
ParentID?: string;
|
|
17796
|
+
_mj__CreatedAt: Date;
|
|
17797
|
+
_mj__UpdatedAt: Date;
|
|
17798
|
+
Parent?: string;
|
|
17799
|
+
RootParentID?: string;
|
|
17800
|
+
MJRemoteOperationCategories_ParentIDArray: MJRemoteOperationCategory_[];
|
|
17801
|
+
MJRemoteOperations_CategoryIDArray: MJRemoteOperation_[];
|
|
17802
|
+
}
|
|
17803
|
+
export declare class CreateMJRemoteOperationCategoryInput {
|
|
17804
|
+
ID?: string;
|
|
17805
|
+
Name?: string;
|
|
17806
|
+
Description: string | null;
|
|
17807
|
+
ParentID: string | null;
|
|
17808
|
+
RestoreContext___?: RestoreContextInput;
|
|
17809
|
+
}
|
|
17810
|
+
export declare class UpdateMJRemoteOperationCategoryInput {
|
|
17811
|
+
ID: string;
|
|
17812
|
+
Name?: string;
|
|
17813
|
+
Description?: string | null;
|
|
17814
|
+
ParentID?: string | null;
|
|
17815
|
+
OldValues___?: KeyValuePairInput[];
|
|
17816
|
+
RestoreContext___?: RestoreContextInput;
|
|
17817
|
+
}
|
|
17818
|
+
export declare class RunMJRemoteOperationCategoryViewResult {
|
|
17819
|
+
Results: MJRemoteOperationCategory_[];
|
|
17820
|
+
UserViewRunID?: string;
|
|
17821
|
+
RowCount: number;
|
|
17822
|
+
TotalRowCount: number;
|
|
17823
|
+
ExecutionTime: number;
|
|
17824
|
+
ErrorMessage?: string;
|
|
17825
|
+
Success: boolean;
|
|
17826
|
+
}
|
|
17827
|
+
export declare class MJRemoteOperationCategoryResolver extends ResolverBase {
|
|
17828
|
+
RunMJRemoteOperationCategoryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17829
|
+
RunMJRemoteOperationCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17830
|
+
RunMJRemoteOperationCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17831
|
+
MJRemoteOperationCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRemoteOperationCategory_ | null>;
|
|
17832
|
+
MJRemoteOperationCategories_ParentIDArray(mjremoteoperationcategory_: MJRemoteOperationCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17833
|
+
MJRemoteOperations_CategoryIDArray(mjremoteoperationcategory_: MJRemoteOperationCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17834
|
+
CreateMJRemoteOperationCategory(input: CreateMJRemoteOperationCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17835
|
+
UpdateMJRemoteOperationCategory(input: UpdateMJRemoteOperationCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17836
|
+
DeleteMJRemoteOperationCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17837
|
+
}
|
|
17838
|
+
export declare class MJRemoteOperation_ {
|
|
17839
|
+
ID: string;
|
|
17840
|
+
Name: string;
|
|
17841
|
+
OperationKey: string;
|
|
17842
|
+
CategoryID?: string;
|
|
17843
|
+
Description?: string;
|
|
17844
|
+
InputTypeName?: string;
|
|
17845
|
+
InputTypeDefinition?: string;
|
|
17846
|
+
InputTypeIsArray: boolean;
|
|
17847
|
+
OutputTypeName?: string;
|
|
17848
|
+
OutputTypeDefinition?: string;
|
|
17849
|
+
OutputTypeIsArray: boolean;
|
|
17850
|
+
ExecutionMode: string;
|
|
17851
|
+
RequiredScope?: string;
|
|
17852
|
+
RequiresSystemUser: boolean;
|
|
17853
|
+
GenerationType: string;
|
|
17854
|
+
Code?: string;
|
|
17855
|
+
CodeApprovalStatus: string;
|
|
17856
|
+
CodeApprovedByUserID?: string;
|
|
17857
|
+
CodeApprovedAt?: Date;
|
|
17858
|
+
ContractFingerprint?: string;
|
|
17859
|
+
Status: string;
|
|
17860
|
+
CacheTTLSeconds?: number;
|
|
17861
|
+
TimeoutMS?: number;
|
|
17862
|
+
MaxConcurrency?: number;
|
|
17863
|
+
_mj__CreatedAt: Date;
|
|
17864
|
+
_mj__UpdatedAt: Date;
|
|
17865
|
+
Category?: string;
|
|
17866
|
+
CodeApprovedByUser?: string;
|
|
17867
|
+
}
|
|
17868
|
+
export declare class CreateMJRemoteOperationInput {
|
|
17869
|
+
ID?: string;
|
|
17870
|
+
Name?: string;
|
|
17871
|
+
OperationKey?: string;
|
|
17872
|
+
CategoryID: string | null;
|
|
17873
|
+
Description: string | null;
|
|
17874
|
+
InputTypeName: string | null;
|
|
17875
|
+
InputTypeDefinition: string | null;
|
|
17876
|
+
InputTypeIsArray?: boolean;
|
|
17877
|
+
OutputTypeName: string | null;
|
|
17878
|
+
OutputTypeDefinition: string | null;
|
|
17879
|
+
OutputTypeIsArray?: boolean;
|
|
17880
|
+
ExecutionMode?: string;
|
|
17881
|
+
RequiredScope: string | null;
|
|
17882
|
+
RequiresSystemUser?: boolean;
|
|
17883
|
+
GenerationType?: string;
|
|
17884
|
+
Code: string | null;
|
|
17885
|
+
CodeApprovalStatus?: string;
|
|
17886
|
+
CodeApprovedByUserID: string | null;
|
|
17887
|
+
CodeApprovedAt: Date | null;
|
|
17888
|
+
ContractFingerprint: string | null;
|
|
17889
|
+
Status?: string;
|
|
17890
|
+
CacheTTLSeconds: number | null;
|
|
17891
|
+
TimeoutMS: number | null;
|
|
17892
|
+
MaxConcurrency: number | null;
|
|
17893
|
+
RestoreContext___?: RestoreContextInput;
|
|
17894
|
+
}
|
|
17895
|
+
export declare class UpdateMJRemoteOperationInput {
|
|
17896
|
+
ID: string;
|
|
17897
|
+
Name?: string;
|
|
17898
|
+
OperationKey?: string;
|
|
17899
|
+
CategoryID?: string | null;
|
|
17900
|
+
Description?: string | null;
|
|
17901
|
+
InputTypeName?: string | null;
|
|
17902
|
+
InputTypeDefinition?: string | null;
|
|
17903
|
+
InputTypeIsArray?: boolean;
|
|
17904
|
+
OutputTypeName?: string | null;
|
|
17905
|
+
OutputTypeDefinition?: string | null;
|
|
17906
|
+
OutputTypeIsArray?: boolean;
|
|
17907
|
+
ExecutionMode?: string;
|
|
17908
|
+
RequiredScope?: string | null;
|
|
17909
|
+
RequiresSystemUser?: boolean;
|
|
17910
|
+
GenerationType?: string;
|
|
17911
|
+
Code?: string | null;
|
|
17912
|
+
CodeApprovalStatus?: string;
|
|
17913
|
+
CodeApprovedByUserID?: string | null;
|
|
17914
|
+
CodeApprovedAt?: Date | null;
|
|
17915
|
+
ContractFingerprint?: string | null;
|
|
17916
|
+
Status?: string;
|
|
17917
|
+
CacheTTLSeconds?: number | null;
|
|
17918
|
+
TimeoutMS?: number | null;
|
|
17919
|
+
MaxConcurrency?: number | null;
|
|
17920
|
+
OldValues___?: KeyValuePairInput[];
|
|
17921
|
+
RestoreContext___?: RestoreContextInput;
|
|
17922
|
+
}
|
|
17923
|
+
export declare class RunMJRemoteOperationViewResult {
|
|
17924
|
+
Results: MJRemoteOperation_[];
|
|
17925
|
+
UserViewRunID?: string;
|
|
17926
|
+
RowCount: number;
|
|
17927
|
+
TotalRowCount: number;
|
|
17928
|
+
ExecutionTime: number;
|
|
17929
|
+
ErrorMessage?: string;
|
|
17930
|
+
Success: boolean;
|
|
17931
|
+
}
|
|
17932
|
+
export declare class MJRemoteOperationResolver extends ResolverBase {
|
|
17933
|
+
RunMJRemoteOperationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17934
|
+
RunMJRemoteOperationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17935
|
+
RunMJRemoteOperationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17936
|
+
MJRemoteOperation(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJRemoteOperation_ | null>;
|
|
17937
|
+
CreateMJRemoteOperation(input: CreateMJRemoteOperationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17938
|
+
UpdateMJRemoteOperation(input: UpdateMJRemoteOperationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17939
|
+
DeleteMJRemoteOperation(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17940
|
+
}
|
|
17358
17941
|
export declare class MJReportCategory_ {
|
|
17359
17942
|
ID: string;
|
|
17360
17943
|
Name: string;
|
|
@@ -18083,6 +18666,7 @@ export declare class MJScheduledJobRun_ {
|
|
|
18083
18666
|
_mj__UpdatedAt: Date;
|
|
18084
18667
|
ScheduledJob: string;
|
|
18085
18668
|
ExecutedByUser?: string;
|
|
18669
|
+
MJProcessRuns_ScheduledJobRunIDArray: MJProcessRun_[];
|
|
18086
18670
|
MJAIAgentRuns_ScheduledJobRunIDArray: MJAIAgentRun_[];
|
|
18087
18671
|
MJCompanyIntegrationRuns_ScheduledJobRunIDArray: MJCompanyIntegrationRun_[];
|
|
18088
18672
|
}
|
|
@@ -18127,6 +18711,7 @@ export declare class MJScheduledJobRunResolver extends ResolverBase {
|
|
|
18127
18711
|
RunMJScheduledJobRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18128
18712
|
RunMJScheduledJobRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
18129
18713
|
MJScheduledJobRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledJobRun_ | null>;
|
|
18714
|
+
MJProcessRuns_ScheduledJobRunIDArray(mjscheduledjobrun_: MJScheduledJobRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18130
18715
|
MJAIAgentRuns_ScheduledJobRunIDArray(mjscheduledjobrun_: MJScheduledJobRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18131
18716
|
MJCompanyIntegrationRuns_ScheduledJobRunIDArray(mjscheduledjobrun_: MJScheduledJobRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
18132
18717
|
CreateMJScheduledJobRun(input: CreateMJScheduledJobRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -21622,6 +22207,7 @@ export declare class MJUserView_ {
|
|
|
21622
22207
|
MJEntityRelationships_DisplayUserViewIDArray: MJEntityRelationship_[];
|
|
21623
22208
|
MJUserViewRuns_UserViewIDArray: MJUserViewRun_[];
|
|
21624
22209
|
MJLists_SourceViewIDArray: MJList_[];
|
|
22210
|
+
MJRecordProcesses_ScopeViewIDArray: MJRecordProcess_[];
|
|
21625
22211
|
}
|
|
21626
22212
|
export declare class CreateMJUserViewInput {
|
|
21627
22213
|
ID?: string;
|
|
@@ -21693,6 +22279,7 @@ export declare class MJUserViewResolverBase extends ResolverBase {
|
|
|
21693
22279
|
MJEntityRelationships_DisplayUserViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21694
22280
|
MJUserViewRuns_UserViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21695
22281
|
MJLists_SourceViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
22282
|
+
MJRecordProcesses_ScopeViewIDArray(mjuserview_: MJUserView_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21696
22283
|
CreateMJUserView(input: CreateMJUserViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21697
22284
|
UpdateMJUserView(input: UpdateMJUserViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21698
22285
|
DeleteMJUserView(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -21823,6 +22410,8 @@ export declare class MJUser_ {
|
|
|
21823
22410
|
MJMagicLinkInvites_CreatedByUserIDArray: MJMagicLinkInvite_[];
|
|
21824
22411
|
MJAIAgentSessions_UserIDArray: MJAIAgentSession_[];
|
|
21825
22412
|
MJAIAgentSessionBridgeParticipants_UserIDArray: MJAIAgentSessionBridgeParticipant_[];
|
|
22413
|
+
MJRemoteOperations_CodeApprovedByUserIDArray: MJRemoteOperation_[];
|
|
22414
|
+
MJProcessRuns_StartedByUserIDArray: MJProcessRun_[];
|
|
21826
22415
|
}
|
|
21827
22416
|
export declare class CreateMJUserInput {
|
|
21828
22417
|
ID?: string;
|
|
@@ -21977,6 +22566,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
21977
22566
|
MJMagicLinkInvites_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21978
22567
|
MJAIAgentSessions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21979
22568
|
MJAIAgentSessionBridgeParticipants_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
22569
|
+
MJRemoteOperations_CodeApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
22570
|
+
MJProcessRuns_StartedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21980
22571
|
CreateMJUser(input: CreateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21981
22572
|
UpdateMJUser(input: UpdateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21982
22573
|
DeleteMJUser(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|