@memberjunction/server 6.1.0-edge.0 → 6.1.0-edge.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/generated.d.ts +163 -642
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +894 -3752
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts +5 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +16 -2
- package/dist/index.js.map +1 -1
- package/dist/resolvers/TaskGraphFrameResolver.d.ts +85 -0
- package/dist/resolvers/TaskGraphFrameResolver.d.ts.map +1 -0
- package/dist/resolvers/TaskGraphFrameResolver.js +163 -0
- package/dist/resolvers/TaskGraphFrameResolver.js.map +1 -0
- package/dist/rest/RESTEndpointHandler.d.ts +0 -4
- package/dist/rest/RESTEndpointHandler.d.ts.map +1 -1
- package/dist/rest/RESTEndpointHandler.js +1 -15
- package/dist/rest/RESTEndpointHandler.js.map +1 -1
- package/dist/services/StartTaskGraphDispatcher.d.ts +33 -0
- package/dist/services/StartTaskGraphDispatcher.d.ts.map +1 -0
- package/dist/services/StartTaskGraphDispatcher.js +31 -0
- package/dist/services/StartTaskGraphDispatcher.js.map +1 -0
- package/dist/services/TaskGraphAgentRunner.d.ts +15 -0
- package/dist/services/TaskGraphAgentRunner.d.ts.map +1 -0
- package/dist/services/TaskGraphAgentRunner.js +74 -0
- package/dist/services/TaskGraphAgentRunner.js.map +1 -0
- package/dist/services/TaskGraphContinuationDeliverer.d.ts +70 -0
- package/dist/services/TaskGraphContinuationDeliverer.d.ts.map +1 -0
- package/dist/services/TaskGraphContinuationDeliverer.js +162 -0
- package/dist/services/TaskGraphContinuationDeliverer.js.map +1 -0
- package/dist/services/TaskGraphProviderFactory.d.ts +39 -0
- package/dist/services/TaskGraphProviderFactory.d.ts.map +1 -0
- package/dist/services/TaskGraphProviderFactory.js +28 -0
- package/dist/services/TaskGraphProviderFactory.js.map +1 -0
- package/package.json +92 -89
- package/src/__tests__/TaskGraphContinuationDeliverer.test.ts +249 -0
- package/src/__tests__/TaskGraphFrameResolver.test.ts +136 -0
- package/src/generated/generated.ts +623 -2552
- package/src/index.ts +17 -2
- package/src/resolvers/TaskGraphFrameResolver.ts +160 -0
- package/src/rest/RESTEndpointHandler.ts +1 -15
- package/src/services/StartTaskGraphDispatcher.ts +61 -0
- package/src/services/TaskGraphAgentRunner.ts +81 -0
- package/src/services/TaskGraphContinuationDeliverer.ts +181 -0
- package/src/services/TaskGraphProviderFactory.ts +53 -0
- package/dist/resolvers/ReportResolver.d.ts +0 -24
- package/dist/resolvers/ReportResolver.d.ts.map +0 -1
- package/dist/resolvers/ReportResolver.js +0 -198
- package/dist/resolvers/ReportResolver.js.map +0 -1
- package/dist/resolvers/TaskResolver.d.ts +0 -31
- package/dist/resolvers/TaskResolver.d.ts.map +0 -1
- package/dist/resolvers/TaskResolver.js +0 -157
- package/dist/resolvers/TaskResolver.js.map +0 -1
- package/dist/services/TaskOrchestrator.d.ts +0 -130
- package/dist/services/TaskOrchestrator.d.ts.map +0 -1
- package/dist/services/TaskOrchestrator.js +0 -692
- package/dist/services/TaskOrchestrator.js.map +0 -1
- package/src/resolvers/ReportResolver.ts +0 -165
- package/src/resolvers/TaskResolver.ts +0 -148
- package/src/resolvers/__tests__/ReportResolver.test.ts +0 -279
- package/src/services/TaskOrchestrator.ts +0 -873
|
@@ -438,7 +438,6 @@ export declare class MJActionParam_ {
|
|
|
438
438
|
LogValue: boolean;
|
|
439
439
|
Action: string;
|
|
440
440
|
MJEntityActionParams_ActionParamIDArray: MJEntityActionParam_[];
|
|
441
|
-
MJScheduledActionParams_ActionParamIDArray: MJScheduledActionParam_[];
|
|
442
441
|
}
|
|
443
442
|
export declare class CreateMJActionParamInput {
|
|
444
443
|
ID?: string;
|
|
@@ -484,7 +483,6 @@ export declare class MJActionParamResolver extends ResolverBase {
|
|
|
484
483
|
RunMJActionParamDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
485
484
|
MJActionParam(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJActionParam_ | null>;
|
|
486
485
|
MJEntityActionParams_ActionParamIDArray(mjactionparam_: MJActionParam_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
487
|
-
MJScheduledActionParams_ActionParamIDArray(mjactionparam_: MJActionParam_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
488
486
|
CreateMJActionParam(input: CreateMJActionParamInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
489
487
|
UpdateMJActionParam(input: UpdateMJActionParamInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
490
488
|
DeleteMJActionParam(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -573,7 +571,6 @@ export declare class MJAction_ {
|
|
|
573
571
|
MJActionResultCodes_ActionIDArray: MJActionResultCode_[];
|
|
574
572
|
MJAIAgentActions_ActionIDArray: MJAIAgentAction_[];
|
|
575
573
|
MJMCPServerTools_GeneratedActionIDArray: MJMCPServerTool_[];
|
|
576
|
-
MJScheduledActions_ActionIDArray: MJScheduledAction_[];
|
|
577
574
|
MJActionContexts_ActionIDArray: MJActionContext_[];
|
|
578
575
|
MJAIAgentSteps_ActionIDArray: MJAIAgentStep_[];
|
|
579
576
|
MJEntityActions_ActionIDArray: MJEntityAction_[];
|
|
@@ -659,7 +656,6 @@ export declare class MJActionResolver extends ResolverBase {
|
|
|
659
656
|
MJActionResultCodes_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
660
657
|
MJAIAgentActions_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
661
658
|
MJMCPServerTools_GeneratedActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
662
|
-
MJScheduledActions_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
663
659
|
MJActionContexts_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
664
660
|
MJAIAgentSteps_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
665
661
|
MJEntityActions_ActionIDArray(mjaction_: MJAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -1116,6 +1112,58 @@ export declare class MJAIAgentConfigurationResolver extends ResolverBase {
|
|
|
1116
1112
|
UpdateMJAIAgentConfiguration(input: UpdateMJAIAgentConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1117
1113
|
DeleteMJAIAgentConfiguration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1118
1114
|
}
|
|
1115
|
+
export declare class MJAIAgentCredential_ {
|
|
1116
|
+
ID: string;
|
|
1117
|
+
AgentID: string;
|
|
1118
|
+
CredentialID: string;
|
|
1119
|
+
Purpose: string;
|
|
1120
|
+
EnvVariableName?: string;
|
|
1121
|
+
Priority: number;
|
|
1122
|
+
Status: string;
|
|
1123
|
+
_mj__CreatedAt: Date;
|
|
1124
|
+
_mj__UpdatedAt: Date;
|
|
1125
|
+
Agent?: string;
|
|
1126
|
+
Credential: string;
|
|
1127
|
+
}
|
|
1128
|
+
export declare class CreateMJAIAgentCredentialInput {
|
|
1129
|
+
ID?: string;
|
|
1130
|
+
AgentID?: string;
|
|
1131
|
+
CredentialID?: string;
|
|
1132
|
+
Purpose?: string;
|
|
1133
|
+
EnvVariableName: string | null;
|
|
1134
|
+
Priority?: number;
|
|
1135
|
+
Status?: string;
|
|
1136
|
+
RestoreContext___?: RestoreContextInput;
|
|
1137
|
+
}
|
|
1138
|
+
export declare class UpdateMJAIAgentCredentialInput {
|
|
1139
|
+
ID: string;
|
|
1140
|
+
AgentID?: string;
|
|
1141
|
+
CredentialID?: string;
|
|
1142
|
+
Purpose?: string;
|
|
1143
|
+
EnvVariableName?: string | null;
|
|
1144
|
+
Priority?: number;
|
|
1145
|
+
Status?: string;
|
|
1146
|
+
OldValues___?: KeyValuePairInput[];
|
|
1147
|
+
RestoreContext___?: RestoreContextInput;
|
|
1148
|
+
}
|
|
1149
|
+
export declare class RunMJAIAgentCredentialViewResult {
|
|
1150
|
+
Results: MJAIAgentCredential_[];
|
|
1151
|
+
UserViewRunID?: string;
|
|
1152
|
+
RowCount: number;
|
|
1153
|
+
TotalRowCount: number;
|
|
1154
|
+
ExecutionTime: number;
|
|
1155
|
+
ErrorMessage?: string;
|
|
1156
|
+
Success: boolean;
|
|
1157
|
+
}
|
|
1158
|
+
export declare class MJAIAgentCredentialResolver extends ResolverBase {
|
|
1159
|
+
RunMJAIAgentCredentialViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1160
|
+
RunMJAIAgentCredentialViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1161
|
+
RunMJAIAgentCredentialDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1162
|
+
MJAIAgentCredential(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentCredential_ | null>;
|
|
1163
|
+
CreateMJAIAgentCredential(input: CreateMJAIAgentCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1164
|
+
UpdateMJAIAgentCredential(input: UpdateMJAIAgentCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1165
|
+
DeleteMJAIAgentCredential(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1166
|
+
}
|
|
1119
1167
|
export declare class MJAIAgentDataSource_ {
|
|
1120
1168
|
ID: string;
|
|
1121
1169
|
AgentID: string;
|
|
@@ -1309,6 +1357,67 @@ export declare class MJAIAgentExampleResolver extends ResolverBase {
|
|
|
1309
1357
|
UpdateMJAIAgentExample(input: UpdateMJAIAgentExampleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1310
1358
|
DeleteMJAIAgentExample(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1311
1359
|
}
|
|
1360
|
+
export declare class MJAIAgentHarness_ {
|
|
1361
|
+
ID: string;
|
|
1362
|
+
Name: string;
|
|
1363
|
+
Description?: string;
|
|
1364
|
+
DriverClass: string;
|
|
1365
|
+
ExecutablePath?: string;
|
|
1366
|
+
AIVendorID?: string;
|
|
1367
|
+
AIModelID?: string;
|
|
1368
|
+
DefaultModel?: string;
|
|
1369
|
+
CapabilitySettings?: string;
|
|
1370
|
+
Status: string;
|
|
1371
|
+
_mj__CreatedAt: Date;
|
|
1372
|
+
_mj__UpdatedAt: Date;
|
|
1373
|
+
AIVendor?: string;
|
|
1374
|
+
AIModel?: string;
|
|
1375
|
+
}
|
|
1376
|
+
export declare class CreateMJAIAgentHarnessInput {
|
|
1377
|
+
ID?: string;
|
|
1378
|
+
Name?: string;
|
|
1379
|
+
Description: string | null;
|
|
1380
|
+
DriverClass?: string;
|
|
1381
|
+
ExecutablePath: string | null;
|
|
1382
|
+
AIVendorID: string | null;
|
|
1383
|
+
AIModelID: string | null;
|
|
1384
|
+
DefaultModel: string | null;
|
|
1385
|
+
CapabilitySettings: string | null;
|
|
1386
|
+
Status?: string;
|
|
1387
|
+
RestoreContext___?: RestoreContextInput;
|
|
1388
|
+
}
|
|
1389
|
+
export declare class UpdateMJAIAgentHarnessInput {
|
|
1390
|
+
ID: string;
|
|
1391
|
+
Name?: string;
|
|
1392
|
+
Description?: string | null;
|
|
1393
|
+
DriverClass?: string;
|
|
1394
|
+
ExecutablePath?: string | null;
|
|
1395
|
+
AIVendorID?: string | null;
|
|
1396
|
+
AIModelID?: string | null;
|
|
1397
|
+
DefaultModel?: string | null;
|
|
1398
|
+
CapabilitySettings?: string | null;
|
|
1399
|
+
Status?: string;
|
|
1400
|
+
OldValues___?: KeyValuePairInput[];
|
|
1401
|
+
RestoreContext___?: RestoreContextInput;
|
|
1402
|
+
}
|
|
1403
|
+
export declare class RunMJAIAgentHarnessViewResult {
|
|
1404
|
+
Results: MJAIAgentHarness_[];
|
|
1405
|
+
UserViewRunID?: string;
|
|
1406
|
+
RowCount: number;
|
|
1407
|
+
TotalRowCount: number;
|
|
1408
|
+
ExecutionTime: number;
|
|
1409
|
+
ErrorMessage?: string;
|
|
1410
|
+
Success: boolean;
|
|
1411
|
+
}
|
|
1412
|
+
export declare class MJAIAgentHarnessResolver extends ResolverBase {
|
|
1413
|
+
RunMJAIAgentHarnessViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1414
|
+
RunMJAIAgentHarnessViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1415
|
+
RunMJAIAgentHarnessDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1416
|
+
MJAIAgentHarness(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentHarness_ | null>;
|
|
1417
|
+
CreateMJAIAgentHarness(input: CreateMJAIAgentHarnessInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1418
|
+
UpdateMJAIAgentHarness(input: UpdateMJAIAgentHarnessInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1419
|
+
DeleteMJAIAgentHarness(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1420
|
+
}
|
|
1312
1421
|
export declare class MJAIAgentLearningCycle_ {
|
|
1313
1422
|
ID: string;
|
|
1314
1423
|
AgentID: string;
|
|
@@ -2183,6 +2292,8 @@ export declare class MJAIAgentRun_ {
|
|
|
2183
2292
|
LastHeartbeatAt?: Date;
|
|
2184
2293
|
AgentSessionID?: string;
|
|
2185
2294
|
PlanMode: boolean;
|
|
2295
|
+
ExternalSessionID?: string;
|
|
2296
|
+
ContinuationDepth: number;
|
|
2186
2297
|
Agent?: string;
|
|
2187
2298
|
ParentRun?: string;
|
|
2188
2299
|
Conversation?: string;
|
|
@@ -2209,6 +2320,7 @@ export declare class MJAIAgentRun_ {
|
|
|
2209
2320
|
MJDuplicateRunDetailMatches_AIAgentRunIDArray: MJDuplicateRunDetailMatch_[];
|
|
2210
2321
|
MJExperimentSessionIterations_AIAgentRunIDArray: MJExperimentSessionIteration_[];
|
|
2211
2322
|
MJExperimentSessions_AgentRunIDArray: MJExperimentSession_[];
|
|
2323
|
+
MJTasks_AgentRunIDArray: MJTask_[];
|
|
2212
2324
|
MJUserRoutineRuns_AgentRunIDArray: MJUserRoutineRun_[];
|
|
2213
2325
|
}
|
|
2214
2326
|
export declare class CreateMJAIAgentRunInput {
|
|
@@ -2261,6 +2373,8 @@ export declare class CreateMJAIAgentRunInput {
|
|
|
2261
2373
|
LastHeartbeatAt: Date | null;
|
|
2262
2374
|
AgentSessionID: string | null;
|
|
2263
2375
|
PlanMode?: boolean;
|
|
2376
|
+
ExternalSessionID: string | null;
|
|
2377
|
+
ContinuationDepth?: number;
|
|
2264
2378
|
RestoreContext___?: RestoreContextInput;
|
|
2265
2379
|
}
|
|
2266
2380
|
export declare class UpdateMJAIAgentRunInput {
|
|
@@ -2313,6 +2427,8 @@ export declare class UpdateMJAIAgentRunInput {
|
|
|
2313
2427
|
LastHeartbeatAt?: Date | null;
|
|
2314
2428
|
AgentSessionID?: string | null;
|
|
2315
2429
|
PlanMode?: boolean;
|
|
2430
|
+
ExternalSessionID?: string | null;
|
|
2431
|
+
ContinuationDepth?: number;
|
|
2316
2432
|
OldValues___?: KeyValuePairInput[];
|
|
2317
2433
|
RestoreContext___?: RestoreContextInput;
|
|
2318
2434
|
}
|
|
@@ -2342,6 +2458,7 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
2342
2458
|
MJDuplicateRunDetailMatches_AIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2343
2459
|
MJExperimentSessionIterations_AIAgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2344
2460
|
MJExperimentSessions_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2461
|
+
MJTasks_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2345
2462
|
MJUserRoutineRuns_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2346
2463
|
CreateMJAIAgentRun(input: CreateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2347
2464
|
UpdateMJAIAgentRun(input: UpdateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3133,6 +3250,7 @@ export declare class MJAIAgent_ {
|
|
|
3133
3250
|
MJAIAgentSkills_AgentIDArray: MJAIAgentSkill_[];
|
|
3134
3251
|
MJConversationWidgetInstances_PinnedAgentIDArray: MJConversationWidgetInstance_[];
|
|
3135
3252
|
MJAISkillSubAgents_SubAgentIDArray: MJAISkillSubAgent_[];
|
|
3253
|
+
MJAIAgentCredentials_AgentIDArray: MJAIAgentCredential_[];
|
|
3136
3254
|
}
|
|
3137
3255
|
export declare class CreateMJAIAgentInput {
|
|
3138
3256
|
ID?: string;
|
|
@@ -3348,6 +3466,7 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
3348
3466
|
MJAIAgentSkills_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3349
3467
|
MJConversationWidgetInstances_PinnedAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3350
3468
|
MJAISkillSubAgents_SubAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3469
|
+
MJAIAgentCredentials_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3351
3470
|
CreateMJAIAgent(input: CreateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3352
3471
|
UpdateMJAIAgent(input: UpdateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3353
3472
|
DeleteMJAIAgent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4396,6 +4515,7 @@ export declare class MJAIModel_ {
|
|
|
4396
4515
|
MJTags_EmbeddingModelIDArray: MJTag_[];
|
|
4397
4516
|
MJAIModels_PriorVersionIDArray: MJAIModel_[];
|
|
4398
4517
|
MJScopedPromptConfigs_ModelIDArray: MJScopedPromptConfig_[];
|
|
4518
|
+
MJAIAgentHarnesses_AIModelIDArray: MJAIAgentHarness_[];
|
|
4399
4519
|
}
|
|
4400
4520
|
export declare class CreateMJAIModelInput {
|
|
4401
4521
|
ID?: string;
|
|
@@ -4485,6 +4605,7 @@ export declare class MJAIModelResolver extends ResolverBase {
|
|
|
4485
4605
|
MJTags_EmbeddingModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4486
4606
|
MJAIModels_PriorVersionIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4487
4607
|
MJScopedPromptConfigs_ModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4608
|
+
MJAIAgentHarnesses_AIModelIDArray(mjaimodel_: MJAIModel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4488
4609
|
CreateMJAIModel(input: CreateMJAIModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4489
4610
|
UpdateMJAIModel(input: UpdateMJAIModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4490
4611
|
DeleteMJAIModel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5787,6 +5908,7 @@ export declare class MJAIVendor_ {
|
|
|
5787
5908
|
MJAIVendorTypes_VendorIDArray: MJAIVendorType_[];
|
|
5788
5909
|
MJAIAgentRuns_OverrideVendorIDArray: MJAIAgentRun_[];
|
|
5789
5910
|
MJScopedPromptConfigs_VendorIDArray: MJScopedPromptConfig_[];
|
|
5911
|
+
MJAIAgentHarnesses_AIVendorIDArray: MJAIAgentHarness_[];
|
|
5790
5912
|
}
|
|
5791
5913
|
export declare class CreateMJAIVendorInput {
|
|
5792
5914
|
ID?: string;
|
|
@@ -5826,6 +5948,7 @@ export declare class MJAIVendorResolver extends ResolverBase {
|
|
|
5826
5948
|
MJAIVendorTypes_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5827
5949
|
MJAIAgentRuns_OverrideVendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5828
5950
|
MJScopedPromptConfigs_VendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5951
|
+
MJAIAgentHarnesses_AIVendorIDArray(mjaivendor_: MJAIVendor_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5829
5952
|
CreateMJAIVendor(input: CreateMJAIVendorInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5830
5953
|
UpdateMJAIVendor(input: UpdateMJAIVendorInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5831
5954
|
DeleteMJAIVendor(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -9613,9 +9736,9 @@ export declare class MJContentSource_ {
|
|
|
9613
9736
|
Configuration?: string;
|
|
9614
9737
|
EntityID?: string;
|
|
9615
9738
|
EntityDocumentID?: string;
|
|
9616
|
-
ScheduledActionID?: string;
|
|
9617
9739
|
SegmenterKey?: string;
|
|
9618
9740
|
CleanerKey?: string;
|
|
9741
|
+
ScheduledJobID?: string;
|
|
9619
9742
|
ContentType: string;
|
|
9620
9743
|
ContentSourceType: string;
|
|
9621
9744
|
ContentFileType: string;
|
|
@@ -9623,7 +9746,7 @@ export declare class MJContentSource_ {
|
|
|
9623
9746
|
VectorIndex?: string;
|
|
9624
9747
|
Entity?: string;
|
|
9625
9748
|
EntityDocument?: string;
|
|
9626
|
-
|
|
9749
|
+
ScheduledJob?: string;
|
|
9627
9750
|
MJContentItems_ContentSourceIDArray: MJContentItem_[];
|
|
9628
9751
|
MJContentProcessRuns_SourceIDArray: MJContentProcessRun_[];
|
|
9629
9752
|
MJContentSourceParams_ContentSourceIDArray: MJContentSourceParam_[];
|
|
@@ -9642,9 +9765,9 @@ export declare class CreateMJContentSourceInput {
|
|
|
9642
9765
|
Configuration: string | null;
|
|
9643
9766
|
EntityID: string | null;
|
|
9644
9767
|
EntityDocumentID: string | null;
|
|
9645
|
-
ScheduledActionID: string | null;
|
|
9646
9768
|
SegmenterKey: string | null;
|
|
9647
9769
|
CleanerKey: string | null;
|
|
9770
|
+
ScheduledJobID: string | null;
|
|
9648
9771
|
RestoreContext___?: RestoreContextInput;
|
|
9649
9772
|
}
|
|
9650
9773
|
export declare class UpdateMJContentSourceInput {
|
|
@@ -9659,9 +9782,9 @@ export declare class UpdateMJContentSourceInput {
|
|
|
9659
9782
|
Configuration?: string | null;
|
|
9660
9783
|
EntityID?: string | null;
|
|
9661
9784
|
EntityDocumentID?: string | null;
|
|
9662
|
-
ScheduledActionID?: string | null;
|
|
9663
9785
|
SegmenterKey?: string | null;
|
|
9664
9786
|
CleanerKey?: string | null;
|
|
9787
|
+
ScheduledJobID?: string | null;
|
|
9665
9788
|
OldValues___?: KeyValuePairInput[];
|
|
9666
9789
|
RestoreContext___?: RestoreContextInput;
|
|
9667
9790
|
}
|
|
@@ -10200,7 +10323,6 @@ export declare class MJConversationDetail_ {
|
|
|
10200
10323
|
Agent?: string;
|
|
10201
10324
|
TestRun?: string;
|
|
10202
10325
|
RootParentID?: string;
|
|
10203
|
-
MJReports_ConversationDetailIDArray: MJReport_[];
|
|
10204
10326
|
MJConversationDetailArtifacts_ConversationDetailIDArray: MJConversationDetailArtifact_[];
|
|
10205
10327
|
MJConversationDetailAttachments_ConversationDetailIDArray: MJConversationDetailAttachment_[];
|
|
10206
10328
|
MJConversationDetailRatings_ConversationDetailIDArray: MJConversationDetailRating_[];
|
|
@@ -10292,7 +10414,6 @@ export declare class MJConversationDetailResolver extends ResolverBase {
|
|
|
10292
10414
|
RunMJConversationDetailViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10293
10415
|
RunMJConversationDetailDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10294
10416
|
MJConversationDetail(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJConversationDetail_ | null>;
|
|
10295
|
-
MJReports_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10296
10417
|
MJConversationDetailArtifacts_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10297
10418
|
MJConversationDetailAttachments_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10298
10419
|
MJConversationDetailRatings_ConversationDetailIDArray(mjconversationdetail_: MJConversationDetail_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -10427,7 +10548,6 @@ export declare class MJConversation_ {
|
|
|
10427
10548
|
LastConversation?: string;
|
|
10428
10549
|
RootLastConversationID?: string;
|
|
10429
10550
|
MJConversationDetails_ConversationIDArray: MJConversationDetail_[];
|
|
10430
|
-
MJReports_ConversationIDArray: MJReport_[];
|
|
10431
10551
|
MJConversationArtifacts_ConversationIDArray: MJConversationArtifact_[];
|
|
10432
10552
|
MJAIAgentNotes_SourceConversationIDArray: MJAIAgentNote_[];
|
|
10433
10553
|
MJAIAgentRuns_ConversationIDArray: MJAIAgentRun_[];
|
|
@@ -10504,7 +10624,6 @@ export declare class MJConversationResolver extends ResolverBase {
|
|
|
10504
10624
|
RunMJConversationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10505
10625
|
MJConversation(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJConversation_ | null>;
|
|
10506
10626
|
MJConversationDetails_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10507
|
-
MJReports_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10508
10627
|
MJConversationArtifacts_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10509
10628
|
MJAIAgentNotes_SourceConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10510
10629
|
MJAIAgentRuns_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -10712,6 +10831,7 @@ export declare class MJCredential_ {
|
|
|
10712
10831
|
MJCompanyIntegrations_CredentialIDArray: MJCompanyIntegration_[];
|
|
10713
10832
|
MJSignatureAccounts_CredentialIDArray: MJSignatureAccount_[];
|
|
10714
10833
|
MJExternalDataSources_CredentialIDArray: MJExternalDataSource_[];
|
|
10834
|
+
MJAIAgentCredentials_CredentialIDArray: MJAIAgentCredential_[];
|
|
10715
10835
|
}
|
|
10716
10836
|
export declare class CreateMJCredentialInput {
|
|
10717
10837
|
ID?: string;
|
|
@@ -10767,6 +10887,7 @@ export declare class MJCredentialResolver extends ResolverBase {
|
|
|
10767
10887
|
MJCompanyIntegrations_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10768
10888
|
MJSignatureAccounts_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10769
10889
|
MJExternalDataSources_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10890
|
+
MJAIAgentCredentials_CredentialIDArray(mjcredential_: MJCredential_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10770
10891
|
CreateMJCredential(input: CreateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10771
10892
|
UpdateMJCredential(input: UpdateMJCredentialInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10772
10893
|
DeleteMJCredential(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -11296,7 +11417,6 @@ export declare class MJDataContext_ {
|
|
|
11296
11417
|
_mj__UpdatedAt: Date;
|
|
11297
11418
|
User: string;
|
|
11298
11419
|
MJDataContextItems_DataContextIDArray: MJDataContextItem_[];
|
|
11299
|
-
MJReports_DataContextIDArray: MJReport_[];
|
|
11300
11420
|
MJConversations_DataContextIDArray: MJConversation_[];
|
|
11301
11421
|
}
|
|
11302
11422
|
export declare class CreateMJDataContextInput {
|
|
@@ -11331,7 +11451,6 @@ export declare class MJDataContextResolver extends ResolverBase {
|
|
|
11331
11451
|
RunMJDataContextDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11332
11452
|
MJDataContext(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJDataContext_ | null>;
|
|
11333
11453
|
MJDataContextItems_DataContextIDArray(mjdatacontext_: MJDataContext_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11334
|
-
MJReports_DataContextIDArray(mjdatacontext_: MJDataContext_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11335
11454
|
MJConversations_DataContextIDArray(mjdatacontext_: MJDataContext_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11336
11455
|
CreateMJDataContext(input: CreateMJDataContextInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11337
11456
|
UpdateMJDataContext(input: UpdateMJDataContextInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -13740,6 +13859,7 @@ export declare class MJEntityRelationship_ {
|
|
|
13740
13859
|
AutoUpdateFromSchema: boolean;
|
|
13741
13860
|
AdditionalFieldsToInclude?: string;
|
|
13742
13861
|
AutoUpdateAdditionalFieldsToInclude: boolean;
|
|
13862
|
+
RelatedRecordCollection?: string;
|
|
13743
13863
|
Entity: string;
|
|
13744
13864
|
EntityBaseTable: string;
|
|
13745
13865
|
EntityBaseView: string;
|
|
@@ -13774,6 +13894,7 @@ export declare class CreateMJEntityRelationshipInput {
|
|
|
13774
13894
|
AutoUpdateFromSchema?: boolean;
|
|
13775
13895
|
AdditionalFieldsToInclude: string | null;
|
|
13776
13896
|
AutoUpdateAdditionalFieldsToInclude?: boolean;
|
|
13897
|
+
RelatedRecordCollection: string | null;
|
|
13777
13898
|
RestoreContext___?: RestoreContextInput;
|
|
13778
13899
|
}
|
|
13779
13900
|
export declare class UpdateMJEntityRelationshipInput {
|
|
@@ -13799,6 +13920,7 @@ export declare class UpdateMJEntityRelationshipInput {
|
|
|
13799
13920
|
AutoUpdateFromSchema?: boolean;
|
|
13800
13921
|
AdditionalFieldsToInclude?: string | null;
|
|
13801
13922
|
AutoUpdateAdditionalFieldsToInclude?: boolean;
|
|
13923
|
+
RelatedRecordCollection?: string | null;
|
|
13802
13924
|
OldValues___?: KeyValuePairInput[];
|
|
13803
13925
|
RestoreContext___?: RestoreContextInput;
|
|
13804
13926
|
}
|
|
@@ -13879,7 +14001,6 @@ export declare class MJEnvironment_ {
|
|
|
13879
14001
|
MJProjects_EnvironmentIDArray: MJProject_[];
|
|
13880
14002
|
MJDashboards_EnvironmentIDArray: MJDashboard_[];
|
|
13881
14003
|
MJTasks_EnvironmentIDArray: MJTask_[];
|
|
13882
|
-
MJReports_EnvironmentIDArray: MJReport_[];
|
|
13883
14004
|
MJConversations_EnvironmentIDArray: MJConversation_[];
|
|
13884
14005
|
MJUserRoutines_EnvironmentIDArray: MJUserRoutine_[];
|
|
13885
14006
|
}
|
|
@@ -13919,7 +14040,6 @@ export declare class MJEnvironmentResolver extends ResolverBase {
|
|
|
13919
14040
|
MJProjects_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13920
14041
|
MJDashboards_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13921
14042
|
MJTasks_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13922
|
-
MJReports_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13923
14043
|
MJConversations_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13924
14044
|
MJUserRoutines_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13925
14045
|
CreateMJEnvironment(input: CreateMJEnvironmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -17499,7 +17619,6 @@ export declare class MJOutputDeliveryType_ {
|
|
|
17499
17619
|
Description?: string;
|
|
17500
17620
|
_mj__CreatedAt: Date;
|
|
17501
17621
|
_mj__UpdatedAt: Date;
|
|
17502
|
-
MJReports_OutputDeliveryTypeIDArray: MJReport_[];
|
|
17503
17622
|
}
|
|
17504
17623
|
export declare class CreateMJOutputDeliveryTypeInput {
|
|
17505
17624
|
ID?: string;
|
|
@@ -17528,7 +17647,6 @@ export declare class MJOutputDeliveryTypeResolver extends ResolverBase {
|
|
|
17528
17647
|
RunMJOutputDeliveryTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17529
17648
|
RunMJOutputDeliveryTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17530
17649
|
MJOutputDeliveryType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJOutputDeliveryType_ | null>;
|
|
17531
|
-
MJReports_OutputDeliveryTypeIDArray(mjoutputdeliverytype_: MJOutputDeliveryType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17532
17650
|
CreateMJOutputDeliveryType(input: CreateMJOutputDeliveryTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17533
17651
|
UpdateMJOutputDeliveryType(input: UpdateMJOutputDeliveryTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17534
17652
|
DeleteMJOutputDeliveryType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -17540,7 +17658,6 @@ export declare class MJOutputFormatType_ {
|
|
|
17540
17658
|
DisplayFormat?: string;
|
|
17541
17659
|
_mj__CreatedAt: Date;
|
|
17542
17660
|
_mj__UpdatedAt: Date;
|
|
17543
|
-
MJReports_OutputFormatTypeIDArray: MJReport_[];
|
|
17544
17661
|
}
|
|
17545
17662
|
export declare class CreateMJOutputFormatTypeInput {
|
|
17546
17663
|
ID?: string;
|
|
@@ -17571,51 +17688,10 @@ export declare class MJOutputFormatTypeResolver extends ResolverBase {
|
|
|
17571
17688
|
RunMJOutputFormatTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17572
17689
|
RunMJOutputFormatTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17573
17690
|
MJOutputFormatType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJOutputFormatType_ | null>;
|
|
17574
|
-
MJReports_OutputFormatTypeIDArray(mjoutputformattype_: MJOutputFormatType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17575
17691
|
CreateMJOutputFormatType(input: CreateMJOutputFormatTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17576
17692
|
UpdateMJOutputFormatType(input: UpdateMJOutputFormatTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17577
17693
|
DeleteMJOutputFormatType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17578
17694
|
}
|
|
17579
|
-
export declare class MJOutputTriggerType_ {
|
|
17580
|
-
ID: string;
|
|
17581
|
-
Name: string;
|
|
17582
|
-
Description?: string;
|
|
17583
|
-
_mj__CreatedAt: Date;
|
|
17584
|
-
_mj__UpdatedAt: Date;
|
|
17585
|
-
MJReports_OutputTriggerTypeIDArray: MJReport_[];
|
|
17586
|
-
}
|
|
17587
|
-
export declare class CreateMJOutputTriggerTypeInput {
|
|
17588
|
-
ID?: string;
|
|
17589
|
-
Name?: string;
|
|
17590
|
-
Description: string | null;
|
|
17591
|
-
RestoreContext___?: RestoreContextInput;
|
|
17592
|
-
}
|
|
17593
|
-
export declare class UpdateMJOutputTriggerTypeInput {
|
|
17594
|
-
ID: string;
|
|
17595
|
-
Name?: string;
|
|
17596
|
-
Description?: string | null;
|
|
17597
|
-
OldValues___?: KeyValuePairInput[];
|
|
17598
|
-
RestoreContext___?: RestoreContextInput;
|
|
17599
|
-
}
|
|
17600
|
-
export declare class RunMJOutputTriggerTypeViewResult {
|
|
17601
|
-
Results: MJOutputTriggerType_[];
|
|
17602
|
-
UserViewRunID?: string;
|
|
17603
|
-
RowCount: number;
|
|
17604
|
-
TotalRowCount: number;
|
|
17605
|
-
ExecutionTime: number;
|
|
17606
|
-
ErrorMessage?: string;
|
|
17607
|
-
Success: boolean;
|
|
17608
|
-
}
|
|
17609
|
-
export declare class MJOutputTriggerTypeResolver extends ResolverBase {
|
|
17610
|
-
RunMJOutputTriggerTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17611
|
-
RunMJOutputTriggerTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17612
|
-
RunMJOutputTriggerTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
17613
|
-
MJOutputTriggerType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJOutputTriggerType_ | null>;
|
|
17614
|
-
MJReports_OutputTriggerTypeIDArray(mjoutputtriggertype_: MJOutputTriggerType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17615
|
-
CreateMJOutputTriggerType(input: CreateMJOutputTriggerTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17616
|
-
UpdateMJOutputTriggerType(input: UpdateMJOutputTriggerTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17617
|
-
DeleteMJOutputTriggerType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
17618
|
-
}
|
|
17619
17695
|
export declare class MJPermissionDomain_ {
|
|
17620
17696
|
ID: string;
|
|
17621
17697
|
Name: string;
|
|
@@ -19623,293 +19699,6 @@ export declare class MJRemoteOperationResolver extends ResolverBase {
|
|
|
19623
19699
|
UpdateMJRemoteOperation(input: UpdateMJRemoteOperationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19624
19700
|
DeleteMJRemoteOperation(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19625
19701
|
}
|
|
19626
|
-
export declare class MJReportCategory_ {
|
|
19627
|
-
ID: string;
|
|
19628
|
-
Name: string;
|
|
19629
|
-
Description?: string;
|
|
19630
|
-
ParentID?: string;
|
|
19631
|
-
UserID: string;
|
|
19632
|
-
_mj__CreatedAt: Date;
|
|
19633
|
-
_mj__UpdatedAt: Date;
|
|
19634
|
-
Parent?: string;
|
|
19635
|
-
User: string;
|
|
19636
|
-
RootParentID?: string;
|
|
19637
|
-
MJReportCategories_ParentIDArray: MJReportCategory_[];
|
|
19638
|
-
MJReports_CategoryIDArray: MJReport_[];
|
|
19639
|
-
}
|
|
19640
|
-
export declare class CreateMJReportCategoryInput {
|
|
19641
|
-
ID?: string;
|
|
19642
|
-
Name?: string;
|
|
19643
|
-
Description: string | null;
|
|
19644
|
-
ParentID: string | null;
|
|
19645
|
-
UserID?: string;
|
|
19646
|
-
RestoreContext___?: RestoreContextInput;
|
|
19647
|
-
}
|
|
19648
|
-
export declare class UpdateMJReportCategoryInput {
|
|
19649
|
-
ID: string;
|
|
19650
|
-
Name?: string;
|
|
19651
|
-
Description?: string | null;
|
|
19652
|
-
ParentID?: string | null;
|
|
19653
|
-
UserID?: string;
|
|
19654
|
-
OldValues___?: KeyValuePairInput[];
|
|
19655
|
-
RestoreContext___?: RestoreContextInput;
|
|
19656
|
-
}
|
|
19657
|
-
export declare class RunMJReportCategoryViewResult {
|
|
19658
|
-
Results: MJReportCategory_[];
|
|
19659
|
-
UserViewRunID?: string;
|
|
19660
|
-
RowCount: number;
|
|
19661
|
-
TotalRowCount: number;
|
|
19662
|
-
ExecutionTime: number;
|
|
19663
|
-
ErrorMessage?: string;
|
|
19664
|
-
Success: boolean;
|
|
19665
|
-
}
|
|
19666
|
-
export declare class MJReportCategoryResolver extends ResolverBase {
|
|
19667
|
-
RunMJReportCategoryViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19668
|
-
RunMJReportCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19669
|
-
RunMJReportCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19670
|
-
MJReportCategory(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJReportCategory_ | null>;
|
|
19671
|
-
MJReportCategories_ParentIDArray(mjreportcategory_: MJReportCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19672
|
-
MJReports_CategoryIDArray(mjreportcategory_: MJReportCategory_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19673
|
-
CreateMJReportCategory(input: CreateMJReportCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19674
|
-
UpdateMJReportCategory(input: UpdateMJReportCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19675
|
-
DeleteMJReportCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19676
|
-
}
|
|
19677
|
-
export declare class MJReportSnapshot_ {
|
|
19678
|
-
ID: string;
|
|
19679
|
-
ReportID: string;
|
|
19680
|
-
ResultSet: string;
|
|
19681
|
-
UserID: string;
|
|
19682
|
-
_mj__CreatedAt: Date;
|
|
19683
|
-
_mj__UpdatedAt: Date;
|
|
19684
|
-
Report: string;
|
|
19685
|
-
User: string;
|
|
19686
|
-
}
|
|
19687
|
-
export declare class CreateMJReportSnapshotInput {
|
|
19688
|
-
ID?: string;
|
|
19689
|
-
ReportID?: string;
|
|
19690
|
-
ResultSet?: string;
|
|
19691
|
-
UserID?: string;
|
|
19692
|
-
RestoreContext___?: RestoreContextInput;
|
|
19693
|
-
}
|
|
19694
|
-
export declare class UpdateMJReportSnapshotInput {
|
|
19695
|
-
ID: string;
|
|
19696
|
-
ReportID?: string;
|
|
19697
|
-
ResultSet?: string;
|
|
19698
|
-
UserID?: string;
|
|
19699
|
-
OldValues___?: KeyValuePairInput[];
|
|
19700
|
-
RestoreContext___?: RestoreContextInput;
|
|
19701
|
-
}
|
|
19702
|
-
export declare class RunMJReportSnapshotViewResult {
|
|
19703
|
-
Results: MJReportSnapshot_[];
|
|
19704
|
-
UserViewRunID?: string;
|
|
19705
|
-
RowCount: number;
|
|
19706
|
-
TotalRowCount: number;
|
|
19707
|
-
ExecutionTime: number;
|
|
19708
|
-
ErrorMessage?: string;
|
|
19709
|
-
Success: boolean;
|
|
19710
|
-
}
|
|
19711
|
-
export declare class MJReportSnapshotResolver extends ResolverBase {
|
|
19712
|
-
RunMJReportSnapshotViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19713
|
-
RunMJReportSnapshotViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19714
|
-
RunMJReportSnapshotDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19715
|
-
MJReportSnapshot(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJReportSnapshot_ | null>;
|
|
19716
|
-
CreateMJReportSnapshot(input: CreateMJReportSnapshotInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19717
|
-
UpdateMJReportSnapshot(input: UpdateMJReportSnapshotInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19718
|
-
DeleteMJReportSnapshot(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19719
|
-
}
|
|
19720
|
-
export declare class MJReportUserState_ {
|
|
19721
|
-
ID: string;
|
|
19722
|
-
ReportID: string;
|
|
19723
|
-
UserID: string;
|
|
19724
|
-
ReportState?: string;
|
|
19725
|
-
_mj__CreatedAt: Date;
|
|
19726
|
-
_mj__UpdatedAt: Date;
|
|
19727
|
-
Report: string;
|
|
19728
|
-
User: string;
|
|
19729
|
-
}
|
|
19730
|
-
export declare class CreateMJReportUserStateInput {
|
|
19731
|
-
ID?: string;
|
|
19732
|
-
ReportID?: string;
|
|
19733
|
-
UserID?: string;
|
|
19734
|
-
ReportState: string | null;
|
|
19735
|
-
RestoreContext___?: RestoreContextInput;
|
|
19736
|
-
}
|
|
19737
|
-
export declare class UpdateMJReportUserStateInput {
|
|
19738
|
-
ID: string;
|
|
19739
|
-
ReportID?: string;
|
|
19740
|
-
UserID?: string;
|
|
19741
|
-
ReportState?: string | null;
|
|
19742
|
-
OldValues___?: KeyValuePairInput[];
|
|
19743
|
-
RestoreContext___?: RestoreContextInput;
|
|
19744
|
-
}
|
|
19745
|
-
export declare class RunMJReportUserStateViewResult {
|
|
19746
|
-
Results: MJReportUserState_[];
|
|
19747
|
-
UserViewRunID?: string;
|
|
19748
|
-
RowCount: number;
|
|
19749
|
-
TotalRowCount: number;
|
|
19750
|
-
ExecutionTime: number;
|
|
19751
|
-
ErrorMessage?: string;
|
|
19752
|
-
Success: boolean;
|
|
19753
|
-
}
|
|
19754
|
-
export declare class MJReportUserStateResolver extends ResolverBase {
|
|
19755
|
-
RunMJReportUserStateViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19756
|
-
RunMJReportUserStateViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19757
|
-
RunMJReportUserStateDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19758
|
-
MJReportUserState(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJReportUserState_ | null>;
|
|
19759
|
-
CreateMJReportUserState(input: CreateMJReportUserStateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19760
|
-
UpdateMJReportUserState(input: UpdateMJReportUserStateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19761
|
-
DeleteMJReportUserState(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19762
|
-
}
|
|
19763
|
-
export declare class MJReportVersion_ {
|
|
19764
|
-
ID: string;
|
|
19765
|
-
ReportID: string;
|
|
19766
|
-
VersionNumber: number;
|
|
19767
|
-
Name: string;
|
|
19768
|
-
Description?: string;
|
|
19769
|
-
Configuration?: string;
|
|
19770
|
-
DataContextUpdated: boolean;
|
|
19771
|
-
_mj__CreatedAt: Date;
|
|
19772
|
-
_mj__UpdatedAt: Date;
|
|
19773
|
-
Report: string;
|
|
19774
|
-
}
|
|
19775
|
-
export declare class CreateMJReportVersionInput {
|
|
19776
|
-
ID?: string;
|
|
19777
|
-
ReportID?: string;
|
|
19778
|
-
VersionNumber?: number;
|
|
19779
|
-
Name?: string;
|
|
19780
|
-
Description: string | null;
|
|
19781
|
-
Configuration: string | null;
|
|
19782
|
-
DataContextUpdated?: boolean;
|
|
19783
|
-
RestoreContext___?: RestoreContextInput;
|
|
19784
|
-
}
|
|
19785
|
-
export declare class UpdateMJReportVersionInput {
|
|
19786
|
-
ID: string;
|
|
19787
|
-
ReportID?: string;
|
|
19788
|
-
VersionNumber?: number;
|
|
19789
|
-
Name?: string;
|
|
19790
|
-
Description?: string | null;
|
|
19791
|
-
Configuration?: string | null;
|
|
19792
|
-
DataContextUpdated?: boolean;
|
|
19793
|
-
OldValues___?: KeyValuePairInput[];
|
|
19794
|
-
RestoreContext___?: RestoreContextInput;
|
|
19795
|
-
}
|
|
19796
|
-
export declare class RunMJReportVersionViewResult {
|
|
19797
|
-
Results: MJReportVersion_[];
|
|
19798
|
-
UserViewRunID?: string;
|
|
19799
|
-
RowCount: number;
|
|
19800
|
-
TotalRowCount: number;
|
|
19801
|
-
ExecutionTime: number;
|
|
19802
|
-
ErrorMessage?: string;
|
|
19803
|
-
Success: boolean;
|
|
19804
|
-
}
|
|
19805
|
-
export declare class MJReportVersionResolver extends ResolverBase {
|
|
19806
|
-
RunMJReportVersionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19807
|
-
RunMJReportVersionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19808
|
-
RunMJReportVersionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19809
|
-
MJReportVersion(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJReportVersion_ | null>;
|
|
19810
|
-
CreateMJReportVersion(input: CreateMJReportVersionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19811
|
-
UpdateMJReportVersion(input: UpdateMJReportVersionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19812
|
-
DeleteMJReportVersion(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19813
|
-
}
|
|
19814
|
-
export declare class MJReport_ {
|
|
19815
|
-
ID: string;
|
|
19816
|
-
Name: string;
|
|
19817
|
-
Description?: string;
|
|
19818
|
-
CategoryID?: string;
|
|
19819
|
-
UserID: string;
|
|
19820
|
-
SharingScope: string;
|
|
19821
|
-
ConversationID?: string;
|
|
19822
|
-
ConversationDetailID?: string;
|
|
19823
|
-
DataContextID?: string;
|
|
19824
|
-
Configuration?: string;
|
|
19825
|
-
OutputTriggerTypeID?: string;
|
|
19826
|
-
OutputFormatTypeID?: string;
|
|
19827
|
-
OutputDeliveryTypeID?: string;
|
|
19828
|
-
OutputFrequency?: string;
|
|
19829
|
-
OutputTargetEmail?: string;
|
|
19830
|
-
OutputWorkflowID?: string;
|
|
19831
|
-
_mj__CreatedAt: Date;
|
|
19832
|
-
_mj__UpdatedAt: Date;
|
|
19833
|
-
Thumbnail?: string;
|
|
19834
|
-
EnvironmentID: string;
|
|
19835
|
-
Category?: string;
|
|
19836
|
-
User: string;
|
|
19837
|
-
Conversation?: string;
|
|
19838
|
-
ConversationDetail?: string;
|
|
19839
|
-
DataContext?: string;
|
|
19840
|
-
OutputTriggerType?: string;
|
|
19841
|
-
OutputFormatType?: string;
|
|
19842
|
-
OutputDeliveryType?: string;
|
|
19843
|
-
OutputWorkflow?: string;
|
|
19844
|
-
Environment: string;
|
|
19845
|
-
MJReportSnapshots_ReportIDArray: MJReportSnapshot_[];
|
|
19846
|
-
MJReportVersions_ReportIDArray: MJReportVersion_[];
|
|
19847
|
-
MJReportUserStates_ReportIDArray: MJReportUserState_[];
|
|
19848
|
-
}
|
|
19849
|
-
export declare class CreateMJReportInput {
|
|
19850
|
-
ID?: string;
|
|
19851
|
-
Name?: string;
|
|
19852
|
-
Description: string | null;
|
|
19853
|
-
CategoryID: string | null;
|
|
19854
|
-
UserID?: string;
|
|
19855
|
-
SharingScope?: string;
|
|
19856
|
-
ConversationID: string | null;
|
|
19857
|
-
ConversationDetailID: string | null;
|
|
19858
|
-
DataContextID: string | null;
|
|
19859
|
-
Configuration: string | null;
|
|
19860
|
-
OutputTriggerTypeID: string | null;
|
|
19861
|
-
OutputFormatTypeID: string | null;
|
|
19862
|
-
OutputDeliveryTypeID: string | null;
|
|
19863
|
-
OutputFrequency: string | null;
|
|
19864
|
-
OutputTargetEmail: string | null;
|
|
19865
|
-
OutputWorkflowID: string | null;
|
|
19866
|
-
Thumbnail: string | null;
|
|
19867
|
-
EnvironmentID?: string;
|
|
19868
|
-
RestoreContext___?: RestoreContextInput;
|
|
19869
|
-
}
|
|
19870
|
-
export declare class UpdateMJReportInput {
|
|
19871
|
-
ID: string;
|
|
19872
|
-
Name?: string;
|
|
19873
|
-
Description?: string | null;
|
|
19874
|
-
CategoryID?: string | null;
|
|
19875
|
-
UserID?: string;
|
|
19876
|
-
SharingScope?: string;
|
|
19877
|
-
ConversationID?: string | null;
|
|
19878
|
-
ConversationDetailID?: string | null;
|
|
19879
|
-
DataContextID?: string | null;
|
|
19880
|
-
Configuration?: string | null;
|
|
19881
|
-
OutputTriggerTypeID?: string | null;
|
|
19882
|
-
OutputFormatTypeID?: string | null;
|
|
19883
|
-
OutputDeliveryTypeID?: string | null;
|
|
19884
|
-
OutputFrequency?: string | null;
|
|
19885
|
-
OutputTargetEmail?: string | null;
|
|
19886
|
-
OutputWorkflowID?: string | null;
|
|
19887
|
-
Thumbnail?: string | null;
|
|
19888
|
-
EnvironmentID?: string;
|
|
19889
|
-
OldValues___?: KeyValuePairInput[];
|
|
19890
|
-
RestoreContext___?: RestoreContextInput;
|
|
19891
|
-
}
|
|
19892
|
-
export declare class RunMJReportViewResult {
|
|
19893
|
-
Results: MJReport_[];
|
|
19894
|
-
UserViewRunID?: string;
|
|
19895
|
-
RowCount: number;
|
|
19896
|
-
TotalRowCount: number;
|
|
19897
|
-
ExecutionTime: number;
|
|
19898
|
-
ErrorMessage?: string;
|
|
19899
|
-
Success: boolean;
|
|
19900
|
-
}
|
|
19901
|
-
export declare class MJReportResolver extends ResolverBase {
|
|
19902
|
-
RunMJReportViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19903
|
-
RunMJReportViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19904
|
-
RunMJReportDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
19905
|
-
MJReport(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJReport_ | null>;
|
|
19906
|
-
MJReportSnapshots_ReportIDArray(mjreport_: MJReport_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19907
|
-
MJReportVersions_ReportIDArray(mjreport_: MJReport_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19908
|
-
MJReportUserStates_ReportIDArray(mjreport_: MJReport_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19909
|
-
CreateMJReport(input: CreateMJReportInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19910
|
-
UpdateMJReport(input: UpdateMJReportInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19911
|
-
DeleteMJReport(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
19912
|
-
}
|
|
19913
19702
|
export declare class MJResourceLink_ {
|
|
19914
19703
|
ID: string;
|
|
19915
19704
|
UserID: string;
|
|
@@ -20218,132 +20007,6 @@ export declare class MJRowLevelSecurityFilterResolver extends ResolverBase {
|
|
|
20218
20007
|
UpdateMJRowLevelSecurityFilter(input: UpdateMJRowLevelSecurityFilterInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20219
20008
|
DeleteMJRowLevelSecurityFilter(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20220
20009
|
}
|
|
20221
|
-
export declare class MJScheduledActionParam_ {
|
|
20222
|
-
ID: string;
|
|
20223
|
-
ScheduledActionID: string;
|
|
20224
|
-
ActionParamID: string;
|
|
20225
|
-
ValueType: string;
|
|
20226
|
-
Value?: string;
|
|
20227
|
-
Comments?: string;
|
|
20228
|
-
_mj__CreatedAt: Date;
|
|
20229
|
-
_mj__UpdatedAt: Date;
|
|
20230
|
-
ScheduledAction: string;
|
|
20231
|
-
ActionParam: string;
|
|
20232
|
-
}
|
|
20233
|
-
export declare class CreateMJScheduledActionParamInput {
|
|
20234
|
-
ID?: string;
|
|
20235
|
-
ScheduledActionID?: string;
|
|
20236
|
-
ActionParamID?: string;
|
|
20237
|
-
ValueType?: string;
|
|
20238
|
-
Value: string | null;
|
|
20239
|
-
Comments: string | null;
|
|
20240
|
-
RestoreContext___?: RestoreContextInput;
|
|
20241
|
-
}
|
|
20242
|
-
export declare class UpdateMJScheduledActionParamInput {
|
|
20243
|
-
ID: string;
|
|
20244
|
-
ScheduledActionID?: string;
|
|
20245
|
-
ActionParamID?: string;
|
|
20246
|
-
ValueType?: string;
|
|
20247
|
-
Value?: string | null;
|
|
20248
|
-
Comments?: string | null;
|
|
20249
|
-
OldValues___?: KeyValuePairInput[];
|
|
20250
|
-
RestoreContext___?: RestoreContextInput;
|
|
20251
|
-
}
|
|
20252
|
-
export declare class RunMJScheduledActionParamViewResult {
|
|
20253
|
-
Results: MJScheduledActionParam_[];
|
|
20254
|
-
UserViewRunID?: string;
|
|
20255
|
-
RowCount: number;
|
|
20256
|
-
TotalRowCount: number;
|
|
20257
|
-
ExecutionTime: number;
|
|
20258
|
-
ErrorMessage?: string;
|
|
20259
|
-
Success: boolean;
|
|
20260
|
-
}
|
|
20261
|
-
export declare class MJScheduledActionParamResolver extends ResolverBase {
|
|
20262
|
-
RunMJScheduledActionParamViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
20263
|
-
RunMJScheduledActionParamViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
20264
|
-
RunMJScheduledActionParamDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
20265
|
-
MJScheduledActionParam(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledActionParam_ | null>;
|
|
20266
|
-
CreateMJScheduledActionParam(input: CreateMJScheduledActionParamInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20267
|
-
UpdateMJScheduledActionParam(input: UpdateMJScheduledActionParamInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20268
|
-
DeleteMJScheduledActionParam(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20269
|
-
}
|
|
20270
|
-
export declare class MJScheduledAction_ {
|
|
20271
|
-
ID: string;
|
|
20272
|
-
Name: string;
|
|
20273
|
-
Description?: string;
|
|
20274
|
-
CreatedByUserID: string;
|
|
20275
|
-
ActionID: string;
|
|
20276
|
-
Type: string;
|
|
20277
|
-
CronExpression?: string;
|
|
20278
|
-
Timezone: string;
|
|
20279
|
-
Status: string;
|
|
20280
|
-
IntervalDays?: number;
|
|
20281
|
-
DayOfWeek?: string;
|
|
20282
|
-
DayOfMonth?: number;
|
|
20283
|
-
Month?: string;
|
|
20284
|
-
CustomCronExpression?: string;
|
|
20285
|
-
_mj__CreatedAt: Date;
|
|
20286
|
-
_mj__UpdatedAt: Date;
|
|
20287
|
-
CreatedByUser: string;
|
|
20288
|
-
Action: string;
|
|
20289
|
-
MJScheduledActionParams_ScheduledActionIDArray: MJScheduledActionParam_[];
|
|
20290
|
-
MJContentSources_ScheduledActionIDArray: MJContentSource_[];
|
|
20291
|
-
}
|
|
20292
|
-
export declare class CreateMJScheduledActionInput {
|
|
20293
|
-
ID?: string;
|
|
20294
|
-
Name?: string;
|
|
20295
|
-
Description: string | null;
|
|
20296
|
-
CreatedByUserID?: string;
|
|
20297
|
-
ActionID?: string;
|
|
20298
|
-
Type?: string;
|
|
20299
|
-
CronExpression: string | null;
|
|
20300
|
-
Timezone?: string;
|
|
20301
|
-
Status?: string;
|
|
20302
|
-
IntervalDays: number | null;
|
|
20303
|
-
DayOfWeek: string | null;
|
|
20304
|
-
DayOfMonth: number | null;
|
|
20305
|
-
Month: string | null;
|
|
20306
|
-
CustomCronExpression: string | null;
|
|
20307
|
-
RestoreContext___?: RestoreContextInput;
|
|
20308
|
-
}
|
|
20309
|
-
export declare class UpdateMJScheduledActionInput {
|
|
20310
|
-
ID: string;
|
|
20311
|
-
Name?: string;
|
|
20312
|
-
Description?: string | null;
|
|
20313
|
-
CreatedByUserID?: string;
|
|
20314
|
-
ActionID?: string;
|
|
20315
|
-
Type?: string;
|
|
20316
|
-
CronExpression?: string | null;
|
|
20317
|
-
Timezone?: string;
|
|
20318
|
-
Status?: string;
|
|
20319
|
-
IntervalDays?: number | null;
|
|
20320
|
-
DayOfWeek?: string | null;
|
|
20321
|
-
DayOfMonth?: number | null;
|
|
20322
|
-
Month?: string | null;
|
|
20323
|
-
CustomCronExpression?: string | null;
|
|
20324
|
-
OldValues___?: KeyValuePairInput[];
|
|
20325
|
-
RestoreContext___?: RestoreContextInput;
|
|
20326
|
-
}
|
|
20327
|
-
export declare class RunMJScheduledActionViewResult {
|
|
20328
|
-
Results: MJScheduledAction_[];
|
|
20329
|
-
UserViewRunID?: string;
|
|
20330
|
-
RowCount: number;
|
|
20331
|
-
TotalRowCount: number;
|
|
20332
|
-
ExecutionTime: number;
|
|
20333
|
-
ErrorMessage?: string;
|
|
20334
|
-
Success: boolean;
|
|
20335
|
-
}
|
|
20336
|
-
export declare class MJScheduledActionResolver extends ResolverBase {
|
|
20337
|
-
RunMJScheduledActionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
20338
|
-
RunMJScheduledActionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
20339
|
-
RunMJScheduledActionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
20340
|
-
MJScheduledAction(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledAction_ | null>;
|
|
20341
|
-
MJScheduledActionParams_ScheduledActionIDArray(mjscheduledaction_: MJScheduledAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20342
|
-
MJContentSources_ScheduledActionIDArray(mjscheduledaction_: MJScheduledAction_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20343
|
-
CreateMJScheduledAction(input: CreateMJScheduledActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20344
|
-
UpdateMJScheduledAction(input: UpdateMJScheduledActionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20345
|
-
DeleteMJScheduledAction(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20346
|
-
}
|
|
20347
20010
|
export declare class MJScheduledJobRun_ {
|
|
20348
20011
|
ID: string;
|
|
20349
20012
|
ScheduledJobID: string;
|
|
@@ -20494,10 +20157,12 @@ export declare class MJScheduledJob_ {
|
|
|
20494
20157
|
_mj__UpdatedAt: Date;
|
|
20495
20158
|
RunImmediatelyIfNeverRun: boolean;
|
|
20496
20159
|
MaxRuntimeMinutes?: number;
|
|
20160
|
+
MissedRunPolicy: string;
|
|
20497
20161
|
JobType: string;
|
|
20498
20162
|
OwnerUser?: string;
|
|
20499
20163
|
NotifyUser?: string;
|
|
20500
20164
|
MJScheduledJobRuns_ScheduledJobIDArray: MJScheduledJobRun_[];
|
|
20165
|
+
MJContentSources_ScheduledJobIDArray: MJContentSource_[];
|
|
20501
20166
|
MJCompanyIntegrations_ScheduledJobIDArray: MJCompanyIntegration_[];
|
|
20502
20167
|
}
|
|
20503
20168
|
export declare class CreateMJScheduledJobInput {
|
|
@@ -20529,6 +20194,7 @@ export declare class CreateMJScheduledJobInput {
|
|
|
20529
20194
|
ConcurrencyMode?: string;
|
|
20530
20195
|
RunImmediatelyIfNeverRun?: boolean;
|
|
20531
20196
|
MaxRuntimeMinutes: number | null;
|
|
20197
|
+
MissedRunPolicy?: string;
|
|
20532
20198
|
RestoreContext___?: RestoreContextInput;
|
|
20533
20199
|
}
|
|
20534
20200
|
export declare class UpdateMJScheduledJobInput {
|
|
@@ -20560,6 +20226,7 @@ export declare class UpdateMJScheduledJobInput {
|
|
|
20560
20226
|
ConcurrencyMode?: string;
|
|
20561
20227
|
RunImmediatelyIfNeverRun?: boolean;
|
|
20562
20228
|
MaxRuntimeMinutes?: number | null;
|
|
20229
|
+
MissedRunPolicy?: string;
|
|
20563
20230
|
OldValues___?: KeyValuePairInput[];
|
|
20564
20231
|
RestoreContext___?: RestoreContextInput;
|
|
20565
20232
|
}
|
|
@@ -20578,6 +20245,7 @@ export declare class MJScheduledJobResolver extends ResolverBase {
|
|
|
20578
20245
|
RunMJScheduledJobDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
20579
20246
|
MJScheduledJob(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledJob_ | null>;
|
|
20580
20247
|
MJScheduledJobRuns_ScheduledJobIDArray(mjscheduledjob_: MJScheduledJob_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20248
|
+
MJContentSources_ScheduledJobIDArray(mjscheduledjob_: MJScheduledJob_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20581
20249
|
MJCompanyIntegrations_ScheduledJobIDArray(mjscheduledjob_: MJScheduledJob_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
20582
20250
|
CreateMJScheduledJob(input: CreateMJScheduledJobInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
20583
20251
|
UpdateMJScheduledJob(input: UpdateMJScheduledJobInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -22288,6 +21956,7 @@ export declare class MJTaskDependency_ {
|
|
|
22288
21956
|
DependencyType: string;
|
|
22289
21957
|
_mj__CreatedAt: Date;
|
|
22290
21958
|
_mj__UpdatedAt: Date;
|
|
21959
|
+
Condition?: string;
|
|
22291
21960
|
Task: string;
|
|
22292
21961
|
DependsOnTask: string;
|
|
22293
21962
|
}
|
|
@@ -22296,6 +21965,7 @@ export declare class CreateMJTaskDependencyInput {
|
|
|
22296
21965
|
TaskID?: string;
|
|
22297
21966
|
DependsOnTaskID?: string;
|
|
22298
21967
|
DependencyType?: string;
|
|
21968
|
+
Condition: string | null;
|
|
22299
21969
|
RestoreContext___?: RestoreContextInput;
|
|
22300
21970
|
}
|
|
22301
21971
|
export declare class UpdateMJTaskDependencyInput {
|
|
@@ -22303,6 +21973,7 @@ export declare class UpdateMJTaskDependencyInput {
|
|
|
22303
21973
|
TaskID?: string;
|
|
22304
21974
|
DependsOnTaskID?: string;
|
|
22305
21975
|
DependencyType?: string;
|
|
21976
|
+
Condition?: string | null;
|
|
22306
21977
|
OldValues___?: KeyValuePairInput[];
|
|
22307
21978
|
RestoreContext___?: RestoreContextInput;
|
|
22308
21979
|
}
|
|
@@ -22382,6 +22053,12 @@ export declare class MJTask_ {
|
|
|
22382
22053
|
CompletedAt?: Date;
|
|
22383
22054
|
_mj__CreatedAt: Date;
|
|
22384
22055
|
_mj__UpdatedAt: Date;
|
|
22056
|
+
InputPayload?: string;
|
|
22057
|
+
OutputPayload?: string;
|
|
22058
|
+
ErrorMessage?: string;
|
|
22059
|
+
AgentRunID?: string;
|
|
22060
|
+
ClaimedBy?: string;
|
|
22061
|
+
ClaimExpiresAt?: Date;
|
|
22385
22062
|
Parent?: string;
|
|
22386
22063
|
Type: string;
|
|
22387
22064
|
Environment: string;
|
|
@@ -22389,6 +22066,7 @@ export declare class MJTask_ {
|
|
|
22389
22066
|
ConversationDetail?: string;
|
|
22390
22067
|
User?: string;
|
|
22391
22068
|
Agent?: string;
|
|
22069
|
+
AgentRun?: string;
|
|
22392
22070
|
RootParentID?: string;
|
|
22393
22071
|
MJTaskDependencies_TaskIDArray: MJTaskDependency_[];
|
|
22394
22072
|
MJTaskDependencies_DependsOnTaskIDArray: MJTaskDependency_[];
|
|
@@ -22410,6 +22088,12 @@ export declare class CreateMJTaskInput {
|
|
|
22410
22088
|
DueAt: Date | null;
|
|
22411
22089
|
StartedAt: Date | null;
|
|
22412
22090
|
CompletedAt: Date | null;
|
|
22091
|
+
InputPayload: string | null;
|
|
22092
|
+
OutputPayload: string | null;
|
|
22093
|
+
ErrorMessage: string | null;
|
|
22094
|
+
AgentRunID: string | null;
|
|
22095
|
+
ClaimedBy: string | null;
|
|
22096
|
+
ClaimExpiresAt: Date | null;
|
|
22413
22097
|
RestoreContext___?: RestoreContextInput;
|
|
22414
22098
|
}
|
|
22415
22099
|
export declare class UpdateMJTaskInput {
|
|
@@ -22428,6 +22112,12 @@ export declare class UpdateMJTaskInput {
|
|
|
22428
22112
|
DueAt?: Date | null;
|
|
22429
22113
|
StartedAt?: Date | null;
|
|
22430
22114
|
CompletedAt?: Date | null;
|
|
22115
|
+
InputPayload?: string | null;
|
|
22116
|
+
OutputPayload?: string | null;
|
|
22117
|
+
ErrorMessage?: string | null;
|
|
22118
|
+
AgentRunID?: string | null;
|
|
22119
|
+
ClaimedBy?: string | null;
|
|
22120
|
+
ClaimExpiresAt?: Date | null;
|
|
22431
22121
|
OldValues___?: KeyValuePairInput[];
|
|
22432
22122
|
RestoreContext___?: RestoreContextInput;
|
|
22433
22123
|
}
|
|
@@ -24511,9 +24201,6 @@ export declare class MJUser_ {
|
|
|
24511
24201
|
MJRecordChangeReplayRuns_UserIDArray: MJRecordChangeReplayRun_[];
|
|
24512
24202
|
MJRecordChanges_UserIDArray: MJRecordChange_[];
|
|
24513
24203
|
MJRecordMergeLogs_ApprovedByUserIDArray: MJRecordMergeLog_[];
|
|
24514
|
-
MJReportCategories_UserIDArray: MJReportCategory_[];
|
|
24515
|
-
MJReportSnapshots_UserIDArray: MJReportSnapshot_[];
|
|
24516
|
-
MJReports_UserIDArray: MJReport_[];
|
|
24517
24204
|
MJTemplateCategories_UserIDArray: MJTemplateCategory_[];
|
|
24518
24205
|
MJTemplates_UserIDArray: MJTemplate_[];
|
|
24519
24206
|
MJUserApplications_UserIDArray: MJUserApplication_[];
|
|
@@ -24550,10 +24237,8 @@ export declare class MJUser_ {
|
|
|
24550
24237
|
MJOpenAppInstallHistories_ExecutedByUserIDArray: MJOpenAppInstallHistory_[];
|
|
24551
24238
|
MJOpenApps_InstalledByUserIDArray: MJOpenApp_[];
|
|
24552
24239
|
MJPublicLinks_UserIDArray: MJPublicLink_[];
|
|
24553
|
-
MJReportUserStates_UserIDArray: MJReportUserState_[];
|
|
24554
24240
|
MJResourceLinks_UserIDArray: MJResourceLink_[];
|
|
24555
24241
|
MJResourcePermissions_SharedByUserIDArray: MJResourcePermission_[];
|
|
24556
|
-
MJScheduledActions_CreatedByUserIDArray: MJScheduledAction_[];
|
|
24557
24242
|
MJScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
24558
24243
|
MJScheduledJobs_OwnerUserIDArray: MJScheduledJob_[];
|
|
24559
24244
|
MJSearchScopes_OwnerUserIDArray: MJSearchScope_[];
|
|
@@ -24671,9 +24356,6 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
24671
24356
|
MJRecordChangeReplayRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24672
24357
|
MJRecordChanges_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24673
24358
|
MJRecordMergeLogs_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24674
|
-
MJReportCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24675
|
-
MJReportSnapshots_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24676
|
-
MJReports_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24677
24359
|
MJTemplateCategories_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24678
24360
|
MJTemplates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24679
24361
|
MJUserApplications_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -24710,10 +24392,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
24710
24392
|
MJOpenAppInstallHistories_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24711
24393
|
MJOpenApps_InstalledByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24712
24394
|
MJPublicLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24713
|
-
MJReportUserStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24714
24395
|
MJResourceLinks_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24715
24396
|
MJResourcePermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24716
|
-
MJScheduledActions_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24717
24397
|
MJScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24718
24398
|
MJScheduledJobs_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
24719
24399
|
MJSearchScopes_OwnerUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -25198,165 +24878,6 @@ export declare class MJViewTypeResolver extends ResolverBase {
|
|
|
25198
24878
|
UpdateMJViewType(input: UpdateMJViewTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25199
24879
|
DeleteMJViewType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25200
24880
|
}
|
|
25201
|
-
export declare class MJWorkflowEngine_ {
|
|
25202
|
-
ID: string;
|
|
25203
|
-
Name: string;
|
|
25204
|
-
Description?: string;
|
|
25205
|
-
DriverPath: string;
|
|
25206
|
-
DriverClass: string;
|
|
25207
|
-
_mj__CreatedAt: Date;
|
|
25208
|
-
_mj__UpdatedAt: Date;
|
|
25209
|
-
MJWorkflows_WorkflowEngineIDArray: MJWorkflow_[];
|
|
25210
|
-
}
|
|
25211
|
-
export declare class CreateMJWorkflowEngineInput {
|
|
25212
|
-
ID?: string;
|
|
25213
|
-
Name?: string;
|
|
25214
|
-
Description: string | null;
|
|
25215
|
-
DriverPath?: string;
|
|
25216
|
-
DriverClass?: string;
|
|
25217
|
-
RestoreContext___?: RestoreContextInput;
|
|
25218
|
-
}
|
|
25219
|
-
export declare class UpdateMJWorkflowEngineInput {
|
|
25220
|
-
ID: string;
|
|
25221
|
-
Name?: string;
|
|
25222
|
-
Description?: string | null;
|
|
25223
|
-
DriverPath?: string;
|
|
25224
|
-
DriverClass?: string;
|
|
25225
|
-
OldValues___?: KeyValuePairInput[];
|
|
25226
|
-
RestoreContext___?: RestoreContextInput;
|
|
25227
|
-
}
|
|
25228
|
-
export declare class RunMJWorkflowEngineViewResult {
|
|
25229
|
-
Results: MJWorkflowEngine_[];
|
|
25230
|
-
UserViewRunID?: string;
|
|
25231
|
-
RowCount: number;
|
|
25232
|
-
TotalRowCount: number;
|
|
25233
|
-
ExecutionTime: number;
|
|
25234
|
-
ErrorMessage?: string;
|
|
25235
|
-
Success: boolean;
|
|
25236
|
-
}
|
|
25237
|
-
export declare class MJWorkflowEngineResolver extends ResolverBase {
|
|
25238
|
-
RunMJWorkflowEngineViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
25239
|
-
RunMJWorkflowEngineViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
25240
|
-
RunMJWorkflowEngineDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
25241
|
-
MJWorkflowEngine(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJWorkflowEngine_ | null>;
|
|
25242
|
-
MJWorkflows_WorkflowEngineIDArray(mjworkflowengine_: MJWorkflowEngine_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
25243
|
-
CreateMJWorkflowEngine(input: CreateMJWorkflowEngineInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25244
|
-
UpdateMJWorkflowEngine(input: UpdateMJWorkflowEngineInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25245
|
-
DeleteMJWorkflowEngine(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25246
|
-
}
|
|
25247
|
-
export declare class MJWorkflowRun_ {
|
|
25248
|
-
ID: string;
|
|
25249
|
-
WorkflowID: string;
|
|
25250
|
-
ExternalSystemRecordID: string;
|
|
25251
|
-
StartedAt: Date;
|
|
25252
|
-
EndedAt?: Date;
|
|
25253
|
-
Status: string;
|
|
25254
|
-
Results?: string;
|
|
25255
|
-
_mj__CreatedAt: Date;
|
|
25256
|
-
_mj__UpdatedAt: Date;
|
|
25257
|
-
Workflow: string;
|
|
25258
|
-
WorkflowEngineName: string;
|
|
25259
|
-
}
|
|
25260
|
-
export declare class CreateMJWorkflowRunInput {
|
|
25261
|
-
ID?: string;
|
|
25262
|
-
WorkflowID?: string;
|
|
25263
|
-
ExternalSystemRecordID?: string;
|
|
25264
|
-
StartedAt?: Date;
|
|
25265
|
-
EndedAt: Date | null;
|
|
25266
|
-
Status?: string;
|
|
25267
|
-
Results: string | null;
|
|
25268
|
-
RestoreContext___?: RestoreContextInput;
|
|
25269
|
-
}
|
|
25270
|
-
export declare class UpdateMJWorkflowRunInput {
|
|
25271
|
-
ID: string;
|
|
25272
|
-
WorkflowID?: string;
|
|
25273
|
-
ExternalSystemRecordID?: string;
|
|
25274
|
-
StartedAt?: Date;
|
|
25275
|
-
EndedAt?: Date | null;
|
|
25276
|
-
Status?: string;
|
|
25277
|
-
Results?: string | null;
|
|
25278
|
-
OldValues___?: KeyValuePairInput[];
|
|
25279
|
-
RestoreContext___?: RestoreContextInput;
|
|
25280
|
-
}
|
|
25281
|
-
export declare class RunMJWorkflowRunViewResult {
|
|
25282
|
-
Results: MJWorkflowRun_[];
|
|
25283
|
-
UserViewRunID?: string;
|
|
25284
|
-
RowCount: number;
|
|
25285
|
-
TotalRowCount: number;
|
|
25286
|
-
ExecutionTime: number;
|
|
25287
|
-
ErrorMessage?: string;
|
|
25288
|
-
Success: boolean;
|
|
25289
|
-
}
|
|
25290
|
-
export declare class MJWorkflowRunResolver extends ResolverBase {
|
|
25291
|
-
RunMJWorkflowRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
25292
|
-
RunMJWorkflowRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
25293
|
-
RunMJWorkflowRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
25294
|
-
MJWorkflowRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJWorkflowRun_ | null>;
|
|
25295
|
-
CreateMJWorkflowRun(input: CreateMJWorkflowRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25296
|
-
UpdateMJWorkflowRun(input: UpdateMJWorkflowRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25297
|
-
DeleteMJWorkflowRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25298
|
-
}
|
|
25299
|
-
export declare class MJWorkflow_ {
|
|
25300
|
-
ID: string;
|
|
25301
|
-
Name: string;
|
|
25302
|
-
Description?: string;
|
|
25303
|
-
WorkflowEngineID: string;
|
|
25304
|
-
ExternalSystemRecordID: string;
|
|
25305
|
-
AutoRunEnabled: boolean;
|
|
25306
|
-
AutoRunIntervalUnits?: string;
|
|
25307
|
-
AutoRunInterval?: number;
|
|
25308
|
-
SubclassName?: string;
|
|
25309
|
-
_mj__CreatedAt: Date;
|
|
25310
|
-
_mj__UpdatedAt: Date;
|
|
25311
|
-
AutoRunIntervalMinutes?: number;
|
|
25312
|
-
MJReports_OutputWorkflowIDArray: MJReport_[];
|
|
25313
|
-
MJWorkflowRuns_WorkflowIDArray: MJWorkflowRun_[];
|
|
25314
|
-
}
|
|
25315
|
-
export declare class CreateMJWorkflowInput {
|
|
25316
|
-
ID?: string;
|
|
25317
|
-
Name?: string;
|
|
25318
|
-
Description: string | null;
|
|
25319
|
-
WorkflowEngineID?: string;
|
|
25320
|
-
ExternalSystemRecordID?: string;
|
|
25321
|
-
AutoRunEnabled?: boolean;
|
|
25322
|
-
AutoRunIntervalUnits: string | null;
|
|
25323
|
-
AutoRunInterval: number | null;
|
|
25324
|
-
SubclassName: string | null;
|
|
25325
|
-
RestoreContext___?: RestoreContextInput;
|
|
25326
|
-
}
|
|
25327
|
-
export declare class UpdateMJWorkflowInput {
|
|
25328
|
-
ID: string;
|
|
25329
|
-
Name?: string;
|
|
25330
|
-
Description?: string | null;
|
|
25331
|
-
WorkflowEngineID?: string;
|
|
25332
|
-
ExternalSystemRecordID?: string;
|
|
25333
|
-
AutoRunEnabled?: boolean;
|
|
25334
|
-
AutoRunIntervalUnits?: string | null;
|
|
25335
|
-
AutoRunInterval?: number | null;
|
|
25336
|
-
SubclassName?: string | null;
|
|
25337
|
-
OldValues___?: KeyValuePairInput[];
|
|
25338
|
-
RestoreContext___?: RestoreContextInput;
|
|
25339
|
-
}
|
|
25340
|
-
export declare class RunMJWorkflowViewResult {
|
|
25341
|
-
Results: MJWorkflow_[];
|
|
25342
|
-
UserViewRunID?: string;
|
|
25343
|
-
RowCount: number;
|
|
25344
|
-
TotalRowCount: number;
|
|
25345
|
-
ExecutionTime: number;
|
|
25346
|
-
ErrorMessage?: string;
|
|
25347
|
-
Success: boolean;
|
|
25348
|
-
}
|
|
25349
|
-
export declare class MJWorkflowResolver extends ResolverBase {
|
|
25350
|
-
RunMJWorkflowViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
25351
|
-
RunMJWorkflowViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
25352
|
-
RunMJWorkflowDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
25353
|
-
MJWorkflow(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJWorkflow_ | null>;
|
|
25354
|
-
MJReports_OutputWorkflowIDArray(mjworkflow_: MJWorkflow_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
25355
|
-
MJWorkflowRuns_WorkflowIDArray(mjworkflow_: MJWorkflow_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
25356
|
-
CreateMJWorkflow(input: CreateMJWorkflowInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25357
|
-
UpdateMJWorkflow(input: UpdateMJWorkflowInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25358
|
-
DeleteMJWorkflow(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
25359
|
-
}
|
|
25360
24881
|
export declare class MJWorkspaceItem_ {
|
|
25361
24882
|
ID: string;
|
|
25362
24883
|
Name: string;
|