@memberjunction/server 2.106.0 → 2.108.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/agents/skip-sdk.d.ts +11 -0
- package/dist/agents/skip-sdk.d.ts.map +1 -1
- package/dist/agents/skip-sdk.js +262 -3
- package/dist/agents/skip-sdk.js.map +1 -1
- package/dist/config.d.ts +60 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +8 -0
- package/dist/config.js.map +1 -1
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +3 -2
- package/dist/context.js.map +1 -1
- package/dist/generated/generated.d.ts +355 -20
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +2220 -154
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +38 -0
- package/dist/index.js.map +1 -1
- package/dist/resolvers/AskSkipResolver.d.ts.map +1 -1
- package/dist/resolvers/AskSkipResolver.js +0 -2
- package/dist/resolvers/AskSkipResolver.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +1 -0
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/dist/services/ScheduledJobsService.d.ts +21 -0
- package/dist/services/ScheduledJobsService.d.ts.map +1 -0
- package/dist/services/ScheduledJobsService.js +105 -0
- package/dist/services/ScheduledJobsService.js.map +1 -0
- package/package.json +34 -30
- package/src/agents/skip-sdk.ts +351 -8
- package/src/config.ts +10 -0
- package/src/context.ts +3 -2
- package/src/generated/generated.ts +1419 -119
- package/src/index.ts +50 -0
- package/src/resolvers/AskSkipResolver.ts +5 -3
- package/src/resolvers/RunAIAgentResolver.ts +1 -0
- package/src/services/ScheduledJobsService.ts +164 -0
|
@@ -431,6 +431,7 @@ export declare class MJAIAgentRun_ {
|
|
|
431
431
|
EffortLevel?: number;
|
|
432
432
|
RunName?: string;
|
|
433
433
|
Comments?: string;
|
|
434
|
+
ScheduledJobRunID?: string;
|
|
434
435
|
Agent?: string;
|
|
435
436
|
Conversation?: string;
|
|
436
437
|
User?: string;
|
|
@@ -439,8 +440,8 @@ export declare class MJAIAgentRun_ {
|
|
|
439
440
|
OverrideVendor?: string;
|
|
440
441
|
RootParentRunID?: string;
|
|
441
442
|
RootLastRunID?: string;
|
|
442
|
-
MJ_AIAgentRuns_ParentRunIDArray: MJAIAgentRun_[];
|
|
443
443
|
MJ_AIAgentRunSteps_AgentRunIDArray: MJAIAgentRunStep_[];
|
|
444
|
+
MJ_AIAgentRuns_ParentRunIDArray: MJAIAgentRun_[];
|
|
444
445
|
MJ_AIPromptRuns_AgentRunIDArray: MJAIPromptRun_[];
|
|
445
446
|
}
|
|
446
447
|
export declare class CreateMJAIAgentRunInput {
|
|
@@ -481,6 +482,7 @@ export declare class CreateMJAIAgentRunInput {
|
|
|
481
482
|
EffortLevel: number | null;
|
|
482
483
|
RunName: string | null;
|
|
483
484
|
Comments: string | null;
|
|
485
|
+
ScheduledJobRunID: string | null;
|
|
484
486
|
}
|
|
485
487
|
export declare class UpdateMJAIAgentRunInput {
|
|
486
488
|
ID: string;
|
|
@@ -520,6 +522,7 @@ export declare class UpdateMJAIAgentRunInput {
|
|
|
520
522
|
EffortLevel?: number | null;
|
|
521
523
|
RunName?: string | null;
|
|
522
524
|
Comments?: string | null;
|
|
525
|
+
ScheduledJobRunID?: string | null;
|
|
523
526
|
OldValues___?: KeyValuePairInput[];
|
|
524
527
|
}
|
|
525
528
|
export declare class RunMJAIAgentRunViewResult {
|
|
@@ -536,8 +539,8 @@ export declare class MJAIAgentRunResolver extends ResolverBase {
|
|
|
536
539
|
RunMJAIAgentRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
537
540
|
RunMJAIAgentRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
538
541
|
MJAIAgentRun(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentRun_ | null>;
|
|
539
|
-
MJ_AIAgentRuns_ParentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
540
542
|
MJ_AIAgentRunSteps_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
543
|
+
MJ_AIAgentRuns_ParentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
541
544
|
MJ_AIPromptRuns_AgentRunIDArray(mjaiagentrun_: MJAIAgentRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
542
545
|
CreateMJAIAgentRun(input: CreateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
543
546
|
UpdateMJAIAgentRun(input: UpdateMJAIAgentRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -551,8 +554,8 @@ export declare class MJAIVendor_ {
|
|
|
551
554
|
_mj__UpdatedAt: Date;
|
|
552
555
|
MJ_AIPromptModels_VendorIDArray: MJAIPromptModel_[];
|
|
553
556
|
AIResultCache_VendorIDArray: MJAIResultCache_[];
|
|
554
|
-
MJ_AIPromptRuns_VendorIDArray: MJAIPromptRun_[];
|
|
555
557
|
MJ_AIModelVendors_VendorIDArray: MJAIModelVendor_[];
|
|
558
|
+
MJ_AIPromptRuns_VendorIDArray: MJAIPromptRun_[];
|
|
556
559
|
MJ_AIVendorTypes_VendorIDArray: MJAIVendorType_[];
|
|
557
560
|
MJ_AIModelCosts_VendorIDArray: MJAIModelCost_[];
|
|
558
561
|
MJ_AIAgentRuns_OverrideVendorIDArray: MJAIAgentRun_[];
|
|
@@ -584,8 +587,8 @@ export declare class MJAIVendorResolver extends ResolverBase {
|
|
|
584
587
|
MJAIVendor(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIVendor_ | null>;
|
|
585
588
|
MJ_AIPromptModels_VendorIDArray(mjaivendor_: MJAIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
586
589
|
AIResultCache_VendorIDArray(mjaivendor_: MJAIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
587
|
-
MJ_AIPromptRuns_VendorIDArray(mjaivendor_: MJAIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
588
590
|
MJ_AIModelVendors_VendorIDArray(mjaivendor_: MJAIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
591
|
+
MJ_AIPromptRuns_VendorIDArray(mjaivendor_: MJAIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
589
592
|
MJ_AIVendorTypes_VendorIDArray(mjaivendor_: MJAIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
590
593
|
MJ_AIModelCosts_VendorIDArray(mjaivendor_: MJAIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
591
594
|
MJ_AIAgentRuns_OverrideVendorIDArray(mjaivendor_: MJAIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -645,9 +648,9 @@ export declare class MJAIConfiguration_ {
|
|
|
645
648
|
DefaultPromptForContextSummarization?: string;
|
|
646
649
|
MJ_AIConfigurationParams_ConfigurationIDArray: MJAIConfigurationParam_[];
|
|
647
650
|
MJ_AIAgentPrompts_ConfigurationIDArray: MJAIAgentPrompt_[];
|
|
648
|
-
MJ_AIPromptRuns_ConfigurationIDArray: MJAIPromptRun_[];
|
|
649
|
-
AIResultCache_ConfigurationIDArray: MJAIResultCache_[];
|
|
650
651
|
MJ_AIPromptModels_ConfigurationIDArray: MJAIPromptModel_[];
|
|
652
|
+
AIResultCache_ConfigurationIDArray: MJAIResultCache_[];
|
|
653
|
+
MJ_AIPromptRuns_ConfigurationIDArray: MJAIPromptRun_[];
|
|
651
654
|
MJ_AIAgentRuns_ConfigurationIDArray: MJAIAgentRun_[];
|
|
652
655
|
}
|
|
653
656
|
export declare class CreateMJAIConfigurationInput {
|
|
@@ -685,9 +688,9 @@ export declare class MJAIConfigurationResolver extends ResolverBase {
|
|
|
685
688
|
MJAIConfiguration(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIConfiguration_ | null>;
|
|
686
689
|
MJ_AIConfigurationParams_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
687
690
|
MJ_AIAgentPrompts_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
688
|
-
MJ_AIPromptRuns_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
689
|
-
AIResultCache_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
690
691
|
MJ_AIPromptModels_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
692
|
+
AIResultCache_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
693
|
+
MJ_AIPromptRuns_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
691
694
|
MJ_AIAgentRuns_ConfigurationIDArray(mjaiconfiguration_: MJAIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
692
695
|
CreateMJAIConfiguration(input: CreateMJAIConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
693
696
|
UpdateMJAIConfiguration(input: UpdateMJAIConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -733,14 +736,15 @@ export declare class MJAIAgent_ {
|
|
|
733
736
|
ChatHandlingOption?: string;
|
|
734
737
|
DefaultArtifactTypeID?: string;
|
|
735
738
|
OwnerUserID: string;
|
|
739
|
+
InvocationMode: string;
|
|
736
740
|
Parent?: string;
|
|
737
741
|
ContextCompressionPrompt?: string;
|
|
738
742
|
Type?: string;
|
|
739
743
|
DefaultArtifactType?: string;
|
|
740
744
|
OwnerUser: string;
|
|
741
745
|
RootParentID?: string;
|
|
742
|
-
AIAgentActions_AgentIDArray: MJAIAgentAction_[];
|
|
743
746
|
AIAgentModels_AgentIDArray: MJAIAgentModel_[];
|
|
747
|
+
AIAgentActions_AgentIDArray: MJAIAgentAction_[];
|
|
744
748
|
AIAgentLearningCycles_AgentIDArray: MJAIAgentLearningCycle_[];
|
|
745
749
|
AIAgentRequests_AgentIDArray: MJAIAgentRequest_[];
|
|
746
750
|
MJ_AIAgentSteps_AgentIDArray: MJAIAgentStep_[];
|
|
@@ -796,6 +800,7 @@ export declare class CreateMJAIAgentInput {
|
|
|
796
800
|
ChatHandlingOption: string | null;
|
|
797
801
|
DefaultArtifactTypeID: string | null;
|
|
798
802
|
OwnerUserID?: string;
|
|
803
|
+
InvocationMode?: string;
|
|
799
804
|
}
|
|
800
805
|
export declare class UpdateMJAIAgentInput {
|
|
801
806
|
ID: string;
|
|
@@ -835,6 +840,7 @@ export declare class UpdateMJAIAgentInput {
|
|
|
835
840
|
ChatHandlingOption?: string | null;
|
|
836
841
|
DefaultArtifactTypeID?: string | null;
|
|
837
842
|
OwnerUserID?: string;
|
|
843
|
+
InvocationMode?: string;
|
|
838
844
|
OldValues___?: KeyValuePairInput[];
|
|
839
845
|
}
|
|
840
846
|
export declare class RunMJAIAgentViewResult {
|
|
@@ -851,8 +857,8 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
851
857
|
RunMJAIAgentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
852
858
|
RunMJAIAgentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
853
859
|
MJAIAgent(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgent_ | null>;
|
|
854
|
-
AIAgentActions_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
855
860
|
AIAgentModels_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
861
|
+
AIAgentActions_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
856
862
|
AIAgentLearningCycles_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
857
863
|
AIAgentRequests_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
858
864
|
MJ_AIAgentSteps_AgentIDArray(mjaiagent_: MJAIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -1218,11 +1224,11 @@ export declare class MJEnvironment_ {
|
|
|
1218
1224
|
Settings?: string;
|
|
1219
1225
|
_mj__CreatedAt: Date;
|
|
1220
1226
|
_mj__UpdatedAt: Date;
|
|
1221
|
-
MJ_Collections_EnvironmentIDArray: MJCollection_[];
|
|
1222
1227
|
MJ_Projects_EnvironmentIDArray: MJProject_[];
|
|
1228
|
+
MJ_Collections_EnvironmentIDArray: MJCollection_[];
|
|
1223
1229
|
MJ_Artifacts_EnvironmentIDArray: MJArtifact_[];
|
|
1224
|
-
Dashboards_EnvironmentIDArray: MJDashboard_[];
|
|
1225
1230
|
MJ_Tasks_EnvironmentIDArray: MJTask_[];
|
|
1231
|
+
Dashboards_EnvironmentIDArray: MJDashboard_[];
|
|
1226
1232
|
Reports_EnvironmentIDArray: MJReport_[];
|
|
1227
1233
|
Conversations_EnvironmentIDArray: MJConversation_[];
|
|
1228
1234
|
}
|
|
@@ -1255,11 +1261,11 @@ export declare class MJEnvironmentResolver extends ResolverBase {
|
|
|
1255
1261
|
RunMJEnvironmentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1256
1262
|
RunMJEnvironmentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1257
1263
|
MJEnvironment(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJEnvironment_ | null>;
|
|
1258
|
-
MJ_Collections_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1259
1264
|
MJ_Projects_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1265
|
+
MJ_Collections_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1260
1266
|
MJ_Artifacts_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1261
|
-
Dashboards_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1262
1267
|
MJ_Tasks_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1268
|
+
Dashboards_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1263
1269
|
Reports_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1264
1270
|
Conversations_EnvironmentIDArray(mjenvironment_: MJEnvironment_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1265
1271
|
CreateMJEnvironment(input: CreateMJEnvironmentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1275,8 +1281,14 @@ export declare class MJAIAgentAction_ {
|
|
|
1275
1281
|
_mj__UpdatedAt: Date;
|
|
1276
1282
|
MinExecutionsPerRun?: number;
|
|
1277
1283
|
MaxExecutionsPerRun?: number;
|
|
1284
|
+
ResultExpirationTurns?: number;
|
|
1285
|
+
ResultExpirationMode: string;
|
|
1286
|
+
CompactMode?: string;
|
|
1287
|
+
CompactLength?: number;
|
|
1288
|
+
CompactPromptID?: string;
|
|
1278
1289
|
Agent?: string;
|
|
1279
1290
|
Action?: string;
|
|
1291
|
+
CompactPrompt?: string;
|
|
1280
1292
|
}
|
|
1281
1293
|
export declare class CreateMJAIAgentActionInput {
|
|
1282
1294
|
ID?: string;
|
|
@@ -1285,6 +1297,11 @@ export declare class CreateMJAIAgentActionInput {
|
|
|
1285
1297
|
Status?: string;
|
|
1286
1298
|
MinExecutionsPerRun: number | null;
|
|
1287
1299
|
MaxExecutionsPerRun: number | null;
|
|
1300
|
+
ResultExpirationTurns: number | null;
|
|
1301
|
+
ResultExpirationMode?: string;
|
|
1302
|
+
CompactMode: string | null;
|
|
1303
|
+
CompactLength: number | null;
|
|
1304
|
+
CompactPromptID: string | null;
|
|
1288
1305
|
}
|
|
1289
1306
|
export declare class UpdateMJAIAgentActionInput {
|
|
1290
1307
|
ID: string;
|
|
@@ -1293,6 +1310,11 @@ export declare class UpdateMJAIAgentActionInput {
|
|
|
1293
1310
|
Status?: string;
|
|
1294
1311
|
MinExecutionsPerRun?: number | null;
|
|
1295
1312
|
MaxExecutionsPerRun?: number | null;
|
|
1313
|
+
ResultExpirationTurns?: number | null;
|
|
1314
|
+
ResultExpirationMode?: string;
|
|
1315
|
+
CompactMode?: string | null;
|
|
1316
|
+
CompactLength?: number | null;
|
|
1317
|
+
CompactPromptID?: string | null;
|
|
1296
1318
|
OldValues___?: KeyValuePairInput[];
|
|
1297
1319
|
}
|
|
1298
1320
|
export declare class RunMJAIAgentActionViewResult {
|
|
@@ -1444,10 +1466,13 @@ export declare class MJCollection_ {
|
|
|
1444
1466
|
Sequence?: number;
|
|
1445
1467
|
_mj__CreatedAt: Date;
|
|
1446
1468
|
_mj__UpdatedAt: Date;
|
|
1469
|
+
OwnerID?: string;
|
|
1447
1470
|
Environment: string;
|
|
1448
1471
|
Parent?: string;
|
|
1472
|
+
Owner?: string;
|
|
1449
1473
|
RootParentID?: string;
|
|
1450
1474
|
MJ_CollectionArtifacts_CollectionIDArray: MJCollectionArtifact_[];
|
|
1475
|
+
MJ_CollectionPermissions_CollectionIDArray: MJCollectionPermission_[];
|
|
1451
1476
|
MJ_Collections_ParentIDArray: MJCollection_[];
|
|
1452
1477
|
}
|
|
1453
1478
|
export declare class CreateMJCollectionInput {
|
|
@@ -1459,6 +1484,7 @@ export declare class CreateMJCollectionInput {
|
|
|
1459
1484
|
Icon: string | null;
|
|
1460
1485
|
Color: string | null;
|
|
1461
1486
|
Sequence: number | null;
|
|
1487
|
+
OwnerID: string | null;
|
|
1462
1488
|
}
|
|
1463
1489
|
export declare class UpdateMJCollectionInput {
|
|
1464
1490
|
ID: string;
|
|
@@ -1469,6 +1495,7 @@ export declare class UpdateMJCollectionInput {
|
|
|
1469
1495
|
Icon?: string | null;
|
|
1470
1496
|
Color?: string | null;
|
|
1471
1497
|
Sequence?: number | null;
|
|
1498
|
+
OwnerID?: string | null;
|
|
1472
1499
|
OldValues___?: KeyValuePairInput[];
|
|
1473
1500
|
}
|
|
1474
1501
|
export declare class RunMJCollectionViewResult {
|
|
@@ -1486,6 +1513,7 @@ export declare class MJCollectionResolver extends ResolverBase {
|
|
|
1486
1513
|
RunMJCollectionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1487
1514
|
MJCollection(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCollection_ | null>;
|
|
1488
1515
|
MJ_CollectionArtifacts_CollectionIDArray(mjcollection_: MJCollection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1516
|
+
MJ_CollectionPermissions_CollectionIDArray(mjcollection_: MJCollection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1489
1517
|
MJ_Collections_ParentIDArray(mjcollection_: MJCollection_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1490
1518
|
CreateMJCollection(input: CreateMJCollectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1491
1519
|
UpdateMJCollection(input: UpdateMJCollectionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1605,13 +1633,15 @@ export declare class MJAIPrompt_ {
|
|
|
1605
1633
|
AIResultCache_AIPromptIDArray: MJAIResultCache_[];
|
|
1606
1634
|
MJ_AIConfigurations_DefaultPromptForContextCompressionIDArray: MJAIConfiguration_[];
|
|
1607
1635
|
MJ_AIAgentTypes_SystemPromptIDArray: MJAIAgentType_[];
|
|
1636
|
+
AIAgentActions_CompactPromptIDArray: MJAIAgentAction_[];
|
|
1608
1637
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray: MJAIConfiguration_[];
|
|
1609
1638
|
AIPrompts_ResultSelectorPromptIDArray: MJAIPrompt_[];
|
|
1610
|
-
MJ_AIAgentPrompts_PromptIDArray: MJAIAgentPrompt_[];
|
|
1611
1639
|
MJ_AIPromptModels_PromptIDArray: MJAIPromptModel_[];
|
|
1640
|
+
MJ_AIAgentPrompts_PromptIDArray: MJAIAgentPrompt_[];
|
|
1612
1641
|
MJ_AIAgentSteps_PromptIDArray: MJAIAgentStep_[];
|
|
1613
1642
|
MJ_AIPromptRuns_PromptIDArray: MJAIPromptRun_[];
|
|
1614
1643
|
AIAgents_ContextCompressionPromptIDArray: MJAIAgent_[];
|
|
1644
|
+
Actions_DefaultCompactPromptIDArray: MJAction_[];
|
|
1615
1645
|
}
|
|
1616
1646
|
export declare class CreateMJAIPromptInput {
|
|
1617
1647
|
ID?: string;
|
|
@@ -1733,13 +1763,15 @@ export declare class MJAIPromptResolver extends ResolverBase {
|
|
|
1733
1763
|
AIResultCache_AIPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1734
1764
|
MJ_AIConfigurations_DefaultPromptForContextCompressionIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1735
1765
|
MJ_AIAgentTypes_SystemPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1766
|
+
AIAgentActions_CompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1736
1767
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1737
1768
|
AIPrompts_ResultSelectorPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1738
|
-
MJ_AIAgentPrompts_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1739
1769
|
MJ_AIPromptModels_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1770
|
+
MJ_AIAgentPrompts_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1740
1771
|
MJ_AIAgentSteps_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1741
1772
|
MJ_AIPromptRuns_PromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1742
1773
|
AIAgents_ContextCompressionPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1774
|
+
Actions_DefaultCompactPromptIDArray(mjaiprompt_: MJAIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1743
1775
|
CreateMJAIPrompt(input: CreateMJAIPromptInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1744
1776
|
UpdateMJAIPrompt(input: UpdateMJAIPromptInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1745
1777
|
DeleteMJAIPrompt(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2715,8 +2747,8 @@ export declare class MJEntity_ {
|
|
|
2715
2747
|
RecommendationItems_DestinationEntityIDArray: MJRecommendationItem_[];
|
|
2716
2748
|
EntityCommunicationMessageTypes_EntityIDArray: MJEntityCommunicationMessageType_[];
|
|
2717
2749
|
QueryEntities_EntityIDArray: MJQueryEntity_[];
|
|
2718
|
-
MJ_AccessControlRules_EntityIDArray: MJAccessControlRule_[];
|
|
2719
2750
|
MJ_RecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
2751
|
+
MJ_AccessControlRules_EntityIDArray: MJAccessControlRule_[];
|
|
2720
2752
|
GeneratedCodes_LinkedEntityIDArray: MJGeneratedCode_[];
|
|
2721
2753
|
MJ_RecordLinks_TargetEntityIDArray: MJRecordLink_[];
|
|
2722
2754
|
}
|
|
@@ -2882,8 +2914,8 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
2882
2914
|
RecommendationItems_DestinationEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2883
2915
|
EntityCommunicationMessageTypes_EntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2884
2916
|
QueryEntities_EntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2885
|
-
MJ_AccessControlRules_EntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2886
2917
|
MJ_RecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2918
|
+
MJ_AccessControlRules_EntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2887
2919
|
GeneratedCodes_LinkedEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2888
2920
|
MJ_RecordLinks_TargetEntityIDArray(mjentity_: MJEntity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2889
2921
|
CreateMJEntity(input: CreateMJEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2947,17 +2979,23 @@ export declare class MJUser_ {
|
|
|
2947
2979
|
AIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
2948
2980
|
AIAgentNotes_UserIDArray: MJAIAgentNote_[];
|
|
2949
2981
|
MJ_ReportUserStates_UserIDArray: MJReportUserState_[];
|
|
2950
|
-
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
2951
2982
|
MJ_DashboardUserPreferences_UserIDArray: MJDashboardUserPreference_[];
|
|
2983
|
+
MJ_DashboardUserStates_UserIDArray: MJDashboardUserState_[];
|
|
2952
2984
|
MJ_ArtifactVersions_UserIDArray: MJArtifactVersion_[];
|
|
2953
2985
|
MJ_PublicLinks_UserIDArray: MJPublicLink_[];
|
|
2986
|
+
MJ_ScheduledJobRuns_ExecutedByUserIDArray: MJScheduledJobRun_[];
|
|
2987
|
+
MJ_ScheduledJobs_NotifyUserIDArray: MJScheduledJob_[];
|
|
2954
2988
|
ResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
2955
2989
|
AIAgentRequests_RequestForUserIDArray: MJAIAgentRequest_[];
|
|
2956
2990
|
ConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
2957
2991
|
MJ_AccessControlRules_GrantedByUserIDArray: MJAccessControlRule_[];
|
|
2958
2992
|
MJ_Artifacts_UserIDArray: MJArtifact_[];
|
|
2993
|
+
MJ_ScheduledJobs_OwnerUserIDArray: MJScheduledJob_[];
|
|
2994
|
+
MJ_CollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
2959
2995
|
MJ_AIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
2960
2996
|
MJ_AIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
2997
|
+
MJ_CollectionPermissions_UserIDArray: MJCollectionPermission_[];
|
|
2998
|
+
MJ_Collections_OwnerIDArray: MJCollection_[];
|
|
2961
2999
|
MJ_Tasks_UserIDArray: MJTask_[];
|
|
2962
3000
|
AIAgents_OwnerUserIDArray: MJAIAgent_[];
|
|
2963
3001
|
}
|
|
@@ -3041,17 +3079,23 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
3041
3079
|
AIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3042
3080
|
AIAgentNotes_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3043
3081
|
MJ_ReportUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3044
|
-
MJ_DashboardUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3045
3082
|
MJ_DashboardUserPreferences_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3083
|
+
MJ_DashboardUserStates_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3046
3084
|
MJ_ArtifactVersions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3047
3085
|
MJ_PublicLinks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3086
|
+
MJ_ScheduledJobRuns_ExecutedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3087
|
+
MJ_ScheduledJobs_NotifyUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3048
3088
|
ResourcePermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3049
3089
|
AIAgentRequests_RequestForUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3050
3090
|
ConversationDetails_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3051
3091
|
MJ_AccessControlRules_GrantedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3052
3092
|
MJ_Artifacts_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3093
|
+
MJ_ScheduledJobs_OwnerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3094
|
+
MJ_CollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3053
3095
|
MJ_AIAgentRuns_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3054
3096
|
MJ_AIAgentPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3097
|
+
MJ_CollectionPermissions_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3098
|
+
MJ_Collections_OwnerIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3055
3099
|
MJ_Tasks_UserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3056
3100
|
AIAgents_OwnerUserIDArray(mjuser_: MJUser_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3057
3101
|
CreateMJUser(input: CreateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5711,6 +5755,7 @@ export declare class MJConversationDetail_ {
|
|
|
5711
5755
|
ParentID?: string;
|
|
5712
5756
|
AgentID?: string;
|
|
5713
5757
|
Status: string;
|
|
5758
|
+
SuggestedResponses?: string;
|
|
5714
5759
|
Conversation?: string;
|
|
5715
5760
|
User?: string;
|
|
5716
5761
|
Artifact?: string;
|
|
@@ -5742,6 +5787,7 @@ export declare class CreateMJConversationDetailInput {
|
|
|
5742
5787
|
ParentID: string | null;
|
|
5743
5788
|
AgentID: string | null;
|
|
5744
5789
|
Status?: string;
|
|
5790
|
+
SuggestedResponses: string | null;
|
|
5745
5791
|
}
|
|
5746
5792
|
export declare class UpdateMJConversationDetailInput {
|
|
5747
5793
|
ID: string;
|
|
@@ -5763,6 +5809,7 @@ export declare class UpdateMJConversationDetailInput {
|
|
|
5763
5809
|
ParentID?: string | null;
|
|
5764
5810
|
AgentID?: string | null;
|
|
5765
5811
|
Status?: string;
|
|
5812
|
+
SuggestedResponses?: string | null;
|
|
5766
5813
|
OldValues___?: KeyValuePairInput[];
|
|
5767
5814
|
}
|
|
5768
5815
|
export declare class RunMJConversationDetailViewResult {
|
|
@@ -7749,9 +7796,11 @@ export declare class MJAction_ {
|
|
|
7749
7796
|
DriverClass?: string;
|
|
7750
7797
|
ParentID?: string;
|
|
7751
7798
|
IconClass?: string;
|
|
7799
|
+
DefaultCompactPromptID?: string;
|
|
7752
7800
|
Category?: string;
|
|
7753
7801
|
CodeApprovedByUser?: string;
|
|
7754
7802
|
Parent?: string;
|
|
7803
|
+
DefaultCompactPrompt?: string;
|
|
7755
7804
|
RootParentID?: string;
|
|
7756
7805
|
ActionParams_ActionIDArray: MJActionParam_[];
|
|
7757
7806
|
ActionLibraries_ActionIDArray: MJActionLibrary_[];
|
|
@@ -7786,6 +7835,7 @@ export declare class CreateMJActionInput {
|
|
|
7786
7835
|
DriverClass: string | null;
|
|
7787
7836
|
ParentID: string | null;
|
|
7788
7837
|
IconClass: string | null;
|
|
7838
|
+
DefaultCompactPromptID: string | null;
|
|
7789
7839
|
}
|
|
7790
7840
|
export declare class UpdateMJActionInput {
|
|
7791
7841
|
ID: string;
|
|
@@ -7808,6 +7858,7 @@ export declare class UpdateMJActionInput {
|
|
|
7808
7858
|
DriverClass?: string | null;
|
|
7809
7859
|
ParentID?: string | null;
|
|
7810
7860
|
IconClass?: string | null;
|
|
7861
|
+
DefaultCompactPromptID?: string | null;
|
|
7811
7862
|
OldValues___?: KeyValuePairInput[];
|
|
7812
7863
|
}
|
|
7813
7864
|
export declare class RunMJActionViewResult {
|
|
@@ -9720,6 +9771,67 @@ export declare class MJQueryEntityResolver extends ResolverBase {
|
|
|
9720
9771
|
UpdateMJQueryEntity(input: UpdateMJQueryEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9721
9772
|
DeleteMJQueryEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9722
9773
|
}
|
|
9774
|
+
export declare class MJScheduledJobRun_ {
|
|
9775
|
+
ID: string;
|
|
9776
|
+
ScheduledJobID: string;
|
|
9777
|
+
StartedAt: Date;
|
|
9778
|
+
CompletedAt?: Date;
|
|
9779
|
+
Status: string;
|
|
9780
|
+
Success?: boolean;
|
|
9781
|
+
ErrorMessage?: string;
|
|
9782
|
+
Details?: string;
|
|
9783
|
+
ExecutedByUserID?: string;
|
|
9784
|
+
QueuedAt?: Date;
|
|
9785
|
+
_mj__CreatedAt: Date;
|
|
9786
|
+
_mj__UpdatedAt: Date;
|
|
9787
|
+
ScheduledJob: string;
|
|
9788
|
+
ExecutedByUser?: string;
|
|
9789
|
+
MJ_AIAgentRuns_ScheduledJobRunIDArray: MJAIAgentRun_[];
|
|
9790
|
+
}
|
|
9791
|
+
export declare class CreateMJScheduledJobRunInput {
|
|
9792
|
+
ID?: string;
|
|
9793
|
+
ScheduledJobID?: string;
|
|
9794
|
+
StartedAt?: Date;
|
|
9795
|
+
CompletedAt: Date | null;
|
|
9796
|
+
Status?: string;
|
|
9797
|
+
Success: boolean | null;
|
|
9798
|
+
ErrorMessage: string | null;
|
|
9799
|
+
Details: string | null;
|
|
9800
|
+
ExecutedByUserID: string | null;
|
|
9801
|
+
QueuedAt: Date | null;
|
|
9802
|
+
}
|
|
9803
|
+
export declare class UpdateMJScheduledJobRunInput {
|
|
9804
|
+
ID: string;
|
|
9805
|
+
ScheduledJobID?: string;
|
|
9806
|
+
StartedAt?: Date;
|
|
9807
|
+
CompletedAt?: Date | null;
|
|
9808
|
+
Status?: string;
|
|
9809
|
+
Success?: boolean | null;
|
|
9810
|
+
ErrorMessage?: string | null;
|
|
9811
|
+
Details?: string | null;
|
|
9812
|
+
ExecutedByUserID?: string | null;
|
|
9813
|
+
QueuedAt?: Date | null;
|
|
9814
|
+
OldValues___?: KeyValuePairInput[];
|
|
9815
|
+
}
|
|
9816
|
+
export declare class RunMJScheduledJobRunViewResult {
|
|
9817
|
+
Results: MJScheduledJobRun_[];
|
|
9818
|
+
UserViewRunID?: string;
|
|
9819
|
+
RowCount: number;
|
|
9820
|
+
TotalRowCount: number;
|
|
9821
|
+
ExecutionTime: number;
|
|
9822
|
+
ErrorMessage?: string;
|
|
9823
|
+
Success: boolean;
|
|
9824
|
+
}
|
|
9825
|
+
export declare class MJScheduledJobRunResolver extends ResolverBase {
|
|
9826
|
+
RunMJScheduledJobRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9827
|
+
RunMJScheduledJobRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9828
|
+
RunMJScheduledJobRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
9829
|
+
MJScheduledJobRun(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledJobRun_ | null>;
|
|
9830
|
+
MJ_AIAgentRuns_ScheduledJobRunIDArray(mjscheduledjobrun_: MJScheduledJobRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9831
|
+
CreateMJScheduledJobRun(input: CreateMJScheduledJobRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9832
|
+
UpdateMJScheduledJobRun(input: UpdateMJScheduledJobRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9833
|
+
DeleteMJScheduledJobRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9834
|
+
}
|
|
9723
9835
|
export declare class MJDashboardUserState_ {
|
|
9724
9836
|
ID: string;
|
|
9725
9837
|
DashboardID: string;
|
|
@@ -10217,6 +10329,60 @@ export declare class MJConversationArtifactResolver extends ResolverBase {
|
|
|
10217
10329
|
UpdateMJConversationArtifact(input: UpdateMJConversationArtifactInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10218
10330
|
DeleteMJConversationArtifact(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10219
10331
|
}
|
|
10332
|
+
export declare class MJCollectionPermission_ {
|
|
10333
|
+
ID: string;
|
|
10334
|
+
CollectionID: string;
|
|
10335
|
+
UserID: string;
|
|
10336
|
+
CanRead: boolean;
|
|
10337
|
+
CanShare: boolean;
|
|
10338
|
+
CanEdit: boolean;
|
|
10339
|
+
CanDelete: boolean;
|
|
10340
|
+
SharedByUserID?: string;
|
|
10341
|
+
_mj__CreatedAt: Date;
|
|
10342
|
+
_mj__UpdatedAt: Date;
|
|
10343
|
+
Collection: string;
|
|
10344
|
+
User: string;
|
|
10345
|
+
SharedByUser?: string;
|
|
10346
|
+
}
|
|
10347
|
+
export declare class CreateMJCollectionPermissionInput {
|
|
10348
|
+
ID?: string;
|
|
10349
|
+
CollectionID?: string;
|
|
10350
|
+
UserID?: string;
|
|
10351
|
+
CanRead?: boolean;
|
|
10352
|
+
CanShare?: boolean;
|
|
10353
|
+
CanEdit?: boolean;
|
|
10354
|
+
CanDelete?: boolean;
|
|
10355
|
+
SharedByUserID: string | null;
|
|
10356
|
+
}
|
|
10357
|
+
export declare class UpdateMJCollectionPermissionInput {
|
|
10358
|
+
ID: string;
|
|
10359
|
+
CollectionID?: string;
|
|
10360
|
+
UserID?: string;
|
|
10361
|
+
CanRead?: boolean;
|
|
10362
|
+
CanShare?: boolean;
|
|
10363
|
+
CanEdit?: boolean;
|
|
10364
|
+
CanDelete?: boolean;
|
|
10365
|
+
SharedByUserID?: string | null;
|
|
10366
|
+
OldValues___?: KeyValuePairInput[];
|
|
10367
|
+
}
|
|
10368
|
+
export declare class RunMJCollectionPermissionViewResult {
|
|
10369
|
+
Results: MJCollectionPermission_[];
|
|
10370
|
+
UserViewRunID?: string;
|
|
10371
|
+
RowCount: number;
|
|
10372
|
+
TotalRowCount: number;
|
|
10373
|
+
ExecutionTime: number;
|
|
10374
|
+
ErrorMessage?: string;
|
|
10375
|
+
Success: boolean;
|
|
10376
|
+
}
|
|
10377
|
+
export declare class MJCollectionPermissionResolver extends ResolverBase {
|
|
10378
|
+
RunMJCollectionPermissionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10379
|
+
RunMJCollectionPermissionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10380
|
+
RunMJCollectionPermissionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10381
|
+
MJCollectionPermission(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJCollectionPermission_ | null>;
|
|
10382
|
+
CreateMJCollectionPermission(input: CreateMJCollectionPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10383
|
+
UpdateMJCollectionPermission(input: UpdateMJCollectionPermissionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10384
|
+
DeleteMJCollectionPermission(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10385
|
+
}
|
|
10220
10386
|
export declare class MJAIAgentPrompt_ {
|
|
10221
10387
|
ID: string;
|
|
10222
10388
|
AgentID: string;
|
|
@@ -10342,6 +10508,56 @@ export declare class MJComponentLibraryResolver extends ResolverBase {
|
|
|
10342
10508
|
UpdateMJComponentLibrary(input: UpdateMJComponentLibraryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10343
10509
|
DeleteMJComponentLibrary(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10344
10510
|
}
|
|
10511
|
+
export declare class MJScheduledJobType_ {
|
|
10512
|
+
ID: string;
|
|
10513
|
+
Name: string;
|
|
10514
|
+
Description?: string;
|
|
10515
|
+
DriverClass: string;
|
|
10516
|
+
DomainRunEntity?: string;
|
|
10517
|
+
DomainRunEntityFKey?: string;
|
|
10518
|
+
NotificationsAvailable: boolean;
|
|
10519
|
+
_mj__CreatedAt: Date;
|
|
10520
|
+
_mj__UpdatedAt: Date;
|
|
10521
|
+
MJ_ScheduledJobs_JobTypeIDArray: MJScheduledJob_[];
|
|
10522
|
+
}
|
|
10523
|
+
export declare class CreateMJScheduledJobTypeInput {
|
|
10524
|
+
ID?: string;
|
|
10525
|
+
Name?: string;
|
|
10526
|
+
Description: string | null;
|
|
10527
|
+
DriverClass?: string;
|
|
10528
|
+
DomainRunEntity: string | null;
|
|
10529
|
+
DomainRunEntityFKey: string | null;
|
|
10530
|
+
NotificationsAvailable?: boolean;
|
|
10531
|
+
}
|
|
10532
|
+
export declare class UpdateMJScheduledJobTypeInput {
|
|
10533
|
+
ID: string;
|
|
10534
|
+
Name?: string;
|
|
10535
|
+
Description?: string | null;
|
|
10536
|
+
DriverClass?: string;
|
|
10537
|
+
DomainRunEntity?: string | null;
|
|
10538
|
+
DomainRunEntityFKey?: string | null;
|
|
10539
|
+
NotificationsAvailable?: boolean;
|
|
10540
|
+
OldValues___?: KeyValuePairInput[];
|
|
10541
|
+
}
|
|
10542
|
+
export declare class RunMJScheduledJobTypeViewResult {
|
|
10543
|
+
Results: MJScheduledJobType_[];
|
|
10544
|
+
UserViewRunID?: string;
|
|
10545
|
+
RowCount: number;
|
|
10546
|
+
TotalRowCount: number;
|
|
10547
|
+
ExecutionTime: number;
|
|
10548
|
+
ErrorMessage?: string;
|
|
10549
|
+
Success: boolean;
|
|
10550
|
+
}
|
|
10551
|
+
export declare class MJScheduledJobTypeResolver extends ResolverBase {
|
|
10552
|
+
RunMJScheduledJobTypeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10553
|
+
RunMJScheduledJobTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10554
|
+
RunMJScheduledJobTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
10555
|
+
MJScheduledJobType(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledJobType_ | null>;
|
|
10556
|
+
MJ_ScheduledJobs_JobTypeIDArray(mjscheduledjobtype_: MJScheduledJobType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10557
|
+
CreateMJScheduledJobType(input: CreateMJScheduledJobTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10558
|
+
UpdateMJScheduledJobType(input: UpdateMJScheduledJobTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10559
|
+
DeleteMJScheduledJobType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
10560
|
+
}
|
|
10345
10561
|
export declare class MJDashboardUserPreference_ {
|
|
10346
10562
|
ID: string;
|
|
10347
10563
|
UserID?: string;
|
|
@@ -10515,6 +10731,9 @@ export declare class MJAIAgentRelationship_ {
|
|
|
10515
10731
|
Status: string;
|
|
10516
10732
|
_mj__CreatedAt: Date;
|
|
10517
10733
|
_mj__UpdatedAt: Date;
|
|
10734
|
+
SubAgentOutputMapping?: string;
|
|
10735
|
+
SubAgentInputMapping?: string;
|
|
10736
|
+
SubAgentContextPaths?: string;
|
|
10518
10737
|
Agent?: string;
|
|
10519
10738
|
SubAgent?: string;
|
|
10520
10739
|
}
|
|
@@ -10523,12 +10742,18 @@ export declare class CreateMJAIAgentRelationshipInput {
|
|
|
10523
10742
|
AgentID?: string;
|
|
10524
10743
|
SubAgentID?: string;
|
|
10525
10744
|
Status?: string;
|
|
10745
|
+
SubAgentOutputMapping: string | null;
|
|
10746
|
+
SubAgentInputMapping: string | null;
|
|
10747
|
+
SubAgentContextPaths: string | null;
|
|
10526
10748
|
}
|
|
10527
10749
|
export declare class UpdateMJAIAgentRelationshipInput {
|
|
10528
10750
|
ID: string;
|
|
10529
10751
|
AgentID?: string;
|
|
10530
10752
|
SubAgentID?: string;
|
|
10531
10753
|
Status?: string;
|
|
10754
|
+
SubAgentOutputMapping?: string | null;
|
|
10755
|
+
SubAgentInputMapping?: string | null;
|
|
10756
|
+
SubAgentContextPaths?: string | null;
|
|
10532
10757
|
OldValues___?: KeyValuePairInput[];
|
|
10533
10758
|
}
|
|
10534
10759
|
export declare class RunMJAIAgentRelationshipViewResult {
|
|
@@ -11155,6 +11380,116 @@ export declare class MJGeneratedCodeResolver extends ResolverBase {
|
|
|
11155
11380
|
UpdateMJGeneratedCode(input: UpdateMJGeneratedCodeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11156
11381
|
DeleteMJGeneratedCode(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11157
11382
|
}
|
|
11383
|
+
export declare class MJScheduledJob_ {
|
|
11384
|
+
ID: string;
|
|
11385
|
+
JobTypeID: string;
|
|
11386
|
+
Name: string;
|
|
11387
|
+
Description?: string;
|
|
11388
|
+
CronExpression: string;
|
|
11389
|
+
Timezone: string;
|
|
11390
|
+
StartAt?: Date;
|
|
11391
|
+
EndAt?: Date;
|
|
11392
|
+
Status: string;
|
|
11393
|
+
Configuration?: string;
|
|
11394
|
+
OwnerUserID?: string;
|
|
11395
|
+
LastRunAt?: Date;
|
|
11396
|
+
NextRunAt?: Date;
|
|
11397
|
+
RunCount: number;
|
|
11398
|
+
SuccessCount: number;
|
|
11399
|
+
FailureCount: number;
|
|
11400
|
+
NotifyOnSuccess: boolean;
|
|
11401
|
+
NotifyOnFailure: boolean;
|
|
11402
|
+
NotifyUserID?: string;
|
|
11403
|
+
NotifyViaEmail: boolean;
|
|
11404
|
+
NotifyViaInApp: boolean;
|
|
11405
|
+
LockToken?: string;
|
|
11406
|
+
LockedAt?: Date;
|
|
11407
|
+
LockedByInstance?: string;
|
|
11408
|
+
ExpectedCompletionAt?: Date;
|
|
11409
|
+
ConcurrencyMode: string;
|
|
11410
|
+
_mj__CreatedAt: Date;
|
|
11411
|
+
_mj__UpdatedAt: Date;
|
|
11412
|
+
JobType: string;
|
|
11413
|
+
OwnerUser?: string;
|
|
11414
|
+
NotifyUser?: string;
|
|
11415
|
+
MJ_ScheduledJobRuns_ScheduledJobIDArray: MJScheduledJobRun_[];
|
|
11416
|
+
}
|
|
11417
|
+
export declare class CreateMJScheduledJobInput {
|
|
11418
|
+
ID?: string;
|
|
11419
|
+
JobTypeID?: string;
|
|
11420
|
+
Name?: string;
|
|
11421
|
+
Description: string | null;
|
|
11422
|
+
CronExpression?: string;
|
|
11423
|
+
Timezone?: string;
|
|
11424
|
+
StartAt: Date | null;
|
|
11425
|
+
EndAt: Date | null;
|
|
11426
|
+
Status?: string;
|
|
11427
|
+
Configuration: string | null;
|
|
11428
|
+
OwnerUserID: string | null;
|
|
11429
|
+
LastRunAt: Date | null;
|
|
11430
|
+
NextRunAt: Date | null;
|
|
11431
|
+
RunCount?: number;
|
|
11432
|
+
SuccessCount?: number;
|
|
11433
|
+
FailureCount?: number;
|
|
11434
|
+
NotifyOnSuccess?: boolean;
|
|
11435
|
+
NotifyOnFailure?: boolean;
|
|
11436
|
+
NotifyUserID: string | null;
|
|
11437
|
+
NotifyViaEmail?: boolean;
|
|
11438
|
+
NotifyViaInApp?: boolean;
|
|
11439
|
+
LockToken: string | null;
|
|
11440
|
+
LockedAt: Date | null;
|
|
11441
|
+
LockedByInstance: string | null;
|
|
11442
|
+
ExpectedCompletionAt: Date | null;
|
|
11443
|
+
ConcurrencyMode?: string;
|
|
11444
|
+
}
|
|
11445
|
+
export declare class UpdateMJScheduledJobInput {
|
|
11446
|
+
ID: string;
|
|
11447
|
+
JobTypeID?: string;
|
|
11448
|
+
Name?: string;
|
|
11449
|
+
Description?: string | null;
|
|
11450
|
+
CronExpression?: string;
|
|
11451
|
+
Timezone?: string;
|
|
11452
|
+
StartAt?: Date | null;
|
|
11453
|
+
EndAt?: Date | null;
|
|
11454
|
+
Status?: string;
|
|
11455
|
+
Configuration?: string | null;
|
|
11456
|
+
OwnerUserID?: string | null;
|
|
11457
|
+
LastRunAt?: Date | null;
|
|
11458
|
+
NextRunAt?: Date | null;
|
|
11459
|
+
RunCount?: number;
|
|
11460
|
+
SuccessCount?: number;
|
|
11461
|
+
FailureCount?: number;
|
|
11462
|
+
NotifyOnSuccess?: boolean;
|
|
11463
|
+
NotifyOnFailure?: boolean;
|
|
11464
|
+
NotifyUserID?: string | null;
|
|
11465
|
+
NotifyViaEmail?: boolean;
|
|
11466
|
+
NotifyViaInApp?: boolean;
|
|
11467
|
+
LockToken?: string | null;
|
|
11468
|
+
LockedAt?: Date | null;
|
|
11469
|
+
LockedByInstance?: string | null;
|
|
11470
|
+
ExpectedCompletionAt?: Date | null;
|
|
11471
|
+
ConcurrencyMode?: string;
|
|
11472
|
+
OldValues___?: KeyValuePairInput[];
|
|
11473
|
+
}
|
|
11474
|
+
export declare class RunMJScheduledJobViewResult {
|
|
11475
|
+
Results: MJScheduledJob_[];
|
|
11476
|
+
UserViewRunID?: string;
|
|
11477
|
+
RowCount: number;
|
|
11478
|
+
TotalRowCount: number;
|
|
11479
|
+
ExecutionTime: number;
|
|
11480
|
+
ErrorMessage?: string;
|
|
11481
|
+
Success: boolean;
|
|
11482
|
+
}
|
|
11483
|
+
export declare class MJScheduledJobResolver extends ResolverBase {
|
|
11484
|
+
RunMJScheduledJobViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11485
|
+
RunMJScheduledJobViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11486
|
+
RunMJScheduledJobDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
11487
|
+
MJScheduledJob(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJScheduledJob_ | null>;
|
|
11488
|
+
MJ_ScheduledJobRuns_ScheduledJobIDArray(mjscheduledjob_: MJScheduledJob_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
11489
|
+
CreateMJScheduledJob(input: CreateMJScheduledJobInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11490
|
+
UpdateMJScheduledJob(input: UpdateMJScheduledJobInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11491
|
+
DeleteMJScheduledJob(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
11492
|
+
}
|
|
11158
11493
|
export declare class MJAIPromptRun_ {
|
|
11159
11494
|
ID: string;
|
|
11160
11495
|
PromptID: string;
|