@memberjunction/server 2.77.0 → 2.79.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/generated/generated.d.ts +259 -176
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +1590 -1123
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/CreateQueryResolver.d.ts.map +1 -1
- package/dist/resolvers/CreateQueryResolver.js +19 -11
- package/dist/resolvers/CreateQueryResolver.js.map +1 -1
- package/package.json +34 -34
- package/src/generated/generated.ts +1143 -857
- package/src/resolvers/CreateQueryResolver.ts +24 -16
|
@@ -334,9 +334,17 @@ export declare class AIAgentRun_ {
|
|
|
334
334
|
LastRunID?: string;
|
|
335
335
|
StartingPayload?: string;
|
|
336
336
|
TotalPromptIterations: number;
|
|
337
|
+
ConfigurationID?: string;
|
|
338
|
+
OverrideModelID?: string;
|
|
339
|
+
OverrideVendorID?: string;
|
|
340
|
+
Data?: string;
|
|
341
|
+
Verbose?: boolean;
|
|
337
342
|
Agent?: string;
|
|
338
343
|
Conversation?: string;
|
|
339
344
|
User?: string;
|
|
345
|
+
Configuration?: string;
|
|
346
|
+
OverrideModel?: string;
|
|
347
|
+
OverrideVendor?: string;
|
|
340
348
|
MJ_AIAgentRunSteps_AgentRunIDArray: AIAgentRunStep_[];
|
|
341
349
|
MJ_AIAgentRuns_ParentRunIDArray: AIAgentRun_[];
|
|
342
350
|
MJ_AIPromptRuns_AgentRunIDArray: AIPromptRun_[];
|
|
@@ -371,6 +379,11 @@ export declare class CreateAIAgentRunInput {
|
|
|
371
379
|
LastRunID: string | null;
|
|
372
380
|
StartingPayload: string | null;
|
|
373
381
|
TotalPromptIterations?: number;
|
|
382
|
+
ConfigurationID: string | null;
|
|
383
|
+
OverrideModelID: string | null;
|
|
384
|
+
OverrideVendorID: string | null;
|
|
385
|
+
Data: string | null;
|
|
386
|
+
Verbose?: boolean | null;
|
|
374
387
|
}
|
|
375
388
|
export declare class UpdateAIAgentRunInput {
|
|
376
389
|
ID: string;
|
|
@@ -402,6 +415,11 @@ export declare class UpdateAIAgentRunInput {
|
|
|
402
415
|
LastRunID?: string | null;
|
|
403
416
|
StartingPayload?: string | null;
|
|
404
417
|
TotalPromptIterations?: number;
|
|
418
|
+
ConfigurationID?: string | null;
|
|
419
|
+
OverrideModelID?: string | null;
|
|
420
|
+
OverrideVendorID?: string | null;
|
|
421
|
+
Data?: string | null;
|
|
422
|
+
Verbose?: boolean | null;
|
|
405
423
|
OldValues___?: KeyValuePairInput[];
|
|
406
424
|
}
|
|
407
425
|
export declare class RunAIAgentRunViewResult {
|
|
@@ -433,10 +451,11 @@ export declare class AIVendor_ {
|
|
|
433
451
|
_mj__UpdatedAt: Date;
|
|
434
452
|
MJ_AIPromptModels_VendorIDArray: AIPromptModel_[];
|
|
435
453
|
AIResultCache_VendorIDArray: AIResultCache_[];
|
|
436
|
-
MJ_AIModelCosts_VendorIDArray: AIModelCost_[];
|
|
437
454
|
MJ_AIModelVendors_VendorIDArray: AIModelVendor_[];
|
|
438
455
|
MJ_AIPromptRuns_VendorIDArray: AIPromptRun_[];
|
|
439
456
|
MJ_AIVendorTypes_VendorIDArray: AIVendorType_[];
|
|
457
|
+
MJ_AIModelCosts_VendorIDArray: AIModelCost_[];
|
|
458
|
+
MJ_AIAgentRuns_OverrideVendorIDArray: AIAgentRun_[];
|
|
440
459
|
}
|
|
441
460
|
export declare class CreateAIVendorInput {
|
|
442
461
|
ID?: string;
|
|
@@ -465,10 +484,11 @@ export declare class AIVendorResolver extends ResolverBase {
|
|
|
465
484
|
AIVendor(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<AIVendor_ | null>;
|
|
466
485
|
MJ_AIPromptModels_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
467
486
|
AIResultCache_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
468
|
-
MJ_AIModelCosts_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
469
487
|
MJ_AIModelVendors_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
470
488
|
MJ_AIPromptRuns_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
471
489
|
MJ_AIVendorTypes_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
490
|
+
MJ_AIModelCosts_VendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
491
|
+
MJ_AIAgentRuns_OverrideVendorIDArray(aivendor_: AIVendor_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
472
492
|
CreateAIVendor(input: CreateAIVendorInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
473
493
|
UpdateAIVendor(input: UpdateAIVendorInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
474
494
|
DeleteAIVendor(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -490,6 +510,7 @@ export declare class AIConfiguration_ {
|
|
|
490
510
|
MJ_AIPromptModels_ConfigurationIDArray: AIPromptModel_[];
|
|
491
511
|
AIResultCache_ConfigurationIDArray: AIResultCache_[];
|
|
492
512
|
MJ_AIPromptRuns_ConfigurationIDArray: AIPromptRun_[];
|
|
513
|
+
MJ_AIAgentRuns_ConfigurationIDArray: AIAgentRun_[];
|
|
493
514
|
}
|
|
494
515
|
export declare class CreateAIConfigurationInput {
|
|
495
516
|
ID?: string;
|
|
@@ -529,6 +550,7 @@ export declare class AIConfigurationResolver extends ResolverBase {
|
|
|
529
550
|
MJ_AIPromptModels_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
530
551
|
AIResultCache_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
531
552
|
MJ_AIPromptRuns_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
553
|
+
MJ_AIAgentRuns_ConfigurationIDArray(aiconfiguration_: AIConfiguration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
532
554
|
CreateAIConfiguration(input: CreateAIConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
533
555
|
UpdateAIConfiguration(input: UpdateAIConfigurationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
534
556
|
DeleteAIConfiguration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -572,15 +594,15 @@ export declare class AIAgent_ {
|
|
|
572
594
|
Parent?: string;
|
|
573
595
|
ContextCompressionPrompt?: string;
|
|
574
596
|
Type?: string;
|
|
575
|
-
AIAgentRequests_AgentIDArray: AIAgentRequest_[];
|
|
576
|
-
AIAgentLearningCycles_AgentIDArray: AIAgentLearningCycle_[];
|
|
577
597
|
AIAgentModels_AgentIDArray: AIAgentModel_[];
|
|
578
598
|
AIAgentActions_AgentIDArray: AIAgentAction_[];
|
|
599
|
+
AIAgentLearningCycles_AgentIDArray: AIAgentLearningCycle_[];
|
|
600
|
+
AIAgentRequests_AgentIDArray: AIAgentRequest_[];
|
|
579
601
|
MJ_AIAgentSteps_AgentIDArray: AIAgentStep_[];
|
|
580
|
-
|
|
602
|
+
AIAgentNotes_AgentIDArray: AIAgentNote_[];
|
|
581
603
|
MJ_AIAgentPrompts_AgentIDArray: AIAgentPrompt_[];
|
|
582
604
|
MJ_AIAgentRuns_AgentIDArray: AIAgentRun_[];
|
|
583
|
-
|
|
605
|
+
MJ_AIAgentSteps_SubAgentIDArray: AIAgentStep_[];
|
|
584
606
|
AIResultCache_AgentIDArray: AIResultCache_[];
|
|
585
607
|
MJ_AIPromptRuns_AgentIDArray: AIPromptRun_[];
|
|
586
608
|
AIAgents_ParentIDArray: AIAgent_[];
|
|
@@ -670,15 +692,15 @@ export declare class AIAgentResolver extends ResolverBase {
|
|
|
670
692
|
RunAIAgentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
671
693
|
RunAIAgentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
672
694
|
AIAgent(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<AIAgent_ | null>;
|
|
673
|
-
AIAgentRequests_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
674
|
-
AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
675
695
|
AIAgentModels_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
676
696
|
AIAgentActions_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
697
|
+
AIAgentLearningCycles_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
698
|
+
AIAgentRequests_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
677
699
|
MJ_AIAgentSteps_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
678
|
-
|
|
700
|
+
AIAgentNotes_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
679
701
|
MJ_AIAgentPrompts_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
680
702
|
MJ_AIAgentRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
681
|
-
|
|
703
|
+
MJ_AIAgentSteps_SubAgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
682
704
|
AIResultCache_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
683
705
|
MJ_AIPromptRuns_AgentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
684
706
|
AIAgents_ParentIDArray(aiagent_: AIAgent_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -1165,13 +1187,13 @@ export declare class AIPrompt_ {
|
|
|
1165
1187
|
AIModelType?: string;
|
|
1166
1188
|
ResultSelectorPrompt?: string;
|
|
1167
1189
|
AIResultCache_AIPromptIDArray: AIResultCache_[];
|
|
1168
|
-
MJ_AIAgentTypes_SystemPromptIDArray: AIAgentType_[];
|
|
1169
1190
|
MJ_AIConfigurations_DefaultPromptForContextCompressionIDArray: AIConfiguration_[];
|
|
1191
|
+
MJ_AIAgentTypes_SystemPromptIDArray: AIAgentType_[];
|
|
1170
1192
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray: AIConfiguration_[];
|
|
1171
1193
|
AIPrompts_ResultSelectorPromptIDArray: AIPrompt_[];
|
|
1172
1194
|
MJ_AIPromptModels_PromptIDArray: AIPromptModel_[];
|
|
1173
|
-
MJ_AIAgentSteps_PromptIDArray: AIAgentStep_[];
|
|
1174
1195
|
MJ_AIAgentPrompts_PromptIDArray: AIAgentPrompt_[];
|
|
1196
|
+
MJ_AIAgentSteps_PromptIDArray: AIAgentStep_[];
|
|
1175
1197
|
MJ_AIPromptRuns_PromptIDArray: AIPromptRun_[];
|
|
1176
1198
|
AIAgents_ContextCompressionPromptIDArray: AIAgent_[];
|
|
1177
1199
|
}
|
|
@@ -1291,13 +1313,13 @@ export declare class AIPromptResolver extends ResolverBase {
|
|
|
1291
1313
|
RunAIPromptDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1292
1314
|
AIPrompt(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<AIPrompt_ | null>;
|
|
1293
1315
|
AIResultCache_AIPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1294
|
-
MJ_AIAgentTypes_SystemPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1295
1316
|
MJ_AIConfigurations_DefaultPromptForContextCompressionIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1317
|
+
MJ_AIAgentTypes_SystemPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1296
1318
|
MJ_AIConfigurations_DefaultPromptForContextSummarizationIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1297
1319
|
AIPrompts_ResultSelectorPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1298
1320
|
MJ_AIPromptModels_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1299
|
-
MJ_AIAgentSteps_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1300
1321
|
MJ_AIAgentPrompts_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1322
|
+
MJ_AIAgentSteps_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1301
1323
|
MJ_AIPromptRuns_PromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1302
1324
|
AIAgents_ContextCompressionPromptIDArray(aiprompt_: AIPrompt_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1303
1325
|
CreateAIPrompt(input: CreateAIPromptInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1466,9 +1488,9 @@ export declare class Company_ {
|
|
|
1466
1488
|
Domain?: string;
|
|
1467
1489
|
_mj__CreatedAt: Date;
|
|
1468
1490
|
_mj__UpdatedAt: Date;
|
|
1469
|
-
Workflows_CompanyNameArray: Workflow_[];
|
|
1470
|
-
CompanyIntegrations_CompanyNameArray: CompanyIntegration_[];
|
|
1471
1491
|
Employees_CompanyIDArray: Employee_[];
|
|
1492
|
+
CompanyIntegrations_CompanyNameArray: CompanyIntegration_[];
|
|
1493
|
+
Workflows_CompanyNameArray: Workflow_[];
|
|
1472
1494
|
}
|
|
1473
1495
|
export declare class CreateCompanyInput {
|
|
1474
1496
|
ID?: string;
|
|
@@ -1502,9 +1524,9 @@ export declare class CompanyResolver extends ResolverBase {
|
|
|
1502
1524
|
RunCompanyDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1503
1525
|
Company(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Company_ | null>;
|
|
1504
1526
|
AllCompanies({ dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1505
|
-
Workflows_CompanyNameArray(company_: Company_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1506
|
-
CompanyIntegrations_CompanyNameArray(company_: Company_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1507
1527
|
Employees_CompanyIDArray(company_: Company_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1528
|
+
CompanyIntegrations_CompanyNameArray(company_: Company_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1529
|
+
Workflows_CompanyNameArray(company_: Company_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1508
1530
|
CreateCompany(input: CreateCompanyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1509
1531
|
UpdateCompany(input: UpdateCompanyInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1510
1532
|
DeleteCompany(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1527,11 +1549,11 @@ export declare class Employee_ {
|
|
|
1527
1549
|
SupervisorFirstName?: string;
|
|
1528
1550
|
SupervisorLastName?: string;
|
|
1529
1551
|
SupervisorEmail?: string;
|
|
1530
|
-
Users_EmployeeIDArray: User_[];
|
|
1531
|
-
EmployeeSkills_EmployeeIDArray: EmployeeSkill_[];
|
|
1532
|
-
EmployeeCompanyIntegrations_EmployeeIDArray: EmployeeCompanyIntegration_[];
|
|
1533
1552
|
Employees_SupervisorIDArray: Employee_[];
|
|
1553
|
+
EmployeeCompanyIntegrations_EmployeeIDArray: EmployeeCompanyIntegration_[];
|
|
1534
1554
|
EmployeeRoles_EmployeeIDArray: EmployeeRole_[];
|
|
1555
|
+
EmployeeSkills_EmployeeIDArray: EmployeeSkill_[];
|
|
1556
|
+
Users_EmployeeIDArray: User_[];
|
|
1535
1557
|
}
|
|
1536
1558
|
export declare class CreateEmployeeInput {
|
|
1537
1559
|
ID?: string;
|
|
@@ -1571,11 +1593,11 @@ export declare class EmployeeResolver extends ResolverBase {
|
|
|
1571
1593
|
RunEmployeeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1572
1594
|
Employee(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Employee_ | null>;
|
|
1573
1595
|
AllEmployees({ dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1574
|
-
Users_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1575
|
-
EmployeeSkills_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1576
|
-
EmployeeCompanyIntegrations_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1577
1596
|
Employees_SupervisorIDArray(employee_: Employee_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1597
|
+
EmployeeCompanyIntegrations_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1578
1598
|
EmployeeRoles_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1599
|
+
EmployeeSkills_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1600
|
+
Users_EmployeeIDArray(employee_: Employee_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1579
1601
|
CreateEmployee(input: CreateEmployeeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1580
1602
|
UpdateEmployee(input: UpdateEmployeeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1581
1603
|
DeleteEmployee(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1747,11 +1769,11 @@ export declare class Role_ {
|
|
|
1747
1769
|
SQLName?: string;
|
|
1748
1770
|
_mj__CreatedAt: Date;
|
|
1749
1771
|
_mj__UpdatedAt: Date;
|
|
1772
|
+
EmployeeRoles_RoleIDArray: EmployeeRole_[];
|
|
1773
|
+
EntityPermissions_RoleNameArray: EntityPermission_[];
|
|
1750
1774
|
UserRoles_RoleNameArray: UserRole_[];
|
|
1751
1775
|
AuthorizationRoles_RoleNameArray: AuthorizationRole_[];
|
|
1752
|
-
EntityPermissions_RoleNameArray: EntityPermission_[];
|
|
1753
1776
|
QueryPermissions_RoleNameArray: QueryPermission_[];
|
|
1754
|
-
EmployeeRoles_RoleIDArray: EmployeeRole_[];
|
|
1755
1777
|
ResourcePermissions_RoleIDArray: ResourcePermission_[];
|
|
1756
1778
|
}
|
|
1757
1779
|
export declare class CreateRoleInput {
|
|
@@ -1784,11 +1806,11 @@ export declare class RoleResolver extends ResolverBase {
|
|
|
1784
1806
|
RunRoleDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1785
1807
|
Role(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Role_ | null>;
|
|
1786
1808
|
AllRoles({ dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1809
|
+
EmployeeRoles_RoleIDArray(role_: Role_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1810
|
+
EntityPermissions_RoleNameArray(role_: Role_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1787
1811
|
UserRoles_RoleNameArray(role_: Role_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1788
1812
|
AuthorizationRoles_RoleNameArray(role_: Role_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1789
|
-
EntityPermissions_RoleNameArray(role_: Role_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1790
1813
|
QueryPermissions_RoleNameArray(role_: Role_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1791
|
-
EmployeeRoles_RoleIDArray(role_: Role_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1792
1814
|
ResourcePermissions_RoleIDArray(role_: Role_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1793
1815
|
CreateRole(input: CreateRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1794
1816
|
UpdateRole(input: UpdateRoleInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -1964,10 +1986,10 @@ export declare class CompanyIntegration_ {
|
|
|
1964
1986
|
LastRunID?: string;
|
|
1965
1987
|
LastRunStartedAt?: Date;
|
|
1966
1988
|
LastRunEndedAt?: Date;
|
|
1967
|
-
CompanyIntegrationRecordMaps_CompanyIntegrationIDArray: CompanyIntegrationRecordMap_[];
|
|
1968
1989
|
Lists_CompanyIntegrationIDArray: List_[];
|
|
1969
|
-
CompanyIntegrationRuns_CompanyIntegrationIDArray: CompanyIntegrationRun_[];
|
|
1970
1990
|
EmployeeCompanyIntegrations_CompanyIntegrationIDArray: EmployeeCompanyIntegration_[];
|
|
1991
|
+
CompanyIntegrationRuns_CompanyIntegrationIDArray: CompanyIntegrationRun_[];
|
|
1992
|
+
CompanyIntegrationRecordMaps_CompanyIntegrationIDArray: CompanyIntegrationRecordMap_[];
|
|
1971
1993
|
}
|
|
1972
1994
|
export declare class CreateCompanyIntegrationInput {
|
|
1973
1995
|
ID?: string;
|
|
@@ -2016,10 +2038,10 @@ export declare class CompanyIntegrationResolver extends ResolverBase {
|
|
|
2016
2038
|
RunCompanyIntegrationViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2017
2039
|
RunCompanyIntegrationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2018
2040
|
CompanyIntegration(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegration_ | null>;
|
|
2019
|
-
CompanyIntegrationRecordMaps_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2020
2041
|
Lists_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2021
|
-
CompanyIntegrationRuns_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2022
2042
|
EmployeeCompanyIntegrations_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2043
|
+
CompanyIntegrationRuns_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2044
|
+
CompanyIntegrationRecordMaps_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2023
2045
|
CreateCompanyIntegration(input: CreateCompanyIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2024
2046
|
UpdateCompanyIntegration(input: UpdateCompanyIntegrationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2025
2047
|
DeleteCompanyIntegration(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2234,41 +2256,41 @@ export declare class Entity_ {
|
|
|
2234
2256
|
ParentEntity?: string;
|
|
2235
2257
|
ParentBaseTable?: string;
|
|
2236
2258
|
ParentBaseView?: string;
|
|
2259
|
+
EntityPermissions_EntityIDArray: EntityPermission_[];
|
|
2260
|
+
EntityRelationships_EntityIDArray: EntityRelationship_[];
|
|
2261
|
+
EntityFields_EntityIDArray: EntityField_[];
|
|
2262
|
+
EntityAIActions_EntityIDArray: EntityAIAction_[];
|
|
2263
|
+
UserRecordLogs_EntityIDArray: UserRecordLog_[];
|
|
2264
|
+
IntegrationURLFormats_EntityIDArray: IntegrationURLFormat_[];
|
|
2265
|
+
Entities_ParentIDArray: Entity_[];
|
|
2266
|
+
UserFavorites_EntityIDArray: UserFavorite_[];
|
|
2267
|
+
CompanyIntegrationRunDetails_EntityIDArray: CompanyIntegrationRunDetail_[];
|
|
2268
|
+
ApplicationEntities_EntityIDArray: ApplicationEntity_[];
|
|
2269
|
+
UserApplicationEntities_EntityIDArray: UserApplicationEntity_[];
|
|
2270
|
+
Lists_EntityIDArray: List_[];
|
|
2271
|
+
UserViews_EntityIDArray: UserView_[];
|
|
2272
|
+
RecordChanges_EntityIDArray: RecordChange_[];
|
|
2237
2273
|
AuditLogs_EntityIDArray: AuditLog_[];
|
|
2238
|
-
|
|
2274
|
+
ResourceTypes_EntityIDArray: ResourceType_[];
|
|
2275
|
+
TaggedItems_EntityIDArray: TaggedItem_[];
|
|
2239
2276
|
DatasetItems_EntityIDArray: DatasetItem_[];
|
|
2240
|
-
Users_LinkedEntityIDArray: User_[];
|
|
2241
2277
|
CompanyIntegrationRecordMaps_EntityIDArray: CompanyIntegrationRecordMap_[];
|
|
2242
|
-
Entities_ParentIDArray: Entity_[];
|
|
2243
|
-
UserViewCategories_EntityIDArray: UserViewCategory_[];
|
|
2244
|
-
EntityAIActions_EntityIDArray: EntityAIAction_[];
|
|
2245
|
-
EntityActions_EntityIDArray: EntityAction_[];
|
|
2246
|
-
Conversations_LinkedEntityIDArray: Conversation_[];
|
|
2247
|
-
DuplicateRuns_EntityIDArray: DuplicateRun_[];
|
|
2248
|
-
TaggedItems_EntityIDArray: TaggedItem_[];
|
|
2249
2278
|
RecordMergeLogs_EntityIDArray: RecordMergeLog_[];
|
|
2250
|
-
UserApplicationEntities_EntityIDArray: UserApplicationEntity_[];
|
|
2251
2279
|
QueryFields_SourceEntityIDArray: QueryField_[];
|
|
2252
|
-
|
|
2253
|
-
RecommendationItems_DestinationEntityIDArray: RecommendationItem_[];
|
|
2254
|
-
EntityPermissions_EntityIDArray: EntityPermission_[];
|
|
2255
|
-
Lists_EntityIDArray: List_[];
|
|
2256
|
-
UserRecordLogs_EntityIDArray: UserRecordLog_[];
|
|
2280
|
+
Conversations_LinkedEntityIDArray: Conversation_[];
|
|
2257
2281
|
EntityDocuments_EntityIDArray: EntityDocument_[];
|
|
2258
|
-
|
|
2282
|
+
DataContextItems_EntityIDArray: DataContextItem_[];
|
|
2283
|
+
Users_LinkedEntityIDArray: User_[];
|
|
2284
|
+
EntityRecordDocuments_EntityIDArray: EntityRecordDocument_[];
|
|
2259
2285
|
FileEntityRecordLinks_EntityIDArray: FileEntityRecordLink_[];
|
|
2286
|
+
UserViewCategories_EntityIDArray: UserViewCategory_[];
|
|
2260
2287
|
EntitySettings_EntityIDArray: EntitySetting_[];
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
UserFavorites_EntityIDArray: UserFavorite_[];
|
|
2288
|
+
DuplicateRuns_EntityIDArray: DuplicateRun_[];
|
|
2289
|
+
EntityActions_EntityIDArray: EntityAction_[];
|
|
2290
|
+
TemplateParams_EntityIDArray: TemplateParam_[];
|
|
2291
|
+
Recommendations_SourceEntityIDArray: Recommendation_[];
|
|
2292
|
+
RecommendationItems_DestinationEntityIDArray: RecommendationItem_[];
|
|
2267
2293
|
EntityCommunicationMessageTypes_EntityIDArray: EntityCommunicationMessageType_[];
|
|
2268
|
-
EntityRecordDocuments_EntityIDArray: EntityRecordDocument_[];
|
|
2269
|
-
RecordChanges_EntityIDArray: RecordChange_[];
|
|
2270
|
-
ApplicationEntities_EntityIDArray: ApplicationEntity_[];
|
|
2271
|
-
ResourceTypes_EntityIDArray: ResourceType_[];
|
|
2272
2294
|
QueryEntities_EntityIDArray: QueryEntity_[];
|
|
2273
2295
|
GeneratedCodes_LinkedEntityIDArray: GeneratedCode_[];
|
|
2274
2296
|
}
|
|
@@ -2396,41 +2418,41 @@ export declare class EntityResolverBase extends ResolverBase {
|
|
|
2396
2418
|
RunEntityDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2397
2419
|
Entity(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Entity_ | null>;
|
|
2398
2420
|
AllEntities({ dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2421
|
+
EntityPermissions_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2422
|
+
EntityRelationships_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2423
|
+
EntityFields_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2424
|
+
EntityAIActions_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2425
|
+
UserRecordLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2426
|
+
IntegrationURLFormats_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2427
|
+
Entities_ParentIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2428
|
+
UserFavorites_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2429
|
+
CompanyIntegrationRunDetails_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2430
|
+
ApplicationEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2431
|
+
UserApplicationEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2432
|
+
Lists_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2433
|
+
UserViews_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2434
|
+
RecordChanges_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2399
2435
|
AuditLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2400
|
-
|
|
2436
|
+
ResourceTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2437
|
+
TaggedItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2401
2438
|
DatasetItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2402
|
-
Users_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2403
2439
|
CompanyIntegrationRecordMaps_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2404
|
-
Entities_ParentIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2405
|
-
UserViewCategories_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2406
|
-
EntityAIActions_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2407
|
-
EntityActions_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2408
|
-
Conversations_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2409
|
-
DuplicateRuns_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2410
|
-
TaggedItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2411
2440
|
RecordMergeLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2412
|
-
UserApplicationEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2413
2441
|
QueryFields_SourceEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2414
|
-
|
|
2415
|
-
RecommendationItems_DestinationEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2416
|
-
EntityPermissions_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2417
|
-
Lists_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2418
|
-
UserRecordLogs_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2442
|
+
Conversations_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2419
2443
|
EntityDocuments_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2420
|
-
|
|
2444
|
+
DataContextItems_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2445
|
+
Users_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2446
|
+
EntityRecordDocuments_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2421
2447
|
FileEntityRecordLinks_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2448
|
+
UserViewCategories_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2422
2449
|
EntitySettings_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
UserFavorites_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2450
|
+
DuplicateRuns_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2451
|
+
EntityActions_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2452
|
+
TemplateParams_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2453
|
+
Recommendations_SourceEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2454
|
+
RecommendationItems_DestinationEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2429
2455
|
EntityCommunicationMessageTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2430
|
-
EntityRecordDocuments_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2431
|
-
RecordChanges_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2432
|
-
ApplicationEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2433
|
-
ResourceTypes_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2434
2456
|
QueryEntities_EntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2435
2457
|
GeneratedCodes_LinkedEntityIDArray(entity_: Entity_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2436
2458
|
CreateEntity(input: CreateEntityInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2458,44 +2480,44 @@ export declare class User_ {
|
|
|
2458
2480
|
EmployeeTitle?: string;
|
|
2459
2481
|
EmployeeSupervisor?: string;
|
|
2460
2482
|
EmployeeSupervisorEmail?: string;
|
|
2461
|
-
RecommendationRuns_RunByUserIDArray: RecommendationRun_[];
|
|
2462
2483
|
UserApplications_UserIDArray: UserApplication_[];
|
|
2463
|
-
Dashboards_UserIDArray: Dashboard_[];
|
|
2464
|
-
RecordChanges_UserIDArray: RecordChange_[];
|
|
2465
|
-
Reports_UserIDArray: Report_[];
|
|
2466
|
-
DashboardCategories_UserIDArray: DashboardCategory_[];
|
|
2467
|
-
Actions_CodeApprovedByUserIDArray: Action_[];
|
|
2468
|
-
QueryCategories_UserIDArray: QueryCategory_[];
|
|
2469
|
-
UserViewCategories_UserIDArray: UserViewCategory_[];
|
|
2470
|
-
DataContexts_UserIDArray: DataContext_[];
|
|
2471
|
-
RecordMergeLogs_InitiatedByUserIDArray: RecordMergeLog_[];
|
|
2472
|
-
CompanyIntegrationRuns_RunByUserIDArray: CompanyIntegrationRun_[];
|
|
2473
|
-
ReportCategories_UserIDArray: ReportCategory_[];
|
|
2474
|
-
RecordChangeReplayRuns_UserIDArray: RecordChangeReplayRun_[];
|
|
2475
2484
|
UserRoles_UserIDArray: UserRole_[];
|
|
2476
|
-
UserViewRuns_RunByUserIDArray: UserViewRun_[];
|
|
2477
2485
|
Workspaces_UserIDArray: Workspace_[];
|
|
2478
|
-
|
|
2479
|
-
Lists_UserIDArray: List_[];
|
|
2480
|
-
CommunicationRuns_UserIDArray: CommunicationRun_[];
|
|
2481
|
-
ActionExecutionLogs_UserIDArray: ActionExecutionLog_[];
|
|
2482
|
-
AuditLogs_UserIDArray: AuditLog_[];
|
|
2486
|
+
Reports_UserIDArray: Report_[];
|
|
2483
2487
|
ReportSnapshots_UserIDArray: ReportSnapshot_[];
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2488
|
+
RecordChanges_UserIDArray: RecordChange_[];
|
|
2489
|
+
Dashboards_UserIDArray: Dashboard_[];
|
|
2490
|
+
UserViewRuns_RunByUserIDArray: UserViewRun_[];
|
|
2491
|
+
AuditLogs_UserIDArray: AuditLog_[];
|
|
2492
|
+
Lists_UserIDArray: List_[];
|
|
2493
|
+
UserFavorites_UserIDArray: UserFavorite_[];
|
|
2487
2494
|
UserRecordLogs_UserIDArray: UserRecordLog_[];
|
|
2495
|
+
UserViews_UserIDArray: UserView_[];
|
|
2496
|
+
CompanyIntegrationRuns_RunByUserIDArray: CompanyIntegrationRun_[];
|
|
2488
2497
|
UserNotifications_UserIDArray: UserNotification_[];
|
|
2498
|
+
Conversations_UserIDArray: Conversation_[];
|
|
2499
|
+
RecordMergeLogs_InitiatedByUserIDArray: RecordMergeLog_[];
|
|
2500
|
+
DataContexts_UserIDArray: DataContext_[];
|
|
2501
|
+
ReportCategories_UserIDArray: ReportCategory_[];
|
|
2502
|
+
UserViewCategories_UserIDArray: UserViewCategory_[];
|
|
2503
|
+
DashboardCategories_UserIDArray: DashboardCategory_[];
|
|
2504
|
+
QueryCategories_UserIDArray: QueryCategory_[];
|
|
2505
|
+
DuplicateRuns_StartedByUserIDArray: DuplicateRun_[];
|
|
2506
|
+
ActionExecutionLogs_UserIDArray: ActionExecutionLog_[];
|
|
2507
|
+
Actions_CodeApprovedByUserIDArray: Action_[];
|
|
2508
|
+
CommunicationRuns_UserIDArray: CommunicationRun_[];
|
|
2489
2509
|
Templates_UserIDArray: Template_[];
|
|
2490
|
-
|
|
2491
|
-
|
|
2510
|
+
TemplateCategories_UserIDArray: TemplateCategory_[];
|
|
2511
|
+
RecommendationRuns_RunByUserIDArray: RecommendationRun_[];
|
|
2512
|
+
RecordChangeReplayRuns_UserIDArray: RecordChangeReplayRun_[];
|
|
2492
2513
|
ListCategories_UserIDArray: ListCategory_[];
|
|
2493
2514
|
ScheduledActions_CreatedByUserIDArray: ScheduledAction_[];
|
|
2515
|
+
ResourceLinks_UserIDArray: ResourceLink_[];
|
|
2494
2516
|
AIAgentRequests_ResponseByUserIDArray: AIAgentRequest_[];
|
|
2495
|
-
MJ_DashboardUserPreferences_UserIDArray: DashboardUserPreference_[];
|
|
2496
|
-
MJ_ReportUserStates_UserIDArray: ReportUserState_[];
|
|
2497
2517
|
AIAgentNotes_UserIDArray: AIAgentNote_[];
|
|
2518
|
+
MJ_ReportUserStates_UserIDArray: ReportUserState_[];
|
|
2498
2519
|
MJ_DashboardUserStates_UserIDArray: DashboardUserState_[];
|
|
2520
|
+
MJ_DashboardUserPreferences_UserIDArray: DashboardUserPreference_[];
|
|
2499
2521
|
ResourcePermissions_UserIDArray: ResourcePermission_[];
|
|
2500
2522
|
AIAgentRequests_RequestForUserIDArray: AIAgentRequest_[];
|
|
2501
2523
|
ConversationDetails_UserIDArray: ConversationDetail_[];
|
|
@@ -2545,44 +2567,44 @@ export declare class UserResolverBase extends ResolverBase {
|
|
|
2545
2567
|
RunUserDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2546
2568
|
User(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<User_ | null>;
|
|
2547
2569
|
AllUsers({ dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2548
|
-
RecommendationRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2549
2570
|
UserApplications_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2550
|
-
Dashboards_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2551
|
-
RecordChanges_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2552
|
-
Reports_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2553
|
-
DashboardCategories_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2554
|
-
Actions_CodeApprovedByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2555
|
-
QueryCategories_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2556
|
-
UserViewCategories_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2557
|
-
DataContexts_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2558
|
-
RecordMergeLogs_InitiatedByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2559
|
-
CompanyIntegrationRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2560
|
-
ReportCategories_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2561
|
-
RecordChangeReplayRuns_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2562
2571
|
UserRoles_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2563
|
-
UserViewRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2564
2572
|
Workspaces_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2565
|
-
|
|
2566
|
-
Lists_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2567
|
-
CommunicationRuns_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2568
|
-
ActionExecutionLogs_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2569
|
-
AuditLogs_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2573
|
+
Reports_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2570
2574
|
ReportSnapshots_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2575
|
+
RecordChanges_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2576
|
+
Dashboards_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2577
|
+
UserViewRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2578
|
+
AuditLogs_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2579
|
+
Lists_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2580
|
+
UserFavorites_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2574
2581
|
UserRecordLogs_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2582
|
+
UserViews_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2583
|
+
CompanyIntegrationRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2575
2584
|
UserNotifications_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2585
|
+
Conversations_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2586
|
+
RecordMergeLogs_InitiatedByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2587
|
+
DataContexts_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2588
|
+
ReportCategories_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2589
|
+
UserViewCategories_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2590
|
+
DashboardCategories_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2591
|
+
QueryCategories_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2592
|
+
DuplicateRuns_StartedByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2593
|
+
ActionExecutionLogs_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2594
|
+
Actions_CodeApprovedByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2595
|
+
CommunicationRuns_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2576
2596
|
Templates_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2577
|
-
|
|
2578
|
-
|
|
2597
|
+
TemplateCategories_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2598
|
+
RecommendationRuns_RunByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2599
|
+
RecordChangeReplayRuns_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2579
2600
|
ListCategories_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2580
2601
|
ScheduledActions_CreatedByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2602
|
+
ResourceLinks_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2581
2603
|
AIAgentRequests_ResponseByUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2582
|
-
MJ_DashboardUserPreferences_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2583
|
-
MJ_ReportUserStates_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2584
2604
|
AIAgentNotes_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2605
|
+
MJ_ReportUserStates_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2585
2606
|
MJ_DashboardUserStates_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2607
|
+
MJ_DashboardUserPreferences_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2586
2608
|
ResourcePermissions_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2587
2609
|
AIAgentRequests_RequestForUserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2588
2610
|
ConversationDetails_UserIDArray(user_: User_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -2772,9 +2794,9 @@ export declare class UserView_ {
|
|
|
2772
2794
|
UserType: string;
|
|
2773
2795
|
Entity: string;
|
|
2774
2796
|
EntityBaseView: string;
|
|
2775
|
-
DataContextItems_ViewIDArray: DataContextItem_[];
|
|
2776
|
-
UserViewRuns_UserViewIDArray: UserViewRun_[];
|
|
2777
2797
|
EntityRelationships_DisplayUserViewGUIDArray: EntityRelationship_[];
|
|
2798
|
+
UserViewRuns_UserViewIDArray: UserViewRun_[];
|
|
2799
|
+
DataContextItems_ViewIDArray: DataContextItem_[];
|
|
2778
2800
|
}
|
|
2779
2801
|
export declare class CreateUserViewInput {
|
|
2780
2802
|
ID?: string;
|
|
@@ -2834,9 +2856,9 @@ export declare class UserViewResolverBase extends ResolverBase {
|
|
|
2834
2856
|
RunUserViewDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2835
2857
|
UserView(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<UserView_ | null>;
|
|
2836
2858
|
AllUserViews({ dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2837
|
-
DataContextItems_ViewIDArray(userview_: UserView_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2838
|
-
UserViewRuns_UserViewIDArray(userview_: UserView_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2839
2859
|
EntityRelationships_DisplayUserViewGUIDArray(userview_: UserView_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2860
|
+
UserViewRuns_UserViewIDArray(userview_: UserView_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2861
|
+
DataContextItems_ViewIDArray(userview_: UserView_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2840
2862
|
CreateUserView(input: CreateUserViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2841
2863
|
UpdateUserView(input: UpdateUserViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2842
2864
|
DeleteUserView(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -2857,9 +2879,9 @@ export declare class CompanyIntegrationRun_ {
|
|
|
2857
2879
|
Integration: string;
|
|
2858
2880
|
Company: string;
|
|
2859
2881
|
RunByUser: string;
|
|
2882
|
+
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray: CompanyIntegrationRunAPILog_[];
|
|
2860
2883
|
ErrorLogs_CompanyIntegrationRunIDArray: ErrorLog_[];
|
|
2861
2884
|
CompanyIntegrationRunDetails_CompanyIntegrationRunIDArray: CompanyIntegrationRunDetail_[];
|
|
2862
|
-
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray: CompanyIntegrationRunAPILog_[];
|
|
2863
2885
|
}
|
|
2864
2886
|
export declare class CreateCompanyIntegrationRunInput {
|
|
2865
2887
|
ID?: string;
|
|
@@ -2900,9 +2922,9 @@ export declare class CompanyIntegrationRunResolver extends ResolverBase {
|
|
|
2900
2922
|
RunCompanyIntegrationRunViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2901
2923
|
RunCompanyIntegrationRunDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2902
2924
|
CompanyIntegrationRun(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRun_ | null>;
|
|
2925
|
+
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2903
2926
|
ErrorLogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2904
2927
|
CompanyIntegrationRunDetails_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2905
|
-
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2906
2928
|
CreateCompanyIntegrationRun(input: CreateCompanyIntegrationRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2907
2929
|
UpdateCompanyIntegrationRun(input: UpdateCompanyIntegrationRunInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2908
2930
|
DeleteCompanyIntegrationRun(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3023,9 +3045,9 @@ export declare class Application_ {
|
|
|
3023
3045
|
_mj__CreatedAt: Date;
|
|
3024
3046
|
_mj__UpdatedAt: Date;
|
|
3025
3047
|
SchemaAutoAddNewEntities?: string;
|
|
3026
|
-
ApplicationSettings_ApplicationIDArray: ApplicationSetting_[];
|
|
3027
|
-
UserApplications_ApplicationIDArray: UserApplication_[];
|
|
3028
3048
|
ApplicationEntities_ApplicationIDArray: ApplicationEntity_[];
|
|
3049
|
+
UserApplications_ApplicationIDArray: UserApplication_[];
|
|
3050
|
+
ApplicationSettings_ApplicationIDArray: ApplicationSetting_[];
|
|
3029
3051
|
Dashboards_ApplicationIDArray: Dashboard_[];
|
|
3030
3052
|
MJ_DashboardUserPreferences_ApplicationIDArray: DashboardUserPreference_[];
|
|
3031
3053
|
}
|
|
@@ -3061,9 +3083,9 @@ export declare class ApplicationResolver extends ResolverBase {
|
|
|
3061
3083
|
RunApplicationDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3062
3084
|
Application(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Application_ | null>;
|
|
3063
3085
|
AllApplications({ dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3064
|
-
ApplicationSettings_ApplicationIDArray(application_: Application_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3065
|
-
UserApplications_ApplicationIDArray(application_: Application_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3066
3086
|
ApplicationEntities_ApplicationIDArray(application_: Application_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3087
|
+
UserApplications_ApplicationIDArray(application_: Application_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3088
|
+
ApplicationSettings_ApplicationIDArray(application_: Application_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3067
3089
|
Dashboards_ApplicationIDArray(application_: Application_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3068
3090
|
MJ_DashboardUserPreferences_ApplicationIDArray(application_: Application_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3069
3091
|
CreateApplication(input: CreateApplicationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3886,10 +3908,10 @@ export declare class Authorization_ {
|
|
|
3886
3908
|
_mj__UpdatedAt: Date;
|
|
3887
3909
|
Parent?: string;
|
|
3888
3910
|
AuthorizationRoles_AuthorizationIDArray: AuthorizationRole_[];
|
|
3889
|
-
ActionAuthorizations_AuthorizationIDArray: ActionAuthorization_[];
|
|
3890
3911
|
Authorizations_ParentIDArray: Authorization_[];
|
|
3891
|
-
AuditLogs_AuthorizationNameArray: AuditLog_[];
|
|
3892
3912
|
AuditLogTypes_AuthorizationNameArray: AuditLogType_[];
|
|
3913
|
+
AuditLogs_AuthorizationNameArray: AuditLog_[];
|
|
3914
|
+
ActionAuthorizations_AuthorizationIDArray: ActionAuthorization_[];
|
|
3893
3915
|
}
|
|
3894
3916
|
export declare class CreateAuthorizationInput {
|
|
3895
3917
|
ID?: string;
|
|
@@ -3924,10 +3946,10 @@ export declare class AuthorizationResolver extends ResolverBase {
|
|
|
3924
3946
|
Authorization(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Authorization_ | null>;
|
|
3925
3947
|
AllAuthorizations({ dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3926
3948
|
AuthorizationRoles_AuthorizationIDArray(authorization_: Authorization_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3927
|
-
ActionAuthorizations_AuthorizationIDArray(authorization_: Authorization_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3928
3949
|
Authorizations_ParentIDArray(authorization_: Authorization_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3929
|
-
AuditLogs_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3930
3950
|
AuditLogTypes_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3951
|
+
AuditLogs_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3952
|
+
ActionAuthorizations_AuthorizationIDArray(authorization_: Authorization_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3931
3953
|
CreateAuthorization(input: CreateAuthorizationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3932
3954
|
UpdateAuthorization(input: UpdateAuthorizationInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3933
3955
|
DeleteAuthorization(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -3984,8 +4006,8 @@ export declare class AuditLogType_ {
|
|
|
3984
4006
|
_mj__UpdatedAt: Date;
|
|
3985
4007
|
Parent?: string;
|
|
3986
4008
|
Authorization?: string;
|
|
3987
|
-
AuditLogTypes_ParentIDArray: AuditLogType_[];
|
|
3988
4009
|
AuditLogs_AuditLogTypeNameArray: AuditLog_[];
|
|
4010
|
+
AuditLogTypes_ParentIDArray: AuditLogType_[];
|
|
3989
4011
|
}
|
|
3990
4012
|
export declare class CreateAuditLogTypeInput {
|
|
3991
4013
|
ID?: string;
|
|
@@ -4017,8 +4039,8 @@ export declare class AuditLogTypeResolver extends ResolverBase {
|
|
|
4017
4039
|
RunAuditLogTypeDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4018
4040
|
AuditLogType(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<AuditLogType_ | null>;
|
|
4019
4041
|
AllAuditLogTypes({ dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4020
|
-
AuditLogTypes_ParentIDArray(auditlogtype_: AuditLogType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4021
4042
|
AuditLogs_AuditLogTypeNameArray(auditlogtype_: AuditLogType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4043
|
+
AuditLogTypes_ParentIDArray(auditlogtype_: AuditLogType_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4022
4044
|
CreateAuditLogType(input: CreateAuditLogTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4023
4045
|
UpdateAuditLogType(input: UpdateAuditLogTypeInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4024
4046
|
DeleteAuditLogType(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -4093,18 +4115,19 @@ export declare class AIModel_ {
|
|
|
4093
4115
|
SupportedResponseFormats?: string;
|
|
4094
4116
|
SupportsEffortLevel?: boolean;
|
|
4095
4117
|
AIActions_DefaultModelIDArray: AIAction_[];
|
|
4096
|
-
EntityDocuments_AIModelIDArray: EntityDocument_[];
|
|
4097
4118
|
AIModelActions_AIModelIDArray: AIModelAction_[];
|
|
4098
4119
|
VectorIndexes_EmbeddingModelIDArray: VectorIndex_[];
|
|
4120
|
+
EntityDocuments_AIModelIDArray: EntityDocument_[];
|
|
4121
|
+
EntityAIActions_AIModelIDArray: EntityAIAction_[];
|
|
4099
4122
|
ContentTypes_AIModelIDArray: ContentType_[];
|
|
4100
4123
|
AIResultCache_AIModelIDArray: AIResultCache_[];
|
|
4101
|
-
EntityAIActions_AIModelIDArray: EntityAIAction_[];
|
|
4102
|
-
MJ_AIModelVendors_ModelIDArray: AIModelVendor_[];
|
|
4103
4124
|
AIAgentModels_ModelIDArray: AIAgentModel_[];
|
|
4104
|
-
|
|
4125
|
+
MJ_AIModelVendors_ModelIDArray: AIModelVendor_[];
|
|
4105
4126
|
GeneratedCodes_GeneratedByModelIDArray: GeneratedCode_[];
|
|
4127
|
+
MJ_AIModelCosts_ModelIDArray: AIModelCost_[];
|
|
4106
4128
|
MJ_AIPromptModels_ModelIDArray: AIPromptModel_[];
|
|
4107
4129
|
MJ_AIPromptRuns_ModelIDArray: AIPromptRun_[];
|
|
4130
|
+
MJ_AIAgentRuns_OverrideModelIDArray: AIAgentRun_[];
|
|
4108
4131
|
}
|
|
4109
4132
|
export declare class CreateAIModelInput {
|
|
4110
4133
|
ID?: string;
|
|
@@ -4145,18 +4168,19 @@ export declare class AIModelResolver extends ResolverBase {
|
|
|
4145
4168
|
AIModel(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<AIModel_ | null>;
|
|
4146
4169
|
AllAIModels({ dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4147
4170
|
AIActions_DefaultModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4148
|
-
EntityDocuments_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4149
4171
|
AIModelActions_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4150
4172
|
VectorIndexes_EmbeddingModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4173
|
+
EntityDocuments_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4174
|
+
EntityAIActions_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4151
4175
|
ContentTypes_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4152
4176
|
AIResultCache_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4153
|
-
EntityAIActions_AIModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4154
|
-
MJ_AIModelVendors_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4155
4177
|
AIAgentModels_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4156
|
-
|
|
4178
|
+
MJ_AIModelVendors_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4157
4179
|
GeneratedCodes_GeneratedByModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4180
|
+
MJ_AIModelCosts_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4158
4181
|
MJ_AIPromptModels_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4159
4182
|
MJ_AIPromptRuns_ModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4183
|
+
MJ_AIAgentRuns_OverrideModelIDArray(aimodel_: AIModel_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4160
4184
|
CreateAIModel(input: CreateAIModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4161
4185
|
UpdateAIModel(input: UpdateAIModelInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4162
4186
|
DeleteAIModel(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5748,8 +5772,8 @@ export declare class Query_ {
|
|
|
5748
5772
|
UsesTemplate?: boolean;
|
|
5749
5773
|
Category?: string;
|
|
5750
5774
|
QueryFields_QueryIDArray: QueryField_[];
|
|
5751
|
-
DataContextItems_QueryIDArray: DataContextItem_[];
|
|
5752
5775
|
QueryPermissions_QueryIDArray: QueryPermission_[];
|
|
5776
|
+
DataContextItems_QueryIDArray: DataContextItem_[];
|
|
5753
5777
|
MJ_QueryParameters_QueryIDArray: QueryParameter_[];
|
|
5754
5778
|
QueryEntities_QueryIDArray: QueryEntity_[];
|
|
5755
5779
|
}
|
|
@@ -5799,8 +5823,8 @@ export declare class QueryResolver extends ResolverBase {
|
|
|
5799
5823
|
RunQueryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
5800
5824
|
Query(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Query_ | null>;
|
|
5801
5825
|
QueryFields_QueryIDArray(query_: Query_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5802
|
-
DataContextItems_QueryIDArray(query_: Query_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5803
5826
|
QueryPermissions_QueryIDArray(query_: Query_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5827
|
+
DataContextItems_QueryIDArray(query_: Query_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5804
5828
|
MJ_QueryParameters_QueryIDArray(query_: Query_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5805
5829
|
QueryEntities_QueryIDArray(query_: Query_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5806
5830
|
CreateQuery(input: CreateQueryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -5980,8 +6004,8 @@ export declare class VectorDatabase_ {
|
|
|
5980
6004
|
ClassKey?: string;
|
|
5981
6005
|
_mj__CreatedAt: Date;
|
|
5982
6006
|
_mj__UpdatedAt: Date;
|
|
5983
|
-
EntityDocuments_IDArray: EntityDocument_[];
|
|
5984
6007
|
VectorIndexes_VectorDatabaseIDArray: VectorIndex_[];
|
|
6008
|
+
EntityDocuments_IDArray: EntityDocument_[];
|
|
5985
6009
|
}
|
|
5986
6010
|
export declare class CreateVectorDatabaseInput {
|
|
5987
6011
|
ID?: string;
|
|
@@ -6012,8 +6036,8 @@ export declare class VectorDatabaseResolver extends ResolverBase {
|
|
|
6012
6036
|
RunVectorDatabaseViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6013
6037
|
RunVectorDatabaseDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6014
6038
|
VectorDatabase(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<VectorDatabase_ | null>;
|
|
6015
|
-
EntityDocuments_IDArray(vectordatabase_: VectorDatabase_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6016
6039
|
VectorIndexes_VectorDatabaseIDArray(vectordatabase_: VectorDatabase_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6040
|
+
EntityDocuments_IDArray(vectordatabase_: VectorDatabase_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6017
6041
|
CreateVectorDatabase(input: CreateVectorDatabaseInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6018
6042
|
UpdateVectorDatabase(input: UpdateVectorDatabaseInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6019
6043
|
DeleteVectorDatabase(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6093,8 +6117,8 @@ export declare class EntityDocument_ {
|
|
|
6093
6117
|
VectorDatabase: string;
|
|
6094
6118
|
Template: string;
|
|
6095
6119
|
AIModel: string;
|
|
6096
|
-
EntityDocumentSettings_EntityDocumentIDArray: EntityDocumentSetting_[];
|
|
6097
6120
|
EntityDocumentRuns_EntityDocumentIDArray: EntityDocumentRun_[];
|
|
6121
|
+
EntityDocumentSettings_EntityDocumentIDArray: EntityDocumentSetting_[];
|
|
6098
6122
|
EntityRecordDocuments_EntityDocumentIDArray: EntityRecordDocument_[];
|
|
6099
6123
|
}
|
|
6100
6124
|
export declare class CreateEntityDocumentInput {
|
|
@@ -6136,8 +6160,8 @@ export declare class EntityDocumentResolver extends ResolverBase {
|
|
|
6136
6160
|
RunEntityDocumentViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6137
6161
|
RunEntityDocumentDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6138
6162
|
EntityDocument(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<EntityDocument_ | null>;
|
|
6139
|
-
EntityDocumentSettings_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6140
6163
|
EntityDocumentRuns_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6164
|
+
EntityDocumentSettings_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6141
6165
|
EntityRecordDocuments_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6142
6166
|
CreateEntityDocument(input: CreateEntityDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6143
6167
|
UpdateEntityDocument(input: UpdateEntityDocumentInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6219,8 +6243,8 @@ export declare class DataContext_ {
|
|
|
6219
6243
|
_mj__CreatedAt: Date;
|
|
6220
6244
|
_mj__UpdatedAt: Date;
|
|
6221
6245
|
User: string;
|
|
6222
|
-
Reports_DataContextIDArray: Report_[];
|
|
6223
6246
|
DataContextItems_DataContextIDArray: DataContextItem_[];
|
|
6247
|
+
Reports_DataContextIDArray: Report_[];
|
|
6224
6248
|
Conversations_DataContextIDArray: Conversation_[];
|
|
6225
6249
|
}
|
|
6226
6250
|
export declare class CreateDataContextInput {
|
|
@@ -6252,8 +6276,8 @@ export declare class DataContextResolver extends ResolverBase {
|
|
|
6252
6276
|
RunDataContextViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6253
6277
|
RunDataContextDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6254
6278
|
DataContext(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<DataContext_ | null>;
|
|
6255
|
-
Reports_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6256
6279
|
DataContextItems_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6280
|
+
Reports_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6257
6281
|
Conversations_DataContextIDArray(datacontext_: DataContext_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6258
6282
|
CreateDataContext(input: CreateDataContextInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6259
6283
|
UpdateDataContext(input: UpdateDataContextInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -6321,8 +6345,8 @@ export declare class DashboardCategory_ {
|
|
|
6321
6345
|
_mj__UpdatedAt: Date;
|
|
6322
6346
|
Parent?: string;
|
|
6323
6347
|
User: string;
|
|
6324
|
-
DashboardCategories_ParentIDArray: DashboardCategory_[];
|
|
6325
6348
|
Dashboards_CategoryIDArray: Dashboard_[];
|
|
6349
|
+
DashboardCategories_ParentIDArray: DashboardCategory_[];
|
|
6326
6350
|
}
|
|
6327
6351
|
export declare class CreateDashboardCategoryInput {
|
|
6328
6352
|
ID?: string;
|
|
@@ -6353,8 +6377,8 @@ export declare class DashboardCategoryResolver extends ResolverBase {
|
|
|
6353
6377
|
RunDashboardCategoryViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6354
6378
|
RunDashboardCategoryDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
6355
6379
|
DashboardCategory(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<DashboardCategory_ | null>;
|
|
6356
|
-
DashboardCategories_ParentIDArray(dashboardcategory_: DashboardCategory_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6357
6380
|
Dashboards_CategoryIDArray(dashboardcategory_: DashboardCategory_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6381
|
+
DashboardCategories_ParentIDArray(dashboardcategory_: DashboardCategory_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6358
6382
|
CreateDashboardCategory(input: CreateDashboardCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6359
6383
|
UpdateDashboardCategory(input: UpdateDashboardCategoryInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6360
6384
|
DeleteDashboardCategory(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -7204,8 +7228,8 @@ export declare class Action_ {
|
|
|
7204
7228
|
Parent?: string;
|
|
7205
7229
|
ActionParams_ActionIDArray: ActionParam_[];
|
|
7206
7230
|
ActionLibraries_ActionIDArray: ActionLibrary_[];
|
|
7207
|
-
ScheduledActions_ActionIDArray: ScheduledAction_[];
|
|
7208
7231
|
ActionResultCodes_ActionIDArray: ActionResultCode_[];
|
|
7232
|
+
ScheduledActions_ActionIDArray: ScheduledAction_[];
|
|
7209
7233
|
AIAgentActions_ActionIDArray: AIAgentAction_[];
|
|
7210
7234
|
ActionContexts_ActionIDArray: ActionContext_[];
|
|
7211
7235
|
EntityActions_ActionIDArray: EntityAction_[];
|
|
@@ -7275,8 +7299,8 @@ export declare class ActionResolver extends ResolverBase {
|
|
|
7275
7299
|
Action(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Action_ | null>;
|
|
7276
7300
|
ActionParams_ActionIDArray(action_: Action_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7277
7301
|
ActionLibraries_ActionIDArray(action_: Action_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7278
|
-
ScheduledActions_ActionIDArray(action_: Action_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7279
7302
|
ActionResultCodes_ActionIDArray(action_: Action_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7303
|
+
ScheduledActions_ActionIDArray(action_: Action_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7280
7304
|
AIAgentActions_ActionIDArray(action_: Action_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7281
7305
|
ActionContexts_ActionIDArray(action_: Action_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7282
7306
|
EntityActions_ActionIDArray(action_: Action_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
@@ -7761,8 +7785,8 @@ export declare class CommunicationProvider_ {
|
|
|
7761
7785
|
SupportsScheduledSending: boolean;
|
|
7762
7786
|
SupportsForwarding: boolean;
|
|
7763
7787
|
SupportsReplying: boolean;
|
|
7764
|
-
CommunicationLogs_CommunicationProviderIDArray: CommunicationLog_[];
|
|
7765
7788
|
CommunicationProviderMessageTypes_CommunicationProviderIDArray: CommunicationProviderMessageType_[];
|
|
7789
|
+
CommunicationLogs_CommunicationProviderIDArray: CommunicationLog_[];
|
|
7766
7790
|
}
|
|
7767
7791
|
export declare class CreateCommunicationProviderInput {
|
|
7768
7792
|
ID?: string;
|
|
@@ -7801,8 +7825,8 @@ export declare class CommunicationProviderResolver extends ResolverBase {
|
|
|
7801
7825
|
RunCommunicationProviderViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7802
7826
|
RunCommunicationProviderDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
7803
7827
|
CommunicationProvider(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<CommunicationProvider_ | null>;
|
|
7804
|
-
CommunicationLogs_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7805
7828
|
CommunicationProviderMessageTypes_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7829
|
+
CommunicationLogs_CommunicationProviderIDArray(communicationprovider_: CommunicationProvider_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7806
7830
|
CreateCommunicationProvider(input: CreateCommunicationProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7807
7831
|
UpdateCommunicationProvider(input: UpdateCommunicationProviderInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7808
7832
|
DeleteCommunicationProvider(ID: string, options: DeleteOptionsInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -8029,8 +8053,8 @@ export declare class Template_ {
|
|
|
8029
8053
|
_mj__UpdatedAt: Date;
|
|
8030
8054
|
Category?: string;
|
|
8031
8055
|
User: string;
|
|
8032
|
-
TemplateContents_TemplateIDArray: TemplateContent_[];
|
|
8033
8056
|
TemplateParams_TemplateIDArray: TemplateParam_[];
|
|
8057
|
+
TemplateContents_TemplateIDArray: TemplateContent_[];
|
|
8034
8058
|
AIPrompts_TemplateIDArray: AIPrompt_[];
|
|
8035
8059
|
EntityDocuments_TemplateIDArray: EntityDocument_[];
|
|
8036
8060
|
}
|
|
@@ -8071,8 +8095,8 @@ export declare class TemplateResolver extends ResolverBase {
|
|
|
8071
8095
|
RunTemplateViewByName(input: RunViewByNameInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8072
8096
|
RunTemplateDynamicView(input: RunDynamicViewInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
8073
8097
|
Template(ID: string, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<Template_ | null>;
|
|
8074
|
-
TemplateContents_TemplateIDArray(template_: Template_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8075
8098
|
TemplateParams_TemplateIDArray(template_: Template_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8099
|
+
TemplateContents_TemplateIDArray(template_: Template_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8076
8100
|
AIPrompts_TemplateIDArray(template_: Template_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8077
8101
|
EntityDocuments_TemplateIDArray(template_: Template_, { dataSources, userPayload, providers }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8078
8102
|
CreateTemplate(input: CreateTemplateInput, { providers, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
@@ -10104,12 +10128,33 @@ export declare class AIPromptRun_ {
|
|
|
10104
10128
|
OriginalRequestStartTime?: Date;
|
|
10105
10129
|
TotalFailoverDuration?: number;
|
|
10106
10130
|
RerunFromPromptRunID?: string;
|
|
10131
|
+
ModelSelection?: string;
|
|
10132
|
+
Status: string;
|
|
10133
|
+
Cancelled: boolean;
|
|
10134
|
+
CancellationReason?: string;
|
|
10135
|
+
ModelPowerRank?: number;
|
|
10136
|
+
SelectionStrategy?: string;
|
|
10137
|
+
CacheHit: boolean;
|
|
10138
|
+
CacheKey?: string;
|
|
10139
|
+
JudgeID?: string;
|
|
10140
|
+
JudgeScore?: number;
|
|
10141
|
+
WasSelectedResult: boolean;
|
|
10142
|
+
StreamingEnabled: boolean;
|
|
10143
|
+
FirstTokenTime?: number;
|
|
10144
|
+
ErrorDetails?: string;
|
|
10145
|
+
ChildPromptID?: string;
|
|
10146
|
+
QueueTime?: number;
|
|
10147
|
+
PromptTime?: number;
|
|
10148
|
+
CompletionTime?: number;
|
|
10149
|
+
ModelSpecificResponseDetails?: string;
|
|
10107
10150
|
Prompt: string;
|
|
10108
10151
|
Model: string;
|
|
10109
10152
|
Vendor: string;
|
|
10110
10153
|
Agent?: string;
|
|
10111
10154
|
Configuration?: string;
|
|
10112
10155
|
OriginalModel?: string;
|
|
10156
|
+
Judge?: string;
|
|
10157
|
+
ChildPrompt?: string;
|
|
10113
10158
|
MJ_AIPromptRuns_ParentIDArray: AIPromptRun_[];
|
|
10114
10159
|
AIResultCache_PromptRunIDArray: AIResultCache_[];
|
|
10115
10160
|
}
|
|
@@ -10173,6 +10218,25 @@ export declare class CreateAIPromptRunInput {
|
|
|
10173
10218
|
OriginalRequestStartTime: Date | null;
|
|
10174
10219
|
TotalFailoverDuration: number | null;
|
|
10175
10220
|
RerunFromPromptRunID: string | null;
|
|
10221
|
+
ModelSelection: string | null;
|
|
10222
|
+
Status?: string;
|
|
10223
|
+
Cancelled?: boolean;
|
|
10224
|
+
CancellationReason: string | null;
|
|
10225
|
+
ModelPowerRank: number | null;
|
|
10226
|
+
SelectionStrategy: string | null;
|
|
10227
|
+
CacheHit?: boolean;
|
|
10228
|
+
CacheKey: string | null;
|
|
10229
|
+
JudgeID: string | null;
|
|
10230
|
+
JudgeScore: number | null;
|
|
10231
|
+
WasSelectedResult?: boolean;
|
|
10232
|
+
StreamingEnabled?: boolean;
|
|
10233
|
+
FirstTokenTime: number | null;
|
|
10234
|
+
ErrorDetails: string | null;
|
|
10235
|
+
ChildPromptID: string | null;
|
|
10236
|
+
QueueTime: number | null;
|
|
10237
|
+
PromptTime: number | null;
|
|
10238
|
+
CompletionTime: number | null;
|
|
10239
|
+
ModelSpecificResponseDetails: string | null;
|
|
10176
10240
|
}
|
|
10177
10241
|
export declare class UpdateAIPromptRunInput {
|
|
10178
10242
|
ID: string;
|
|
@@ -10234,6 +10298,25 @@ export declare class UpdateAIPromptRunInput {
|
|
|
10234
10298
|
OriginalRequestStartTime?: Date | null;
|
|
10235
10299
|
TotalFailoverDuration?: number | null;
|
|
10236
10300
|
RerunFromPromptRunID?: string | null;
|
|
10301
|
+
ModelSelection?: string | null;
|
|
10302
|
+
Status?: string;
|
|
10303
|
+
Cancelled?: boolean;
|
|
10304
|
+
CancellationReason?: string | null;
|
|
10305
|
+
ModelPowerRank?: number | null;
|
|
10306
|
+
SelectionStrategy?: string | null;
|
|
10307
|
+
CacheHit?: boolean;
|
|
10308
|
+
CacheKey?: string | null;
|
|
10309
|
+
JudgeID?: string | null;
|
|
10310
|
+
JudgeScore?: number | null;
|
|
10311
|
+
WasSelectedResult?: boolean;
|
|
10312
|
+
StreamingEnabled?: boolean;
|
|
10313
|
+
FirstTokenTime?: number | null;
|
|
10314
|
+
ErrorDetails?: string | null;
|
|
10315
|
+
ChildPromptID?: string | null;
|
|
10316
|
+
QueueTime?: number | null;
|
|
10317
|
+
PromptTime?: number | null;
|
|
10318
|
+
CompletionTime?: number | null;
|
|
10319
|
+
ModelSpecificResponseDetails?: string | null;
|
|
10237
10320
|
OldValues___?: KeyValuePairInput[];
|
|
10238
10321
|
}
|
|
10239
10322
|
export declare class RunAIPromptRunViewResult {
|