@memberjunction/server 2.55.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 +439 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +2835 -1
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.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 +1835 -1
- package/src/index.ts +3 -0
- package/src/resolvers/FileResolver.ts +11 -7
- package/src/resolvers/RunAIPromptResolver.ts +10 -4
|
@@ -524,6 +524,8 @@ export declare class AIAgent_ {
|
|
|
524
524
|
TypeID?: string;
|
|
525
525
|
Status?: string;
|
|
526
526
|
DriverClass?: string;
|
|
527
|
+
IconClass?: string;
|
|
528
|
+
ModelSelectionMode: string;
|
|
527
529
|
Parent?: string;
|
|
528
530
|
ContextCompressionPrompt?: string;
|
|
529
531
|
Type?: string;
|
|
@@ -554,6 +556,8 @@ export declare class CreateAIAgentInput {
|
|
|
554
556
|
TypeID: string | null;
|
|
555
557
|
Status: string | null;
|
|
556
558
|
DriverClass: string | null;
|
|
559
|
+
IconClass: string | null;
|
|
560
|
+
ModelSelectionMode?: string;
|
|
557
561
|
}
|
|
558
562
|
export declare class UpdateAIAgentInput {
|
|
559
563
|
ID: string;
|
|
@@ -571,6 +575,8 @@ export declare class UpdateAIAgentInput {
|
|
|
571
575
|
TypeID?: string | null;
|
|
572
576
|
Status?: string | null;
|
|
573
577
|
DriverClass?: string | null;
|
|
578
|
+
IconClass?: string | null;
|
|
579
|
+
ModelSelectionMode?: string;
|
|
574
580
|
OldValues___?: KeyValuePairInput[];
|
|
575
581
|
}
|
|
576
582
|
export declare class RunAIAgentViewResult {
|
|
@@ -1422,6 +1428,13 @@ export declare class EmployeeCompanyIntegration_ {
|
|
|
1422
1428
|
_mj__CreatedAt: Date;
|
|
1423
1429
|
_mj__UpdatedAt: Date;
|
|
1424
1430
|
}
|
|
1431
|
+
export declare class CreateEmployeeCompanyIntegrationInput {
|
|
1432
|
+
ID?: string;
|
|
1433
|
+
EmployeeID?: string;
|
|
1434
|
+
CompanyIntegrationID?: string;
|
|
1435
|
+
ExternalSystemRecordID?: string;
|
|
1436
|
+
IsActive?: boolean;
|
|
1437
|
+
}
|
|
1425
1438
|
export declare class UpdateEmployeeCompanyIntegrationInput {
|
|
1426
1439
|
ID: string;
|
|
1427
1440
|
EmployeeID?: string;
|
|
@@ -1444,7 +1457,9 @@ export declare class EmployeeCompanyIntegrationResolver extends ResolverBase {
|
|
|
1444
1457
|
RunEmployeeCompanyIntegrationViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1445
1458
|
RunEmployeeCompanyIntegrationDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1446
1459
|
EmployeeCompanyIntegration(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeCompanyIntegration_ | null>;
|
|
1460
|
+
CreateEmployeeCompanyIntegration(input: CreateEmployeeCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1447
1461
|
UpdateEmployeeCompanyIntegration(input: UpdateEmployeeCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1462
|
+
DeleteEmployeeCompanyIntegration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1448
1463
|
}
|
|
1449
1464
|
export declare class EmployeeRole_ {
|
|
1450
1465
|
ID: string;
|
|
@@ -1454,6 +1469,11 @@ export declare class EmployeeRole_ {
|
|
|
1454
1469
|
_mj__UpdatedAt: Date;
|
|
1455
1470
|
Role: string;
|
|
1456
1471
|
}
|
|
1472
|
+
export declare class CreateEmployeeRoleInput {
|
|
1473
|
+
ID?: string;
|
|
1474
|
+
EmployeeID?: string;
|
|
1475
|
+
RoleID?: string;
|
|
1476
|
+
}
|
|
1457
1477
|
export declare class UpdateEmployeeRoleInput {
|
|
1458
1478
|
ID: string;
|
|
1459
1479
|
EmployeeID?: string;
|
|
@@ -1474,6 +1494,7 @@ export declare class EmployeeRoleResolver extends ResolverBase {
|
|
|
1474
1494
|
RunEmployeeRoleViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1475
1495
|
RunEmployeeRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1476
1496
|
EmployeeRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeRole_ | null>;
|
|
1497
|
+
CreateEmployeeRole(input: CreateEmployeeRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1477
1498
|
UpdateEmployeeRole(input: UpdateEmployeeRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1478
1499
|
DeleteEmployeeRole(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1479
1500
|
}
|
|
@@ -1485,6 +1506,11 @@ export declare class EmployeeSkill_ {
|
|
|
1485
1506
|
_mj__UpdatedAt: Date;
|
|
1486
1507
|
Skill: string;
|
|
1487
1508
|
}
|
|
1509
|
+
export declare class CreateEmployeeSkillInput {
|
|
1510
|
+
ID?: string;
|
|
1511
|
+
EmployeeID?: string;
|
|
1512
|
+
SkillID?: string;
|
|
1513
|
+
}
|
|
1488
1514
|
export declare class UpdateEmployeeSkillInput {
|
|
1489
1515
|
ID: string;
|
|
1490
1516
|
EmployeeID?: string;
|
|
@@ -1505,6 +1531,7 @@ export declare class EmployeeSkillResolver extends ResolverBase {
|
|
|
1505
1531
|
RunEmployeeSkillViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1506
1532
|
RunEmployeeSkillDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1507
1533
|
EmployeeSkill(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EmployeeSkill_ | null>;
|
|
1534
|
+
CreateEmployeeSkill(input: CreateEmployeeSkillInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1508
1535
|
UpdateEmployeeSkill(input: UpdateEmployeeSkillInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1509
1536
|
DeleteEmployeeSkill(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1510
1537
|
}
|
|
@@ -1573,6 +1600,17 @@ export declare class Skill_ {
|
|
|
1573
1600
|
EmployeeSkills_SkillIDArray: EmployeeSkill_[];
|
|
1574
1601
|
Skills_ParentIDArray: Skill_[];
|
|
1575
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
|
+
}
|
|
1576
1614
|
export declare class RunSkillViewResult {
|
|
1577
1615
|
Results: Skill_[];
|
|
1578
1616
|
UserViewRunID?: string;
|
|
@@ -1590,6 +1628,9 @@ export declare class SkillResolver extends ResolverBase {
|
|
|
1590
1628
|
AllSkills({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1591
1629
|
EmployeeSkills_SkillIDArray(skill_: Skill_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1592
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>;
|
|
1593
1634
|
}
|
|
1594
1635
|
export declare class IntegrationURLFormat_ {
|
|
1595
1636
|
ID: string;
|
|
@@ -1603,6 +1644,13 @@ export declare class IntegrationURLFormat_ {
|
|
|
1603
1644
|
NavigationBaseURL?: string;
|
|
1604
1645
|
FullURLFormat?: string;
|
|
1605
1646
|
}
|
|
1647
|
+
export declare class CreateIntegrationURLFormatInput {
|
|
1648
|
+
ID?: string;
|
|
1649
|
+
IntegrationID?: string;
|
|
1650
|
+
EntityID?: string;
|
|
1651
|
+
URLFormat?: string;
|
|
1652
|
+
Comments: string | null;
|
|
1653
|
+
}
|
|
1606
1654
|
export declare class UpdateIntegrationURLFormatInput {
|
|
1607
1655
|
ID: string;
|
|
1608
1656
|
IntegrationID?: string;
|
|
@@ -1626,6 +1674,7 @@ export declare class IntegrationURLFormatResolver extends ResolverBase {
|
|
|
1626
1674
|
RunIntegrationURLFormatDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
1627
1675
|
IntegrationURLFormat(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<IntegrationURLFormat_ | null>;
|
|
1628
1676
|
AllIntegrationURLFormats({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1677
|
+
CreateIntegrationURLFormat(input: CreateIntegrationURLFormatInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1629
1678
|
UpdateIntegrationURLFormat(input: UpdateIntegrationURLFormatInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1630
1679
|
DeleteIntegrationURLFormat(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1631
1680
|
}
|
|
@@ -1644,6 +1693,16 @@ export declare class Integration_ {
|
|
|
1644
1693
|
CompanyIntegrations_IntegrationNameArray: CompanyIntegration_[];
|
|
1645
1694
|
RecordChanges_IntegrationIDArray: RecordChange_[];
|
|
1646
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
|
+
}
|
|
1647
1706
|
export declare class UpdateIntegrationInput {
|
|
1648
1707
|
Name?: string;
|
|
1649
1708
|
Description?: string | null;
|
|
@@ -1673,6 +1732,7 @@ export declare class IntegrationResolver extends ResolverBase {
|
|
|
1673
1732
|
IntegrationURLFormats_IntegrationIDArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1674
1733
|
CompanyIntegrations_IntegrationNameArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1675
1734
|
RecordChanges_IntegrationIDArray(integration_: Integration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1735
|
+
CreateIntegration(input: CreateIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1676
1736
|
UpdateIntegration(input: UpdateIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1677
1737
|
DeleteIntegration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1678
1738
|
}
|
|
@@ -1704,6 +1764,21 @@ export declare class CompanyIntegration_ {
|
|
|
1704
1764
|
CompanyIntegrationRuns_CompanyIntegrationIDArray: CompanyIntegrationRun_[];
|
|
1705
1765
|
EmployeeCompanyIntegrations_CompanyIntegrationIDArray: EmployeeCompanyIntegration_[];
|
|
1706
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
|
+
}
|
|
1707
1782
|
export declare class UpdateCompanyIntegrationInput {
|
|
1708
1783
|
ID: string;
|
|
1709
1784
|
CompanyID?: string;
|
|
@@ -1738,6 +1813,7 @@ export declare class CompanyIntegrationResolver extends ResolverBase {
|
|
|
1738
1813
|
Lists_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1739
1814
|
CompanyIntegrationRuns_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1740
1815
|
EmployeeCompanyIntegrations_CompanyIntegrationIDArray(companyintegration_: CompanyIntegration_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
1816
|
+
CreateCompanyIntegration(input: CreateCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1741
1817
|
UpdateCompanyIntegration(input: UpdateCompanyIntegrationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1742
1818
|
DeleteCompanyIntegration(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
1743
1819
|
}
|
|
@@ -2424,6 +2500,15 @@ export declare class UserRecordLog_ {
|
|
|
2424
2500
|
UserSupervisor?: string;
|
|
2425
2501
|
UserSupervisorEmail?: string;
|
|
2426
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
|
+
}
|
|
2427
2512
|
export declare class UpdateUserRecordLogInput {
|
|
2428
2513
|
ID: string;
|
|
2429
2514
|
UserID?: string;
|
|
@@ -2448,7 +2533,9 @@ export declare class UserRecordLogResolver extends ResolverBase {
|
|
|
2448
2533
|
RunUserRecordLogViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2449
2534
|
RunUserRecordLogDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
2450
2535
|
UserRecordLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRecordLog_ | null>;
|
|
2536
|
+
CreateUserRecordLog(input: CreateUserRecordLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2451
2537
|
UpdateUserRecordLog(input: UpdateUserRecordLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2538
|
+
DeleteUserRecordLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2452
2539
|
}
|
|
2453
2540
|
export declare class UserView_ {
|
|
2454
2541
|
ID: string;
|
|
@@ -2611,6 +2698,7 @@ export declare class CompanyIntegrationRunResolver extends ResolverBase {
|
|
|
2611
2698
|
CompanyIntegrationRunAPILogs_CompanyIntegrationRunIDArray(companyintegrationrun_: CompanyIntegrationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2612
2699
|
CreateCompanyIntegrationRun(input: CreateCompanyIntegrationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2613
2700
|
UpdateCompanyIntegrationRun(input: UpdateCompanyIntegrationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2701
|
+
DeleteCompanyIntegrationRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2614
2702
|
}
|
|
2615
2703
|
export declare class CompanyIntegrationRunDetail_ {
|
|
2616
2704
|
ID: string;
|
|
@@ -2663,6 +2751,7 @@ export declare class CompanyIntegrationRunDetailResolver extends ResolverBase {
|
|
|
2663
2751
|
ErrorLogs_CompanyIntegrationRunDetailIDArray(companyintegrationrundetail_: CompanyIntegrationRunDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
2664
2752
|
CreateCompanyIntegrationRunDetail(input: CreateCompanyIntegrationRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2665
2753
|
UpdateCompanyIntegrationRunDetail(input: UpdateCompanyIntegrationRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2754
|
+
DeleteCompanyIntegrationRunDetail(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2666
2755
|
}
|
|
2667
2756
|
export declare class ErrorLog_ {
|
|
2668
2757
|
ID: string;
|
|
@@ -2716,6 +2805,7 @@ export declare class ErrorLogResolver extends ResolverBase {
|
|
|
2716
2805
|
ErrorLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<ErrorLog_ | null>;
|
|
2717
2806
|
CreateErrorLog(input: CreateErrorLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2718
2807
|
UpdateErrorLog(input: UpdateErrorLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2808
|
+
DeleteErrorLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
2719
2809
|
}
|
|
2720
2810
|
export declare class Application_ {
|
|
2721
2811
|
ID: string;
|
|
@@ -3023,6 +3113,7 @@ export declare class CompanyIntegrationRunAPILogResolver extends ResolverBase {
|
|
|
3023
3113
|
CompanyIntegrationRunAPILog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRunAPILog_ | null>;
|
|
3024
3114
|
CreateCompanyIntegrationRunAPILog(input: CreateCompanyIntegrationRunAPILogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3025
3115
|
UpdateCompanyIntegrationRunAPILog(input: UpdateCompanyIntegrationRunAPILogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3116
|
+
DeleteCompanyIntegrationRunAPILog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3026
3117
|
}
|
|
3027
3118
|
export declare class List_ {
|
|
3028
3119
|
ID: string;
|
|
@@ -3169,6 +3260,7 @@ export declare class UserViewRunResolver extends ResolverBase {
|
|
|
3169
3260
|
UserViewRunDetails_UserViewRunIDArray(userviewrun_: UserViewRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3170
3261
|
CreateUserViewRun(input: CreateUserViewRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3171
3262
|
UpdateUserViewRun(input: UpdateUserViewRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3263
|
+
DeleteUserViewRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3172
3264
|
}
|
|
3173
3265
|
export declare class UserViewRunDetail_ {
|
|
3174
3266
|
ID: string;
|
|
@@ -3206,6 +3298,7 @@ export declare class UserViewRunDetailResolver extends ResolverBase {
|
|
|
3206
3298
|
UserViewRunDetail(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserViewRunDetail_ | null>;
|
|
3207
3299
|
CreateUserViewRunDetail(input: CreateUserViewRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3208
3300
|
UpdateUserViewRunDetail(input: UpdateUserViewRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3301
|
+
DeleteUserViewRunDetail(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3209
3302
|
}
|
|
3210
3303
|
export declare class WorkflowRun_ {
|
|
3211
3304
|
ID: string;
|
|
@@ -3220,6 +3313,15 @@ export declare class WorkflowRun_ {
|
|
|
3220
3313
|
Workflow: string;
|
|
3221
3314
|
WorkflowEngineName: string;
|
|
3222
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
|
+
}
|
|
3223
3325
|
export declare class UpdateWorkflowRunInput {
|
|
3224
3326
|
ID: string;
|
|
3225
3327
|
WorkflowID?: string;
|
|
@@ -3244,7 +3346,9 @@ export declare class WorkflowRunResolver extends ResolverBase {
|
|
|
3244
3346
|
RunWorkflowRunViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3245
3347
|
RunWorkflowRunDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3246
3348
|
WorkflowRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowRun_ | null>;
|
|
3349
|
+
CreateWorkflowRun(input: CreateWorkflowRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3247
3350
|
UpdateWorkflowRun(input: UpdateWorkflowRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3351
|
+
DeleteWorkflowRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3248
3352
|
}
|
|
3249
3353
|
export declare class Workflow_ {
|
|
3250
3354
|
ID: string;
|
|
@@ -3262,6 +3366,17 @@ export declare class Workflow_ {
|
|
|
3262
3366
|
Reports_OutputWorkflowIDArray: Report_[];
|
|
3263
3367
|
WorkflowRuns_WorkflowNameArray: WorkflowRun_[];
|
|
3264
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
|
+
}
|
|
3265
3380
|
export declare class UpdateWorkflowInput {
|
|
3266
3381
|
ID: string;
|
|
3267
3382
|
Name?: string;
|
|
@@ -3290,7 +3405,9 @@ export declare class WorkflowResolver extends ResolverBase {
|
|
|
3290
3405
|
Workflow(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Workflow_ | null>;
|
|
3291
3406
|
Reports_OutputWorkflowIDArray(workflow_: Workflow_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3292
3407
|
WorkflowRuns_WorkflowNameArray(workflow_: Workflow_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3408
|
+
CreateWorkflow(input: CreateWorkflowInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3293
3409
|
UpdateWorkflow(input: UpdateWorkflowInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3410
|
+
DeleteWorkflow(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3294
3411
|
}
|
|
3295
3412
|
export declare class WorkflowEngine_ {
|
|
3296
3413
|
ID: string;
|
|
@@ -3302,6 +3419,13 @@ export declare class WorkflowEngine_ {
|
|
|
3302
3419
|
_mj__UpdatedAt: Date;
|
|
3303
3420
|
Workflows_WorkflowEngineNameArray: Workflow_[];
|
|
3304
3421
|
}
|
|
3422
|
+
export declare class CreateWorkflowEngineInput {
|
|
3423
|
+
ID?: string;
|
|
3424
|
+
Name?: string;
|
|
3425
|
+
Description: string | null;
|
|
3426
|
+
DriverPath?: string;
|
|
3427
|
+
DriverClass?: string;
|
|
3428
|
+
}
|
|
3305
3429
|
export declare class UpdateWorkflowEngineInput {
|
|
3306
3430
|
ID: string;
|
|
3307
3431
|
Name?: string;
|
|
@@ -3325,6 +3449,7 @@ export declare class WorkflowEngineResolver extends ResolverBase {
|
|
|
3325
3449
|
RunWorkflowEngineDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3326
3450
|
WorkflowEngine(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<WorkflowEngine_ | null>;
|
|
3327
3451
|
Workflows_WorkflowEngineNameArray(workflowengine_: WorkflowEngine_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3452
|
+
CreateWorkflowEngine(input: CreateWorkflowEngineInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3328
3453
|
UpdateWorkflowEngine(input: UpdateWorkflowEngineInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3329
3454
|
DeleteWorkflowEngine(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3330
3455
|
}
|
|
@@ -3401,6 +3526,7 @@ export declare class RecordChangeResolver extends ResolverBase {
|
|
|
3401
3526
|
RecordChange(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordChange_ | null>;
|
|
3402
3527
|
CreateRecordChange(input: CreateRecordChangeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3403
3528
|
UpdateRecordChange(input: UpdateRecordChangeInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3529
|
+
DeleteRecordChange(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3404
3530
|
}
|
|
3405
3531
|
export declare class UserRole_ {
|
|
3406
3532
|
ID: string;
|
|
@@ -3416,6 +3542,12 @@ export declare class CreateUserRoleInput {
|
|
|
3416
3542
|
UserID?: string;
|
|
3417
3543
|
RoleID?: string;
|
|
3418
3544
|
}
|
|
3545
|
+
export declare class UpdateUserRoleInput {
|
|
3546
|
+
ID: string;
|
|
3547
|
+
UserID?: string;
|
|
3548
|
+
RoleID?: string;
|
|
3549
|
+
OldValues___?: KeyValuePairInput[];
|
|
3550
|
+
}
|
|
3419
3551
|
export declare class RunUserRoleViewResult {
|
|
3420
3552
|
Results: UserRole_[];
|
|
3421
3553
|
UserViewRunID?: string;
|
|
@@ -3432,6 +3564,7 @@ export declare class UserRoleResolver extends ResolverBase {
|
|
|
3432
3564
|
UserRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<UserRole_ | null>;
|
|
3433
3565
|
AllUserRoles({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3434
3566
|
CreateUserRole(input: CreateUserRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3567
|
+
UpdateUserRole(input: UpdateUserRoleInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3435
3568
|
DeleteUserRole(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3436
3569
|
}
|
|
3437
3570
|
export declare class RowLevelSecurityFilter_ {
|
|
@@ -3443,6 +3576,19 @@ export declare class RowLevelSecurityFilter_ {
|
|
|
3443
3576
|
_mj__UpdatedAt: Date;
|
|
3444
3577
|
EntityPermissions_ReadRLSFilterIDArray: EntityPermission_[];
|
|
3445
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
|
+
}
|
|
3446
3592
|
export declare class RunRowLevelSecurityFilterViewResult {
|
|
3447
3593
|
Results: RowLevelSecurityFilter_[];
|
|
3448
3594
|
UserViewRunID?: string;
|
|
@@ -3459,6 +3605,9 @@ export declare class RowLevelSecurityFilterResolver extends ResolverBase {
|
|
|
3459
3605
|
RowLevelSecurityFilter(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RowLevelSecurityFilter_ | null>;
|
|
3460
3606
|
AllRowLevelSecurityFilters({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3461
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>;
|
|
3462
3611
|
}
|
|
3463
3612
|
export declare class AuditLog_ {
|
|
3464
3613
|
ID: string;
|
|
@@ -3516,6 +3665,7 @@ export declare class AuditLogResolver extends ResolverBase {
|
|
|
3516
3665
|
AuditLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuditLog_ | null>;
|
|
3517
3666
|
CreateAuditLog(input: CreateAuditLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3518
3667
|
UpdateAuditLog(input: UpdateAuditLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3668
|
+
DeleteAuditLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3519
3669
|
}
|
|
3520
3670
|
export declare class Authorization_ {
|
|
3521
3671
|
ID: string;
|
|
@@ -3533,6 +3683,23 @@ export declare class Authorization_ {
|
|
|
3533
3683
|
AuditLogs_AuthorizationNameArray: AuditLog_[];
|
|
3534
3684
|
AuditLogTypes_AuthorizationNameArray: AuditLogType_[];
|
|
3535
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
|
+
}
|
|
3536
3703
|
export declare class RunAuthorizationViewResult {
|
|
3537
3704
|
Results: Authorization_[];
|
|
3538
3705
|
UserViewRunID?: string;
|
|
@@ -3553,6 +3720,9 @@ export declare class AuthorizationResolver extends ResolverBase {
|
|
|
3553
3720
|
Authorizations_ParentIDArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3554
3721
|
AuditLogs_AuthorizationNameArray(authorization_: Authorization_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3555
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>;
|
|
3556
3726
|
}
|
|
3557
3727
|
export declare class AuthorizationRole_ {
|
|
3558
3728
|
ID: string;
|
|
@@ -3564,6 +3734,19 @@ export declare class AuthorizationRole_ {
|
|
|
3564
3734
|
Authorization: string;
|
|
3565
3735
|
Role: string;
|
|
3566
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
|
+
}
|
|
3567
3750
|
export declare class RunAuthorizationRoleViewResult {
|
|
3568
3751
|
Results: AuthorizationRole_[];
|
|
3569
3752
|
UserViewRunID?: string;
|
|
@@ -3579,6 +3762,9 @@ export declare class AuthorizationRoleResolver extends ResolverBase {
|
|
|
3579
3762
|
RunAuthorizationRoleDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3580
3763
|
AuthorizationRole(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<AuthorizationRole_ | null>;
|
|
3581
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>;
|
|
3582
3768
|
}
|
|
3583
3769
|
export declare class AuditLogType_ {
|
|
3584
3770
|
ID: string;
|
|
@@ -3593,6 +3779,21 @@ export declare class AuditLogType_ {
|
|
|
3593
3779
|
AuditLogTypes_ParentIDArray: AuditLogType_[];
|
|
3594
3780
|
AuditLogs_AuditLogTypeNameArray: AuditLog_[];
|
|
3595
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
|
+
}
|
|
3596
3797
|
export declare class RunAuditLogTypeViewResult {
|
|
3597
3798
|
Results: AuditLogType_[];
|
|
3598
3799
|
UserViewRunID?: string;
|
|
@@ -3610,6 +3811,9 @@ export declare class AuditLogTypeResolver extends ResolverBase {
|
|
|
3610
3811
|
AllAuditLogTypes({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3611
3812
|
AuditLogTypes_ParentIDArray(auditlogtype_: AuditLogType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3612
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>;
|
|
3613
3817
|
}
|
|
3614
3818
|
export declare class EntityFieldValue_ {
|
|
3615
3819
|
ID: string;
|
|
@@ -3624,6 +3828,14 @@ export declare class EntityFieldValue_ {
|
|
|
3624
3828
|
Entity: string;
|
|
3625
3829
|
EntityID: string;
|
|
3626
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
|
+
}
|
|
3627
3839
|
export declare class UpdateEntityFieldValueInput {
|
|
3628
3840
|
ID: string;
|
|
3629
3841
|
EntityFieldID?: string;
|
|
@@ -3648,7 +3860,9 @@ export declare class EntityFieldValueResolver extends ResolverBase {
|
|
|
3648
3860
|
RunEntityFieldValueDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3649
3861
|
EntityFieldValue(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityFieldValue_ | null>;
|
|
3650
3862
|
AllEntityFieldValues({ dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
3863
|
+
CreateEntityFieldValue(input: CreateEntityFieldValueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3651
3864
|
UpdateEntityFieldValue(input: UpdateEntityFieldValueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3865
|
+
DeleteEntityFieldValue(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
3652
3866
|
}
|
|
3653
3867
|
export declare class AIModel_ {
|
|
3654
3868
|
ID: string;
|
|
@@ -3955,6 +4169,23 @@ export declare class QueueType_ {
|
|
|
3955
4169
|
_mj__UpdatedAt: Date;
|
|
3956
4170
|
Queues_QueueTypeIDArray: Queue_[];
|
|
3957
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
|
+
}
|
|
3958
4189
|
export declare class RunQueueTypeViewResult {
|
|
3959
4190
|
Results: QueueType_[];
|
|
3960
4191
|
UserViewRunID?: string;
|
|
@@ -3970,6 +4201,9 @@ export declare class QueueTypeResolver extends ResolverBase {
|
|
|
3970
4201
|
RunQueueTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
3971
4202
|
QueueType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueueType_ | null>;
|
|
3972
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>;
|
|
3973
4207
|
}
|
|
3974
4208
|
export declare class Queue_ {
|
|
3975
4209
|
ID: string;
|
|
@@ -4050,6 +4284,7 @@ export declare class QueueResolver extends ResolverBase {
|
|
|
4050
4284
|
QueueTasks_QueueIDArray(queue_: Queue_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4051
4285
|
CreateQueue(input: CreateQueueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4052
4286
|
UpdateQueue(input: UpdateQueueInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4287
|
+
DeleteQueue(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4053
4288
|
}
|
|
4054
4289
|
export declare class QueueTask_ {
|
|
4055
4290
|
ID: string;
|
|
@@ -4107,6 +4342,7 @@ export declare class QueueTaskResolver extends ResolverBase {
|
|
|
4107
4342
|
QueueTask(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<QueueTask_ | null>;
|
|
4108
4343
|
CreateQueueTask(input: CreateQueueTaskInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4109
4344
|
UpdateQueueTask(input: UpdateQueueTaskInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4345
|
+
DeleteQueueTask(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4110
4346
|
}
|
|
4111
4347
|
export declare class Dashboard_ {
|
|
4112
4348
|
ID: string;
|
|
@@ -4186,6 +4422,17 @@ export declare class OutputTriggerType_ {
|
|
|
4186
4422
|
_mj__UpdatedAt: Date;
|
|
4187
4423
|
Reports_OutputTriggerTypeIDArray: Report_[];
|
|
4188
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
|
+
}
|
|
4189
4436
|
export declare class RunOutputTriggerTypeViewResult {
|
|
4190
4437
|
Results: OutputTriggerType_[];
|
|
4191
4438
|
UserViewRunID?: string;
|
|
@@ -4201,6 +4448,9 @@ export declare class OutputTriggerTypeResolver extends ResolverBase {
|
|
|
4201
4448
|
RunOutputTriggerTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4202
4449
|
OutputTriggerType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputTriggerType_ | null>;
|
|
4203
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>;
|
|
4204
4454
|
}
|
|
4205
4455
|
export declare class OutputFormatType_ {
|
|
4206
4456
|
ID: string;
|
|
@@ -4211,6 +4461,19 @@ export declare class OutputFormatType_ {
|
|
|
4211
4461
|
_mj__UpdatedAt: Date;
|
|
4212
4462
|
Reports_OutputFormatTypeIDArray: Report_[];
|
|
4213
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
|
+
}
|
|
4214
4477
|
export declare class RunOutputFormatTypeViewResult {
|
|
4215
4478
|
Results: OutputFormatType_[];
|
|
4216
4479
|
UserViewRunID?: string;
|
|
@@ -4226,6 +4489,9 @@ export declare class OutputFormatTypeResolver extends ResolverBase {
|
|
|
4226
4489
|
RunOutputFormatTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4227
4490
|
OutputFormatType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputFormatType_ | null>;
|
|
4228
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>;
|
|
4229
4495
|
}
|
|
4230
4496
|
export declare class OutputDeliveryType_ {
|
|
4231
4497
|
ID: string;
|
|
@@ -4235,6 +4501,17 @@ export declare class OutputDeliveryType_ {
|
|
|
4235
4501
|
_mj__UpdatedAt: Date;
|
|
4236
4502
|
Reports_OutputDeliveryTypeIDArray: Report_[];
|
|
4237
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
|
+
}
|
|
4238
4515
|
export declare class RunOutputDeliveryTypeViewResult {
|
|
4239
4516
|
Results: OutputDeliveryType_[];
|
|
4240
4517
|
UserViewRunID?: string;
|
|
@@ -4250,6 +4527,9 @@ export declare class OutputDeliveryTypeResolver extends ResolverBase {
|
|
|
4250
4527
|
RunOutputDeliveryTypeDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4251
4528
|
OutputDeliveryType(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<OutputDeliveryType_ | null>;
|
|
4252
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>;
|
|
4253
4533
|
}
|
|
4254
4534
|
export declare class Report_ {
|
|
4255
4535
|
ID: string;
|
|
@@ -4401,6 +4681,25 @@ export declare class ResourceType_ {
|
|
|
4401
4681
|
ResourceLinks_ResourceTypeIDArray: ResourceLink_[];
|
|
4402
4682
|
ResourcePermissions_ResourceTypeIDArray: ResourcePermission_[];
|
|
4403
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
|
+
}
|
|
4404
4703
|
export declare class RunResourceTypeViewResult {
|
|
4405
4704
|
Results: ResourceType_[];
|
|
4406
4705
|
UserViewRunID?: string;
|
|
@@ -4419,6 +4718,9 @@ export declare class ResourceTypeResolver extends ResolverBase {
|
|
|
4419
4718
|
UserNotifications_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4420
4719
|
ResourceLinks_ResourceTypeIDArray(resourcetype_: ResourceType_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4421
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>;
|
|
4422
4724
|
}
|
|
4423
4725
|
export declare class Tag_ {
|
|
4424
4726
|
ID: string;
|
|
@@ -4432,6 +4734,21 @@ export declare class Tag_ {
|
|
|
4432
4734
|
Tags_ParentIDArray: Tag_[];
|
|
4433
4735
|
TaggedItems_TagIDArray: TaggedItem_[];
|
|
4434
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
|
+
}
|
|
4435
4752
|
export declare class RunTagViewResult {
|
|
4436
4753
|
Results: Tag_[];
|
|
4437
4754
|
UserViewRunID?: string;
|
|
@@ -4448,6 +4765,9 @@ export declare class TagResolver extends ResolverBase {
|
|
|
4448
4765
|
Tag(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Tag_ | null>;
|
|
4449
4766
|
Tags_ParentIDArray(tag_: Tag_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4450
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>;
|
|
4451
4771
|
}
|
|
4452
4772
|
export declare class TaggedItem_ {
|
|
4453
4773
|
ID: string;
|
|
@@ -4459,6 +4779,19 @@ export declare class TaggedItem_ {
|
|
|
4459
4779
|
Tag: string;
|
|
4460
4780
|
Entity: string;
|
|
4461
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
|
+
}
|
|
4462
4795
|
export declare class RunTaggedItemViewResult {
|
|
4463
4796
|
Results: TaggedItem_[];
|
|
4464
4797
|
UserViewRunID?: string;
|
|
@@ -4473,6 +4806,9 @@ export declare class TaggedItemResolver extends ResolverBase {
|
|
|
4473
4806
|
RunTaggedItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4474
4807
|
RunTaggedItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4475
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>;
|
|
4476
4812
|
}
|
|
4477
4813
|
export declare class Workspace_ {
|
|
4478
4814
|
ID: string;
|
|
@@ -4577,6 +4913,17 @@ export declare class Dataset_ {
|
|
|
4577
4913
|
_mj__UpdatedAt: Date;
|
|
4578
4914
|
DatasetItems_DatasetNameArray: DatasetItem_[];
|
|
4579
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
|
+
}
|
|
4580
4927
|
export declare class RunDatasetViewResult {
|
|
4581
4928
|
Results: Dataset_[];
|
|
4582
4929
|
UserViewRunID?: string;
|
|
@@ -4592,6 +4939,9 @@ export declare class DatasetResolver extends ResolverBase {
|
|
|
4592
4939
|
RunDatasetDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4593
4940
|
Dataset(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<Dataset_ | null>;
|
|
4594
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>;
|
|
4595
4945
|
}
|
|
4596
4946
|
export declare class DatasetItem_ {
|
|
4597
4947
|
ID: string;
|
|
@@ -4608,6 +4958,29 @@ export declare class DatasetItem_ {
|
|
|
4608
4958
|
Dataset: string;
|
|
4609
4959
|
Entity: string;
|
|
4610
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
|
+
}
|
|
4611
4984
|
export declare class RunDatasetItemViewResult {
|
|
4612
4985
|
Results: DatasetItem_[];
|
|
4613
4986
|
UserViewRunID?: string;
|
|
@@ -4622,6 +4995,9 @@ export declare class DatasetItemResolver extends ResolverBase {
|
|
|
4622
4995
|
RunDatasetItemViewByName(input: RunViewByNameInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4623
4996
|
RunDatasetItemDynamicView(input: RunDynamicViewInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<import("@memberjunction/core").RunViewResult<any>>;
|
|
4624
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>;
|
|
4625
5001
|
}
|
|
4626
5002
|
export declare class ConversationDetail_ {
|
|
4627
5003
|
ID: string;
|
|
@@ -4867,6 +5243,7 @@ export declare class SchemaInfoResolver extends ResolverBase {
|
|
|
4867
5243
|
SchemaInfo(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<SchemaInfo_ | null>;
|
|
4868
5244
|
CreateSchemaInfo(input: CreateSchemaInfoInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4869
5245
|
UpdateSchemaInfo(input: UpdateSchemaInfoInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5246
|
+
DeleteSchemaInfo(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4870
5247
|
}
|
|
4871
5248
|
export declare class CompanyIntegrationRecordMap_ {
|
|
4872
5249
|
ID: string;
|
|
@@ -4909,6 +5286,7 @@ export declare class CompanyIntegrationRecordMapResolver extends ResolverBase {
|
|
|
4909
5286
|
CompanyIntegrationRecordMap(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CompanyIntegrationRecordMap_ | null>;
|
|
4910
5287
|
CreateCompanyIntegrationRecordMap(input: CreateCompanyIntegrationRecordMapInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4911
5288
|
UpdateCompanyIntegrationRecordMap(input: UpdateCompanyIntegrationRecordMapInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5289
|
+
DeleteCompanyIntegrationRecordMap(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4912
5290
|
}
|
|
4913
5291
|
export declare class RecordMergeLog_ {
|
|
4914
5292
|
ID: string;
|
|
@@ -4975,6 +5353,7 @@ export declare class RecordMergeLogResolver extends ResolverBase {
|
|
|
4975
5353
|
DuplicateRunDetailMatches_RecordMergeLogIDArray(recordmergelog_: RecordMergeLog_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
4976
5354
|
CreateRecordMergeLog(input: CreateRecordMergeLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4977
5355
|
UpdateRecordMergeLog(input: UpdateRecordMergeLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5356
|
+
DeleteRecordMergeLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
4978
5357
|
}
|
|
4979
5358
|
export declare class RecordMergeDeletionLog_ {
|
|
4980
5359
|
ID: string;
|
|
@@ -5016,6 +5395,7 @@ export declare class RecordMergeDeletionLogResolver extends ResolverBase {
|
|
|
5016
5395
|
RecordMergeDeletionLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecordMergeDeletionLog_ | null>;
|
|
5017
5396
|
CreateRecordMergeDeletionLog(input: CreateRecordMergeDeletionLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5018
5397
|
UpdateRecordMergeDeletionLog(input: UpdateRecordMergeDeletionLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5398
|
+
DeleteRecordMergeDeletionLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5019
5399
|
}
|
|
5020
5400
|
export declare class QueryField_ {
|
|
5021
5401
|
ID: string;
|
|
@@ -5368,6 +5748,7 @@ export declare class EntityDocumentRunResolver extends ResolverBase {
|
|
|
5368
5748
|
EntityDocumentRun(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityDocumentRun_ | null>;
|
|
5369
5749
|
CreateEntityDocumentRun(input: CreateEntityDocumentRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5370
5750
|
UpdateEntityDocumentRun(input: UpdateEntityDocumentRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5751
|
+
DeleteEntityDocumentRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5371
5752
|
}
|
|
5372
5753
|
export declare class VectorDatabase_ {
|
|
5373
5754
|
ID: string;
|
|
@@ -5470,6 +5851,7 @@ export declare class EntityRecordDocumentResolver extends ResolverBase {
|
|
|
5470
5851
|
EntityRecordDocument(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityRecordDocument_ | null>;
|
|
5471
5852
|
CreateEntityRecordDocument(input: CreateEntityRecordDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5472
5853
|
UpdateEntityRecordDocument(input: UpdateEntityRecordDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5854
|
+
DeleteEntityRecordDocument(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5473
5855
|
}
|
|
5474
5856
|
export declare class EntityDocument_ {
|
|
5475
5857
|
ID: string;
|
|
@@ -5537,6 +5919,7 @@ export declare class EntityDocumentResolver extends ResolverBase {
|
|
|
5537
5919
|
EntityRecordDocuments_EntityDocumentIDArray(entitydocument_: EntityDocument_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
5538
5920
|
CreateEntityDocument(input: CreateEntityDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5539
5921
|
UpdateEntityDocument(input: UpdateEntityDocumentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5922
|
+
DeleteEntityDocument(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
5540
5923
|
}
|
|
5541
5924
|
export declare class DataContextItem_ {
|
|
5542
5925
|
ID: string;
|
|
@@ -6045,6 +6428,7 @@ export declare class VersionInstallationResolver extends ResolverBase {
|
|
|
6045
6428
|
VersionInstallation(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<VersionInstallation_ | null>;
|
|
6046
6429
|
CreateVersionInstallation(input: CreateVersionInstallationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6047
6430
|
UpdateVersionInstallation(input: UpdateVersionInstallationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6431
|
+
DeleteVersionInstallation(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6048
6432
|
}
|
|
6049
6433
|
export declare class DuplicateRunDetailMatch_ {
|
|
6050
6434
|
ID: string;
|
|
@@ -6104,6 +6488,7 @@ export declare class DuplicateRunDetailMatchResolver extends ResolverBase {
|
|
|
6104
6488
|
DuplicateRunDetailMatch(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<DuplicateRunDetailMatch_ | null>;
|
|
6105
6489
|
CreateDuplicateRunDetailMatch(input: CreateDuplicateRunDetailMatchInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6106
6490
|
UpdateDuplicateRunDetailMatch(input: UpdateDuplicateRunDetailMatchInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6491
|
+
DeleteDuplicateRunDetailMatch(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6107
6492
|
}
|
|
6108
6493
|
export declare class EntityDocumentSetting_ {
|
|
6109
6494
|
ID: string;
|
|
@@ -6255,6 +6640,7 @@ export declare class DuplicateRunResolver extends ResolverBase {
|
|
|
6255
6640
|
DuplicateRunDetails_DuplicateRunIDArray(duplicaterun_: DuplicateRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6256
6641
|
CreateDuplicateRun(input: CreateDuplicateRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6257
6642
|
UpdateDuplicateRun(input: UpdateDuplicateRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6643
|
+
DeleteDuplicateRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6258
6644
|
}
|
|
6259
6645
|
export declare class DuplicateRunDetail_ {
|
|
6260
6646
|
ID: string;
|
|
@@ -6307,6 +6693,7 @@ export declare class DuplicateRunDetailResolver extends ResolverBase {
|
|
|
6307
6693
|
DuplicateRunDetailMatches_DuplicateRunDetailIDArray(duplicaterundetail_: DuplicateRunDetail_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
6308
6694
|
CreateDuplicateRunDetail(input: CreateDuplicateRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6309
6695
|
UpdateDuplicateRunDetail(input: UpdateDuplicateRunDetailInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6696
|
+
DeleteDuplicateRunDetail(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
6310
6697
|
}
|
|
6311
6698
|
export declare class ApplicationSetting_ {
|
|
6312
6699
|
ID: string;
|
|
@@ -6589,6 +6976,7 @@ export declare class Action_ {
|
|
|
6589
6976
|
_mj__UpdatedAt: Date;
|
|
6590
6977
|
DriverClass?: string;
|
|
6591
6978
|
ParentID?: string;
|
|
6979
|
+
IconClass?: string;
|
|
6592
6980
|
Category?: string;
|
|
6593
6981
|
CodeApprovedByUser?: string;
|
|
6594
6982
|
Parent?: string;
|
|
@@ -6623,6 +7011,7 @@ export declare class CreateActionInput {
|
|
|
6623
7011
|
Status?: string;
|
|
6624
7012
|
DriverClass: string | null;
|
|
6625
7013
|
ParentID: string | null;
|
|
7014
|
+
IconClass: string | null;
|
|
6626
7015
|
}
|
|
6627
7016
|
export declare class UpdateActionInput {
|
|
6628
7017
|
ID: string;
|
|
@@ -6644,6 +7033,7 @@ export declare class UpdateActionInput {
|
|
|
6644
7033
|
Status?: string;
|
|
6645
7034
|
DriverClass?: string | null;
|
|
6646
7035
|
ParentID?: string | null;
|
|
7036
|
+
IconClass?: string | null;
|
|
6647
7037
|
OldValues___?: KeyValuePairInput[];
|
|
6648
7038
|
}
|
|
6649
7039
|
export declare class RunActionViewResult {
|
|
@@ -7245,6 +7635,7 @@ export declare class CommunicationRunResolver extends ResolverBase {
|
|
|
7245
7635
|
CommunicationLogs_CommunicationRunIDArray(communicationrun_: CommunicationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7246
7636
|
CreateCommunicationRun(input: CreateCommunicationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7247
7637
|
UpdateCommunicationRun(input: UpdateCommunicationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7638
|
+
DeleteCommunicationRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7248
7639
|
}
|
|
7249
7640
|
export declare class CommunicationProviderMessageType_ {
|
|
7250
7641
|
ID: string;
|
|
@@ -7349,6 +7740,7 @@ export declare class CommunicationLogResolver extends ResolverBase {
|
|
|
7349
7740
|
CommunicationLog(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<CommunicationLog_ | null>;
|
|
7350
7741
|
CreateCommunicationLog(input: CreateCommunicationLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7351
7742
|
UpdateCommunicationLog(input: UpdateCommunicationLogInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7743
|
+
DeleteCommunicationLog(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7352
7744
|
}
|
|
7353
7745
|
export declare class CommunicationBaseMessageType_ {
|
|
7354
7746
|
ID: string;
|
|
@@ -7712,6 +8104,7 @@ export declare class RecommendationResolver extends ResolverBase {
|
|
|
7712
8104
|
RecommendationItems_RecommendationIDArray(recommendation_: Recommendation_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7713
8105
|
CreateRecommendation(input: CreateRecommendationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7714
8106
|
UpdateRecommendation(input: UpdateRecommendationInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8107
|
+
DeleteRecommendation(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7715
8108
|
}
|
|
7716
8109
|
export declare class RecommendationProvider_ {
|
|
7717
8110
|
ID: string;
|
|
@@ -7801,6 +8194,7 @@ export declare class RecommendationRunResolver extends ResolverBase {
|
|
|
7801
8194
|
Recommendations_RecommendationRunIDArray(recommendationrun_: RecommendationRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7802
8195
|
CreateRecommendationRun(input: CreateRecommendationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7803
8196
|
UpdateRecommendationRun(input: UpdateRecommendationRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8197
|
+
DeleteRecommendationRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7804
8198
|
}
|
|
7805
8199
|
export declare class RecommendationItem_ {
|
|
7806
8200
|
ID: string;
|
|
@@ -7843,6 +8237,7 @@ export declare class RecommendationItemResolver extends ResolverBase {
|
|
|
7843
8237
|
RecommendationItem(ID: string, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<RecommendationItem_ | null>;
|
|
7844
8238
|
CreateRecommendationItem(input: CreateRecommendationItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7845
8239
|
UpdateRecommendationItem(input: UpdateRecommendationItemInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8240
|
+
DeleteRecommendationItem(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7846
8241
|
}
|
|
7847
8242
|
export declare class EntityCommunicationMessageType_ {
|
|
7848
8243
|
ID: string;
|
|
@@ -7969,6 +8364,7 @@ export declare class RecordChangeReplayRunResolver extends ResolverBase {
|
|
|
7969
8364
|
RecordChanges_ReplayRunIDArray(recordchangereplayrun_: RecordChangeReplayRun_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
7970
8365
|
CreateRecordChangeReplayRun(input: CreateRecordChangeReplayRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7971
8366
|
UpdateRecordChangeReplayRun(input: UpdateRecordChangeReplayRunInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8367
|
+
DeleteRecordChangeReplayRun(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
7972
8368
|
}
|
|
7973
8369
|
export declare class LibraryItem_ {
|
|
7974
8370
|
ID: string;
|
|
@@ -8049,6 +8445,7 @@ export declare class EntityRelationshipDisplayComponentResolver extends Resolver
|
|
|
8049
8445
|
EntityRelationships_DisplayComponentIDArray(entityrelationshipdisplaycomponent_: EntityRelationshipDisplayComponent_, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any[]>;
|
|
8050
8446
|
CreateEntityRelationshipDisplayComponent(input: CreateEntityRelationshipDisplayComponentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8051
8447
|
UpdateEntityRelationshipDisplayComponent(input: UpdateEntityRelationshipDisplayComponentInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8448
|
+
DeleteEntityRelationshipDisplayComponent(ID: string, options: DeleteOptionsInput, { dataSources, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
|
|
8052
8449
|
}
|
|
8053
8450
|
export declare class EntityActionParam_ {
|
|
8054
8451
|
ID: string;
|
|
@@ -9395,6 +9792,20 @@ export declare class AIPromptRun_ {
|
|
|
9395
9792
|
LogProbs?: boolean;
|
|
9396
9793
|
TopLogProbs?: number;
|
|
9397
9794
|
DescendantCost?: number;
|
|
9795
|
+
ValidationAttemptCount?: number;
|
|
9796
|
+
SuccessfulValidationCount?: number;
|
|
9797
|
+
FinalValidationPassed?: boolean;
|
|
9798
|
+
ValidationBehavior?: string;
|
|
9799
|
+
RetryStrategy?: string;
|
|
9800
|
+
MaxRetriesConfigured?: number;
|
|
9801
|
+
FinalValidationError?: string;
|
|
9802
|
+
ValidationErrorCount?: number;
|
|
9803
|
+
CommonValidationError?: string;
|
|
9804
|
+
FirstAttemptAt?: Date;
|
|
9805
|
+
LastAttemptAt?: Date;
|
|
9806
|
+
TotalRetryDurationMS?: number;
|
|
9807
|
+
ValidationAttempts?: string;
|
|
9808
|
+
ValidationSummary?: string;
|
|
9398
9809
|
Prompt: string;
|
|
9399
9810
|
Model: string;
|
|
9400
9811
|
Vendor: string;
|
|
@@ -9442,6 +9853,20 @@ export declare class CreateAIPromptRunInput {
|
|
|
9442
9853
|
LogProbs: boolean | null;
|
|
9443
9854
|
TopLogProbs: number | null;
|
|
9444
9855
|
DescendantCost: number | null;
|
|
9856
|
+
ValidationAttemptCount: number | null;
|
|
9857
|
+
SuccessfulValidationCount: number | null;
|
|
9858
|
+
FinalValidationPassed: boolean | null;
|
|
9859
|
+
ValidationBehavior: string | null;
|
|
9860
|
+
RetryStrategy: string | null;
|
|
9861
|
+
MaxRetriesConfigured: number | null;
|
|
9862
|
+
FinalValidationError: string | null;
|
|
9863
|
+
ValidationErrorCount: number | null;
|
|
9864
|
+
CommonValidationError: string | null;
|
|
9865
|
+
FirstAttemptAt: Date | null;
|
|
9866
|
+
LastAttemptAt: Date | null;
|
|
9867
|
+
TotalRetryDurationMS: number | null;
|
|
9868
|
+
ValidationAttempts: string | null;
|
|
9869
|
+
ValidationSummary: string | null;
|
|
9445
9870
|
}
|
|
9446
9871
|
export declare class UpdateAIPromptRunInput {
|
|
9447
9872
|
ID: string;
|
|
@@ -9482,6 +9907,20 @@ export declare class UpdateAIPromptRunInput {
|
|
|
9482
9907
|
LogProbs?: boolean | null;
|
|
9483
9908
|
TopLogProbs?: number | null;
|
|
9484
9909
|
DescendantCost?: number | null;
|
|
9910
|
+
ValidationAttemptCount?: number | null;
|
|
9911
|
+
SuccessfulValidationCount?: number | null;
|
|
9912
|
+
FinalValidationPassed?: boolean | null;
|
|
9913
|
+
ValidationBehavior?: string | null;
|
|
9914
|
+
RetryStrategy?: string | null;
|
|
9915
|
+
MaxRetriesConfigured?: number | null;
|
|
9916
|
+
FinalValidationError?: string | null;
|
|
9917
|
+
ValidationErrorCount?: number | null;
|
|
9918
|
+
CommonValidationError?: string | null;
|
|
9919
|
+
FirstAttemptAt?: Date | null;
|
|
9920
|
+
LastAttemptAt?: Date | null;
|
|
9921
|
+
TotalRetryDurationMS?: number | null;
|
|
9922
|
+
ValidationAttempts?: string | null;
|
|
9923
|
+
ValidationSummary?: string | null;
|
|
9485
9924
|
OldValues___?: KeyValuePairInput[];
|
|
9486
9925
|
}
|
|
9487
9926
|
export declare class RunAIPromptRunViewResult {
|