@memberjunction/server 5.28.0 → 5.30.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/auth/newUsers.d.ts.map +1 -1
- package/dist/auth/newUsers.js +63 -70
- package/dist/auth/newUsers.js.map +1 -1
- package/dist/config.d.ts +151 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +15 -0
- package/dist/config.js.map +1 -1
- package/dist/generated/generated.d.ts +452 -6
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +2788 -303
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/resolvers/FeedbackResolver.d.ts +150 -0
- package/dist/resolvers/FeedbackResolver.d.ts.map +1 -0
- package/dist/resolvers/FeedbackResolver.js +876 -0
- package/dist/resolvers/FeedbackResolver.js.map +1 -0
- package/dist/resolvers/FileResolver.d.ts +27 -0
- package/dist/resolvers/FileResolver.d.ts.map +1 -1
- package/dist/resolvers/FileResolver.js +32 -3
- package/dist/resolvers/FileResolver.js.map +1 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts +100 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.d.ts.map +1 -1
- package/dist/resolvers/IntegrationDiscoveryResolver.js +532 -41
- package/dist/resolvers/IntegrationDiscoveryResolver.js.map +1 -1
- package/dist/resolvers/MCPResolver.d.ts +77 -0
- package/dist/resolvers/MCPResolver.d.ts.map +1 -1
- package/dist/resolvers/MCPResolver.js +300 -1
- package/dist/resolvers/MCPResolver.js.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIAgentResolver.js +87 -32
- package/dist/resolvers/RunAIAgentResolver.js.map +1 -1
- package/dist/resolvers/SyncDataResolver.d.ts.map +1 -1
- package/dist/resolvers/SyncDataResolver.js +20 -12
- package/dist/resolvers/SyncDataResolver.js.map +1 -1
- package/dist/resolvers/SyncRolesUsersResolver.d.ts +20 -9
- package/dist/resolvers/SyncRolesUsersResolver.d.ts.map +1 -1
- package/dist/resolvers/SyncRolesUsersResolver.js +153 -116
- package/dist/resolvers/SyncRolesUsersResolver.js.map +1 -1
- package/dist/services/TaskOrchestrator.d.ts.map +1 -1
- package/dist/services/TaskOrchestrator.js +78 -79
- package/dist/services/TaskOrchestrator.js.map +1 -1
- package/package.json +68 -66
- package/src/auth/newUsers.ts +65 -74
- package/src/config.ts +19 -0
- package/src/generated/generated.ts +1753 -40
- package/src/index.ts +1 -0
- package/src/resolvers/FeedbackResolver.ts +940 -0
- package/src/resolvers/FileResolver.ts +33 -4
- package/src/resolvers/IntegrationDiscoveryResolver.ts +543 -43
- package/src/resolvers/MCPResolver.ts +297 -1
- package/src/resolvers/RunAIAgentResolver.ts +89 -32
- package/src/resolvers/SyncDataResolver.ts +24 -14
- package/src/resolvers/SyncRolesUsersResolver.ts +177 -141
- package/src/services/TaskOrchestrator.ts +86 -93
|
@@ -534,10 +534,14 @@ export declare class MJAction_ {
|
|
|
534
534
|
IconClass?: string;
|
|
535
535
|
DefaultCompactPromptID?: string;
|
|
536
536
|
Config?: string;
|
|
537
|
+
RuntimeActionConfiguration?: string;
|
|
538
|
+
MaxExecutionTimeMS?: number;
|
|
539
|
+
CreatedByAgentID?: string;
|
|
537
540
|
Category?: string;
|
|
538
541
|
CodeApprovedByUser?: string;
|
|
539
542
|
Parent?: string;
|
|
540
543
|
DefaultCompactPrompt?: string;
|
|
544
|
+
CreatedByAgent?: string;
|
|
541
545
|
RootParentID?: string;
|
|
542
546
|
MJActionParams_ActionIDArray: MJActionParam_[];
|
|
543
547
|
MJActionLibraries_ActionIDArray: MJActionLibrary_[];
|
|
@@ -575,6 +579,9 @@ export declare class CreateMJActionInput {
|
|
|
575
579
|
IconClass: string | null;
|
|
576
580
|
DefaultCompactPromptID: string | null;
|
|
577
581
|
Config: string | null;
|
|
582
|
+
RuntimeActionConfiguration: string | null;
|
|
583
|
+
MaxExecutionTimeMS: number | null;
|
|
584
|
+
CreatedByAgentID: string | null;
|
|
578
585
|
RestoreContext___?: RestoreContextInput;
|
|
579
586
|
}
|
|
580
587
|
export declare class UpdateMJActionInput {
|
|
@@ -600,6 +607,9 @@ export declare class UpdateMJActionInput {
|
|
|
600
607
|
IconClass?: string | null;
|
|
601
608
|
DefaultCompactPromptID?: string | null;
|
|
602
609
|
Config?: string | null;
|
|
610
|
+
RuntimeActionConfiguration?: string | null;
|
|
611
|
+
MaxExecutionTimeMS?: number | null;
|
|
612
|
+
CreatedByAgentID?: string | null;
|
|
603
613
|
OldValues___?: KeyValuePairInput[];
|
|
604
614
|
RestoreContext___?: RestoreContextInput;
|
|
605
615
|
}
|
|
@@ -1364,6 +1374,11 @@ export declare class MJAIAgentNote_ {
|
|
|
1364
1374
|
LastAccessedAt?: Date;
|
|
1365
1375
|
AccessCount: number;
|
|
1366
1376
|
ExpiresAt?: Date;
|
|
1377
|
+
ConsolidatedIntoNoteID?: string;
|
|
1378
|
+
ConsolidationCount: number;
|
|
1379
|
+
DerivedFromNoteIDs?: string;
|
|
1380
|
+
ProtectionTier: string;
|
|
1381
|
+
ImportanceScore?: number;
|
|
1367
1382
|
Agent?: string;
|
|
1368
1383
|
AgentNoteType?: string;
|
|
1369
1384
|
User?: string;
|
|
@@ -1373,6 +1388,9 @@ export declare class MJAIAgentNote_ {
|
|
|
1373
1388
|
Company?: string;
|
|
1374
1389
|
EmbeddingModel?: string;
|
|
1375
1390
|
PrimaryScopeEntity?: string;
|
|
1391
|
+
ConsolidatedIntoNote?: string;
|
|
1392
|
+
RootConsolidatedIntoNoteID?: string;
|
|
1393
|
+
MJAIAgentNotes_ConsolidatedIntoNoteIDArray: MJAIAgentNote_[];
|
|
1376
1394
|
}
|
|
1377
1395
|
export declare class CreateMJAIAgentNoteInput {
|
|
1378
1396
|
ID?: string;
|
|
@@ -1396,6 +1414,11 @@ export declare class CreateMJAIAgentNoteInput {
|
|
|
1396
1414
|
LastAccessedAt: Date | null;
|
|
1397
1415
|
AccessCount?: number;
|
|
1398
1416
|
ExpiresAt: Date | null;
|
|
1417
|
+
ConsolidatedIntoNoteID: string | null;
|
|
1418
|
+
ConsolidationCount?: number;
|
|
1419
|
+
DerivedFromNoteIDs: string | null;
|
|
1420
|
+
ProtectionTier?: string;
|
|
1421
|
+
ImportanceScore: number | null;
|
|
1399
1422
|
RestoreContext___?: RestoreContextInput;
|
|
1400
1423
|
}
|
|
1401
1424
|
export declare class UpdateMJAIAgentNoteInput {
|
|
@@ -1420,6 +1443,11 @@ export declare class UpdateMJAIAgentNoteInput {
|
|
|
1420
1443
|
LastAccessedAt?: Date | null;
|
|
1421
1444
|
AccessCount?: number;
|
|
1422
1445
|
ExpiresAt?: Date | null;
|
|
1446
|
+
ConsolidatedIntoNoteID?: string | null;
|
|
1447
|
+
ConsolidationCount?: number;
|
|
1448
|
+
DerivedFromNoteIDs?: string | null;
|
|
1449
|
+
ProtectionTier?: string;
|
|
1450
|
+
ImportanceScore?: number | null;
|
|
1423
1451
|
OldValues___?: KeyValuePairInput[];
|
|
1424
1452
|
RestoreContext___?: RestoreContextInput;
|
|
1425
1453
|
}
|
|
@@ -1437,6 +1465,7 @@ export declare class MJAIAgentNoteResolver extends ResolverBase {
|
|
|
1437
1465
|
RunMJAIAgentNoteViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1438
1466
|
RunMJAIAgentNoteDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1439
1467
|
MJAIAgentNote(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJAIAgentNote_ | null>;
|
|
1468
|
+
MJAIAgentNotes_ConsolidatedIntoNoteIDArray(mjaiagentnote_: MJAIAgentNote_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1440
1469
|
CreateMJAIAgentNote(input: CreateMJAIAgentNoteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1441
1470
|
UpdateMJAIAgentNote(input: UpdateMJAIAgentNoteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1442
1471
|
DeleteMJAIAgentNote(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1991,6 +2020,7 @@ export declare class MJAIAgentRun_ {
|
|
|
1991
2020
|
PrimaryScopeRecordID?: string;
|
|
1992
2021
|
SecondaryScopes?: string;
|
|
1993
2022
|
ExternalReferenceID?: string;
|
|
2023
|
+
CompanyID?: string;
|
|
1994
2024
|
Agent?: string;
|
|
1995
2025
|
ParentRun?: string;
|
|
1996
2026
|
Conversation?: string;
|
|
@@ -2059,6 +2089,7 @@ export declare class CreateMJAIAgentRunInput {
|
|
|
2059
2089
|
PrimaryScopeRecordID: string | null;
|
|
2060
2090
|
SecondaryScopes: string | null;
|
|
2061
2091
|
ExternalReferenceID: string | null;
|
|
2092
|
+
CompanyID: string | null;
|
|
2062
2093
|
RestoreContext___?: RestoreContextInput;
|
|
2063
2094
|
}
|
|
2064
2095
|
export declare class UpdateMJAIAgentRunInput {
|
|
@@ -2105,6 +2136,7 @@ export declare class UpdateMJAIAgentRunInput {
|
|
|
2105
2136
|
PrimaryScopeRecordID?: string | null;
|
|
2106
2137
|
SecondaryScopes?: string | null;
|
|
2107
2138
|
ExternalReferenceID?: string | null;
|
|
2139
|
+
CompanyID?: string | null;
|
|
2108
2140
|
OldValues___?: KeyValuePairInput[];
|
|
2109
2141
|
RestoreContext___?: RestoreContextInput;
|
|
2110
2142
|
}
|
|
@@ -2456,6 +2488,7 @@ export declare class MJAIAgent_ {
|
|
|
2456
2488
|
MJAIResultCache_AgentIDArray: MJAIResultCache_[];
|
|
2457
2489
|
MJConversationDetails_AgentIDArray: MJConversationDetail_[];
|
|
2458
2490
|
MJAIAgents_ParentIDArray: MJAIAgent_[];
|
|
2491
|
+
MJActions_CreatedByAgentIDArray: MJAction_[];
|
|
2459
2492
|
}
|
|
2460
2493
|
export declare class CreateMJAIAgentInput {
|
|
2461
2494
|
ID?: string;
|
|
@@ -2625,6 +2658,7 @@ export declare class MJAIAgentResolver extends ResolverBase {
|
|
|
2625
2658
|
MJAIResultCache_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2626
2659
|
MJConversationDetails_AgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2627
2660
|
MJAIAgents_ParentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2661
|
+
MJActions_CreatedByAgentIDArray(mjaiagent_: MJAIAgent_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2628
2662
|
CreateMJAIAgent(input: CreateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2629
2663
|
UpdateMJAIAgent(input: UpdateMJAIAgentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2630
2664
|
DeleteMJAIAgent(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5192,6 +5226,287 @@ export declare class MJApplicationResolver extends ResolverBase {
|
|
|
5192
5226
|
UpdateMJApplication(input: UpdateMJApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5193
5227
|
DeleteMJApplication(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5194
5228
|
}
|
|
5229
|
+
export declare class MJArchiveConfigurationEntity_ {
|
|
5230
|
+
ID: string;
|
|
5231
|
+
ArchiveConfigurationID: string;
|
|
5232
|
+
EntityID: string;
|
|
5233
|
+
Mode?: string;
|
|
5234
|
+
RetentionDays?: number;
|
|
5235
|
+
DateField: string;
|
|
5236
|
+
FilterExpression?: string;
|
|
5237
|
+
BatchSize?: number;
|
|
5238
|
+
Priority: number;
|
|
5239
|
+
FieldConfiguration: string;
|
|
5240
|
+
DriverClass?: string;
|
|
5241
|
+
ArchiveRelatedRecordChanges?: boolean;
|
|
5242
|
+
IsActive: boolean;
|
|
5243
|
+
_mj__CreatedAt: Date;
|
|
5244
|
+
_mj__UpdatedAt: Date;
|
|
5245
|
+
ArchiveConfiguration: string;
|
|
5246
|
+
Entity: string;
|
|
5247
|
+
}
|
|
5248
|
+
export declare class CreateMJArchiveConfigurationEntityInput {
|
|
5249
|
+
ID?: string;
|
|
5250
|
+
ArchiveConfigurationID?: string;
|
|
5251
|
+
EntityID?: string;
|
|
5252
|
+
Mode: string | null;
|
|
5253
|
+
RetentionDays: number | null;
|
|
5254
|
+
DateField?: string;
|
|
5255
|
+
FilterExpression: string | null;
|
|
5256
|
+
BatchSize: number | null;
|
|
5257
|
+
Priority?: number;
|
|
5258
|
+
FieldConfiguration?: string;
|
|
5259
|
+
DriverClass: string | null;
|
|
5260
|
+
ArchiveRelatedRecordChanges: boolean | null;
|
|
5261
|
+
IsActive?: boolean;
|
|
5262
|
+
RestoreContext___?: RestoreContextInput;
|
|
5263
|
+
}
|
|
5264
|
+
export declare class UpdateMJArchiveConfigurationEntityInput {
|
|
5265
|
+
ID: string;
|
|
5266
|
+
ArchiveConfigurationID?: string;
|
|
5267
|
+
EntityID?: string;
|
|
5268
|
+
Mode?: string | null;
|
|
5269
|
+
RetentionDays?: number | null;
|
|
5270
|
+
DateField?: string;
|
|
5271
|
+
FilterExpression?: string | null;
|
|
5272
|
+
BatchSize?: number | null;
|
|
5273
|
+
Priority?: number;
|
|
5274
|
+
FieldConfiguration?: string;
|
|
5275
|
+
DriverClass?: string | null;
|
|
5276
|
+
ArchiveRelatedRecordChanges?: boolean | null;
|
|
5277
|
+
IsActive?: boolean;
|
|
5278
|
+
OldValues___?: KeyValuePairInput[];
|
|
5279
|
+
RestoreContext___?: RestoreContextInput;
|
|
5280
|
+
}
|
|
5281
|
+
export declare class RunMJArchiveConfigurationEntityViewResult {
|
|
5282
|
+
Results: MJArchiveConfigurationEntity_[];
|
|
5283
|
+
UserViewRunID?: string;
|
|
5284
|
+
RowCount: number;
|
|
5285
|
+
TotalRowCount: number;
|
|
5286
|
+
ExecutionTime: number;
|
|
5287
|
+
ErrorMessage?: string;
|
|
5288
|
+
Success: boolean;
|
|
5289
|
+
}
|
|
5290
|
+
export declare class MJArchiveConfigurationEntityResolver extends ResolverBase {
|
|
5291
|
+
RunMJArchiveConfigurationEntityViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5292
|
+
RunMJArchiveConfigurationEntityViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5293
|
+
RunMJArchiveConfigurationEntityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5294
|
+
MJArchiveConfigurationEntity(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArchiveConfigurationEntity_ | null>;
|
|
5295
|
+
AllMJArchiveConfigurationEntities({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5296
|
+
CreateMJArchiveConfigurationEntity(input: CreateMJArchiveConfigurationEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5297
|
+
UpdateMJArchiveConfigurationEntity(input: UpdateMJArchiveConfigurationEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5298
|
+
DeleteMJArchiveConfigurationEntity(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5299
|
+
}
|
|
5300
|
+
export declare class MJArchiveConfiguration_ {
|
|
5301
|
+
ID: string;
|
|
5302
|
+
Name: string;
|
|
5303
|
+
Description?: string;
|
|
5304
|
+
StorageAccountID?: string;
|
|
5305
|
+
RootPath: string;
|
|
5306
|
+
ArchiveFormat: string;
|
|
5307
|
+
IsActive: boolean;
|
|
5308
|
+
DefaultRetentionDays: number;
|
|
5309
|
+
DefaultMode: string;
|
|
5310
|
+
DefaultBatchSize: number;
|
|
5311
|
+
ArchiveRelatedRecordChanges: boolean;
|
|
5312
|
+
Status: string;
|
|
5313
|
+
CreatedByUserID: string;
|
|
5314
|
+
_mj__CreatedAt: Date;
|
|
5315
|
+
_mj__UpdatedAt: Date;
|
|
5316
|
+
StorageAccount?: string;
|
|
5317
|
+
CreatedByUser: string;
|
|
5318
|
+
MJArchiveConfigurationEntities_ArchiveConfigurationIDArray: MJArchiveConfigurationEntity_[];
|
|
5319
|
+
MJArchiveRuns_ArchiveConfigurationIDArray: MJArchiveRun_[];
|
|
5320
|
+
}
|
|
5321
|
+
export declare class CreateMJArchiveConfigurationInput {
|
|
5322
|
+
ID?: string;
|
|
5323
|
+
Name?: string;
|
|
5324
|
+
Description: string | null;
|
|
5325
|
+
StorageAccountID: string | null;
|
|
5326
|
+
RootPath?: string;
|
|
5327
|
+
ArchiveFormat?: string;
|
|
5328
|
+
IsActive?: boolean;
|
|
5329
|
+
DefaultRetentionDays?: number;
|
|
5330
|
+
DefaultMode?: string;
|
|
5331
|
+
DefaultBatchSize?: number;
|
|
5332
|
+
ArchiveRelatedRecordChanges?: boolean;
|
|
5333
|
+
Status?: string;
|
|
5334
|
+
CreatedByUserID?: string;
|
|
5335
|
+
RestoreContext___?: RestoreContextInput;
|
|
5336
|
+
}
|
|
5337
|
+
export declare class UpdateMJArchiveConfigurationInput {
|
|
5338
|
+
ID: string;
|
|
5339
|
+
Name?: string;
|
|
5340
|
+
Description?: string | null;
|
|
5341
|
+
StorageAccountID?: string | null;
|
|
5342
|
+
RootPath?: string;
|
|
5343
|
+
ArchiveFormat?: string;
|
|
5344
|
+
IsActive?: boolean;
|
|
5345
|
+
DefaultRetentionDays?: number;
|
|
5346
|
+
DefaultMode?: string;
|
|
5347
|
+
DefaultBatchSize?: number;
|
|
5348
|
+
ArchiveRelatedRecordChanges?: boolean;
|
|
5349
|
+
Status?: string;
|
|
5350
|
+
CreatedByUserID?: string;
|
|
5351
|
+
OldValues___?: KeyValuePairInput[];
|
|
5352
|
+
RestoreContext___?: RestoreContextInput;
|
|
5353
|
+
}
|
|
5354
|
+
export declare class RunMJArchiveConfigurationViewResult {
|
|
5355
|
+
Results: MJArchiveConfiguration_[];
|
|
5356
|
+
UserViewRunID?: string;
|
|
5357
|
+
RowCount: number;
|
|
5358
|
+
TotalRowCount: number;
|
|
5359
|
+
ExecutionTime: number;
|
|
5360
|
+
ErrorMessage?: string;
|
|
5361
|
+
Success: boolean;
|
|
5362
|
+
}
|
|
5363
|
+
export declare class MJArchiveConfigurationResolver extends ResolverBase {
|
|
5364
|
+
RunMJArchiveConfigurationViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5365
|
+
RunMJArchiveConfigurationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5366
|
+
RunMJArchiveConfigurationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5367
|
+
MJArchiveConfiguration(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArchiveConfiguration_ | null>;
|
|
5368
|
+
AllMJArchiveConfigurations({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5369
|
+
MJArchiveConfigurationEntities_ArchiveConfigurationIDArray(mjarchiveconfiguration_: MJArchiveConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5370
|
+
MJArchiveRuns_ArchiveConfigurationIDArray(mjarchiveconfiguration_: MJArchiveConfiguration_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5371
|
+
CreateMJArchiveConfiguration(input: CreateMJArchiveConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5372
|
+
UpdateMJArchiveConfiguration(input: UpdateMJArchiveConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5373
|
+
DeleteMJArchiveConfiguration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5374
|
+
}
|
|
5375
|
+
export declare class MJArchiveRunDetail_ {
|
|
5376
|
+
ID: string;
|
|
5377
|
+
ArchiveRunID: string;
|
|
5378
|
+
EntityID: string;
|
|
5379
|
+
RecordID: string;
|
|
5380
|
+
Status: string;
|
|
5381
|
+
StoragePath?: string;
|
|
5382
|
+
BytesArchived: number;
|
|
5383
|
+
ErrorMessage?: string;
|
|
5384
|
+
ArchivedAt?: Date;
|
|
5385
|
+
VersionStamp?: Date;
|
|
5386
|
+
IsRecordChangeArchive: boolean;
|
|
5387
|
+
_mj__CreatedAt: Date;
|
|
5388
|
+
_mj__UpdatedAt: Date;
|
|
5389
|
+
ArchiveRun: Date;
|
|
5390
|
+
Entity: string;
|
|
5391
|
+
}
|
|
5392
|
+
export declare class CreateMJArchiveRunDetailInput {
|
|
5393
|
+
ID?: string;
|
|
5394
|
+
ArchiveRunID?: string;
|
|
5395
|
+
EntityID?: string;
|
|
5396
|
+
RecordID?: string;
|
|
5397
|
+
Status?: string;
|
|
5398
|
+
StoragePath: string | null;
|
|
5399
|
+
BytesArchived?: number;
|
|
5400
|
+
ErrorMessage: string | null;
|
|
5401
|
+
ArchivedAt: Date | null;
|
|
5402
|
+
VersionStamp: Date | null;
|
|
5403
|
+
IsRecordChangeArchive?: boolean;
|
|
5404
|
+
RestoreContext___?: RestoreContextInput;
|
|
5405
|
+
}
|
|
5406
|
+
export declare class UpdateMJArchiveRunDetailInput {
|
|
5407
|
+
ID: string;
|
|
5408
|
+
ArchiveRunID?: string;
|
|
5409
|
+
EntityID?: string;
|
|
5410
|
+
RecordID?: string;
|
|
5411
|
+
Status?: string;
|
|
5412
|
+
StoragePath?: string | null;
|
|
5413
|
+
BytesArchived?: number;
|
|
5414
|
+
ErrorMessage?: string | null;
|
|
5415
|
+
ArchivedAt?: Date | null;
|
|
5416
|
+
VersionStamp?: Date | null;
|
|
5417
|
+
IsRecordChangeArchive?: boolean;
|
|
5418
|
+
OldValues___?: KeyValuePairInput[];
|
|
5419
|
+
RestoreContext___?: RestoreContextInput;
|
|
5420
|
+
}
|
|
5421
|
+
export declare class RunMJArchiveRunDetailViewResult {
|
|
5422
|
+
Results: MJArchiveRunDetail_[];
|
|
5423
|
+
UserViewRunID?: string;
|
|
5424
|
+
RowCount: number;
|
|
5425
|
+
TotalRowCount: number;
|
|
5426
|
+
ExecutionTime: number;
|
|
5427
|
+
ErrorMessage?: string;
|
|
5428
|
+
Success: boolean;
|
|
5429
|
+
}
|
|
5430
|
+
export declare class MJArchiveRunDetailResolver extends ResolverBase {
|
|
5431
|
+
RunMJArchiveRunDetailViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5432
|
+
RunMJArchiveRunDetailViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5433
|
+
RunMJArchiveRunDetailDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5434
|
+
MJArchiveRunDetail(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArchiveRunDetail_ | null>;
|
|
5435
|
+
AllMJArchiveRunDetails({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5436
|
+
CreateMJArchiveRunDetail(input: CreateMJArchiveRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5437
|
+
UpdateMJArchiveRunDetail(input: UpdateMJArchiveRunDetailInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5438
|
+
DeleteMJArchiveRunDetail(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5439
|
+
}
|
|
5440
|
+
export declare class MJArchiveRun_ {
|
|
5441
|
+
ID: string;
|
|
5442
|
+
ArchiveConfigurationID: string;
|
|
5443
|
+
StartedAt: Date;
|
|
5444
|
+
CompletedAt?: Date;
|
|
5445
|
+
Status: string;
|
|
5446
|
+
TotalRecords: number;
|
|
5447
|
+
ArchivedRecords: number;
|
|
5448
|
+
FailedRecords: number;
|
|
5449
|
+
SkippedRecords: number;
|
|
5450
|
+
TotalBytesArchived: number;
|
|
5451
|
+
ErrorLog?: string;
|
|
5452
|
+
UserID: string;
|
|
5453
|
+
_mj__CreatedAt: Date;
|
|
5454
|
+
_mj__UpdatedAt: Date;
|
|
5455
|
+
ArchiveConfiguration: string;
|
|
5456
|
+
User: string;
|
|
5457
|
+
MJArchiveRunDetails_ArchiveRunIDArray: MJArchiveRunDetail_[];
|
|
5458
|
+
}
|
|
5459
|
+
export declare class CreateMJArchiveRunInput {
|
|
5460
|
+
ID?: string;
|
|
5461
|
+
ArchiveConfigurationID?: string;
|
|
5462
|
+
StartedAt?: Date;
|
|
5463
|
+
CompletedAt: Date | null;
|
|
5464
|
+
Status?: string;
|
|
5465
|
+
TotalRecords?: number;
|
|
5466
|
+
ArchivedRecords?: number;
|
|
5467
|
+
FailedRecords?: number;
|
|
5468
|
+
SkippedRecords?: number;
|
|
5469
|
+
TotalBytesArchived?: number;
|
|
5470
|
+
ErrorLog: string | null;
|
|
5471
|
+
UserID?: string;
|
|
5472
|
+
RestoreContext___?: RestoreContextInput;
|
|
5473
|
+
}
|
|
5474
|
+
export declare class UpdateMJArchiveRunInput {
|
|
5475
|
+
ID: string;
|
|
5476
|
+
ArchiveConfigurationID?: string;
|
|
5477
|
+
StartedAt?: Date;
|
|
5478
|
+
CompletedAt?: Date | null;
|
|
5479
|
+
Status?: string;
|
|
5480
|
+
TotalRecords?: number;
|
|
5481
|
+
ArchivedRecords?: number;
|
|
5482
|
+
FailedRecords?: number;
|
|
5483
|
+
SkippedRecords?: number;
|
|
5484
|
+
TotalBytesArchived?: number;
|
|
5485
|
+
ErrorLog?: string | null;
|
|
5486
|
+
UserID?: string;
|
|
5487
|
+
OldValues___?: KeyValuePairInput[];
|
|
5488
|
+
RestoreContext___?: RestoreContextInput;
|
|
5489
|
+
}
|
|
5490
|
+
export declare class RunMJArchiveRunViewResult {
|
|
5491
|
+
Results: MJArchiveRun_[];
|
|
5492
|
+
UserViewRunID?: string;
|
|
5493
|
+
RowCount: number;
|
|
5494
|
+
TotalRowCount: number;
|
|
5495
|
+
ExecutionTime: number;
|
|
5496
|
+
ErrorMessage?: string;
|
|
5497
|
+
Success: boolean;
|
|
5498
|
+
}
|
|
5499
|
+
export declare class MJArchiveRunResolver extends ResolverBase {
|
|
5500
|
+
RunMJArchiveRunViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5501
|
+
RunMJArchiveRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5502
|
+
RunMJArchiveRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5503
|
+
MJArchiveRun(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJArchiveRun_ | null>;
|
|
5504
|
+
AllMJArchiveRuns({ userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5505
|
+
MJArchiveRunDetails_ArchiveRunIDArray(mjarchiverun_: MJArchiveRun_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5506
|
+
CreateMJArchiveRun(input: CreateMJArchiveRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5507
|
+
UpdateMJArchiveRun(input: UpdateMJArchiveRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5508
|
+
DeleteMJArchiveRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5509
|
+
}
|
|
5195
5510
|
export declare class MJArtifactPermission_ {
|
|
5196
5511
|
ID: string;
|
|
5197
5512
|
ArtifactID: string;
|
|
@@ -5261,6 +5576,7 @@ export declare class MJArtifactType_ {
|
|
|
5261
5576
|
DriverClass?: string;
|
|
5262
5577
|
Icon?: string;
|
|
5263
5578
|
ContentCategory: string;
|
|
5579
|
+
ToolLibraryClass?: string;
|
|
5264
5580
|
Parent?: string;
|
|
5265
5581
|
RootParentID?: string;
|
|
5266
5582
|
MJConversationArtifacts_ArtifactTypeIDArray: MJConversationArtifact_[];
|
|
@@ -5280,6 +5596,7 @@ export declare class CreateMJArtifactTypeInput {
|
|
|
5280
5596
|
DriverClass: string | null;
|
|
5281
5597
|
Icon: string | null;
|
|
5282
5598
|
ContentCategory?: string;
|
|
5599
|
+
ToolLibraryClass: string | null;
|
|
5283
5600
|
RestoreContext___?: RestoreContextInput;
|
|
5284
5601
|
}
|
|
5285
5602
|
export declare class UpdateMJArtifactTypeInput {
|
|
@@ -5293,6 +5610,7 @@ export declare class UpdateMJArtifactTypeInput {
|
|
|
5293
5610
|
DriverClass?: string | null;
|
|
5294
5611
|
Icon?: string | null;
|
|
5295
5612
|
ContentCategory?: string;
|
|
5613
|
+
ToolLibraryClass?: string | null;
|
|
5296
5614
|
OldValues___?: KeyValuePairInput[];
|
|
5297
5615
|
RestoreContext___?: RestoreContextInput;
|
|
5298
5616
|
}
|
|
@@ -10110,6 +10428,8 @@ export declare class MJEntity_ {
|
|
|
10110
10428
|
MJRecordLinks_SourceEntityIDArray: MJRecordLink_[];
|
|
10111
10429
|
MJCompanyIntegrationEntityMaps_EntityIDArray: MJCompanyIntegrationEntityMap_[];
|
|
10112
10430
|
MJEntityFields_RelatedEntityIDArray: MJEntityField_[];
|
|
10431
|
+
MJArchiveConfigurationEntities_EntityIDArray: MJArchiveConfigurationEntity_[];
|
|
10432
|
+
MJArchiveRunDetails_EntityIDArray: MJArchiveRunDetail_[];
|
|
10113
10433
|
MJResourceTypes_CategoryEntityIDArray: MJResourceType_[];
|
|
10114
10434
|
MJContentSources_EntityIDArray: MJContentSource_[];
|
|
10115
10435
|
MJTestRuns_TargetLogEntityIDArray: MJTestRun_[];
|
|
@@ -10310,6 +10630,8 @@ export declare class MJEntityResolverBase extends ResolverBase {
|
|
|
10310
10630
|
MJRecordLinks_SourceEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10311
10631
|
MJCompanyIntegrationEntityMaps_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10312
10632
|
MJEntityFields_RelatedEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10633
|
+
MJArchiveConfigurationEntities_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10634
|
+
MJArchiveRunDetails_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10313
10635
|
MJResourceTypes_CategoryEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10314
10636
|
MJContentSources_EntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
10315
10637
|
MJTestRuns_TargetLogEntityIDArray(mjentity_: MJEntity_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -11320,6 +11642,7 @@ export declare class MJEntityPermission_ {
|
|
|
11320
11642
|
DeleteRLSFilterID?: string;
|
|
11321
11643
|
_mj__CreatedAt: Date;
|
|
11322
11644
|
_mj__UpdatedAt: Date;
|
|
11645
|
+
Type: string;
|
|
11323
11646
|
Entity: string;
|
|
11324
11647
|
RoleName: string;
|
|
11325
11648
|
RoleSQLName?: string;
|
|
@@ -11340,6 +11663,7 @@ export declare class CreateMJEntityPermissionInput {
|
|
|
11340
11663
|
CreateRLSFilterID: string | null;
|
|
11341
11664
|
UpdateRLSFilterID: string | null;
|
|
11342
11665
|
DeleteRLSFilterID: string | null;
|
|
11666
|
+
Type?: string;
|
|
11343
11667
|
RestoreContext___?: RestoreContextInput;
|
|
11344
11668
|
}
|
|
11345
11669
|
export declare class UpdateMJEntityPermissionInput {
|
|
@@ -11354,6 +11678,7 @@ export declare class UpdateMJEntityPermissionInput {
|
|
|
11354
11678
|
CreateRLSFilterID?: string | null;
|
|
11355
11679
|
UpdateRLSFilterID?: string | null;
|
|
11356
11680
|
DeleteRLSFilterID?: string | null;
|
|
11681
|
+
Type?: string;
|
|
11357
11682
|
OldValues___?: KeyValuePairInput[];
|
|
11358
11683
|
RestoreContext___?: RestoreContextInput;
|
|
11359
11684
|
}
|
|
@@ -11962,6 +12287,7 @@ export declare class MJFileStorageAccount_ {
|
|
|
11962
12287
|
Provider: string;
|
|
11963
12288
|
Credential: string;
|
|
11964
12289
|
MJAIAgentTypes_DefaultStorageAccountIDArray: MJAIAgentType_[];
|
|
12290
|
+
MJArchiveConfigurations_StorageAccountIDArray: MJArchiveConfiguration_[];
|
|
11965
12291
|
MJFileStorageAccountPermissions_FileStorageAccountIDArray: MJFileStorageAccountPermission_[];
|
|
11966
12292
|
MJAIAgentCategories_DefaultStorageAccountIDArray: MJAIAgentCategory_[];
|
|
11967
12293
|
MJAIAgents_DefaultStorageAccountIDArray: MJAIAgent_[];
|
|
@@ -12000,6 +12326,7 @@ export declare class MJFileStorageAccountResolver extends ResolverBase {
|
|
|
12000
12326
|
RunMJFileStorageAccountDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
12001
12327
|
MJFileStorageAccount(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJFileStorageAccount_ | null>;
|
|
12002
12328
|
MJAIAgentTypes_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12329
|
+
MJArchiveConfigurations_StorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12003
12330
|
MJFileStorageAccountPermissions_FileStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12004
12331
|
MJAIAgentCategories_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
12005
12332
|
MJAIAgents_DefaultStorageAccountIDArray(mjfilestorageaccount_: MJFileStorageAccount_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -13296,6 +13623,7 @@ export declare class MJMCPServerTool_ {
|
|
|
13296
13623
|
GeneratedAction?: string;
|
|
13297
13624
|
GeneratedActionCategory?: string;
|
|
13298
13625
|
MJMCPServerConnectionTools_MCPServerToolIDArray: MJMCPServerConnectionTool_[];
|
|
13626
|
+
MJMCPToolFavorites_MCPServerToolIDArray: MJMCPToolFavorite_[];
|
|
13299
13627
|
MJMCPToolExecutionLogs_MCPServerToolIDArray: MJMCPToolExecutionLog_[];
|
|
13300
13628
|
}
|
|
13301
13629
|
export declare class CreateMJMCPServerToolInput {
|
|
@@ -13346,6 +13674,7 @@ export declare class MJMCPServerToolResolver extends ResolverBase {
|
|
|
13346
13674
|
RunMJMCPServerToolDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13347
13675
|
MJMCPServerTool(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPServerTool_ | null>;
|
|
13348
13676
|
MJMCPServerConnectionTools_MCPServerToolIDArray(mjmcpservertool_: MJMCPServerTool_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13677
|
+
MJMCPToolFavorites_MCPServerToolIDArray(mjmcpservertool_: MJMCPServerTool_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13349
13678
|
MJMCPToolExecutionLogs_MCPServerToolIDArray(mjmcpservertool_: MJMCPServerTool_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
13350
13679
|
CreateMJMCPServerTool(input: CreateMJMCPServerToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13351
13680
|
UpdateMJMCPServerTool(input: UpdateMJMCPServerToolInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -13527,6 +13856,46 @@ export declare class MJMCPToolExecutionLogResolver extends ResolverBase {
|
|
|
13527
13856
|
UpdateMJMCPToolExecutionLog(input: UpdateMJMCPToolExecutionLogInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13528
13857
|
DeleteMJMCPToolExecutionLog(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13529
13858
|
}
|
|
13859
|
+
export declare class MJMCPToolFavorite_ {
|
|
13860
|
+
ID: string;
|
|
13861
|
+
UserID: string;
|
|
13862
|
+
MCPServerToolID: string;
|
|
13863
|
+
_mj__CreatedAt: Date;
|
|
13864
|
+
_mj__UpdatedAt: Date;
|
|
13865
|
+
User: string;
|
|
13866
|
+
MCPServerTool?: string;
|
|
13867
|
+
}
|
|
13868
|
+
export declare class CreateMJMCPToolFavoriteInput {
|
|
13869
|
+
ID?: string;
|
|
13870
|
+
UserID?: string;
|
|
13871
|
+
MCPServerToolID?: string;
|
|
13872
|
+
RestoreContext___?: RestoreContextInput;
|
|
13873
|
+
}
|
|
13874
|
+
export declare class UpdateMJMCPToolFavoriteInput {
|
|
13875
|
+
ID: string;
|
|
13876
|
+
UserID?: string;
|
|
13877
|
+
MCPServerToolID?: string;
|
|
13878
|
+
OldValues___?: KeyValuePairInput[];
|
|
13879
|
+
RestoreContext___?: RestoreContextInput;
|
|
13880
|
+
}
|
|
13881
|
+
export declare class RunMJMCPToolFavoriteViewResult {
|
|
13882
|
+
Results: MJMCPToolFavorite_[];
|
|
13883
|
+
UserViewRunID?: string;
|
|
13884
|
+
RowCount: number;
|
|
13885
|
+
TotalRowCount: number;
|
|
13886
|
+
ExecutionTime: number;
|
|
13887
|
+
ErrorMessage?: string;
|
|
13888
|
+
Success: boolean;
|
|
13889
|
+
}
|
|
13890
|
+
export declare class MJMCPToolFavoriteResolver extends ResolverBase {
|
|
13891
|
+
RunMJMCPToolFavoriteViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13892
|
+
RunMJMCPToolFavoriteViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13893
|
+
RunMJMCPToolFavoriteDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
13894
|
+
MJMCPToolFavorite(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJMCPToolFavorite_ | null>;
|
|
13895
|
+
CreateMJMCPToolFavorite(input: CreateMJMCPToolFavoriteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13896
|
+
UpdateMJMCPToolFavorite(input: UpdateMJMCPToolFavoriteInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13897
|
+
DeleteMJMCPToolFavorite(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
13898
|
+
}
|
|
13530
13899
|
export declare class MJOAuthAuthServerMetadataCache_ {
|
|
13531
13900
|
ID: string;
|
|
13532
13901
|
IssuerURL: string;
|
|
@@ -14155,6 +14524,71 @@ export declare class MJOutputTriggerTypeResolver extends ResolverBase {
|
|
|
14155
14524
|
UpdateMJOutputTriggerType(input: UpdateMJOutputTriggerTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14156
14525
|
DeleteMJOutputTriggerType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14157
14526
|
}
|
|
14527
|
+
export declare class MJPermissionDomain_ {
|
|
14528
|
+
ID: string;
|
|
14529
|
+
Name: string;
|
|
14530
|
+
Description?: string;
|
|
14531
|
+
ProviderClassName: string;
|
|
14532
|
+
SupportedGranteeTypes: string;
|
|
14533
|
+
SupportedActions: string;
|
|
14534
|
+
SupportsDeny: boolean;
|
|
14535
|
+
SupportsExpiration: boolean;
|
|
14536
|
+
SupportsHierarchyInheritance: boolean;
|
|
14537
|
+
IsActive: boolean;
|
|
14538
|
+
DisplayOrder: number;
|
|
14539
|
+
Icon?: string;
|
|
14540
|
+
_mj__CreatedAt: Date;
|
|
14541
|
+
_mj__UpdatedAt: Date;
|
|
14542
|
+
}
|
|
14543
|
+
export declare class CreateMJPermissionDomainInput {
|
|
14544
|
+
ID?: string;
|
|
14545
|
+
Name?: string;
|
|
14546
|
+
Description: string | null;
|
|
14547
|
+
ProviderClassName?: string;
|
|
14548
|
+
SupportedGranteeTypes?: string;
|
|
14549
|
+
SupportedActions?: string;
|
|
14550
|
+
SupportsDeny?: boolean;
|
|
14551
|
+
SupportsExpiration?: boolean;
|
|
14552
|
+
SupportsHierarchyInheritance?: boolean;
|
|
14553
|
+
IsActive?: boolean;
|
|
14554
|
+
DisplayOrder?: number;
|
|
14555
|
+
Icon: string | null;
|
|
14556
|
+
RestoreContext___?: RestoreContextInput;
|
|
14557
|
+
}
|
|
14558
|
+
export declare class UpdateMJPermissionDomainInput {
|
|
14559
|
+
ID: string;
|
|
14560
|
+
Name?: string;
|
|
14561
|
+
Description?: string | null;
|
|
14562
|
+
ProviderClassName?: string;
|
|
14563
|
+
SupportedGranteeTypes?: string;
|
|
14564
|
+
SupportedActions?: string;
|
|
14565
|
+
SupportsDeny?: boolean;
|
|
14566
|
+
SupportsExpiration?: boolean;
|
|
14567
|
+
SupportsHierarchyInheritance?: boolean;
|
|
14568
|
+
IsActive?: boolean;
|
|
14569
|
+
DisplayOrder?: number;
|
|
14570
|
+
Icon?: string | null;
|
|
14571
|
+
OldValues___?: KeyValuePairInput[];
|
|
14572
|
+
RestoreContext___?: RestoreContextInput;
|
|
14573
|
+
}
|
|
14574
|
+
export declare class RunMJPermissionDomainViewResult {
|
|
14575
|
+
Results: MJPermissionDomain_[];
|
|
14576
|
+
UserViewRunID?: string;
|
|
14577
|
+
RowCount: number;
|
|
14578
|
+
TotalRowCount: number;
|
|
14579
|
+
ExecutionTime: number;
|
|
14580
|
+
ErrorMessage?: string;
|
|
14581
|
+
Success: boolean;
|
|
14582
|
+
}
|
|
14583
|
+
export declare class MJPermissionDomainResolver extends ResolverBase {
|
|
14584
|
+
RunMJPermissionDomainViewByID(input: RunViewByIDInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14585
|
+
RunMJPermissionDomainViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14586
|
+
RunMJPermissionDomainDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
14587
|
+
MJPermissionDomain(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJPermissionDomain_ | null>;
|
|
14588
|
+
CreateMJPermissionDomain(input: CreateMJPermissionDomainInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14589
|
+
UpdateMJPermissionDomain(input: UpdateMJPermissionDomainInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14590
|
+
DeleteMJPermissionDomain(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
14591
|
+
}
|
|
14158
14592
|
export declare class MJProject_ {
|
|
14159
14593
|
ID: string;
|
|
14160
14594
|
EnvironmentID: string;
|
|
@@ -15880,9 +16314,11 @@ export declare class MJResourcePermission_ {
|
|
|
15880
16314
|
_mj__CreatedAt: Date;
|
|
15881
16315
|
_mj__UpdatedAt: Date;
|
|
15882
16316
|
Status: string;
|
|
16317
|
+
SharedByUserID?: string;
|
|
15883
16318
|
ResourceType: string;
|
|
15884
16319
|
Role?: string;
|
|
15885
16320
|
User?: string;
|
|
16321
|
+
SharedByUser?: string;
|
|
15886
16322
|
}
|
|
15887
16323
|
export declare class CreateMJResourcePermissionInput {
|
|
15888
16324
|
ID?: string;
|
|
@@ -15895,6 +16331,7 @@ export declare class CreateMJResourcePermissionInput {
|
|
|
15895
16331
|
UserID: string | null;
|
|
15896
16332
|
PermissionLevel: string | null;
|
|
15897
16333
|
Status?: string;
|
|
16334
|
+
SharedByUserID: string | null;
|
|
15898
16335
|
RestoreContext___?: RestoreContextInput;
|
|
15899
16336
|
}
|
|
15900
16337
|
export declare class UpdateMJResourcePermissionInput {
|
|
@@ -15908,6 +16345,7 @@ export declare class UpdateMJResourcePermissionInput {
|
|
|
15908
16345
|
UserID?: string | null;
|
|
15909
16346
|
PermissionLevel?: string | null;
|
|
15910
16347
|
Status?: string;
|
|
16348
|
+
SharedByUserID?: string | null;
|
|
15911
16349
|
OldValues___?: KeyValuePairInput[];
|
|
15912
16350
|
RestoreContext___?: RestoreContextInput;
|
|
15913
16351
|
}
|
|
@@ -16908,12 +17346,12 @@ export declare class MJTag_ {
|
|
|
16908
17346
|
RootMergedIntoTagID?: string;
|
|
16909
17347
|
MJTags_ParentIDArray: MJTag_[];
|
|
16910
17348
|
MJTaggedItems_TagIDArray: MJTaggedItem_[];
|
|
16911
|
-
MJContentItemTags_TagIDArray: MJContentItemTag_[];
|
|
16912
17349
|
MJTagCoOccurrences_TagBIDArray: MJTagCoOccurrence_[];
|
|
17350
|
+
MJContentItemTags_TagIDArray: MJContentItemTag_[];
|
|
16913
17351
|
MJTagAuditLogs_RelatedTagIDArray: MJTagAuditLog_[];
|
|
16914
17352
|
MJTagCoOccurrences_TagAIDArray: MJTagCoOccurrence_[];
|
|
16915
|
-
MJTagAuditLogs_TagIDArray: MJTagAuditLog_[];
|
|
16916
17353
|
MJTags_MergedIntoTagIDArray: MJTag_[];
|
|
17354
|
+
MJTagAuditLogs_TagIDArray: MJTagAuditLog_[];
|
|
16917
17355
|
}
|
|
16918
17356
|
export declare class CreateMJTagInput {
|
|
16919
17357
|
ID?: string;
|
|
@@ -16952,12 +17390,12 @@ export declare class MJTagResolver extends ResolverBase {
|
|
|
16952
17390
|
MJTag(ID: string, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<MJTag_ | null>;
|
|
16953
17391
|
MJTags_ParentIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16954
17392
|
MJTaggedItems_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16955
|
-
MJContentItemTags_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16956
17393
|
MJTagCoOccurrences_TagBIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17394
|
+
MJContentItemTags_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16957
17395
|
MJTagAuditLogs_RelatedTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16958
17396
|
MJTagCoOccurrences_TagAIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16959
|
-
MJTagAuditLogs_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16960
17397
|
MJTags_MergedIntoTagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
17398
|
+
MJTagAuditLogs_TagIDArray(mjtag_: MJTag_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
16961
17399
|
CreateMJTag(input: CreateMJTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16962
17400
|
UpdateMJTag(input: UpdateMJTagInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
16963
17401
|
DeleteMJTag(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -18925,12 +19363,15 @@ export declare class MJUser_ {
|
|
|
18925
19363
|
MJMCPToolExecutionLogs_UserIDArray: MJMCPToolExecutionLog_[];
|
|
18926
19364
|
MJVersionLabelRestores_UserIDArray: MJVersionLabelRestore_[];
|
|
18927
19365
|
MJOAuthAuthorizationStates_UserIDArray: MJOAuthAuthorizationState_[];
|
|
18928
|
-
MJOpenAppInstallHistories_ExecutedByUserIDArray: MJOpenAppInstallHistory_[];
|
|
18929
19366
|
MJOpenApps_InstalledByUserIDArray: MJOpenApp_[];
|
|
19367
|
+
MJOpenAppInstallHistories_ExecutedByUserIDArray: MJOpenAppInstallHistory_[];
|
|
18930
19368
|
MJContentItemDuplicates_ResolvedByUserIDArray: MJContentItemDuplicate_[];
|
|
18931
19369
|
MJContentProcessRuns_StartedByUserIDArray: MJContentProcessRun_[];
|
|
18932
19370
|
MJKnowledgeHubSavedSearches_UserIDArray: MJKnowledgeHubSavedSearch_[];
|
|
18933
19371
|
MJTagAuditLogs_PerformedByUserIDArray: MJTagAuditLog_[];
|
|
19372
|
+
MJArchiveConfigurations_CreatedByUserIDArray: MJArchiveConfiguration_[];
|
|
19373
|
+
MJMCPToolFavorites_UserIDArray: MJMCPToolFavorite_[];
|
|
19374
|
+
MJResourcePermissions_SharedByUserIDArray: MJResourcePermission_[];
|
|
18934
19375
|
MJResourcePermissions_UserIDArray: MJResourcePermission_[];
|
|
18935
19376
|
MJAIAgentRequests_ResponseByUserIDArray: MJAIAgentRequest_[];
|
|
18936
19377
|
MJConversationDetails_UserIDArray: MJConversationDetail_[];
|
|
@@ -18947,6 +19388,7 @@ export declare class MJUser_ {
|
|
|
18947
19388
|
MJVersionLabels_CreatedByUserIDArray: MJVersionLabel_[];
|
|
18948
19389
|
MJDuplicateRuns_ApprovedByUserIDArray: MJDuplicateRun_[];
|
|
18949
19390
|
MJFileStorageAccountPermissions_UserIDArray: MJFileStorageAccountPermission_[];
|
|
19391
|
+
MJArchiveRuns_UserIDArray: MJArchiveRun_[];
|
|
18950
19392
|
MJAIAgentRuns_UserIDArray: MJAIAgentRun_[];
|
|
18951
19393
|
MJAIAgentPermissions_UserIDArray: MJAIAgentPermission_[];
|
|
18952
19394
|
MJCollectionPermissions_SharedByUserIDArray: MJCollectionPermission_[];
|
|
@@ -19064,12 +19506,15 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
19064
19506
|
MJMCPToolExecutionLogs_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19065
19507
|
MJVersionLabelRestores_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19066
19508
|
MJOAuthAuthorizationStates_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19067
|
-
MJOpenAppInstallHistories_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19068
19509
|
MJOpenApps_InstalledByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19510
|
+
MJOpenAppInstallHistories_ExecutedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19069
19511
|
MJContentItemDuplicates_ResolvedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19070
19512
|
MJContentProcessRuns_StartedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19071
19513
|
MJKnowledgeHubSavedSearches_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19072
19514
|
MJTagAuditLogs_PerformedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19515
|
+
MJArchiveConfigurations_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19516
|
+
MJMCPToolFavorites_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19517
|
+
MJResourcePermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19073
19518
|
MJResourcePermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19074
19519
|
MJAIAgentRequests_ResponseByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19075
19520
|
MJConversationDetails_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -19086,6 +19531,7 @@ export declare class MJUserResolverBase extends ResolverBase {
|
|
|
19086
19531
|
MJVersionLabels_CreatedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19087
19532
|
MJDuplicateRuns_ApprovedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19088
19533
|
MJFileStorageAccountPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19534
|
+
MJArchiveRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19089
19535
|
MJAIAgentRuns_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19090
19536
|
MJAIAgentPermissions_UserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
19091
19537
|
MJCollectionPermissions_SharedByUserIDArray(mjuser_: MJUser_, { userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|