@memberjunction/server 2.56.0 → 2.57.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 +391 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +2587 -1
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/FileResolver.d.ts.map +1 -1
- package/dist/resolvers/FileResolver.js +5 -6
- package/dist/resolvers/FileResolver.js.map +1 -1
- package/dist/resolvers/RunAIPromptResolver.d.ts +1 -1
- package/dist/resolvers/RunAIPromptResolver.d.ts.map +1 -1
- package/dist/resolvers/RunAIPromptResolver.js +9 -5
- package/dist/resolvers/RunAIPromptResolver.js.map +1 -1
- package/package.json +26 -26
- package/src/generated/generated.ts +1714 -32
- package/src/resolvers/FileResolver.ts +11 -7
- package/src/resolvers/RunAIPromptResolver.ts +10 -4
|
@@ -525,6 +525,7 @@ export declare class AIAgent_ {
|
|
|
525
525
|
Status?: string;
|
|
526
526
|
DriverClass?: string;
|
|
527
527
|
IconClass?: string;
|
|
528
|
+
ModelSelectionMode: string;
|
|
528
529
|
Parent?: string;
|
|
529
530
|
ContextCompressionPrompt?: string;
|
|
530
531
|
Type?: string;
|
|
@@ -556,6 +557,7 @@ export declare class CreateAIAgentInput {
|
|
|
556
557
|
Status: string | null;
|
|
557
558
|
DriverClass: string | null;
|
|
558
559
|
IconClass: string | null;
|
|
560
|
+
ModelSelectionMode?: string;
|
|
559
561
|
}
|
|
560
562
|
export declare class UpdateAIAgentInput {
|
|
561
563
|
ID: string;
|
|
@@ -574,6 +576,7 @@ export declare class UpdateAIAgentInput {
|
|
|
574
576
|
Status?: string | null;
|
|
575
577
|
DriverClass?: string | null;
|
|
576
578
|
IconClass?: string | null;
|
|
579
|
+
ModelSelectionMode?: string;
|
|
577
580
|
OldValues___?: KeyValuePairInput[];
|
|
578
581
|
}
|
|
579
582
|
export declare class RunAIAgentViewResult {
|
|
@@ -1425,6 +1428,13 @@ export declare class EmployeeCompanyIntegration_ {
|
|
|
1425
1428
|
_mj__CreatedAt: Date;
|
|
1426
1429
|
_mj__UpdatedAt: Date;
|
|
1427
1430
|
}
|
|
1431
|
+
export declare class CreateEmployeeCompanyIntegrationInput {
|
|
1432
|
+
ID?: string;
|
|
1433
|
+
EmployeeID?: string;
|
|
1434
|
+
CompanyIntegrationID?: string;
|
|
1435
|
+
ExternalSystemRecordID?: string;
|
|
1436
|
+
IsActive?: boolean;
|
|
1437
|
+
}
|
|
1428
1438
|
export declare class UpdateEmployeeCompanyIntegrationInput {
|
|
1429
1439
|
ID: string;
|
|
1430
1440
|
EmployeeID?: string;
|
|
@@ -1447,7 +1457,9 @@ export declare class EmployeeCompanyIntegrationResolver extends ResolverBase {
|
|
|
1447
1457
|
RunEmployeeCompanyIntegrationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1448
1458
|
RunEmployeeCompanyIntegrationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1449
1459
|
EmployeeCompanyIntegration(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeCompanyIntegration_ | null>;
|
|
1460
|
+
CreateEmployeeCompanyIntegration(input: CreateEmployeeCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1450
1461
|
UpdateEmployeeCompanyIntegration(input: UpdateEmployeeCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1462
|
+
DeleteEmployeeCompanyIntegration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1451
1463
|
}
|
|
1452
1464
|
export declare class EmployeeRole_ {
|
|
1453
1465
|
ID: string;
|
|
@@ -1457,6 +1469,11 @@ export declare class EmployeeRole_ {
|
|
|
1457
1469
|
_mj__UpdatedAt: Date;
|
|
1458
1470
|
Role: string;
|
|
1459
1471
|
}
|
|
1472
|
+
export declare class CreateEmployeeRoleInput {
|
|
1473
|
+
ID?: string;
|
|
1474
|
+
EmployeeID?: string;
|
|
1475
|
+
RoleID?: string;
|
|
1476
|
+
}
|
|
1460
1477
|
export declare class UpdateEmployeeRoleInput {
|
|
1461
1478
|
ID: string;
|
|
1462
1479
|
EmployeeID?: string;
|
|
@@ -1477,6 +1494,7 @@ export declare class EmployeeRoleResolver extends ResolverBase {
|
|
|
1477
1494
|
RunEmployeeRoleViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1478
1495
|
RunEmployeeRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1479
1496
|
EmployeeRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeRole_ | null>;
|
|
1497
|
+
CreateEmployeeRole(input: CreateEmployeeRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1480
1498
|
UpdateEmployeeRole(input: UpdateEmployeeRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1481
1499
|
DeleteEmployeeRole(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1482
1500
|
}
|
|
@@ -1488,6 +1506,11 @@ export declare class EmployeeSkill_ {
|
|
|
1488
1506
|
_mj__UpdatedAt: Date;
|
|
1489
1507
|
Skill: string;
|
|
1490
1508
|
}
|
|
1509
|
+
export declare class CreateEmployeeSkillInput {
|
|
1510
|
+
ID?: string;
|
|
1511
|
+
EmployeeID?: string;
|
|
1512
|
+
SkillID?: string;
|
|
1513
|
+
}
|
|
1491
1514
|
export declare class UpdateEmployeeSkillInput {
|
|
1492
1515
|
ID: string;
|
|
1493
1516
|
EmployeeID?: string;
|
|
@@ -1508,6 +1531,7 @@ export declare class EmployeeSkillResolver extends ResolverBase {
|
|
|
1508
1531
|
RunEmployeeSkillViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1509
1532
|
RunEmployeeSkillDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1510
1533
|
EmployeeSkill(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeSkill_ | null>;
|
|
1534
|
+
CreateEmployeeSkill(input: CreateEmployeeSkillInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1511
1535
|
UpdateEmployeeSkill(input: UpdateEmployeeSkillInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1512
1536
|
DeleteEmployeeSkill(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1513
1537
|
}
|
|
@@ -1576,6 +1600,17 @@ export declare class Skill_ {
|
|
|
1576
1600
|
EmployeeSkills_SkillIDArray: EmployeeSkill_[];
|
|
1577
1601
|
Skills_ParentIDArray: Skill_[];
|
|
1578
1602
|
}
|
|
1603
|
+
export declare class CreateSkillInput {
|
|
1604
|
+
ID?: string;
|
|
1605
|
+
Name?: string;
|
|
1606
|
+
ParentID: string | null;
|
|
1607
|
+
}
|
|
1608
|
+
export declare class UpdateSkillInput {
|
|
1609
|
+
ID: string;
|
|
1610
|
+
Name?: string;
|
|
1611
|
+
ParentID?: string | null;
|
|
1612
|
+
OldValues___?: KeyValuePairInput[];
|
|
1613
|
+
}
|
|
1579
1614
|
export declare class RunSkillViewResult {
|
|
1580
1615
|
Results: Skill_[];
|
|
1581
1616
|
UserViewRunID?: string;
|
|
@@ -1593,6 +1628,9 @@ export declare class SkillResolver extends ResolverBase {
|
|
|
1593
1628
|
AllSkills({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1594
1629
|
EmployeeSkills_SkillIDArray(skill_: Skill_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1595
1630
|
Skills_ParentIDArray(skill_: Skill_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1631
|
+
CreateSkill(input: CreateSkillInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1632
|
+
UpdateSkill(input: UpdateSkillInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1633
|
+
DeleteSkill(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1596
1634
|
}
|
|
1597
1635
|
export declare class IntegrationURLFormat_ {
|
|
1598
1636
|
ID: string;
|
|
@@ -1606,6 +1644,13 @@ export declare class IntegrationURLFormat_ {
|
|
|
1606
1644
|
NavigationBaseURL?: string;
|
|
1607
1645
|
FullURLFormat?: string;
|
|
1608
1646
|
}
|
|
1647
|
+
export declare class CreateIntegrationURLFormatInput {
|
|
1648
|
+
ID?: string;
|
|
1649
|
+
IntegrationID?: string;
|
|
1650
|
+
EntityID?: string;
|
|
1651
|
+
URLFormat?: string;
|
|
1652
|
+
Comments: string | null;
|
|
1653
|
+
}
|
|
1609
1654
|
export declare class UpdateIntegrationURLFormatInput {
|
|
1610
1655
|
ID: string;
|
|
1611
1656
|
IntegrationID?: string;
|
|
@@ -1629,6 +1674,7 @@ export declare class IntegrationURLFormatResolver extends ResolverBase {
|
|
|
1629
1674
|
RunIntegrationURLFormatDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1630
1675
|
IntegrationURLFormat(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<IntegrationURLFormat_ | null>;
|
|
1631
1676
|
AllIntegrationURLFormats({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1677
|
+
CreateIntegrationURLFormat(input: CreateIntegrationURLFormatInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1632
1678
|
UpdateIntegrationURLFormat(input: UpdateIntegrationURLFormatInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1633
1679
|
DeleteIntegrationURLFormat(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1634
1680
|
}
|
|
@@ -1647,6 +1693,16 @@ export declare class Integration_ {
|
|
|
1647
1693
|
CompanyIntegrations_IntegrationNameArray: CompanyIntegration_[];
|
|
1648
1694
|
RecordChanges_IntegrationIDArray: RecordChange_[];
|
|
1649
1695
|
}
|
|
1696
|
+
export declare class CreateIntegrationInput {
|
|
1697
|
+
Name?: string;
|
|
1698
|
+
Description: string | null;
|
|
1699
|
+
NavigationBaseURL: string | null;
|
|
1700
|
+
ClassName: string | null;
|
|
1701
|
+
ImportPath: string | null;
|
|
1702
|
+
BatchMaxRequestCount?: number;
|
|
1703
|
+
BatchRequestWaitTime?: number;
|
|
1704
|
+
ID?: string;
|
|
1705
|
+
}
|
|
1650
1706
|
export declare class UpdateIntegrationInput {
|
|
1651
1707
|
Name?: string;
|
|
1652
1708
|
Description?: string | null;
|
|
@@ -1676,6 +1732,7 @@ export declare class IntegrationResolver extends ResolverBase {
|
|
|
1676
1732
|
IntegrationURLFormats_IntegrationIDArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1677
1733
|
CompanyIntegrations_IntegrationNameArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1678
1734
|
RecordChanges_IntegrationIDArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1735
|
+
CreateIntegration(input: CreateIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1679
1736
|
UpdateIntegration(input: UpdateIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1680
1737
|
DeleteIntegration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1681
1738
|
}
|
|
@@ -1707,6 +1764,21 @@ export declare class CompanyIntegration_ {
|
|
|
1707
1764
|
CompanyIntegrationRuns_CompanyIntegrationIDArray: CompanyIntegrationRun_[];
|
|
1708
1765
|
EmployeeCompanyIntegrations_CompanyIntegrationIDArray: EmployeeCompanyIntegration_[];
|
|
1709
1766
|
}
|
|
1767
|
+
export declare class CreateCompanyIntegrationInput {
|
|
1768
|
+
ID?: string;
|
|
1769
|
+
CompanyID?: string;
|
|
1770
|
+
IntegrationID?: string;
|
|
1771
|
+
IsActive: boolean | null;
|
|
1772
|
+
AccessToken: string | null;
|
|
1773
|
+
RefreshToken: string | null;
|
|
1774
|
+
TokenExpirationDate: Date | null;
|
|
1775
|
+
APIKey: string | null;
|
|
1776
|
+
ExternalSystemID: string | null;
|
|
1777
|
+
IsExternalSystemReadOnly?: boolean;
|
|
1778
|
+
ClientID: string | null;
|
|
1779
|
+
ClientSecret: string | null;
|
|
1780
|
+
CustomAttribute1: string | null;
|
|
1781
|
+
}
|
|
1710
1782
|
export declare class UpdateCompanyIntegrationInput {
|
|
1711
1783
|
ID: string;
|
|
1712
1784
|
CompanyID?: string;
|
|
@@ -1741,6 +1813,7 @@ export declare class CompanyIntegrationResolver extends ResolverBase {
|
|
|
1741
1813
|
Lists_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1742
1814
|
CompanyIntegrationRuns_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1743
1815
|
EmployeeCompanyIntegrations_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1816
|
+
CreateCompanyIntegration(input: CreateCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1744
1817
|
UpdateCompanyIntegration(input: UpdateCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1745
1818
|
DeleteCompanyIntegration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1746
1819
|
}
|
|
@@ -2427,6 +2500,15 @@ export declare class UserRecordLog_ {
|
|
|
2427
2500
|
UserSupervisor?: string;
|
|
2428
2501
|
UserSupervisorEmail?: string;
|
|
2429
2502
|
}
|
|
2503
|
+
export declare class CreateUserRecordLogInput {
|
|
2504
|
+
ID?: string;
|
|
2505
|
+
UserID?: string;
|
|
2506
|
+
EntityID?: string;
|
|
2507
|
+
RecordID?: string;
|
|
2508
|
+
EarliestAt?: Date;
|
|
2509
|
+
LatestAt?: Date;
|
|
2510
|
+
TotalCount?: number;
|
|
2511
|
+
}
|
|
2430
2512
|
export declare class UpdateUserRecordLogInput {
|
|
2431
2513
|
ID: string;
|
|
2432
2514
|
UserID?: string;
|
|
@@ -2451,7 +2533,9 @@ export declare class UserRecordLogResolver extends ResolverBase {
|
|
|
2451
2533
|
RunUserRecordLogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2452
2534
|
RunUserRecordLogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2453
2535
|
UserRecordLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRecordLog_ | null>;
|
|
2536
|
+
CreateUserRecordLog(input: CreateUserRecordLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2454
2537
|
UpdateUserRecordLog(input: UpdateUserRecordLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2538
|
+
DeleteUserRecordLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2455
2539
|
}
|
|
2456
2540
|
export declare class UserView_ {
|
|
2457
2541
|
ID: string;
|
|
@@ -2614,6 +2698,7 @@ export declare class CompanyIntegrationRunResolver extends ResolverBase {
|
|
|
2614
2698
|
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2615
2699
|
CreateCompanyIntegrationRun(input: CreateCompanyIntegrationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2616
2700
|
UpdateCompanyIntegrationRun(input: UpdateCompanyIntegrationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2701
|
+
DeleteCompanyIntegrationRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2617
2702
|
}
|
|
2618
2703
|
export declare class CompanyIntegrationRunDetail_ {
|
|
2619
2704
|
ID: string;
|
|
@@ -2666,6 +2751,7 @@ export declare class CompanyIntegrationRunDetailResolver extends ResolverBase {
|
|
|
2666
2751
|
ErrorLogs_CompanyIntegrationRunDetailIDArray(companyintegrationrundetail_: CompanyIntegrationRunDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2667
2752
|
CreateCompanyIntegrationRunDetail(input: CreateCompanyIntegrationRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2668
2753
|
UpdateCompanyIntegrationRunDetail(input: UpdateCompanyIntegrationRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2754
|
+
DeleteCompanyIntegrationRunDetail(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2669
2755
|
}
|
|
2670
2756
|
export declare class ErrorLog_ {
|
|
2671
2757
|
ID: string;
|
|
@@ -2719,6 +2805,7 @@ export declare class ErrorLogResolver extends ResolverBase {
|
|
|
2719
2805
|
ErrorLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ErrorLog_ | null>;
|
|
2720
2806
|
CreateErrorLog(input: CreateErrorLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2721
2807
|
UpdateErrorLog(input: UpdateErrorLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2808
|
+
DeleteErrorLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2722
2809
|
}
|
|
2723
2810
|
export declare class Application_ {
|
|
2724
2811
|
ID: string;
|
|
@@ -3026,6 +3113,7 @@ export declare class CompanyIntegrationRunAPILogResolver extends ResolverBase {
|
|
|
3026
3113
|
CompanyIntegrationRunAPILog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRunAPILog_ | null>;
|
|
3027
3114
|
CreateCompanyIntegrationRunAPILog(input: CreateCompanyIntegrationRunAPILogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3028
3115
|
UpdateCompanyIntegrationRunAPILog(input: UpdateCompanyIntegrationRunAPILogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3116
|
+
DeleteCompanyIntegrationRunAPILog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3029
3117
|
}
|
|
3030
3118
|
export declare class List_ {
|
|
3031
3119
|
ID: string;
|
|
@@ -3172,6 +3260,7 @@ export declare class UserViewRunResolver extends ResolverBase {
|
|
|
3172
3260
|
UserViewRunDetails_UserViewRunIDArray(userviewrun_: UserViewRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3173
3261
|
CreateUserViewRun(input: CreateUserViewRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3174
3262
|
UpdateUserViewRun(input: UpdateUserViewRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3263
|
+
DeleteUserViewRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3175
3264
|
}
|
|
3176
3265
|
export declare class UserViewRunDetail_ {
|
|
3177
3266
|
ID: string;
|
|
@@ -3209,6 +3298,7 @@ export declare class UserViewRunDetailResolver extends ResolverBase {
|
|
|
3209
3298
|
UserViewRunDetail(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewRunDetail_ | null>;
|
|
3210
3299
|
CreateUserViewRunDetail(input: CreateUserViewRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3211
3300
|
UpdateUserViewRunDetail(input: UpdateUserViewRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3301
|
+
DeleteUserViewRunDetail(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3212
3302
|
}
|
|
3213
3303
|
export declare class WorkflowRun_ {
|
|
3214
3304
|
ID: string;
|
|
@@ -3223,6 +3313,15 @@ export declare class WorkflowRun_ {
|
|
|
3223
3313
|
Workflow: string;
|
|
3224
3314
|
WorkflowEngineName: string;
|
|
3225
3315
|
}
|
|
3316
|
+
export declare class CreateWorkflowRunInput {
|
|
3317
|
+
ID?: string;
|
|
3318
|
+
WorkflowID?: string;
|
|
3319
|
+
ExternalSystemRecordID?: string;
|
|
3320
|
+
StartedAt?: Date;
|
|
3321
|
+
EndedAt: Date | null;
|
|
3322
|
+
Status?: string;
|
|
3323
|
+
Results: string | null;
|
|
3324
|
+
}
|
|
3226
3325
|
export declare class UpdateWorkflowRunInput {
|
|
3227
3326
|
ID: string;
|
|
3228
3327
|
WorkflowID?: string;
|
|
@@ -3247,7 +3346,9 @@ export declare class WorkflowRunResolver extends ResolverBase {
|
|
|
3247
3346
|
RunWorkflowRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3248
3347
|
RunWorkflowRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3249
3348
|
WorkflowRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowRun_ | null>;
|
|
3349
|
+
CreateWorkflowRun(input: CreateWorkflowRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3250
3350
|
UpdateWorkflowRun(input: UpdateWorkflowRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3351
|
+
DeleteWorkflowRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3251
3352
|
}
|
|
3252
3353
|
export declare class Workflow_ {
|
|
3253
3354
|
ID: string;
|
|
@@ -3265,6 +3366,17 @@ export declare class Workflow_ {
|
|
|
3265
3366
|
Reports_OutputWorkflowIDArray: Report_[];
|
|
3266
3367
|
WorkflowRuns_WorkflowNameArray: WorkflowRun_[];
|
|
3267
3368
|
}
|
|
3369
|
+
export declare class CreateWorkflowInput {
|
|
3370
|
+
ID?: string;
|
|
3371
|
+
Name?: string;
|
|
3372
|
+
Description: string | null;
|
|
3373
|
+
WorkflowEngineID?: string;
|
|
3374
|
+
ExternalSystemRecordID?: string;
|
|
3375
|
+
AutoRunEnabled?: boolean;
|
|
3376
|
+
AutoRunIntervalUnits: string | null;
|
|
3377
|
+
AutoRunInterval: number | null;
|
|
3378
|
+
SubclassName: string | null;
|
|
3379
|
+
}
|
|
3268
3380
|
export declare class UpdateWorkflowInput {
|
|
3269
3381
|
ID: string;
|
|
3270
3382
|
Name?: string;
|
|
@@ -3293,7 +3405,9 @@ export declare class WorkflowResolver extends ResolverBase {
|
|
|
3293
3405
|
Workflow(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Workflow_ | null>;
|
|
3294
3406
|
Reports_OutputWorkflowIDArray(workflow_: Workflow_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3295
3407
|
WorkflowRuns_WorkflowNameArray(workflow_: Workflow_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3408
|
+
CreateWorkflow(input: CreateWorkflowInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3296
3409
|
UpdateWorkflow(input: UpdateWorkflowInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3410
|
+
DeleteWorkflow(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3297
3411
|
}
|
|
3298
3412
|
export declare class WorkflowEngine_ {
|
|
3299
3413
|
ID: string;
|
|
@@ -3305,6 +3419,13 @@ export declare class WorkflowEngine_ {
|
|
|
3305
3419
|
_mj__UpdatedAt: Date;
|
|
3306
3420
|
Workflows_WorkflowEngineNameArray: Workflow_[];
|
|
3307
3421
|
}
|
|
3422
|
+
export declare class CreateWorkflowEngineInput {
|
|
3423
|
+
ID?: string;
|
|
3424
|
+
Name?: string;
|
|
3425
|
+
Description: string | null;
|
|
3426
|
+
DriverPath?: string;
|
|
3427
|
+
DriverClass?: string;
|
|
3428
|
+
}
|
|
3308
3429
|
export declare class UpdateWorkflowEngineInput {
|
|
3309
3430
|
ID: string;
|
|
3310
3431
|
Name?: string;
|
|
@@ -3328,6 +3449,7 @@ export declare class WorkflowEngineResolver extends ResolverBase {
|
|
|
3328
3449
|
RunWorkflowEngineDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3329
3450
|
WorkflowEngine(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowEngine_ | null>;
|
|
3330
3451
|
Workflows_WorkflowEngineNameArray(workflowengine_: WorkflowEngine_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3452
|
+
CreateWorkflowEngine(input: CreateWorkflowEngineInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3331
3453
|
UpdateWorkflowEngine(input: UpdateWorkflowEngineInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3332
3454
|
DeleteWorkflowEngine(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3333
3455
|
}
|
|
@@ -3404,6 +3526,7 @@ export declare class RecordChangeResolver extends ResolverBase {
|
|
|
3404
3526
|
RecordChange(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordChange_ | null>;
|
|
3405
3527
|
CreateRecordChange(input: CreateRecordChangeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3406
3528
|
UpdateRecordChange(input: UpdateRecordChangeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3529
|
+
DeleteRecordChange(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3407
3530
|
}
|
|
3408
3531
|
export declare class UserRole_ {
|
|
3409
3532
|
ID: string;
|
|
@@ -3419,6 +3542,12 @@ export declare class CreateUserRoleInput {
|
|
|
3419
3542
|
UserID?: string;
|
|
3420
3543
|
RoleID?: string;
|
|
3421
3544
|
}
|
|
3545
|
+
export declare class UpdateUserRoleInput {
|
|
3546
|
+
ID: string;
|
|
3547
|
+
UserID?: string;
|
|
3548
|
+
RoleID?: string;
|
|
3549
|
+
OldValues___?: KeyValuePairInput[];
|
|
3550
|
+
}
|
|
3422
3551
|
export declare class RunUserRoleViewResult {
|
|
3423
3552
|
Results: UserRole_[];
|
|
3424
3553
|
UserViewRunID?: string;
|
|
@@ -3435,6 +3564,7 @@ export declare class UserRoleResolver extends ResolverBase {
|
|
|
3435
3564
|
UserRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRole_ | null>;
|
|
3436
3565
|
AllUserRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3437
3566
|
CreateUserRole(input: CreateUserRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3567
|
+
UpdateUserRole(input: UpdateUserRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3438
3568
|
DeleteUserRole(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3439
3569
|
}
|
|
3440
3570
|
export declare class RowLevelSecurityFilter_ {
|
|
@@ -3446,6 +3576,19 @@ export declare class RowLevelSecurityFilter_ {
|
|
|
3446
3576
|
_mj__UpdatedAt: Date;
|
|
3447
3577
|
EntityPermissions_ReadRLSFilterIDArray: EntityPermission_[];
|
|
3448
3578
|
}
|
|
3579
|
+
export declare class CreateRowLevelSecurityFilterInput {
|
|
3580
|
+
ID?: string;
|
|
3581
|
+
Name?: string;
|
|
3582
|
+
Description: string | null;
|
|
3583
|
+
FilterText: string | null;
|
|
3584
|
+
}
|
|
3585
|
+
export declare class UpdateRowLevelSecurityFilterInput {
|
|
3586
|
+
ID: string;
|
|
3587
|
+
Name?: string;
|
|
3588
|
+
Description?: string | null;
|
|
3589
|
+
FilterText?: string | null;
|
|
3590
|
+
OldValues___?: KeyValuePairInput[];
|
|
3591
|
+
}
|
|
3449
3592
|
export declare class RunRowLevelSecurityFilterViewResult {
|
|
3450
3593
|
Results: RowLevelSecurityFilter_[];
|
|
3451
3594
|
UserViewRunID?: string;
|
|
@@ -3462,6 +3605,9 @@ export declare class RowLevelSecurityFilterResolver extends ResolverBase {
|
|
|
3462
3605
|
RowLevelSecurityFilter(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RowLevelSecurityFilter_ | null>;
|
|
3463
3606
|
AllRowLevelSecurityFilters({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3464
3607
|
EntityPermissions_ReadRLSFilterIDArray(rowlevelsecurityfilter_: RowLevelSecurityFilter_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3608
|
+
CreateRowLevelSecurityFilter(input: CreateRowLevelSecurityFilterInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3609
|
+
UpdateRowLevelSecurityFilter(input: UpdateRowLevelSecurityFilterInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3610
|
+
DeleteRowLevelSecurityFilter(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3465
3611
|
}
|
|
3466
3612
|
export declare class AuditLog_ {
|
|
3467
3613
|
ID: string;
|
|
@@ -3519,6 +3665,7 @@ export declare class AuditLogResolver extends ResolverBase {
|
|
|
3519
3665
|
AuditLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuditLog_ | null>;
|
|
3520
3666
|
CreateAuditLog(input: CreateAuditLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3521
3667
|
UpdateAuditLog(input: UpdateAuditLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3668
|
+
DeleteAuditLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3522
3669
|
}
|
|
3523
3670
|
export declare class Authorization_ {
|
|
3524
3671
|
ID: string;
|
|
@@ -3536,6 +3683,23 @@ export declare class Authorization_ {
|
|
|
3536
3683
|
AuditLogs_AuthorizationNameArray: AuditLog_[];
|
|
3537
3684
|
AuditLogTypes_AuthorizationNameArray: AuditLogType_[];
|
|
3538
3685
|
}
|
|
3686
|
+
export declare class CreateAuthorizationInput {
|
|
3687
|
+
ID?: string;
|
|
3688
|
+
ParentID: string | null;
|
|
3689
|
+
Name?: string;
|
|
3690
|
+
IsActive?: boolean;
|
|
3691
|
+
UseAuditLog?: boolean;
|
|
3692
|
+
Description: string | null;
|
|
3693
|
+
}
|
|
3694
|
+
export declare class UpdateAuthorizationInput {
|
|
3695
|
+
ID: string;
|
|
3696
|
+
ParentID?: string | null;
|
|
3697
|
+
Name?: string;
|
|
3698
|
+
IsActive?: boolean;
|
|
3699
|
+
UseAuditLog?: boolean;
|
|
3700
|
+
Description?: string | null;
|
|
3701
|
+
OldValues___?: KeyValuePairInput[];
|
|
3702
|
+
}
|
|
3539
3703
|
export declare class RunAuthorizationViewResult {
|
|
3540
3704
|
Results: Authorization_[];
|
|
3541
3705
|
UserViewRunID?: string;
|
|
@@ -3556,6 +3720,9 @@ export declare class AuthorizationResolver extends ResolverBase {
|
|
|
3556
3720
|
Authorizations_ParentIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3557
3721
|
AuditLogs_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3558
3722
|
AuditLogTypes_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3723
|
+
CreateAuthorization(input: CreateAuthorizationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3724
|
+
UpdateAuthorization(input: UpdateAuthorizationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3725
|
+
DeleteAuthorization(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3559
3726
|
}
|
|
3560
3727
|
export declare class AuthorizationRole_ {
|
|
3561
3728
|
ID: string;
|
|
@@ -3567,6 +3734,19 @@ export declare class AuthorizationRole_ {
|
|
|
3567
3734
|
Authorization: string;
|
|
3568
3735
|
Role: string;
|
|
3569
3736
|
}
|
|
3737
|
+
export declare class CreateAuthorizationRoleInput {
|
|
3738
|
+
ID?: string;
|
|
3739
|
+
AuthorizationID?: string;
|
|
3740
|
+
RoleID?: string;
|
|
3741
|
+
Type?: string;
|
|
3742
|
+
}
|
|
3743
|
+
export declare class UpdateAuthorizationRoleInput {
|
|
3744
|
+
ID: string;
|
|
3745
|
+
AuthorizationID?: string;
|
|
3746
|
+
RoleID?: string;
|
|
3747
|
+
Type?: string;
|
|
3748
|
+
OldValues___?: KeyValuePairInput[];
|
|
3749
|
+
}
|
|
3570
3750
|
export declare class RunAuthorizationRoleViewResult {
|
|
3571
3751
|
Results: AuthorizationRole_[];
|
|
3572
3752
|
UserViewRunID?: string;
|
|
@@ -3582,6 +3762,9 @@ export declare class AuthorizationRoleResolver extends ResolverBase {
|
|
|
3582
3762
|
RunAuthorizationRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3583
3763
|
AuthorizationRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuthorizationRole_ | null>;
|
|
3584
3764
|
AllAuthorizationRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3765
|
+
CreateAuthorizationRole(input: CreateAuthorizationRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3766
|
+
UpdateAuthorizationRole(input: UpdateAuthorizationRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3767
|
+
DeleteAuthorizationRole(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3585
3768
|
}
|
|
3586
3769
|
export declare class AuditLogType_ {
|
|
3587
3770
|
ID: string;
|
|
@@ -3596,6 +3779,21 @@ export declare class AuditLogType_ {
|
|
|
3596
3779
|
AuditLogTypes_ParentIDArray: AuditLogType_[];
|
|
3597
3780
|
AuditLogs_AuditLogTypeNameArray: AuditLog_[];
|
|
3598
3781
|
}
|
|
3782
|
+
export declare class CreateAuditLogTypeInput {
|
|
3783
|
+
ID?: string;
|
|
3784
|
+
Name?: string;
|
|
3785
|
+
Description: string | null;
|
|
3786
|
+
ParentID: string | null;
|
|
3787
|
+
AuthorizationID: string | null;
|
|
3788
|
+
}
|
|
3789
|
+
export declare class UpdateAuditLogTypeInput {
|
|
3790
|
+
ID: string;
|
|
3791
|
+
Name?: string;
|
|
3792
|
+
Description?: string | null;
|
|
3793
|
+
ParentID?: string | null;
|
|
3794
|
+
AuthorizationID?: string | null;
|
|
3795
|
+
OldValues___?: KeyValuePairInput[];
|
|
3796
|
+
}
|
|
3599
3797
|
export declare class RunAuditLogTypeViewResult {
|
|
3600
3798
|
Results: AuditLogType_[];
|
|
3601
3799
|
UserViewRunID?: string;
|
|
@@ -3613,6 +3811,9 @@ export declare class AuditLogTypeResolver extends ResolverBase {
|
|
|
3613
3811
|
AllAuditLogTypes({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3614
3812
|
AuditLogTypes_ParentIDArray(auditlogtype_: AuditLogType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3615
3813
|
AuditLogs_AuditLogTypeNameArray(auditlogtype_: AuditLogType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3814
|
+
CreateAuditLogType(input: CreateAuditLogTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3815
|
+
UpdateAuditLogType(input: UpdateAuditLogTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3816
|
+
DeleteAuditLogType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3616
3817
|
}
|
|
3617
3818
|
export declare class EntityFieldValue_ {
|
|
3618
3819
|
ID: string;
|
|
@@ -3627,6 +3828,14 @@ export declare class EntityFieldValue_ {
|
|
|
3627
3828
|
Entity: string;
|
|
3628
3829
|
EntityID: string;
|
|
3629
3830
|
}
|
|
3831
|
+
export declare class CreateEntityFieldValueInput {
|
|
3832
|
+
ID?: string;
|
|
3833
|
+
EntityFieldID?: string;
|
|
3834
|
+
Sequence?: number;
|
|
3835
|
+
Value?: string;
|
|
3836
|
+
Code: string | null;
|
|
3837
|
+
Description: string | null;
|
|
3838
|
+
}
|
|
3630
3839
|
export declare class UpdateEntityFieldValueInput {
|
|
3631
3840
|
ID: string;
|
|
3632
3841
|
EntityFieldID?: string;
|
|
@@ -3651,7 +3860,9 @@ export declare class EntityFieldValueResolver extends ResolverBase {
|
|
|
3651
3860
|
RunEntityFieldValueDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3652
3861
|
EntityFieldValue(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityFieldValue_ | null>;
|
|
3653
3862
|
AllEntityFieldValues({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3863
|
+
CreateEntityFieldValue(input: CreateEntityFieldValueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3654
3864
|
UpdateEntityFieldValue(input: UpdateEntityFieldValueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3865
|
+
DeleteEntityFieldValue(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3655
3866
|
}
|
|
3656
3867
|
export declare class AIModel_ {
|
|
3657
3868
|
ID: string;
|
|
@@ -3958,6 +4169,23 @@ export declare class QueueType_ {
|
|
|
3958
4169
|
_mj__UpdatedAt: Date;
|
|
3959
4170
|
Queues_QueueTypeIDArray: Queue_[];
|
|
3960
4171
|
}
|
|
4172
|
+
export declare class CreateQueueTypeInput {
|
|
4173
|
+
ID?: string;
|
|
4174
|
+
Name?: string;
|
|
4175
|
+
Description: string | null;
|
|
4176
|
+
DriverClass?: string;
|
|
4177
|
+
DriverImportPath: string | null;
|
|
4178
|
+
IsActive?: boolean;
|
|
4179
|
+
}
|
|
4180
|
+
export declare class UpdateQueueTypeInput {
|
|
4181
|
+
ID: string;
|
|
4182
|
+
Name?: string;
|
|
4183
|
+
Description?: string | null;
|
|
4184
|
+
DriverClass?: string;
|
|
4185
|
+
DriverImportPath?: string | null;
|
|
4186
|
+
IsActive?: boolean;
|
|
4187
|
+
OldValues___?: KeyValuePairInput[];
|
|
4188
|
+
}
|
|
3961
4189
|
export declare class RunQueueTypeViewResult {
|
|
3962
4190
|
Results: QueueType_[];
|
|
3963
4191
|
UserViewRunID?: string;
|
|
@@ -3973,6 +4201,9 @@ export declare class QueueTypeResolver extends ResolverBase {
|
|
|
3973
4201
|
RunQueueTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3974
4202
|
QueueType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueueType_ | null>;
|
|
3975
4203
|
Queues_QueueTypeIDArray(queuetype_: QueueType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4204
|
+
CreateQueueType(input: CreateQueueTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4205
|
+
UpdateQueueType(input: UpdateQueueTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4206
|
+
DeleteQueueType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3976
4207
|
}
|
|
3977
4208
|
export declare class Queue_ {
|
|
3978
4209
|
ID: string;
|
|
@@ -4053,6 +4284,7 @@ export declare class QueueResolver extends ResolverBase {
|
|
|
4053
4284
|
QueueTasks_QueueIDArray(queue_: Queue_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4054
4285
|
CreateQueue(input: CreateQueueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4055
4286
|
UpdateQueue(input: UpdateQueueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4287
|
+
DeleteQueue(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4056
4288
|
}
|
|
4057
4289
|
export declare class QueueTask_ {
|
|
4058
4290
|
ID: string;
|
|
@@ -4110,6 +4342,7 @@ export declare class QueueTaskResolver extends ResolverBase {
|
|
|
4110
4342
|
QueueTask(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueueTask_ | null>;
|
|
4111
4343
|
CreateQueueTask(input: CreateQueueTaskInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4112
4344
|
UpdateQueueTask(input: UpdateQueueTaskInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4345
|
+
DeleteQueueTask(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4113
4346
|
}
|
|
4114
4347
|
export declare class Dashboard_ {
|
|
4115
4348
|
ID: string;
|
|
@@ -4189,6 +4422,17 @@ export declare class OutputTriggerType_ {
|
|
|
4189
4422
|
_mj__UpdatedAt: Date;
|
|
4190
4423
|
Reports_OutputTriggerTypeIDArray: Report_[];
|
|
4191
4424
|
}
|
|
4425
|
+
export declare class CreateOutputTriggerTypeInput {
|
|
4426
|
+
ID?: string;
|
|
4427
|
+
Name?: string;
|
|
4428
|
+
Description: string | null;
|
|
4429
|
+
}
|
|
4430
|
+
export declare class UpdateOutputTriggerTypeInput {
|
|
4431
|
+
ID: string;
|
|
4432
|
+
Name?: string;
|
|
4433
|
+
Description?: string | null;
|
|
4434
|
+
OldValues___?: KeyValuePairInput[];
|
|
4435
|
+
}
|
|
4192
4436
|
export declare class RunOutputTriggerTypeViewResult {
|
|
4193
4437
|
Results: OutputTriggerType_[];
|
|
4194
4438
|
UserViewRunID?: string;
|
|
@@ -4204,6 +4448,9 @@ export declare class OutputTriggerTypeResolver extends ResolverBase {
|
|
|
4204
4448
|
RunOutputTriggerTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4205
4449
|
OutputTriggerType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputTriggerType_ | null>;
|
|
4206
4450
|
Reports_OutputTriggerTypeIDArray(outputtriggertype_: OutputTriggerType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4451
|
+
CreateOutputTriggerType(input: CreateOutputTriggerTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4452
|
+
UpdateOutputTriggerType(input: UpdateOutputTriggerTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4453
|
+
DeleteOutputTriggerType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4207
4454
|
}
|
|
4208
4455
|
export declare class OutputFormatType_ {
|
|
4209
4456
|
ID: string;
|
|
@@ -4214,6 +4461,19 @@ export declare class OutputFormatType_ {
|
|
|
4214
4461
|
_mj__UpdatedAt: Date;
|
|
4215
4462
|
Reports_OutputFormatTypeIDArray: Report_[];
|
|
4216
4463
|
}
|
|
4464
|
+
export declare class CreateOutputFormatTypeInput {
|
|
4465
|
+
ID?: string;
|
|
4466
|
+
Name?: string;
|
|
4467
|
+
Description: string | null;
|
|
4468
|
+
DisplayFormat: string | null;
|
|
4469
|
+
}
|
|
4470
|
+
export declare class UpdateOutputFormatTypeInput {
|
|
4471
|
+
ID: string;
|
|
4472
|
+
Name?: string;
|
|
4473
|
+
Description?: string | null;
|
|
4474
|
+
DisplayFormat?: string | null;
|
|
4475
|
+
OldValues___?: KeyValuePairInput[];
|
|
4476
|
+
}
|
|
4217
4477
|
export declare class RunOutputFormatTypeViewResult {
|
|
4218
4478
|
Results: OutputFormatType_[];
|
|
4219
4479
|
UserViewRunID?: string;
|
|
@@ -4229,6 +4489,9 @@ export declare class OutputFormatTypeResolver extends ResolverBase {
|
|
|
4229
4489
|
RunOutputFormatTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4230
4490
|
OutputFormatType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputFormatType_ | null>;
|
|
4231
4491
|
Reports_OutputFormatTypeIDArray(outputformattype_: OutputFormatType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4492
|
+
CreateOutputFormatType(input: CreateOutputFormatTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4493
|
+
UpdateOutputFormatType(input: UpdateOutputFormatTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4494
|
+
DeleteOutputFormatType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4232
4495
|
}
|
|
4233
4496
|
export declare class OutputDeliveryType_ {
|
|
4234
4497
|
ID: string;
|
|
@@ -4238,6 +4501,17 @@ export declare class OutputDeliveryType_ {
|
|
|
4238
4501
|
_mj__UpdatedAt: Date;
|
|
4239
4502
|
Reports_OutputDeliveryTypeIDArray: Report_[];
|
|
4240
4503
|
}
|
|
4504
|
+
export declare class CreateOutputDeliveryTypeInput {
|
|
4505
|
+
ID?: string;
|
|
4506
|
+
Name?: string;
|
|
4507
|
+
Description: string | null;
|
|
4508
|
+
}
|
|
4509
|
+
export declare class UpdateOutputDeliveryTypeInput {
|
|
4510
|
+
ID: string;
|
|
4511
|
+
Name?: string;
|
|
4512
|
+
Description?: string | null;
|
|
4513
|
+
OldValues___?: KeyValuePairInput[];
|
|
4514
|
+
}
|
|
4241
4515
|
export declare class RunOutputDeliveryTypeViewResult {
|
|
4242
4516
|
Results: OutputDeliveryType_[];
|
|
4243
4517
|
UserViewRunID?: string;
|
|
@@ -4253,6 +4527,9 @@ export declare class OutputDeliveryTypeResolver extends ResolverBase {
|
|
|
4253
4527
|
RunOutputDeliveryTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4254
4528
|
OutputDeliveryType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputDeliveryType_ | null>;
|
|
4255
4529
|
Reports_OutputDeliveryTypeIDArray(outputdeliverytype_: OutputDeliveryType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4530
|
+
CreateOutputDeliveryType(input: CreateOutputDeliveryTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4531
|
+
UpdateOutputDeliveryType(input: UpdateOutputDeliveryTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4532
|
+
DeleteOutputDeliveryType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4256
4533
|
}
|
|
4257
4534
|
export declare class Report_ {
|
|
4258
4535
|
ID: string;
|
|
@@ -4404,6 +4681,25 @@ export declare class ResourceType_ {
|
|
|
4404
4681
|
ResourceLinks_ResourceTypeIDArray: ResourceLink_[];
|
|
4405
4682
|
ResourcePermissions_ResourceTypeIDArray: ResourcePermission_[];
|
|
4406
4683
|
}
|
|
4684
|
+
export declare class CreateResourceTypeInput {
|
|
4685
|
+
ID?: string;
|
|
4686
|
+
Name?: string;
|
|
4687
|
+
DisplayName?: string;
|
|
4688
|
+
Description: string | null;
|
|
4689
|
+
Icon: string | null;
|
|
4690
|
+
EntityID: string | null;
|
|
4691
|
+
CategoryEntityID: string | null;
|
|
4692
|
+
}
|
|
4693
|
+
export declare class UpdateResourceTypeInput {
|
|
4694
|
+
ID: string;
|
|
4695
|
+
Name?: string;
|
|
4696
|
+
DisplayName?: string;
|
|
4697
|
+
Description?: string | null;
|
|
4698
|
+
Icon?: string | null;
|
|
4699
|
+
EntityID?: string | null;
|
|
4700
|
+
CategoryEntityID?: string | null;
|
|
4701
|
+
OldValues___?: KeyValuePairInput[];
|
|
4702
|
+
}
|
|
4407
4703
|
export declare class RunResourceTypeViewResult {
|
|
4408
4704
|
Results: ResourceType_[];
|
|
4409
4705
|
UserViewRunID?: string;
|
|
@@ -4422,6 +4718,9 @@ export declare class ResourceTypeResolver extends ResolverBase {
|
|
|
4422
4718
|
UserNotifications_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4423
4719
|
ResourceLinks_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4424
4720
|
ResourcePermissions_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4721
|
+
CreateResourceType(input: CreateResourceTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4722
|
+
UpdateResourceType(input: UpdateResourceTypeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4723
|
+
DeleteResourceType(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4425
4724
|
}
|
|
4426
4725
|
export declare class Tag_ {
|
|
4427
4726
|
ID: string;
|
|
@@ -4435,6 +4734,21 @@ export declare class Tag_ {
|
|
|
4435
4734
|
Tags_ParentIDArray: Tag_[];
|
|
4436
4735
|
TaggedItems_TagIDArray: TaggedItem_[];
|
|
4437
4736
|
}
|
|
4737
|
+
export declare class CreateTagInput {
|
|
4738
|
+
ID?: string;
|
|
4739
|
+
Name?: string;
|
|
4740
|
+
ParentID: string | null;
|
|
4741
|
+
DisplayName?: string;
|
|
4742
|
+
Description: string | null;
|
|
4743
|
+
}
|
|
4744
|
+
export declare class UpdateTagInput {
|
|
4745
|
+
ID: string;
|
|
4746
|
+
Name?: string;
|
|
4747
|
+
ParentID?: string | null;
|
|
4748
|
+
DisplayName?: string;
|
|
4749
|
+
Description?: string | null;
|
|
4750
|
+
OldValues___?: KeyValuePairInput[];
|
|
4751
|
+
}
|
|
4438
4752
|
export declare class RunTagViewResult {
|
|
4439
4753
|
Results: Tag_[];
|
|
4440
4754
|
UserViewRunID?: string;
|
|
@@ -4451,6 +4765,9 @@ export declare class TagResolver extends ResolverBase {
|
|
|
4451
4765
|
Tag(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Tag_ | null>;
|
|
4452
4766
|
Tags_ParentIDArray(tag_: Tag_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4453
4767
|
TaggedItems_TagIDArray(tag_: Tag_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4768
|
+
CreateTag(input: CreateTagInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4769
|
+
UpdateTag(input: UpdateTagInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4770
|
+
DeleteTag(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4454
4771
|
}
|
|
4455
4772
|
export declare class TaggedItem_ {
|
|
4456
4773
|
ID: string;
|
|
@@ -4462,6 +4779,19 @@ export declare class TaggedItem_ {
|
|
|
4462
4779
|
Tag: string;
|
|
4463
4780
|
Entity: string;
|
|
4464
4781
|
}
|
|
4782
|
+
export declare class CreateTaggedItemInput {
|
|
4783
|
+
ID?: string;
|
|
4784
|
+
TagID?: string;
|
|
4785
|
+
EntityID?: string;
|
|
4786
|
+
RecordID?: string;
|
|
4787
|
+
}
|
|
4788
|
+
export declare class UpdateTaggedItemInput {
|
|
4789
|
+
ID: string;
|
|
4790
|
+
TagID?: string;
|
|
4791
|
+
EntityID?: string;
|
|
4792
|
+
RecordID?: string;
|
|
4793
|
+
OldValues___?: KeyValuePairInput[];
|
|
4794
|
+
}
|
|
4465
4795
|
export declare class RunTaggedItemViewResult {
|
|
4466
4796
|
Results: TaggedItem_[];
|
|
4467
4797
|
UserViewRunID?: string;
|
|
@@ -4476,6 +4806,9 @@ export declare class TaggedItemResolver extends ResolverBase {
|
|
|
4476
4806
|
RunTaggedItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4477
4807
|
RunTaggedItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4478
4808
|
TaggedItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<TaggedItem_ | null>;
|
|
4809
|
+
CreateTaggedItem(input: CreateTaggedItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4810
|
+
UpdateTaggedItem(input: UpdateTaggedItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4811
|
+
DeleteTaggedItem(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4479
4812
|
}
|
|
4480
4813
|
export declare class Workspace_ {
|
|
4481
4814
|
ID: string;
|
|
@@ -4580,6 +4913,17 @@ export declare class Dataset_ {
|
|
|
4580
4913
|
_mj__UpdatedAt: Date;
|
|
4581
4914
|
DatasetItems_DatasetNameArray: DatasetItem_[];
|
|
4582
4915
|
}
|
|
4916
|
+
export declare class CreateDatasetInput {
|
|
4917
|
+
ID?: string;
|
|
4918
|
+
Name?: string;
|
|
4919
|
+
Description: string | null;
|
|
4920
|
+
}
|
|
4921
|
+
export declare class UpdateDatasetInput {
|
|
4922
|
+
ID: string;
|
|
4923
|
+
Name?: string;
|
|
4924
|
+
Description?: string | null;
|
|
4925
|
+
OldValues___?: KeyValuePairInput[];
|
|
4926
|
+
}
|
|
4583
4927
|
export declare class RunDatasetViewResult {
|
|
4584
4928
|
Results: Dataset_[];
|
|
4585
4929
|
UserViewRunID?: string;
|
|
@@ -4595,6 +4939,9 @@ export declare class DatasetResolver extends ResolverBase {
|
|
|
4595
4939
|
RunDatasetDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4596
4940
|
Dataset(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Dataset_ | null>;
|
|
4597
4941
|
DatasetItems_DatasetNameArray(dataset_: Dataset_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4942
|
+
CreateDataset(input: CreateDatasetInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4943
|
+
UpdateDataset(input: UpdateDatasetInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4944
|
+
DeleteDataset(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4598
4945
|
}
|
|
4599
4946
|
export declare class DatasetItem_ {
|
|
4600
4947
|
ID: string;
|
|
@@ -4611,6 +4958,29 @@ export declare class DatasetItem_ {
|
|
|
4611
4958
|
Dataset: string;
|
|
4612
4959
|
Entity: string;
|
|
4613
4960
|
}
|
|
4961
|
+
export declare class CreateDatasetItemInput {
|
|
4962
|
+
ID?: string;
|
|
4963
|
+
Code?: string;
|
|
4964
|
+
DatasetID?: string;
|
|
4965
|
+
Sequence?: number;
|
|
4966
|
+
EntityID?: string;
|
|
4967
|
+
WhereClause: string | null;
|
|
4968
|
+
DateFieldToCheck?: string;
|
|
4969
|
+
Description: string | null;
|
|
4970
|
+
Columns: string | null;
|
|
4971
|
+
}
|
|
4972
|
+
export declare class UpdateDatasetItemInput {
|
|
4973
|
+
ID: string;
|
|
4974
|
+
Code?: string;
|
|
4975
|
+
DatasetID?: string;
|
|
4976
|
+
Sequence?: number;
|
|
4977
|
+
EntityID?: string;
|
|
4978
|
+
WhereClause?: string | null;
|
|
4979
|
+
DateFieldToCheck?: string;
|
|
4980
|
+
Description?: string | null;
|
|
4981
|
+
Columns?: string | null;
|
|
4982
|
+
OldValues___?: KeyValuePairInput[];
|
|
4983
|
+
}
|
|
4614
4984
|
export declare class RunDatasetItemViewResult {
|
|
4615
4985
|
Results: DatasetItem_[];
|
|
4616
4986
|
UserViewRunID?: string;
|
|
@@ -4625,6 +4995,9 @@ export declare class DatasetItemResolver extends ResolverBase {
|
|
|
4625
4995
|
RunDatasetItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4626
4996
|
RunDatasetItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4627
4997
|
DatasetItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DatasetItem_ | null>;
|
|
4998
|
+
CreateDatasetItem(input: CreateDatasetItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4999
|
+
UpdateDatasetItem(input: UpdateDatasetItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5000
|
+
DeleteDatasetItem(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4628
5001
|
}
|
|
4629
5002
|
export declare class ConversationDetail_ {
|
|
4630
5003
|
ID: string;
|
|
@@ -4870,6 +5243,7 @@ export declare class SchemaInfoResolver extends ResolverBase {
|
|
|
4870
5243
|
SchemaInfo(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<SchemaInfo_ | null>;
|
|
4871
5244
|
CreateSchemaInfo(input: CreateSchemaInfoInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4872
5245
|
UpdateSchemaInfo(input: UpdateSchemaInfoInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5246
|
+
DeleteSchemaInfo(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4873
5247
|
}
|
|
4874
5248
|
export declare class CompanyIntegrationRecordMap_ {
|
|
4875
5249
|
ID: string;
|
|
@@ -4912,6 +5286,7 @@ export declare class CompanyIntegrationRecordMapResolver extends ResolverBase {
|
|
|
4912
5286
|
CompanyIntegrationRecordMap(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRecordMap_ | null>;
|
|
4913
5287
|
CreateCompanyIntegrationRecordMap(input: CreateCompanyIntegrationRecordMapInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4914
5288
|
UpdateCompanyIntegrationRecordMap(input: UpdateCompanyIntegrationRecordMapInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5289
|
+
DeleteCompanyIntegrationRecordMap(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4915
5290
|
}
|
|
4916
5291
|
export declare class RecordMergeLog_ {
|
|
4917
5292
|
ID: string;
|
|
@@ -4978,6 +5353,7 @@ export declare class RecordMergeLogResolver extends ResolverBase {
|
|
|
4978
5353
|
DuplicateRunDetailMatches_RecordMergeLogIDArray(recordmergelog_: RecordMergeLog_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4979
5354
|
CreateRecordMergeLog(input: CreateRecordMergeLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4980
5355
|
UpdateRecordMergeLog(input: UpdateRecordMergeLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5356
|
+
DeleteRecordMergeLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4981
5357
|
}
|
|
4982
5358
|
export declare class RecordMergeDeletionLog_ {
|
|
4983
5359
|
ID: string;
|
|
@@ -5019,6 +5395,7 @@ export declare class RecordMergeDeletionLogResolver extends ResolverBase {
|
|
|
5019
5395
|
RecordMergeDeletionLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordMergeDeletionLog_ | null>;
|
|
5020
5396
|
CreateRecordMergeDeletionLog(input: CreateRecordMergeDeletionLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5021
5397
|
UpdateRecordMergeDeletionLog(input: UpdateRecordMergeDeletionLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5398
|
+
DeleteRecordMergeDeletionLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5022
5399
|
}
|
|
5023
5400
|
export declare class QueryField_ {
|
|
5024
5401
|
ID: string;
|
|
@@ -5371,6 +5748,7 @@ export declare class EntityDocumentRunResolver extends ResolverBase {
|
|
|
5371
5748
|
EntityDocumentRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentRun_ | null>;
|
|
5372
5749
|
CreateEntityDocumentRun(input: CreateEntityDocumentRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5373
5750
|
UpdateEntityDocumentRun(input: UpdateEntityDocumentRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5751
|
+
DeleteEntityDocumentRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5374
5752
|
}
|
|
5375
5753
|
export declare class VectorDatabase_ {
|
|
5376
5754
|
ID: string;
|
|
@@ -5473,6 +5851,7 @@ export declare class EntityRecordDocumentResolver extends ResolverBase {
|
|
|
5473
5851
|
EntityRecordDocument(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRecordDocument_ | null>;
|
|
5474
5852
|
CreateEntityRecordDocument(input: CreateEntityRecordDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5475
5853
|
UpdateEntityRecordDocument(input: UpdateEntityRecordDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5854
|
+
DeleteEntityRecordDocument(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5476
5855
|
}
|
|
5477
5856
|
export declare class EntityDocument_ {
|
|
5478
5857
|
ID: string;
|
|
@@ -5540,6 +5919,7 @@ export declare class EntityDocumentResolver extends ResolverBase {
|
|
|
5540
5919
|
EntityRecordDocuments_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5541
5920
|
CreateEntityDocument(input: CreateEntityDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5542
5921
|
UpdateEntityDocument(input: UpdateEntityDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5922
|
+
DeleteEntityDocument(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5543
5923
|
}
|
|
5544
5924
|
export declare class DataContextItem_ {
|
|
5545
5925
|
ID: string;
|
|
@@ -6048,6 +6428,7 @@ export declare class VersionInstallationResolver extends ResolverBase {
|
|
|
6048
6428
|
VersionInstallation(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VersionInstallation_ | null>;
|
|
6049
6429
|
CreateVersionInstallation(input: CreateVersionInstallationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6050
6430
|
UpdateVersionInstallation(input: UpdateVersionInstallationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6431
|
+
DeleteVersionInstallation(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6051
6432
|
}
|
|
6052
6433
|
export declare class DuplicateRunDetailMatch_ {
|
|
6053
6434
|
ID: string;
|
|
@@ -6107,6 +6488,7 @@ export declare class DuplicateRunDetailMatchResolver extends ResolverBase {
|
|
|
6107
6488
|
DuplicateRunDetailMatch(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DuplicateRunDetailMatch_ | null>;
|
|
6108
6489
|
CreateDuplicateRunDetailMatch(input: CreateDuplicateRunDetailMatchInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6109
6490
|
UpdateDuplicateRunDetailMatch(input: UpdateDuplicateRunDetailMatchInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6491
|
+
DeleteDuplicateRunDetailMatch(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6110
6492
|
}
|
|
6111
6493
|
export declare class EntityDocumentSetting_ {
|
|
6112
6494
|
ID: string;
|
|
@@ -6258,6 +6640,7 @@ export declare class DuplicateRunResolver extends ResolverBase {
|
|
|
6258
6640
|
DuplicateRunDetails_DuplicateRunIDArray(duplicaterun_: DuplicateRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6259
6641
|
CreateDuplicateRun(input: CreateDuplicateRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6260
6642
|
UpdateDuplicateRun(input: UpdateDuplicateRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6643
|
+
DeleteDuplicateRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6261
6644
|
}
|
|
6262
6645
|
export declare class DuplicateRunDetail_ {
|
|
6263
6646
|
ID: string;
|
|
@@ -6310,6 +6693,7 @@ export declare class DuplicateRunDetailResolver extends ResolverBase {
|
|
|
6310
6693
|
DuplicateRunDetailMatches_DuplicateRunDetailIDArray(duplicaterundetail_: DuplicateRunDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6311
6694
|
CreateDuplicateRunDetail(input: CreateDuplicateRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6312
6695
|
UpdateDuplicateRunDetail(input: UpdateDuplicateRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6696
|
+
DeleteDuplicateRunDetail(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6313
6697
|
}
|
|
6314
6698
|
export declare class ApplicationSetting_ {
|
|
6315
6699
|
ID: string;
|
|
@@ -7251,6 +7635,7 @@ export declare class CommunicationRunResolver extends ResolverBase {
|
|
|
7251
7635
|
CommunicationLogs_CommunicationRunIDArray(communicationrun_: CommunicationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7252
7636
|
CreateCommunicationRun(input: CreateCommunicationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7253
7637
|
UpdateCommunicationRun(input: UpdateCommunicationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7638
|
+
DeleteCommunicationRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7254
7639
|
}
|
|
7255
7640
|
export declare class CommunicationProviderMessageType_ {
|
|
7256
7641
|
ID: string;
|
|
@@ -7355,6 +7740,7 @@ export declare class CommunicationLogResolver extends ResolverBase {
|
|
|
7355
7740
|
CommunicationLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationLog_ | null>;
|
|
7356
7741
|
CreateCommunicationLog(input: CreateCommunicationLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7357
7742
|
UpdateCommunicationLog(input: UpdateCommunicationLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7743
|
+
DeleteCommunicationLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7358
7744
|
}
|
|
7359
7745
|
export declare class CommunicationBaseMessageType_ {
|
|
7360
7746
|
ID: string;
|
|
@@ -7718,6 +8104,7 @@ export declare class RecommendationResolver extends ResolverBase {
|
|
|
7718
8104
|
RecommendationItems_RecommendationIDArray(recommendation_: Recommendation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7719
8105
|
CreateRecommendation(input: CreateRecommendationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7720
8106
|
UpdateRecommendation(input: UpdateRecommendationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8107
|
+
DeleteRecommendation(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7721
8108
|
}
|
|
7722
8109
|
export declare class RecommendationProvider_ {
|
|
7723
8110
|
ID: string;
|
|
@@ -7807,6 +8194,7 @@ export declare class RecommendationRunResolver extends ResolverBase {
|
|
|
7807
8194
|
Recommendations_RecommendationRunIDArray(recommendationrun_: RecommendationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7808
8195
|
CreateRecommendationRun(input: CreateRecommendationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7809
8196
|
UpdateRecommendationRun(input: UpdateRecommendationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8197
|
+
DeleteRecommendationRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7810
8198
|
}
|
|
7811
8199
|
export declare class RecommendationItem_ {
|
|
7812
8200
|
ID: string;
|
|
@@ -7849,6 +8237,7 @@ export declare class RecommendationItemResolver extends ResolverBase {
|
|
|
7849
8237
|
RecommendationItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecommendationItem_ | null>;
|
|
7850
8238
|
CreateRecommendationItem(input: CreateRecommendationItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7851
8239
|
UpdateRecommendationItem(input: UpdateRecommendationItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8240
|
+
DeleteRecommendationItem(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7852
8241
|
}
|
|
7853
8242
|
export declare class EntityCommunicationMessageType_ {
|
|
7854
8243
|
ID: string;
|
|
@@ -7975,6 +8364,7 @@ export declare class RecordChangeReplayRunResolver extends ResolverBase {
|
|
|
7975
8364
|
RecordChanges_ReplayRunIDArray(recordchangereplayrun_: RecordChangeReplayRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7976
8365
|
CreateRecordChangeReplayRun(input: CreateRecordChangeReplayRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7977
8366
|
UpdateRecordChangeReplayRun(input: UpdateRecordChangeReplayRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8367
|
+
DeleteRecordChangeReplayRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7978
8368
|
}
|
|
7979
8369
|
export declare class LibraryItem_ {
|
|
7980
8370
|
ID: string;
|
|
@@ -8055,6 +8445,7 @@ export declare class EntityRelationshipDisplayComponentResolver extends Resolver
|
|
|
8055
8445
|
EntityRelationships_DisplayComponentIDArray(entityrelationshipdisplaycomponent_: EntityRelationshipDisplayComponent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8056
8446
|
CreateEntityRelationshipDisplayComponent(input: CreateEntityRelationshipDisplayComponentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8057
8447
|
UpdateEntityRelationshipDisplayComponent(input: UpdateEntityRelationshipDisplayComponentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8448
|
+
DeleteEntityRelationshipDisplayComponent(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8058
8449
|
}
|
|
8059
8450
|
export declare class EntityActionParam_ {
|
|
8060
8451
|
ID: string;
|