@memberjunction/server 5.40.2 → 5.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agentSessions/HostInstance.d.ts +19 -0
- package/dist/agentSessions/HostInstance.d.ts.map +1 -0
- package/dist/agentSessions/HostInstance.js +48 -0
- package/dist/agentSessions/HostInstance.js.map +1 -0
- package/dist/agentSessions/SessionJanitor.d.ts +97 -0
- package/dist/agentSessions/SessionJanitor.d.ts.map +1 -0
- package/dist/agentSessions/SessionJanitor.js +222 -0
- package/dist/agentSessions/SessionJanitor.js.map +1 -0
- package/dist/agentSessions/SessionManager.d.ts +142 -0
- package/dist/agentSessions/SessionManager.d.ts.map +1 -0
- package/dist/agentSessions/SessionManager.js +308 -0
- package/dist/agentSessions/SessionManager.js.map +1 -0
- package/dist/agentSessions/index.d.ts +4 -0
- package/dist/agentSessions/index.d.ts.map +1 -0
- package/dist/agentSessions/index.js +26 -0
- package/dist/agentSessions/index.js.map +1 -0
- package/dist/auth/initializeProviders.d.ts.map +1 -1
- package/dist/auth/initializeProviders.js +6 -1
- package/dist/auth/initializeProviders.js.map +1 -1
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +41 -7
- package/dist/context.js.map +1 -1
- package/dist/generated/generated.d.ts +659 -3
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +5459 -1759
- package/dist/generated/generated.js.map +1 -1
- package/dist/generic/ResolverBase.js +1 -1
- package/dist/generic/ResolverBase.js.map +1 -1
- package/dist/generic/RunViewResolver.js +9 -10
- package/dist/generic/RunViewResolver.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +97 -41
- package/dist/index.js.map +1 -1
- package/dist/logging/StartupLogger.d.ts +121 -0
- package/dist/logging/StartupLogger.d.ts.map +1 -0
- package/dist/logging/StartupLogger.js +245 -0
- package/dist/logging/StartupLogger.js.map +1 -0
- package/dist/logging/variablesLoggingMiddleware.d.ts.map +1 -1
- package/dist/logging/variablesLoggingMiddleware.js +21 -2
- package/dist/logging/variablesLoggingMiddleware.js.map +1 -1
- package/dist/resolvers/AgentSessionResolver.d.ts +42 -0
- package/dist/resolvers/AgentSessionResolver.d.ts.map +1 -0
- package/dist/resolvers/AgentSessionResolver.js +152 -0
- package/dist/resolvers/AgentSessionResolver.js.map +1 -0
- package/dist/resolvers/EntityPermissionResolver.d.ts +16 -0
- package/dist/resolvers/EntityPermissionResolver.d.ts.map +1 -0
- package/dist/resolvers/EntityPermissionResolver.js +95 -0
- package/dist/resolvers/EntityPermissionResolver.js.map +1 -0
- package/dist/resolvers/RealtimeClientSessionResolver.d.ts +688 -0
- package/dist/resolvers/RealtimeClientSessionResolver.d.ts.map +1 -0
- package/dist/resolvers/RealtimeClientSessionResolver.js +1774 -0
- package/dist/resolvers/RealtimeClientSessionResolver.js.map +1 -0
- package/dist/resolvers/RemoteBrowserActionResolver.d.ts +359 -0
- package/dist/resolvers/RemoteBrowserActionResolver.d.ts.map +1 -0
- package/dist/resolvers/RemoteBrowserActionResolver.js +896 -0
- package/dist/resolvers/RemoteBrowserActionResolver.js.map +1 -0
- package/dist/services/ScheduledJobsService.d.ts.map +1 -1
- package/dist/services/ScheduledJobsService.js +6 -5
- package/dist/services/ScheduledJobsService.js.map +1 -1
- package/package.json +78 -74
- package/src/__tests__/RealtimeClientSessionResolver.test.ts +2605 -0
- package/src/__tests__/RemoteBrowserAudioStream.test.ts +174 -0
- package/src/__tests__/SessionJanitor.test.ts +234 -0
- package/src/__tests__/SessionManager.test.ts +465 -0
- package/src/__tests__/subscriptionRedaction.test.ts +5 -0
- package/src/agentSessions/HostInstance.ts +53 -0
- package/src/agentSessions/SessionJanitor.ts +267 -0
- package/src/agentSessions/SessionManager.ts +446 -0
- package/src/agentSessions/index.ts +27 -0
- package/src/auth/initializeProviders.ts +6 -1
- package/src/context.ts +42 -7
- package/src/generated/generated.ts +3111 -567
- package/src/generic/ResolverBase.ts +1 -1
- package/src/generic/RunViewResolver.ts +9 -9
- package/src/index.ts +98 -41
- package/src/logging/StartupLogger.ts +317 -0
- package/src/logging/variablesLoggingMiddleware.ts +25 -5
- package/src/resolvers/AgentSessionResolver.ts +138 -0
- package/src/resolvers/EntityPermissionResolver.ts +73 -0
- package/src/resolvers/RealtimeClientSessionResolver.ts +2162 -0
- package/src/resolvers/RemoteBrowserActionResolver.ts +907 -0
- package/src/services/ScheduledJobsService.ts +6 -5
|
@@ -861,6 +861,63 @@ export declare class MJAIAgentCategoryResolver extends ResolverBase {
|
|
|
861
861
|
UpdateMJAIAgentCategory(input: UpdateMJAIAgentCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
862
862
|
DeleteMJAIAgentCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
863
863
|
}
|
|
864
|
+
export declare class MJAIAgentChannel_ {
|
|
865
|
+
ID: string;
|
|
866
|
+
Name: string;
|
|
867
|
+
Description?: string;
|
|
868
|
+
ServerPluginClass: string;
|
|
869
|
+
ClientPluginClass: string;
|
|
870
|
+
TransportType: string;
|
|
871
|
+
ConfigSchema?: string;
|
|
872
|
+
IsActive: boolean;
|
|
873
|
+
_mj__CreatedAt: Date;
|
|
874
|
+
_mj__UpdatedAt: Date;
|
|
875
|
+
MJAIAgentSessionChannels_ChannelIDArray: MJAIAgentSessionChannel_[];
|
|
876
|
+
MJAIBridgeProviderChannels_ChannelIDArray: MJAIBridgeProviderChannel_[];
|
|
877
|
+
}
|
|
878
|
+
export declare class CreateMJAIAgentChannelInput {
|
|
879
|
+
ID?: string;
|
|
880
|
+
Name?: string;
|
|
881
|
+
Description: string | null;
|
|
882
|
+
ServerPluginClass?: string;
|
|
883
|
+
ClientPluginClass?: string;
|
|
884
|
+
TransportType?: string;
|
|
885
|
+
ConfigSchema: string | null;
|
|
886
|
+
IsActive?: boolean;
|
|
887
|
+
RestoreContext___?: RestoreContextInput;
|
|
888
|
+
}
|
|
889
|
+
export declare class UpdateMJAIAgentChannelInput {
|
|
890
|
+
ID: string;
|
|
891
|
+
Name?: string;
|
|
892
|
+
Description?: string | null;
|
|
893
|
+
ServerPluginClass?: string;
|
|
894
|
+
ClientPluginClass?: string;
|
|
895
|
+
TransportType?: string;
|
|
896
|
+
ConfigSchema?: string | null;
|
|
897
|
+
IsActive?: boolean;
|
|
898
|
+
OldValues___?: KeyValuePairInput[];
|
|
899
|
+
RestoreContext___?: RestoreContextInput;
|
|
900
|
+
}
|
|
901
|
+
export declare class RunMJAIAgentChannelViewResult {
|
|
902
|
+
Results: MJAIAgentChannel_[];
|
|
903
|
+
UserViewRunID?: string;
|
|
904
|
+
RowCount: number;
|
|
905
|
+
TotalRowCount: number;
|
|
906
|
+
ExecutionTime: number;
|
|
907
|
+
ErrorMessage?: string;
|
|
908
|
+
Success: boolean;
|
|
909
|
+
}
|
|
910
|
+
export declare class MJAIAgentChannelResolver extends ResolverBase {
|
|
911
|
+
RunMJAIAgentChannelViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
912
|
+
RunMJAIAgentChannelViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
913
|
+
RunMJAIAgentChannelDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
914
|
+
MJAIAgentChannel(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentChannel_ | null>;
|
|
915
|
+
MJAIAgentSessionChannels_ChannelIDArray(mjaiagentchannel_: MJAIAgentChannel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
916
|
+
MJAIBridgeProviderChannels_ChannelIDArray(mjaiagentchannel_: MJAIAgentChannel_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
917
|
+
CreateMJAIAgentChannel(input: CreateMJAIAgentChannelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
918
|
+
UpdateMJAIAgentChannel(input: UpdateMJAIAgentChannelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
919
|
+
DeleteMJAIAgentChannel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
920
|
+
}
|
|
864
921
|
export declare class MJAIAgentClientTool_ {
|
|
865
922
|
ID: string;
|
|
866
923
|
AgentID: string;
|
|
@@ -907,6 +964,65 @@ export declare class MJAIAgentClientToolResolver extends ResolverBase {
|
|
|
907
964
|
UpdateMJAIAgentClientTool(input: UpdateMJAIAgentClientToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
908
965
|
DeleteMJAIAgentClientTool(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
909
966
|
}
|
|
967
|
+
export declare class MJAIAgentCoAgent_ {
|
|
968
|
+
ID: string;
|
|
969
|
+
CoAgentID: string;
|
|
970
|
+
TargetAgentID?: string;
|
|
971
|
+
TargetAgentTypeID?: string;
|
|
972
|
+
Type: string;
|
|
973
|
+
IsDefault: boolean;
|
|
974
|
+
Sequence: number;
|
|
975
|
+
Status: string;
|
|
976
|
+
Configuration?: string;
|
|
977
|
+
_mj__CreatedAt: Date;
|
|
978
|
+
_mj__UpdatedAt: Date;
|
|
979
|
+
CoAgent?: string;
|
|
980
|
+
TargetAgent?: string;
|
|
981
|
+
TargetAgentType?: string;
|
|
982
|
+
}
|
|
983
|
+
export declare class CreateMJAIAgentCoAgentInput {
|
|
984
|
+
ID?: string;
|
|
985
|
+
CoAgentID?: string;
|
|
986
|
+
TargetAgentID: string | null;
|
|
987
|
+
TargetAgentTypeID: string | null;
|
|
988
|
+
Type?: string;
|
|
989
|
+
IsDefault?: boolean;
|
|
990
|
+
Sequence?: number;
|
|
991
|
+
Status?: string;
|
|
992
|
+
Configuration: string | null;
|
|
993
|
+
RestoreContext___?: RestoreContextInput;
|
|
994
|
+
}
|
|
995
|
+
export declare class UpdateMJAIAgentCoAgentInput {
|
|
996
|
+
ID: string;
|
|
997
|
+
CoAgentID?: string;
|
|
998
|
+
TargetAgentID?: string | null;
|
|
999
|
+
TargetAgentTypeID?: string | null;
|
|
1000
|
+
Type?: string;
|
|
1001
|
+
IsDefault?: boolean;
|
|
1002
|
+
Sequence?: number;
|
|
1003
|
+
Status?: string;
|
|
1004
|
+
Configuration?: string | null;
|
|
1005
|
+
OldValues___?: KeyValuePairInput[];
|
|
1006
|
+
RestoreContext___?: RestoreContextInput;
|
|
1007
|
+
}
|
|
1008
|
+
export declare class RunMJAIAgentCoAgentViewResult {
|
|
1009
|
+
Results: MJAIAgentCoAgent_[];
|
|
1010
|
+
UserViewRunID?: string;
|
|
1011
|
+
RowCount: number;
|
|
1012
|
+
TotalRowCount: number;
|
|
1013
|
+
ExecutionTime: number;
|
|
1014
|
+
ErrorMessage?: string;
|
|
1015
|
+
Success: boolean;
|
|
1016
|
+
}
|
|
1017
|
+
export declare class MJAIAgentCoAgentResolver extends ResolverBase {
|
|
1018
|
+
RunMJAIAgentCoAgentViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1019
|
+
RunMJAIAgentCoAgentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1020
|
+
RunMJAIAgentCoAgentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1021
|
+
MJAIAgentCoAgent(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentCoAgent_ | null>;
|
|
1022
|
+
CreateMJAIAgentCoAgent(input: CreateMJAIAgentCoAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1023
|
+
UpdateMJAIAgentCoAgent(input: UpdateMJAIAgentCoAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1024
|
+
DeleteMJAIAgentCoAgent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1025
|
+
}
|
|
910
1026
|
export declare class MJAIAgentConfiguration_ {
|
|
911
1027
|
ID: string;
|
|
912
1028
|
AgentID: string;
|
|
@@ -1379,6 +1495,7 @@ export declare class MJAIAgentNote_ {
|
|
|
1379
1495
|
DerivedFromNoteIDs?: string;
|
|
1380
1496
|
ProtectionTier: string;
|
|
1381
1497
|
ImportanceScore?: number;
|
|
1498
|
+
AuthorType: string;
|
|
1382
1499
|
Agent?: string;
|
|
1383
1500
|
AgentNoteType?: string;
|
|
1384
1501
|
User?: string;
|
|
@@ -1419,6 +1536,7 @@ export declare class CreateMJAIAgentNoteInput {
|
|
|
1419
1536
|
DerivedFromNoteIDs: string | null;
|
|
1420
1537
|
ProtectionTier?: string;
|
|
1421
1538
|
ImportanceScore: number | null;
|
|
1539
|
+
AuthorType?: string;
|
|
1422
1540
|
RestoreContext___?: RestoreContextInput;
|
|
1423
1541
|
}
|
|
1424
1542
|
export declare class UpdateMJAIAgentNoteInput {
|
|
@@ -1448,6 +1566,7 @@ export declare class UpdateMJAIAgentNoteInput {
|
|
|
1448
1566
|
DerivedFromNoteIDs?: string | null;
|
|
1449
1567
|
ProtectionTier?: string;
|
|
1450
1568
|
ImportanceScore?: number | null;
|
|
1569
|
+
AuthorType?: string;
|
|
1451
1570
|
OldValues___?: KeyValuePairInput[];
|
|
1452
1571
|
RestoreContext___?: RestoreContextInput;
|
|
1453
1572
|
}
|
|
@@ -2024,6 +2143,7 @@ export declare class MJAIAgentRun_ {
|
|
|
2024
2143
|
TotalCacheReadTokensUsed?: number;
|
|
2025
2144
|
TotalCacheWriteTokensUsed?: number;
|
|
2026
2145
|
LastHeartbeatAt?: Date;
|
|
2146
|
+
AgentSessionID?: string;
|
|
2027
2147
|
Agent?: string;
|
|
2028
2148
|
ParentRun?: string;
|
|
2029
2149
|
Conversation?: string;
|
|
@@ -2096,6 +2216,7 @@ export declare class CreateMJAIAgentRunInput {
|
|
|
2096
2216
|
TotalCacheReadTokensUsed: number | null;
|
|
2097
2217
|
TotalCacheWriteTokensUsed: number | null;
|
|
2098
2218
|
LastHeartbeatAt: Date | null;
|
|
2219
|
+
AgentSessionID: string | null;
|
|
2099
2220
|
RestoreContext___?: RestoreContextInput;
|
|
2100
2221
|
}
|
|
2101
2222
|
export declare class UpdateMJAIAgentRunInput {
|
|
@@ -2146,6 +2267,7 @@ export declare class UpdateMJAIAgentRunInput {
|
|
|
2146
2267
|
TotalCacheReadTokensUsed?: number | null;
|
|
2147
2268
|
TotalCacheWriteTokensUsed?: number | null;
|
|
2148
2269
|
LastHeartbeatAt?: Date | null;
|
|
2270
|
+
AgentSessionID?: string | null;
|
|
2149
2271
|
OldValues___?: KeyValuePairInput[];
|
|
2150
2272
|
RestoreContext___?: RestoreContextInput;
|
|
2151
2273
|
}
|
|
@@ -2247,6 +2369,274 @@ export declare class MJAIAgentSearchScopeResolver extends ResolverBase {
|
|
|
2247
2369
|
UpdateMJAIAgentSearchScope(input: UpdateMJAIAgentSearchScopeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2248
2370
|
DeleteMJAIAgentSearchScope(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2249
2371
|
}
|
|
2372
|
+
export declare class MJAIAgentSessionBridgeParticipant_ {
|
|
2373
|
+
ID: string;
|
|
2374
|
+
SessionBridgeID: string;
|
|
2375
|
+
ExternalParticipantID?: string;
|
|
2376
|
+
DisplayName?: string;
|
|
2377
|
+
Role: string;
|
|
2378
|
+
UserID?: string;
|
|
2379
|
+
IsAgent: boolean;
|
|
2380
|
+
JoinedAt?: Date;
|
|
2381
|
+
LeftAt?: Date;
|
|
2382
|
+
_mj__CreatedAt: Date;
|
|
2383
|
+
_mj__UpdatedAt: Date;
|
|
2384
|
+
SessionBridge?: string;
|
|
2385
|
+
User?: string;
|
|
2386
|
+
}
|
|
2387
|
+
export declare class CreateMJAIAgentSessionBridgeParticipantInput {
|
|
2388
|
+
ID?: string;
|
|
2389
|
+
SessionBridgeID?: string;
|
|
2390
|
+
ExternalParticipantID: string | null;
|
|
2391
|
+
DisplayName: string | null;
|
|
2392
|
+
Role?: string;
|
|
2393
|
+
UserID: string | null;
|
|
2394
|
+
IsAgent?: boolean;
|
|
2395
|
+
JoinedAt: Date | null;
|
|
2396
|
+
LeftAt: Date | null;
|
|
2397
|
+
RestoreContext___?: RestoreContextInput;
|
|
2398
|
+
}
|
|
2399
|
+
export declare class UpdateMJAIAgentSessionBridgeParticipantInput {
|
|
2400
|
+
ID: string;
|
|
2401
|
+
SessionBridgeID?: string;
|
|
2402
|
+
ExternalParticipantID?: string | null;
|
|
2403
|
+
DisplayName?: string | null;
|
|
2404
|
+
Role?: string;
|
|
2405
|
+
UserID?: string | null;
|
|
2406
|
+
IsAgent?: boolean;
|
|
2407
|
+
JoinedAt?: Date | null;
|
|
2408
|
+
LeftAt?: Date | null;
|
|
2409
|
+
OldValues___?: KeyValuePairInput[];
|
|
2410
|
+
RestoreContext___?: RestoreContextInput;
|
|
2411
|
+
}
|
|
2412
|
+
export declare class RunMJAIAgentSessionBridgeParticipantViewResult {
|
|
2413
|
+
Results: MJAIAgentSessionBridgeParticipant_[];
|
|
2414
|
+
UserViewRunID?: string;
|
|
2415
|
+
RowCount: number;
|
|
2416
|
+
TotalRowCount: number;
|
|
2417
|
+
ExecutionTime: number;
|
|
2418
|
+
ErrorMessage?: string;
|
|
2419
|
+
Success: boolean;
|
|
2420
|
+
}
|
|
2421
|
+
export declare class MJAIAgentSessionBridgeParticipantResolver extends ResolverBase {
|
|
2422
|
+
RunMJAIAgentSessionBridgeParticipantViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2423
|
+
RunMJAIAgentSessionBridgeParticipantViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2424
|
+
RunMJAIAgentSessionBridgeParticipantDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2425
|
+
MJAIAgentSessionBridgeParticipant(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentSessionBridgeParticipant_ | null>;
|
|
2426
|
+
CreateMJAIAgentSessionBridgeParticipant(input: CreateMJAIAgentSessionBridgeParticipantInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2427
|
+
UpdateMJAIAgentSessionBridgeParticipant(input: UpdateMJAIAgentSessionBridgeParticipantInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2428
|
+
DeleteMJAIAgentSessionBridgeParticipant(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2429
|
+
}
|
|
2430
|
+
export declare class MJAIAgentSessionBridge_ {
|
|
2431
|
+
ID: string;
|
|
2432
|
+
AgentSessionID: string;
|
|
2433
|
+
ProviderID: string;
|
|
2434
|
+
Direction: string;
|
|
2435
|
+
JoinMethod: string;
|
|
2436
|
+
TurnMode: string;
|
|
2437
|
+
ExternalConnectionID?: string;
|
|
2438
|
+
Address?: string;
|
|
2439
|
+
BotParticipantID?: string;
|
|
2440
|
+
Status: string;
|
|
2441
|
+
ScheduledStartTime?: Date;
|
|
2442
|
+
ConnectedAt?: Date;
|
|
2443
|
+
DisconnectedAt?: Date;
|
|
2444
|
+
CloseReason?: string;
|
|
2445
|
+
HostInstanceID?: string;
|
|
2446
|
+
Config?: string;
|
|
2447
|
+
_mj__CreatedAt: Date;
|
|
2448
|
+
_mj__UpdatedAt: Date;
|
|
2449
|
+
Provider: string;
|
|
2450
|
+
MJAIAgentSessionBridgeParticipants_SessionBridgeIDArray: MJAIAgentSessionBridgeParticipant_[];
|
|
2451
|
+
}
|
|
2452
|
+
export declare class CreateMJAIAgentSessionBridgeInput {
|
|
2453
|
+
ID?: string;
|
|
2454
|
+
AgentSessionID?: string;
|
|
2455
|
+
ProviderID?: string;
|
|
2456
|
+
Direction?: string;
|
|
2457
|
+
JoinMethod?: string;
|
|
2458
|
+
TurnMode?: string;
|
|
2459
|
+
ExternalConnectionID: string | null;
|
|
2460
|
+
Address: string | null;
|
|
2461
|
+
BotParticipantID: string | null;
|
|
2462
|
+
Status?: string;
|
|
2463
|
+
ScheduledStartTime: Date | null;
|
|
2464
|
+
ConnectedAt: Date | null;
|
|
2465
|
+
DisconnectedAt: Date | null;
|
|
2466
|
+
CloseReason: string | null;
|
|
2467
|
+
HostInstanceID: string | null;
|
|
2468
|
+
Config: string | null;
|
|
2469
|
+
RestoreContext___?: RestoreContextInput;
|
|
2470
|
+
}
|
|
2471
|
+
export declare class UpdateMJAIAgentSessionBridgeInput {
|
|
2472
|
+
ID: string;
|
|
2473
|
+
AgentSessionID?: string;
|
|
2474
|
+
ProviderID?: string;
|
|
2475
|
+
Direction?: string;
|
|
2476
|
+
JoinMethod?: string;
|
|
2477
|
+
TurnMode?: string;
|
|
2478
|
+
ExternalConnectionID?: string | null;
|
|
2479
|
+
Address?: string | null;
|
|
2480
|
+
BotParticipantID?: string | null;
|
|
2481
|
+
Status?: string;
|
|
2482
|
+
ScheduledStartTime?: Date | null;
|
|
2483
|
+
ConnectedAt?: Date | null;
|
|
2484
|
+
DisconnectedAt?: Date | null;
|
|
2485
|
+
CloseReason?: string | null;
|
|
2486
|
+
HostInstanceID?: string | null;
|
|
2487
|
+
Config?: string | null;
|
|
2488
|
+
OldValues___?: KeyValuePairInput[];
|
|
2489
|
+
RestoreContext___?: RestoreContextInput;
|
|
2490
|
+
}
|
|
2491
|
+
export declare class RunMJAIAgentSessionBridgeViewResult {
|
|
2492
|
+
Results: MJAIAgentSessionBridge_[];
|
|
2493
|
+
UserViewRunID?: string;
|
|
2494
|
+
RowCount: number;
|
|
2495
|
+
TotalRowCount: number;
|
|
2496
|
+
ExecutionTime: number;
|
|
2497
|
+
ErrorMessage?: string;
|
|
2498
|
+
Success: boolean;
|
|
2499
|
+
}
|
|
2500
|
+
export declare class MJAIAgentSessionBridgeResolver extends ResolverBase {
|
|
2501
|
+
RunMJAIAgentSessionBridgeViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2502
|
+
RunMJAIAgentSessionBridgeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2503
|
+
RunMJAIAgentSessionBridgeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2504
|
+
MJAIAgentSessionBridge(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentSessionBridge_ | null>;
|
|
2505
|
+
MJAIAgentSessionBridgeParticipants_SessionBridgeIDArray(mjaiagentsessionbridge_: MJAIAgentSessionBridge_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2506
|
+
CreateMJAIAgentSessionBridge(input: CreateMJAIAgentSessionBridgeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2507
|
+
UpdateMJAIAgentSessionBridge(input: UpdateMJAIAgentSessionBridgeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2508
|
+
DeleteMJAIAgentSessionBridge(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2509
|
+
}
|
|
2510
|
+
export declare class MJAIAgentSessionChannel_ {
|
|
2511
|
+
ID: string;
|
|
2512
|
+
AgentSessionID: string;
|
|
2513
|
+
ChannelID: string;
|
|
2514
|
+
Status: string;
|
|
2515
|
+
SocketUrl?: string;
|
|
2516
|
+
Config?: string;
|
|
2517
|
+
LastActiveAt: Date;
|
|
2518
|
+
DisconnectedAt?: Date;
|
|
2519
|
+
_mj__CreatedAt: Date;
|
|
2520
|
+
_mj__UpdatedAt: Date;
|
|
2521
|
+
Channel: string;
|
|
2522
|
+
}
|
|
2523
|
+
export declare class CreateMJAIAgentSessionChannelInput {
|
|
2524
|
+
ID?: string;
|
|
2525
|
+
AgentSessionID?: string;
|
|
2526
|
+
ChannelID?: string;
|
|
2527
|
+
Status?: string;
|
|
2528
|
+
SocketUrl: string | null;
|
|
2529
|
+
Config: string | null;
|
|
2530
|
+
LastActiveAt?: Date;
|
|
2531
|
+
DisconnectedAt: Date | null;
|
|
2532
|
+
RestoreContext___?: RestoreContextInput;
|
|
2533
|
+
}
|
|
2534
|
+
export declare class UpdateMJAIAgentSessionChannelInput {
|
|
2535
|
+
ID: string;
|
|
2536
|
+
AgentSessionID?: string;
|
|
2537
|
+
ChannelID?: string;
|
|
2538
|
+
Status?: string;
|
|
2539
|
+
SocketUrl?: string | null;
|
|
2540
|
+
Config?: string | null;
|
|
2541
|
+
LastActiveAt?: Date;
|
|
2542
|
+
DisconnectedAt?: Date | null;
|
|
2543
|
+
OldValues___?: KeyValuePairInput[];
|
|
2544
|
+
RestoreContext___?: RestoreContextInput;
|
|
2545
|
+
}
|
|
2546
|
+
export declare class RunMJAIAgentSessionChannelViewResult {
|
|
2547
|
+
Results: MJAIAgentSessionChannel_[];
|
|
2548
|
+
UserViewRunID?: string;
|
|
2549
|
+
RowCount: number;
|
|
2550
|
+
TotalRowCount: number;
|
|
2551
|
+
ExecutionTime: number;
|
|
2552
|
+
ErrorMessage?: string;
|
|
2553
|
+
Success: boolean;
|
|
2554
|
+
}
|
|
2555
|
+
export declare class MJAIAgentSessionChannelResolver extends ResolverBase {
|
|
2556
|
+
RunMJAIAgentSessionChannelViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2557
|
+
RunMJAIAgentSessionChannelViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2558
|
+
RunMJAIAgentSessionChannelDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2559
|
+
MJAIAgentSessionChannel(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentSessionChannel_ | null>;
|
|
2560
|
+
CreateMJAIAgentSessionChannel(input: CreateMJAIAgentSessionChannelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2561
|
+
UpdateMJAIAgentSessionChannel(input: UpdateMJAIAgentSessionChannelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2562
|
+
DeleteMJAIAgentSessionChannel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2563
|
+
}
|
|
2564
|
+
export declare class MJAIAgentSession_ {
|
|
2565
|
+
ID: string;
|
|
2566
|
+
AgentID: string;
|
|
2567
|
+
UserID: string;
|
|
2568
|
+
Status: string;
|
|
2569
|
+
ConversationID?: string;
|
|
2570
|
+
LastSessionID?: string;
|
|
2571
|
+
HostInstanceID?: string;
|
|
2572
|
+
Config?: string;
|
|
2573
|
+
LastActiveAt: Date;
|
|
2574
|
+
ClosedAt?: Date;
|
|
2575
|
+
CloseReason?: string;
|
|
2576
|
+
_mj__CreatedAt: Date;
|
|
2577
|
+
_mj__UpdatedAt: Date;
|
|
2578
|
+
Agent?: string;
|
|
2579
|
+
User: string;
|
|
2580
|
+
Conversation?: string;
|
|
2581
|
+
RootLastSessionID?: string;
|
|
2582
|
+
MJAIAgentRuns_AgentSessionIDArray: MJAIAgentRun_[];
|
|
2583
|
+
MJAIAgentSessionChannels_AgentSessionIDArray: MJAIAgentSessionChannel_[];
|
|
2584
|
+
MJConversationDetails_AgentSessionIDArray: MJConversationDetail_[];
|
|
2585
|
+
MJAIAgentSessions_LastSessionIDArray: MJAIAgentSession_[];
|
|
2586
|
+
MJAIAgentSessionBridges_AgentSessionIDArray: MJAIAgentSessionBridge_[];
|
|
2587
|
+
}
|
|
2588
|
+
export declare class CreateMJAIAgentSessionInput {
|
|
2589
|
+
ID?: string;
|
|
2590
|
+
AgentID?: string;
|
|
2591
|
+
UserID?: string;
|
|
2592
|
+
Status?: string;
|
|
2593
|
+
ConversationID: string | null;
|
|
2594
|
+
LastSessionID: string | null;
|
|
2595
|
+
HostInstanceID: string | null;
|
|
2596
|
+
Config: string | null;
|
|
2597
|
+
LastActiveAt?: Date;
|
|
2598
|
+
ClosedAt: Date | null;
|
|
2599
|
+
CloseReason: string | null;
|
|
2600
|
+
RestoreContext___?: RestoreContextInput;
|
|
2601
|
+
}
|
|
2602
|
+
export declare class UpdateMJAIAgentSessionInput {
|
|
2603
|
+
ID: string;
|
|
2604
|
+
AgentID?: string;
|
|
2605
|
+
UserID?: string;
|
|
2606
|
+
Status?: string;
|
|
2607
|
+
ConversationID?: string | null;
|
|
2608
|
+
LastSessionID?: string | null;
|
|
2609
|
+
HostInstanceID?: string | null;
|
|
2610
|
+
Config?: string | null;
|
|
2611
|
+
LastActiveAt?: Date;
|
|
2612
|
+
ClosedAt?: Date | null;
|
|
2613
|
+
CloseReason?: string | null;
|
|
2614
|
+
OldValues___?: KeyValuePairInput[];
|
|
2615
|
+
RestoreContext___?: RestoreContextInput;
|
|
2616
|
+
}
|
|
2617
|
+
export declare class RunMJAIAgentSessionViewResult {
|
|
2618
|
+
Results: MJAIAgentSession_[];
|
|
2619
|
+
UserViewRunID?: string;
|
|
2620
|
+
RowCount: number;
|
|
2621
|
+
TotalRowCount: number;
|
|
2622
|
+
ExecutionTime: number;
|
|
2623
|
+
ErrorMessage?: string;
|
|
2624
|
+
Success: boolean;
|
|
2625
|
+
}
|
|
2626
|
+
export declare class MJAIAgentSessionResolver extends ResolverBase {
|
|
2627
|
+
RunMJAIAgentSessionViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2628
|
+
RunMJAIAgentSessionViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2629
|
+
RunMJAIAgentSessionDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2630
|
+
MJAIAgentSession(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentSession_ | null>;
|
|
2631
|
+
MJAIAgentRuns_AgentSessionIDArray(mjaiagentsession_: MJAIAgentSession_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2632
|
+
MJAIAgentSessionChannels_AgentSessionIDArray(mjaiagentsession_: MJAIAgentSession_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2633
|
+
MJConversationDetails_AgentSessionIDArray(mjaiagentsession_: MJAIAgentSession_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2634
|
+
MJAIAgentSessions_LastSessionIDArray(mjaiagentsession_: MJAIAgentSession_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2635
|
+
MJAIAgentSessionBridges_AgentSessionIDArray(mjaiagentsession_: MJAIAgentSession_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2636
|
+
CreateMJAIAgentSession(input: CreateMJAIAgentSessionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2637
|
+
UpdateMJAIAgentSession(input: UpdateMJAIAgentSessionInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2638
|
+
DeleteMJAIAgentSession(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2639
|
+
}
|
|
2250
2640
|
export declare class MJAIAgentStepPath_ {
|
|
2251
2641
|
ID: string;
|
|
2252
2642
|
OriginStepID: string;
|
|
@@ -2415,8 +2805,11 @@ export declare class MJAIAgentType_ {
|
|
|
2415
2805
|
PromptParamsSchema?: string;
|
|
2416
2806
|
AssignmentStrategy?: string;
|
|
2417
2807
|
DefaultStorageAccountID?: string;
|
|
2808
|
+
ConfigSchema?: string;
|
|
2809
|
+
DefaultConfiguration?: string;
|
|
2418
2810
|
SystemPrompt?: string;
|
|
2419
2811
|
DefaultStorageAccount?: string;
|
|
2812
|
+
MJAIAgentCoAgents_TargetAgentTypeIDArray: MJAIAgentCoAgent_[];
|
|
2420
2813
|
MJAIAgents_TypeIDArray: MJAIAgent_[];
|
|
2421
2814
|
}
|
|
2422
2815
|
export declare class CreateMJAIAgentTypeInput {
|
|
@@ -2433,6 +2826,8 @@ export declare class CreateMJAIAgentTypeInput {
|
|
|
2433
2826
|
PromptParamsSchema: string | null;
|
|
2434
2827
|
AssignmentStrategy: string | null;
|
|
2435
2828
|
DefaultStorageAccountID: string | null;
|
|
2829
|
+
ConfigSchema: string | null;
|
|
2830
|
+
DefaultConfiguration: string | null;
|
|
2436
2831
|
RestoreContext___?: RestoreContextInput;
|
|
2437
2832
|
}
|
|
2438
2833
|
export declare class UpdateMJAIAgentTypeInput {
|
|
@@ -2449,6 +2844,8 @@ export declare class UpdateMJAIAgentTypeInput {
|
|
|
2449
2844
|
PromptParamsSchema?: string | null;
|
|
2450
2845
|
AssignmentStrategy?: string | null;
|
|
2451
2846
|
DefaultStorageAccountID?: string | null;
|
|
2847
|
+
ConfigSchema?: string | null;
|
|
2848
|
+
DefaultConfiguration?: string | null;
|
|
2452
2849
|
OldValues___?: KeyValuePairInput[];
|
|
2453
2850
|
RestoreContext___?: RestoreContextInput;
|
|
2454
2851
|
}
|
|
@@ -2466,6 +2863,7 @@ export declare class MJAIAgentTypeResolver extends ResolverBase {
|
|
|
2466
2863
|
RunMJAIAgentTypeViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2467
2864
|
RunMJAIAgentTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2468
2865
|
MJAIAgentType(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentType_ | null>;
|
|
2866
|
+
MJAIAgentCoAgents_TargetAgentTypeIDArray(mjaiagenttype_: MJAIAgentType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2469
2867
|
MJAIAgents_TypeIDArray(mjaiagenttype_: MJAIAgentType_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2470
2868
|
CreateMJAIAgentType(input: CreateMJAIAgentTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2471
2869
|
UpdateMJAIAgentType(input: UpdateMJAIAgentTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2538,6 +2936,9 @@ export declare class MJAIAgent_ {
|
|
|
2538
2936
|
DefaultStorageAccountID?: string;
|
|
2539
2937
|
SearchScopeAccess: string;
|
|
2540
2938
|
AcceptUnregisteredFiles: boolean;
|
|
2939
|
+
DefaultCoAgentID?: string;
|
|
2940
|
+
TypeConfiguration?: string;
|
|
2941
|
+
AllowMemoryWrite: boolean;
|
|
2541
2942
|
Parent?: string;
|
|
2542
2943
|
ContextCompressionPrompt?: string;
|
|
2543
2944
|
Type?: string;
|
|
@@ -2546,7 +2947,9 @@ export declare class MJAIAgent_ {
|
|
|
2546
2947
|
AttachmentStorageProvider?: string;
|
|
2547
2948
|
Category?: string;
|
|
2548
2949
|
DefaultStorageAccount?: string;
|
|
2950
|
+
DefaultCoAgent?: string;
|
|
2549
2951
|
RootParentID?: string;
|
|
2952
|
+
RootDefaultCoAgentID?: string;
|
|
2550
2953
|
MJAIAgentActions_AgentIDArray: MJAIAgentAction_[];
|
|
2551
2954
|
MJAIAgentArtifactTypes_AgentIDArray: MJAIAgentArtifactType_[];
|
|
2552
2955
|
MJAIAgentClientTools_AgentIDArray: MJAIAgentClientTool_[];
|
|
@@ -2574,6 +2977,11 @@ export declare class MJAIAgent_ {
|
|
|
2574
2977
|
MJAIAgents_ParentIDArray: MJAIAgent_[];
|
|
2575
2978
|
MJActions_CreatedByAgentIDArray: MJAction_[];
|
|
2576
2979
|
MJConversations_DefaultAgentIDArray: MJConversation_[];
|
|
2980
|
+
MJAIAgentSessions_AgentIDArray: MJAIAgentSession_[];
|
|
2981
|
+
MJAIAgents_DefaultCoAgentIDArray: MJAIAgent_[];
|
|
2982
|
+
MJAIAgentCoAgents_CoAgentIDArray: MJAIAgentCoAgent_[];
|
|
2983
|
+
MJAIAgentCoAgents_TargetAgentIDArray: MJAIAgentCoAgent_[];
|
|
2984
|
+
MJAIBridgeAgentIdentities_AgentIDArray: MJAIBridgeAgentIdentity_[];
|
|
2577
2985
|
}
|
|
2578
2986
|
export declare class CreateMJAIAgentInput {
|
|
2579
2987
|
ID?: string;
|
|
@@ -2640,6 +3048,9 @@ export declare class CreateMJAIAgentInput {
|
|
|
2640
3048
|
DefaultStorageAccountID: string | null;
|
|
2641
3049
|
SearchScopeAccess?: string;
|
|
2642
3050
|
AcceptUnregisteredFiles?: boolean;
|
|
3051
|
+
DefaultCoAgentID: string | null;
|
|
3052
|
+
TypeConfiguration: string | null;
|
|
3053
|
+
AllowMemoryWrite?: boolean;
|
|
2643
3054
|
RestoreContext___?: RestoreContextInput;
|
|
2644
3055
|
}
|
|
2645
3056
|
export declare class UpdateMJAIAgentInput {
|
|
@@ -2707,6 +3118,9 @@ export declare class UpdateMJAIAgentInput {
|
|
|
2707
3118
|
DefaultStorageAccountID?: string | null;
|
|
2708
3119
|
SearchScopeAccess?: string;
|
|
2709
3120
|
AcceptUnregisteredFiles?: boolean;
|
|
3121
|
+
DefaultCoAgentID?: string | null;
|
|
3122
|
+
TypeConfiguration?: string | null;
|
|
3123
|
+
AllowMemoryWrite?: boolean;
|
|
2710
3124
|
OldValues___?: KeyValuePairInput[];
|
|
2711
3125
|
RestoreContext___?: RestoreContextInput;
|
|
2712
3126
|
}
|
|
@@ -2751,6 +3165,11 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
2751
3165
|
MJAIAgents_ParentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2752
3166
|
MJActions_CreatedByAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2753
3167
|
MJConversations_DefaultAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3168
|
+
MJAIAgentSessions_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3169
|
+
MJAIAgents_DefaultCoAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3170
|
+
MJAIAgentCoAgents_CoAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3171
|
+
MJAIAgentCoAgents_TargetAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3172
|
+
MJAIBridgeAgentIdentities_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2754
3173
|
CreateMJAIAgent(input: CreateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2755
3174
|
UpdateMJAIAgent(input: UpdateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2756
3175
|
DeleteMJAIAgent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2814,6 +3233,172 @@ export declare class MJAIArchitectureResolver extends ResolverBase {
|
|
|
2814
3233
|
UpdateMJAIArchitecture(input: UpdateMJAIArchitectureInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2815
3234
|
DeleteMJAIArchitecture(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2816
3235
|
}
|
|
3236
|
+
export declare class MJAIBridgeAgentIdentity_ {
|
|
3237
|
+
ID: string;
|
|
3238
|
+
AgentID: string;
|
|
3239
|
+
ProviderID: string;
|
|
3240
|
+
IdentityType: string;
|
|
3241
|
+
IdentityValue: string;
|
|
3242
|
+
DisplayName?: string;
|
|
3243
|
+
IsActive: boolean;
|
|
3244
|
+
Configuration?: string;
|
|
3245
|
+
_mj__CreatedAt: Date;
|
|
3246
|
+
_mj__UpdatedAt: Date;
|
|
3247
|
+
Agent?: string;
|
|
3248
|
+
Provider: string;
|
|
3249
|
+
}
|
|
3250
|
+
export declare class CreateMJAIBridgeAgentIdentityInput {
|
|
3251
|
+
ID?: string;
|
|
3252
|
+
AgentID?: string;
|
|
3253
|
+
ProviderID?: string;
|
|
3254
|
+
IdentityType?: string;
|
|
3255
|
+
IdentityValue?: string;
|
|
3256
|
+
DisplayName: string | null;
|
|
3257
|
+
IsActive?: boolean;
|
|
3258
|
+
Configuration: string | null;
|
|
3259
|
+
RestoreContext___?: RestoreContextInput;
|
|
3260
|
+
}
|
|
3261
|
+
export declare class UpdateMJAIBridgeAgentIdentityInput {
|
|
3262
|
+
ID: string;
|
|
3263
|
+
AgentID?: string;
|
|
3264
|
+
ProviderID?: string;
|
|
3265
|
+
IdentityType?: string;
|
|
3266
|
+
IdentityValue?: string;
|
|
3267
|
+
DisplayName?: string | null;
|
|
3268
|
+
IsActive?: boolean;
|
|
3269
|
+
Configuration?: string | null;
|
|
3270
|
+
OldValues___?: KeyValuePairInput[];
|
|
3271
|
+
RestoreContext___?: RestoreContextInput;
|
|
3272
|
+
}
|
|
3273
|
+
export declare class RunMJAIBridgeAgentIdentityViewResult {
|
|
3274
|
+
Results: MJAIBridgeAgentIdentity_[];
|
|
3275
|
+
UserViewRunID?: string;
|
|
3276
|
+
RowCount: number;
|
|
3277
|
+
TotalRowCount: number;
|
|
3278
|
+
ExecutionTime: number;
|
|
3279
|
+
ErrorMessage?: string;
|
|
3280
|
+
Success: boolean;
|
|
3281
|
+
}
|
|
3282
|
+
export declare class MJAIBridgeAgentIdentityResolver extends ResolverBase {
|
|
3283
|
+
RunMJAIBridgeAgentIdentityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3284
|
+
RunMJAIBridgeAgentIdentityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3285
|
+
RunMJAIBridgeAgentIdentityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3286
|
+
MJAIBridgeAgentIdentity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIBridgeAgentIdentity_ | null>;
|
|
3287
|
+
CreateMJAIBridgeAgentIdentity(input: CreateMJAIBridgeAgentIdentityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3288
|
+
UpdateMJAIBridgeAgentIdentity(input: UpdateMJAIBridgeAgentIdentityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3289
|
+
DeleteMJAIBridgeAgentIdentity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3290
|
+
}
|
|
3291
|
+
export declare class MJAIBridgeProviderChannel_ {
|
|
3292
|
+
ID: string;
|
|
3293
|
+
ProviderID: string;
|
|
3294
|
+
ChannelID: string;
|
|
3295
|
+
IsDefault: boolean;
|
|
3296
|
+
Sequence: number;
|
|
3297
|
+
Configuration?: string;
|
|
3298
|
+
_mj__CreatedAt: Date;
|
|
3299
|
+
_mj__UpdatedAt: Date;
|
|
3300
|
+
Provider: string;
|
|
3301
|
+
Channel: string;
|
|
3302
|
+
}
|
|
3303
|
+
export declare class CreateMJAIBridgeProviderChannelInput {
|
|
3304
|
+
ID?: string;
|
|
3305
|
+
ProviderID?: string;
|
|
3306
|
+
ChannelID?: string;
|
|
3307
|
+
IsDefault?: boolean;
|
|
3308
|
+
Sequence?: number;
|
|
3309
|
+
Configuration: string | null;
|
|
3310
|
+
RestoreContext___?: RestoreContextInput;
|
|
3311
|
+
}
|
|
3312
|
+
export declare class UpdateMJAIBridgeProviderChannelInput {
|
|
3313
|
+
ID: string;
|
|
3314
|
+
ProviderID?: string;
|
|
3315
|
+
ChannelID?: string;
|
|
3316
|
+
IsDefault?: boolean;
|
|
3317
|
+
Sequence?: number;
|
|
3318
|
+
Configuration?: string | null;
|
|
3319
|
+
OldValues___?: KeyValuePairInput[];
|
|
3320
|
+
RestoreContext___?: RestoreContextInput;
|
|
3321
|
+
}
|
|
3322
|
+
export declare class RunMJAIBridgeProviderChannelViewResult {
|
|
3323
|
+
Results: MJAIBridgeProviderChannel_[];
|
|
3324
|
+
UserViewRunID?: string;
|
|
3325
|
+
RowCount: number;
|
|
3326
|
+
TotalRowCount: number;
|
|
3327
|
+
ExecutionTime: number;
|
|
3328
|
+
ErrorMessage?: string;
|
|
3329
|
+
Success: boolean;
|
|
3330
|
+
}
|
|
3331
|
+
export declare class MJAIBridgeProviderChannelResolver extends ResolverBase {
|
|
3332
|
+
RunMJAIBridgeProviderChannelViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3333
|
+
RunMJAIBridgeProviderChannelViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3334
|
+
RunMJAIBridgeProviderChannelDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3335
|
+
MJAIBridgeProviderChannel(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIBridgeProviderChannel_ | null>;
|
|
3336
|
+
CreateMJAIBridgeProviderChannel(input: CreateMJAIBridgeProviderChannelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3337
|
+
UpdateMJAIBridgeProviderChannel(input: UpdateMJAIBridgeProviderChannelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3338
|
+
DeleteMJAIBridgeProviderChannel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3339
|
+
}
|
|
3340
|
+
export declare class MJAIBridgeProvider_ {
|
|
3341
|
+
ID: string;
|
|
3342
|
+
Name: string;
|
|
3343
|
+
Description?: string;
|
|
3344
|
+
BridgeType: string;
|
|
3345
|
+
DriverClass: string;
|
|
3346
|
+
Status: string;
|
|
3347
|
+
SupportedFeatures?: string;
|
|
3348
|
+
ConfigSchema?: string;
|
|
3349
|
+
Configuration?: string;
|
|
3350
|
+
_mj__CreatedAt: Date;
|
|
3351
|
+
_mj__UpdatedAt: Date;
|
|
3352
|
+
MJAIAgentSessionBridges_ProviderIDArray: MJAIAgentSessionBridge_[];
|
|
3353
|
+
MJAIBridgeProviderChannels_ProviderIDArray: MJAIBridgeProviderChannel_[];
|
|
3354
|
+
MJAIBridgeAgentIdentities_ProviderIDArray: MJAIBridgeAgentIdentity_[];
|
|
3355
|
+
}
|
|
3356
|
+
export declare class CreateMJAIBridgeProviderInput {
|
|
3357
|
+
ID?: string;
|
|
3358
|
+
Name?: string;
|
|
3359
|
+
Description: string | null;
|
|
3360
|
+
BridgeType?: string;
|
|
3361
|
+
DriverClass?: string;
|
|
3362
|
+
Status?: string;
|
|
3363
|
+
SupportedFeatures: string | null;
|
|
3364
|
+
ConfigSchema: string | null;
|
|
3365
|
+
Configuration: string | null;
|
|
3366
|
+
RestoreContext___?: RestoreContextInput;
|
|
3367
|
+
}
|
|
3368
|
+
export declare class UpdateMJAIBridgeProviderInput {
|
|
3369
|
+
ID: string;
|
|
3370
|
+
Name?: string;
|
|
3371
|
+
Description?: string | null;
|
|
3372
|
+
BridgeType?: string;
|
|
3373
|
+
DriverClass?: string;
|
|
3374
|
+
Status?: string;
|
|
3375
|
+
SupportedFeatures?: string | null;
|
|
3376
|
+
ConfigSchema?: string | null;
|
|
3377
|
+
Configuration?: string | null;
|
|
3378
|
+
OldValues___?: KeyValuePairInput[];
|
|
3379
|
+
RestoreContext___?: RestoreContextInput;
|
|
3380
|
+
}
|
|
3381
|
+
export declare class RunMJAIBridgeProviderViewResult {
|
|
3382
|
+
Results: MJAIBridgeProvider_[];
|
|
3383
|
+
UserViewRunID?: string;
|
|
3384
|
+
RowCount: number;
|
|
3385
|
+
TotalRowCount: number;
|
|
3386
|
+
ExecutionTime: number;
|
|
3387
|
+
ErrorMessage?: string;
|
|
3388
|
+
Success: boolean;
|
|
3389
|
+
}
|
|
3390
|
+
export declare class MJAIBridgeProviderResolver extends ResolverBase {
|
|
3391
|
+
RunMJAIBridgeProviderViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3392
|
+
RunMJAIBridgeProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3393
|
+
RunMJAIBridgeProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3394
|
+
MJAIBridgeProvider(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIBridgeProvider_ | null>;
|
|
3395
|
+
MJAIAgentSessionBridges_ProviderIDArray(mjaibridgeprovider_: MJAIBridgeProvider_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3396
|
+
MJAIBridgeProviderChannels_ProviderIDArray(mjaibridgeprovider_: MJAIBridgeProvider_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3397
|
+
MJAIBridgeAgentIdentities_ProviderIDArray(mjaibridgeprovider_: MJAIBridgeProvider_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3398
|
+
CreateMJAIBridgeProvider(input: CreateMJAIBridgeProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3399
|
+
UpdateMJAIBridgeProvider(input: UpdateMJAIBridgeProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3400
|
+
DeleteMJAIBridgeProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3401
|
+
}
|
|
2817
3402
|
export declare class MJAIClientToolDefinition_ {
|
|
2818
3403
|
ID: string;
|
|
2819
3404
|
Name: string;
|
|
@@ -4497,6 +5082,65 @@ export declare class MJAIPromptResolver extends ResolverBase {
|
|
|
4497
5082
|
UpdateMJAIPrompt(input: UpdateMJAIPromptInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4498
5083
|
DeleteMJAIPrompt(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4499
5084
|
}
|
|
5085
|
+
export declare class MJAIRemoteBrowserProvider_ {
|
|
5086
|
+
ID: string;
|
|
5087
|
+
Name: string;
|
|
5088
|
+
Description?: string;
|
|
5089
|
+
ProviderType: string;
|
|
5090
|
+
DriverClass: string;
|
|
5091
|
+
Status: string;
|
|
5092
|
+
SupportedFeatures?: string;
|
|
5093
|
+
DefaultControlMode: string;
|
|
5094
|
+
ConfigSchema?: string;
|
|
5095
|
+
Configuration?: string;
|
|
5096
|
+
_mj__CreatedAt: Date;
|
|
5097
|
+
_mj__UpdatedAt: Date;
|
|
5098
|
+
}
|
|
5099
|
+
export declare class CreateMJAIRemoteBrowserProviderInput {
|
|
5100
|
+
ID?: string;
|
|
5101
|
+
Name?: string;
|
|
5102
|
+
Description: string | null;
|
|
5103
|
+
ProviderType?: string;
|
|
5104
|
+
DriverClass?: string;
|
|
5105
|
+
Status?: string;
|
|
5106
|
+
SupportedFeatures: string | null;
|
|
5107
|
+
DefaultControlMode?: string;
|
|
5108
|
+
ConfigSchema: string | null;
|
|
5109
|
+
Configuration: string | null;
|
|
5110
|
+
RestoreContext___?: RestoreContextInput;
|
|
5111
|
+
}
|
|
5112
|
+
export declare class UpdateMJAIRemoteBrowserProviderInput {
|
|
5113
|
+
ID: string;
|
|
5114
|
+
Name?: string;
|
|
5115
|
+
Description?: string | null;
|
|
5116
|
+
ProviderType?: string;
|
|
5117
|
+
DriverClass?: string;
|
|
5118
|
+
Status?: string;
|
|
5119
|
+
SupportedFeatures?: string | null;
|
|
5120
|
+
DefaultControlMode?: string;
|
|
5121
|
+
ConfigSchema?: string | null;
|
|
5122
|
+
Configuration?: string | null;
|
|
5123
|
+
OldValues___?: KeyValuePairInput[];
|
|
5124
|
+
RestoreContext___?: RestoreContextInput;
|
|
5125
|
+
}
|
|
5126
|
+
export declare class RunMJAIRemoteBrowserProviderViewResult {
|
|
5127
|
+
Results: MJAIRemoteBrowserProvider_[];
|
|
5128
|
+
UserViewRunID?: string;
|
|
5129
|
+
RowCount: number;
|
|
5130
|
+
TotalRowCount: number;
|
|
5131
|
+
ExecutionTime: number;
|
|
5132
|
+
ErrorMessage?: string;
|
|
5133
|
+
Success: boolean;
|
|
5134
|
+
}
|
|
5135
|
+
export declare class MJAIRemoteBrowserProviderResolver extends ResolverBase {
|
|
5136
|
+
RunMJAIRemoteBrowserProviderViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5137
|
+
RunMJAIRemoteBrowserProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5138
|
+
RunMJAIRemoteBrowserProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5139
|
+
MJAIRemoteBrowserProvider(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIRemoteBrowserProvider_ | null>;
|
|
5140
|
+
CreateMJAIRemoteBrowserProvider(input: CreateMJAIRemoteBrowserProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5141
|
+
UpdateMJAIRemoteBrowserProvider(input: UpdateMJAIRemoteBrowserProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5142
|
+
DeleteMJAIRemoteBrowserProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5143
|
+
}
|
|
4500
5144
|
export declare class MJAIResultCache_ {
|
|
4501
5145
|
ID: string;
|
|
4502
5146
|
AIPromptID: string;
|
|
@@ -8697,7 +9341,7 @@ export declare class MJConversationDetailArtifact_ {
|
|
|
8697
9341
|
Direction: string;
|
|
8698
9342
|
_mj__CreatedAt: Date;
|
|
8699
9343
|
_mj__UpdatedAt: Date;
|
|
8700
|
-
ConversationDetail
|
|
9344
|
+
ConversationDetail?: string;
|
|
8701
9345
|
ArtifactVersion?: string;
|
|
8702
9346
|
}
|
|
8703
9347
|
export declare class CreateMJConversationDetailArtifactInput {
|
|
@@ -8751,7 +9395,7 @@ export declare class MJConversationDetailAttachment_ {
|
|
|
8751
9395
|
_mj__UpdatedAt: Date;
|
|
8752
9396
|
Description?: string;
|
|
8753
9397
|
ArtifactVersionID?: string;
|
|
8754
|
-
ConversationDetail
|
|
9398
|
+
ConversationDetail?: string;
|
|
8755
9399
|
Modality: string;
|
|
8756
9400
|
File?: string;
|
|
8757
9401
|
ArtifactVersion?: string;
|
|
@@ -8819,7 +9463,7 @@ export declare class MJConversationDetailRating_ {
|
|
|
8819
9463
|
Comments?: string;
|
|
8820
9464
|
_mj__CreatedAt: Date;
|
|
8821
9465
|
_mj__UpdatedAt: Date;
|
|
8822
|
-
ConversationDetail
|
|
9466
|
+
ConversationDetail?: string;
|
|
8823
9467
|
User: string;
|
|
8824
9468
|
}
|
|
8825
9469
|
export declare class CreateMJConversationDetailRatingInput {
|
|
@@ -8885,6 +9529,7 @@ export declare class MJConversationDetail_ {
|
|
|
8885
9529
|
ActionableCommands?: string;
|
|
8886
9530
|
AutomaticCommands?: string;
|
|
8887
9531
|
OriginalMessageChanged: boolean;
|
|
9532
|
+
AgentSessionID?: string;
|
|
8888
9533
|
Conversation?: string;
|
|
8889
9534
|
User?: string;
|
|
8890
9535
|
Artifact?: string;
|
|
@@ -8929,6 +9574,7 @@ export declare class CreateMJConversationDetailInput {
|
|
|
8929
9574
|
ActionableCommands: string | null;
|
|
8930
9575
|
AutomaticCommands: string | null;
|
|
8931
9576
|
OriginalMessageChanged?: boolean;
|
|
9577
|
+
AgentSessionID: string | null;
|
|
8932
9578
|
RestoreContext___?: RestoreContextInput;
|
|
8933
9579
|
}
|
|
8934
9580
|
export declare class UpdateMJConversationDetailInput {
|
|
@@ -8957,6 +9603,7 @@ export declare class UpdateMJConversationDetailInput {
|
|
|
8957
9603
|
ActionableCommands?: string | null;
|
|
8958
9604
|
AutomaticCommands?: string | null;
|
|
8959
9605
|
OriginalMessageChanged?: boolean;
|
|
9606
|
+
AgentSessionID?: string | null;
|
|
8960
9607
|
OldValues___?: KeyValuePairInput[];
|
|
8961
9608
|
RestoreContext___?: RestoreContextInput;
|
|
8962
9609
|
}
|
|
@@ -9023,6 +9670,7 @@ export declare class MJConversation_ {
|
|
|
9023
9670
|
MJAIAgentNotes_SourceConversationIDArray: MJAIAgentNote_[];
|
|
9024
9671
|
MJAIAgentRuns_ConversationIDArray: MJAIAgentRun_[];
|
|
9025
9672
|
MJAIAgentExamples_SourceConversationIDArray: MJAIAgentExample_[];
|
|
9673
|
+
MJAIAgentSessions_ConversationIDArray: MJAIAgentSession_[];
|
|
9026
9674
|
}
|
|
9027
9675
|
export declare class CreateMJConversationInput {
|
|
9028
9676
|
ID?: string;
|
|
@@ -9089,6 +9737,7 @@ export declare class MJConversationResolver extends ResolverBase {
|
|
|
9089
9737
|
MJAIAgentNotes_SourceConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9090
9738
|
MJAIAgentRuns_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9091
9739
|
MJAIAgentExamples_SourceConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9740
|
+
MJAIAgentSessions_ConversationIDArray(mjconversation_: MJConversation_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
9092
9741
|
CreateMJConversation(input: CreateMJConversationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9093
9742
|
UpdateMJConversation(input: UpdateMJConversationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
9094
9743
|
DeleteMJConversation(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -17566,6 +18215,7 @@ export declare class MJScheduledJob_ {
|
|
|
17566
18215
|
_mj__CreatedAt: Date;
|
|
17567
18216
|
_mj__UpdatedAt: Date;
|
|
17568
18217
|
RunImmediatelyIfNeverRun: boolean;
|
|
18218
|
+
MaxRuntimeMinutes?: number;
|
|
17569
18219
|
JobType: string;
|
|
17570
18220
|
OwnerUser?: string;
|
|
17571
18221
|
NotifyUser?: string;
|
|
@@ -17600,6 +18250,7 @@ export declare class CreateMJScheduledJobInput {
|
|
|
17600
18250
|
ExpectedCompletionAt: Date | null;
|
|
17601
18251
|
ConcurrencyMode?: string;
|
|
17602
18252
|
RunImmediatelyIfNeverRun?: boolean;
|
|
18253
|
+
MaxRuntimeMinutes: number | null;
|
|
17603
18254
|
RestoreContext___?: RestoreContextInput;
|
|
17604
18255
|
}
|
|
17605
18256
|
export declare class UpdateMJScheduledJobInput {
|
|
@@ -17630,6 +18281,7 @@ export declare class UpdateMJScheduledJobInput {
|
|
|
17630
18281
|
ExpectedCompletionAt?: Date | null;
|
|
17631
18282
|
ConcurrencyMode?: string;
|
|
17632
18283
|
RunImmediatelyIfNeverRun?: boolean;
|
|
18284
|
+
MaxRuntimeMinutes?: number | null;
|
|
17633
18285
|
OldValues___?: KeyValuePairInput[];
|
|
17634
18286
|
RestoreContext___?: RestoreContextInput;
|
|
17635
18287
|
}
|
|
@@ -21169,6 +21821,8 @@ export declare class MJUser_ {
|
|
|
21169
21821
|
MJClusterAnalysis_UserIDArray: MJClusterAnalysis_[];
|
|
21170
21822
|
MJMagicLinkRedemptions_ProvisionedUserIDArray: MJMagicLinkRedemption_[];
|
|
21171
21823
|
MJMagicLinkInvites_CreatedByUserIDArray: MJMagicLinkInvite_[];
|
|
21824
|
+
MJAIAgentSessions_UserIDArray: MJAIAgentSession_[];
|
|
21825
|
+
MJAIAgentSessionBridgeParticipants_UserIDArray: MJAIAgentSessionBridgeParticipant_[];
|
|
21172
21826
|
}
|
|
21173
21827
|
export declare class CreateMJUserInput {
|
|
21174
21828
|
ID?: string;
|
|
@@ -21321,6 +21975,8 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
21321
21975
|
MJClusterAnalysis_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21322
21976
|
MJMagicLinkRedemptions_ProvisionedUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21323
21977
|
MJMagicLinkInvites_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21978
|
+
MJAIAgentSessions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21979
|
+
MJAIAgentSessionBridgeParticipants_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
21324
21980
|
CreateMJUser(input: CreateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21325
21981
|
UpdateMJUser(input: UpdateMJUserInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
21326
21982
|
DeleteMJUser(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|