@memberjunction/core-entities 0.9.85 → 0.9.87
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.
|
@@ -4,14 +4,25 @@ import { BaseEntity } from "@memberjunction/core";
|
|
|
4
4
|
* * Schema: admin
|
|
5
5
|
* * Base Table: Company
|
|
6
6
|
* * Base View: vwCompanies
|
|
7
|
-
* @description List of Companies/Organizations within the top-level business, used for subsidiaries
|
|
7
|
+
* * @description List of Companies/Organizations within the top-level business, used for subsidiaries
|
|
8
8
|
* * Primary Key: ID
|
|
9
|
-
* * Description: List of Companies/Organizations within the top-level business, used for subsidiaries
|
|
10
9
|
* @extends {BaseEntity}
|
|
11
10
|
* @class
|
|
12
11
|
* @public
|
|
13
12
|
*/
|
|
14
13
|
export declare class CompanyEntity extends BaseEntity {
|
|
14
|
+
/**
|
|
15
|
+
* Loads the Companies record from the database
|
|
16
|
+
* @param ID: Number - primary key value to load the Companies record.
|
|
17
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
18
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
19
|
+
* @public
|
|
20
|
+
* @async
|
|
21
|
+
* @memberof CompanyEntity
|
|
22
|
+
* @method
|
|
23
|
+
* @override
|
|
24
|
+
*/
|
|
25
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
15
26
|
/**
|
|
16
27
|
* * Field Name: ID
|
|
17
28
|
* * SQL Data Type: int
|
|
@@ -69,14 +80,25 @@ export declare class CompanyEntity extends BaseEntity {
|
|
|
69
80
|
* * Schema: admin
|
|
70
81
|
* * Base Table: Employee
|
|
71
82
|
* * Base View: vwEmployees
|
|
72
|
-
* @description Employees
|
|
83
|
+
* * @description Employees
|
|
73
84
|
* * Primary Key: ID
|
|
74
|
-
* * Description: Employees
|
|
75
85
|
* @extends {BaseEntity}
|
|
76
86
|
* @class
|
|
77
87
|
* @public
|
|
78
88
|
*/
|
|
79
89
|
export declare class EmployeeEntity extends BaseEntity {
|
|
90
|
+
/**
|
|
91
|
+
* Loads the Employees record from the database
|
|
92
|
+
* @param ID: Number - primary key value to load the Employees record.
|
|
93
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
94
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
95
|
+
* @public
|
|
96
|
+
* @async
|
|
97
|
+
* @memberof EmployeeEntity
|
|
98
|
+
* @method
|
|
99
|
+
* @override
|
|
100
|
+
*/
|
|
101
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
80
102
|
/**
|
|
81
103
|
* * Field Name: ID
|
|
82
104
|
* * SQL Data Type: int
|
|
@@ -196,12 +218,23 @@ export declare class EmployeeEntity extends BaseEntity {
|
|
|
196
218
|
* * Base Table: UserFavorite
|
|
197
219
|
* * Base View: vwUserFavorites
|
|
198
220
|
* * Primary Key: ID
|
|
199
|
-
* * Description: null
|
|
200
221
|
* @extends {BaseEntity}
|
|
201
222
|
* @class
|
|
202
223
|
* @public
|
|
203
224
|
*/
|
|
204
225
|
export declare class UserFavoriteEntity extends BaseEntity {
|
|
226
|
+
/**
|
|
227
|
+
* Loads the User Favorites record from the database
|
|
228
|
+
* @param ID: Number - primary key value to load the User Favorites record.
|
|
229
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
230
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
231
|
+
* @public
|
|
232
|
+
* @async
|
|
233
|
+
* @memberof UserFavoriteEntity
|
|
234
|
+
* @method
|
|
235
|
+
* @override
|
|
236
|
+
*/
|
|
237
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
205
238
|
/**
|
|
206
239
|
* * Field Name: ID
|
|
207
240
|
* * SQL Data Type: int
|
|
@@ -268,12 +301,23 @@ export declare class UserFavoriteEntity extends BaseEntity {
|
|
|
268
301
|
* * Base Table: EmployeeCompanyIntegration
|
|
269
302
|
* * Base View: vwEmployeeCompanyIntegrations
|
|
270
303
|
* * Primary Key: ID
|
|
271
|
-
* * Description: null
|
|
272
304
|
* @extends {BaseEntity}
|
|
273
305
|
* @class
|
|
274
306
|
* @public
|
|
275
307
|
*/
|
|
276
308
|
export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
|
|
309
|
+
/**
|
|
310
|
+
* Loads the Employee Company Integrations record from the database
|
|
311
|
+
* @param ID: Number - primary key value to load the Employee Company Integrations record.
|
|
312
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
313
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
314
|
+
* @public
|
|
315
|
+
* @async
|
|
316
|
+
* @memberof EmployeeCompanyIntegrationEntity
|
|
317
|
+
* @method
|
|
318
|
+
* @override
|
|
319
|
+
*/
|
|
320
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
277
321
|
/**
|
|
278
322
|
* * Field Name: ID
|
|
279
323
|
* * SQL Data Type: int
|
|
@@ -331,12 +375,23 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
|
|
|
331
375
|
* * Base Table: EmployeeRole
|
|
332
376
|
* * Base View: vwEmployeeRoles
|
|
333
377
|
* * Primary Key: ID
|
|
334
|
-
* * Description: null
|
|
335
378
|
* @extends {BaseEntity}
|
|
336
379
|
* @class
|
|
337
380
|
* @public
|
|
338
381
|
*/
|
|
339
382
|
export declare class EmployeeRoleEntity extends BaseEntity {
|
|
383
|
+
/**
|
|
384
|
+
* Loads the Employee Roles record from the database
|
|
385
|
+
* @param ID: Number - primary key value to load the Employee Roles record.
|
|
386
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
387
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
388
|
+
* @public
|
|
389
|
+
* @async
|
|
390
|
+
* @memberof EmployeeRoleEntity
|
|
391
|
+
* @method
|
|
392
|
+
* @override
|
|
393
|
+
*/
|
|
394
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
340
395
|
/**
|
|
341
396
|
* * Field Name: ID
|
|
342
397
|
* * Display Name: ID
|
|
@@ -386,12 +441,23 @@ export declare class EmployeeRoleEntity extends BaseEntity {
|
|
|
386
441
|
* * Base Table: EmployeeSkill
|
|
387
442
|
* * Base View: vwEmployeeSkills
|
|
388
443
|
* * Primary Key: ID
|
|
389
|
-
* * Description: null
|
|
390
444
|
* @extends {BaseEntity}
|
|
391
445
|
* @class
|
|
392
446
|
* @public
|
|
393
447
|
*/
|
|
394
448
|
export declare class EmployeeSkillEntity extends BaseEntity {
|
|
449
|
+
/**
|
|
450
|
+
* Loads the Employee Skills record from the database
|
|
451
|
+
* @param ID: Number - primary key value to load the Employee Skills record.
|
|
452
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
453
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
454
|
+
* @public
|
|
455
|
+
* @async
|
|
456
|
+
* @memberof EmployeeSkillEntity
|
|
457
|
+
* @method
|
|
458
|
+
* @override
|
|
459
|
+
*/
|
|
460
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
395
461
|
/**
|
|
396
462
|
* * Field Name: ID
|
|
397
463
|
* * Display Name: ID
|
|
@@ -441,12 +507,23 @@ export declare class EmployeeSkillEntity extends BaseEntity {
|
|
|
441
507
|
* * Base Table: Role
|
|
442
508
|
* * Base View: vwRoles
|
|
443
509
|
* * Primary Key: ID
|
|
444
|
-
* * Description: null
|
|
445
510
|
* @extends {BaseEntity}
|
|
446
511
|
* @class
|
|
447
512
|
* @public
|
|
448
513
|
*/
|
|
449
514
|
export declare class RoleEntity extends BaseEntity {
|
|
515
|
+
/**
|
|
516
|
+
* Loads the Roles record from the database
|
|
517
|
+
* @param ID: Number - primary key value to load the Roles record.
|
|
518
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
519
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
520
|
+
* @public
|
|
521
|
+
* @async
|
|
522
|
+
* @memberof RoleEntity
|
|
523
|
+
* @method
|
|
524
|
+
* @override
|
|
525
|
+
*/
|
|
526
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
450
527
|
/**
|
|
451
528
|
* * Field Name: ID
|
|
452
529
|
* * SQL Data Type: int
|
|
@@ -498,12 +575,23 @@ export declare class RoleEntity extends BaseEntity {
|
|
|
498
575
|
* * Base Table: Skill
|
|
499
576
|
* * Base View: vwSkills
|
|
500
577
|
* * Primary Key: ID
|
|
501
|
-
* * Description: null
|
|
502
578
|
* @extends {BaseEntity}
|
|
503
579
|
* @class
|
|
504
580
|
* @public
|
|
505
581
|
*/
|
|
506
582
|
export declare class SkillEntity extends BaseEntity {
|
|
583
|
+
/**
|
|
584
|
+
* Loads the Skills record from the database
|
|
585
|
+
* @param ID: Number - primary key value to load the Skills record.
|
|
586
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
587
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
588
|
+
* @public
|
|
589
|
+
* @async
|
|
590
|
+
* @memberof SkillEntity
|
|
591
|
+
* @method
|
|
592
|
+
* @override
|
|
593
|
+
*/
|
|
594
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
507
595
|
/**
|
|
508
596
|
* * Field Name: ID
|
|
509
597
|
* * SQL Data Type: int
|
|
@@ -550,12 +638,23 @@ export declare class SkillEntity extends BaseEntity {
|
|
|
550
638
|
* * Base Table: IntegrationURLFormat
|
|
551
639
|
* * Base View: vwIntegrationURLFormats
|
|
552
640
|
* * Primary Key: ID
|
|
553
|
-
* * Description: null
|
|
554
641
|
* @extends {BaseEntity}
|
|
555
642
|
* @class
|
|
556
643
|
* @public
|
|
557
644
|
*/
|
|
558
645
|
export declare class IntegrationURLFormatEntity extends BaseEntity {
|
|
646
|
+
/**
|
|
647
|
+
* Loads the Integration URL Formats record from the database
|
|
648
|
+
* @param ID: Number - primary key value to load the Integration URL Formats record.
|
|
649
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
650
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
651
|
+
* @public
|
|
652
|
+
* @async
|
|
653
|
+
* @memberof IntegrationURLFormatEntity
|
|
654
|
+
* @method
|
|
655
|
+
* @override
|
|
656
|
+
*/
|
|
657
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
559
658
|
/**
|
|
560
659
|
* * Field Name: ID
|
|
561
660
|
* * SQL Data Type: int
|
|
@@ -613,14 +712,25 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
|
|
|
613
712
|
* * Schema: admin
|
|
614
713
|
* * Base Table: Integration
|
|
615
714
|
* * Base View: vwIntegrations
|
|
616
|
-
* @description List of integrations that can be executed using the MemberJunction integration architecture.
|
|
715
|
+
* * @description List of integrations that can be executed using the MemberJunction integration architecture.
|
|
617
716
|
* * Primary Key: ID
|
|
618
|
-
* * Description: List of integrations that can be executed using the MemberJunction integration architecture.
|
|
619
717
|
* @extends {BaseEntity}
|
|
620
718
|
* @class
|
|
621
719
|
* @public
|
|
622
720
|
*/
|
|
623
721
|
export declare class IntegrationEntity extends BaseEntity {
|
|
722
|
+
/**
|
|
723
|
+
* Loads the Integrations record from the database
|
|
724
|
+
* @param ID: Number - primary key value to load the Integrations record.
|
|
725
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
726
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
727
|
+
* @public
|
|
728
|
+
* @async
|
|
729
|
+
* @memberof IntegrationEntity
|
|
730
|
+
* @method
|
|
731
|
+
* @override
|
|
732
|
+
*/
|
|
733
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
624
734
|
/**
|
|
625
735
|
* * Field Name: ID
|
|
626
736
|
* * SQL Data Type: int
|
|
@@ -696,12 +806,23 @@ export declare class IntegrationEntity extends BaseEntity {
|
|
|
696
806
|
* * Base Table: CompanyIntegration
|
|
697
807
|
* * Base View: vwCompanyIntegrations
|
|
698
808
|
* * Primary Key: ID
|
|
699
|
-
* * Description: null
|
|
700
809
|
* @extends {BaseEntity}
|
|
701
810
|
* @class
|
|
702
811
|
* @public
|
|
703
812
|
*/
|
|
704
813
|
export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
814
|
+
/**
|
|
815
|
+
* Loads the Company Integrations record from the database
|
|
816
|
+
* @param ID: Number - primary key value to load the Company Integrations record.
|
|
817
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
818
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
819
|
+
* @public
|
|
820
|
+
* @async
|
|
821
|
+
* @memberof CompanyIntegrationEntity
|
|
822
|
+
* @method
|
|
823
|
+
* @override
|
|
824
|
+
*/
|
|
825
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
705
826
|
/**
|
|
706
827
|
* * Field Name: ID
|
|
707
828
|
* * SQL Data Type: int
|
|
@@ -866,12 +987,23 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
866
987
|
* * Base Table: EntityField
|
|
867
988
|
* * Base View: vwEntityFields
|
|
868
989
|
* * Primary Key: ID
|
|
869
|
-
* * Description: null
|
|
870
990
|
* @extends {BaseEntity}
|
|
871
991
|
* @class
|
|
872
992
|
* @public
|
|
873
993
|
*/
|
|
874
994
|
export declare class EntityFieldEntity extends BaseEntity {
|
|
995
|
+
/**
|
|
996
|
+
* Loads the Entity Fields record from the database
|
|
997
|
+
* @param ID: Number - primary key value to load the Entity Fields record.
|
|
998
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
999
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
1000
|
+
* @public
|
|
1001
|
+
* @async
|
|
1002
|
+
* @memberof EntityFieldEntity
|
|
1003
|
+
* @method
|
|
1004
|
+
* @override
|
|
1005
|
+
*/
|
|
1006
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
875
1007
|
/**
|
|
876
1008
|
* * Field Name: ID
|
|
877
1009
|
* * SQL Data Type: int
|
|
@@ -1154,7 +1286,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1154
1286
|
/**
|
|
1155
1287
|
* * Field Name: EntityClassName
|
|
1156
1288
|
* * Display Name: Entity Class Name
|
|
1157
|
-
* * SQL Data Type: nvarchar(
|
|
1289
|
+
* * SQL Data Type: nvarchar(4000)
|
|
1158
1290
|
*/
|
|
1159
1291
|
get EntityClassName(): string;
|
|
1160
1292
|
/**
|
|
@@ -1190,7 +1322,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1190
1322
|
/**
|
|
1191
1323
|
* * Field Name: RelatedEntityClassName
|
|
1192
1324
|
* * Display Name: Related Entity Class Name
|
|
1193
|
-
* * SQL Data Type: nvarchar(
|
|
1325
|
+
* * SQL Data Type: nvarchar(4000)
|
|
1194
1326
|
*/
|
|
1195
1327
|
get RelatedEntityClassName(): string;
|
|
1196
1328
|
}
|
|
@@ -1199,14 +1331,25 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1199
1331
|
* * Schema: admin
|
|
1200
1332
|
* * Base Table: Entity
|
|
1201
1333
|
* * Base View: vwEntities
|
|
1202
|
-
* @description Metadata about all of the entities in the system. This information is managed by CodeGen, don't modify the parts that come from SQL Server
|
|
1334
|
+
* * @description Metadata about all of the entities in the system. This information is managed by CodeGen, don't modify the parts that come from SQL Server
|
|
1203
1335
|
* * Primary Key: ID
|
|
1204
|
-
* * Description: Metadata about all of the entities in the system. This information is managed by CodeGen, don't modify the parts that come from SQL Server
|
|
1205
1336
|
* @extends {BaseEntity}
|
|
1206
1337
|
* @class
|
|
1207
1338
|
* @public
|
|
1208
1339
|
*/
|
|
1209
1340
|
export declare class EntityEntity extends BaseEntity {
|
|
1341
|
+
/**
|
|
1342
|
+
* Loads the Entities record from the database
|
|
1343
|
+
* @param ID: Number - primary key value to load the Entities record.
|
|
1344
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
1345
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
1346
|
+
* @public
|
|
1347
|
+
* @async
|
|
1348
|
+
* @memberof EntityEntity
|
|
1349
|
+
* @method
|
|
1350
|
+
* @override
|
|
1351
|
+
*/
|
|
1352
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
1210
1353
|
/**
|
|
1211
1354
|
* * Field Name: ID
|
|
1212
1355
|
* * SQL Data Type: int
|
|
@@ -1521,13 +1664,13 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1521
1664
|
/**
|
|
1522
1665
|
* * Field Name: ClassName
|
|
1523
1666
|
* * Display Name: Class Name
|
|
1524
|
-
* * SQL Data Type: nvarchar(
|
|
1667
|
+
* * SQL Data Type: nvarchar(4000)
|
|
1525
1668
|
*/
|
|
1526
1669
|
get ClassName(): string;
|
|
1527
1670
|
/**
|
|
1528
1671
|
* * Field Name: BaseTableCodeName
|
|
1529
1672
|
* * Display Name: Base Table Code Name
|
|
1530
|
-
* * SQL Data Type: nvarchar(
|
|
1673
|
+
* * SQL Data Type: nvarchar(4000)
|
|
1531
1674
|
*/
|
|
1532
1675
|
get BaseTableCodeName(): string;
|
|
1533
1676
|
/**
|
|
@@ -1555,12 +1698,23 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1555
1698
|
* * Base Table: User
|
|
1556
1699
|
* * Base View: vwUsers
|
|
1557
1700
|
* * Primary Key: ID
|
|
1558
|
-
* * Description: null
|
|
1559
1701
|
* @extends {BaseEntity}
|
|
1560
1702
|
* @class
|
|
1561
1703
|
* @public
|
|
1562
1704
|
*/
|
|
1563
1705
|
export declare class UserEntity extends BaseEntity {
|
|
1706
|
+
/**
|
|
1707
|
+
* Loads the Users record from the database
|
|
1708
|
+
* @param ID: Number - primary key value to load the Users record.
|
|
1709
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
1710
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
1711
|
+
* @public
|
|
1712
|
+
* @async
|
|
1713
|
+
* @memberof UserEntity
|
|
1714
|
+
* @method
|
|
1715
|
+
* @override
|
|
1716
|
+
*/
|
|
1717
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
1564
1718
|
/**
|
|
1565
1719
|
* * Field Name: ID
|
|
1566
1720
|
* * SQL Data Type: int
|
|
@@ -1699,12 +1853,23 @@ export declare class UserEntity extends BaseEntity {
|
|
|
1699
1853
|
* * Base Table: EntityRelationship
|
|
1700
1854
|
* * Base View: vwEntityRelationships
|
|
1701
1855
|
* * Primary Key: ID
|
|
1702
|
-
* * Description: null
|
|
1703
1856
|
* @extends {BaseEntity}
|
|
1704
1857
|
* @class
|
|
1705
1858
|
* @public
|
|
1706
1859
|
*/
|
|
1707
1860
|
export declare class EntityRelationshipEntity extends BaseEntity {
|
|
1861
|
+
/**
|
|
1862
|
+
* Loads the Entity Relationships record from the database
|
|
1863
|
+
* @param ID: Number - primary key value to load the Entity Relationships record.
|
|
1864
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
1865
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
1866
|
+
* @public
|
|
1867
|
+
* @async
|
|
1868
|
+
* @memberof EntityRelationshipEntity
|
|
1869
|
+
* @method
|
|
1870
|
+
* @override
|
|
1871
|
+
*/
|
|
1872
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
1708
1873
|
/**
|
|
1709
1874
|
* * Field Name: ID
|
|
1710
1875
|
* * SQL Data Type: int
|
|
@@ -1858,7 +2023,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
1858
2023
|
/**
|
|
1859
2024
|
* * Field Name: RelatedEntityClassName
|
|
1860
2025
|
* * Display Name: Related Entity Class Name
|
|
1861
|
-
* * SQL Data Type: nvarchar(
|
|
2026
|
+
* * SQL Data Type: nvarchar(4000)
|
|
1862
2027
|
*/
|
|
1863
2028
|
get RelatedEntityClassName(): string;
|
|
1864
2029
|
/**
|
|
@@ -1870,7 +2035,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
1870
2035
|
/**
|
|
1871
2036
|
* * Field Name: RelatedEntityBaseTableCodeName
|
|
1872
2037
|
* * Display Name: Related Entity Base Table Code Name
|
|
1873
|
-
* * SQL Data Type: nvarchar(
|
|
2038
|
+
* * SQL Data Type: nvarchar(4000)
|
|
1874
2039
|
*/
|
|
1875
2040
|
get RelatedEntityBaseTableCodeName(): string;
|
|
1876
2041
|
/**
|
|
@@ -1891,14 +2056,25 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
1891
2056
|
* * Schema: admin
|
|
1892
2057
|
* * Base Table: UserRecordLog
|
|
1893
2058
|
* * Base View: vwUserRecordLogs
|
|
1894
|
-
* @description Tracks history of user access to records across the system, tracks reads and writes
|
|
2059
|
+
* * @description Tracks history of user access to records across the system, tracks reads and writes
|
|
1895
2060
|
* * Primary Key: ID
|
|
1896
|
-
* * Description: Tracks history of user access to records across the system, tracks reads and writes
|
|
1897
2061
|
* @extends {BaseEntity}
|
|
1898
2062
|
* @class
|
|
1899
2063
|
* @public
|
|
1900
2064
|
*/
|
|
1901
2065
|
export declare class UserRecordLogEntity extends BaseEntity {
|
|
2066
|
+
/**
|
|
2067
|
+
* Loads the User Record Logs record from the database
|
|
2068
|
+
* @param ID: Number - primary key value to load the User Record Logs record.
|
|
2069
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2070
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2071
|
+
* @public
|
|
2072
|
+
* @async
|
|
2073
|
+
* @memberof UserRecordLogEntity
|
|
2074
|
+
* @method
|
|
2075
|
+
* @override
|
|
2076
|
+
*/
|
|
2077
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
1902
2078
|
/**
|
|
1903
2079
|
* * Field Name: ID
|
|
1904
2080
|
* * SQL Data Type: int
|
|
@@ -1993,14 +2169,25 @@ export declare class UserRecordLogEntity extends BaseEntity {
|
|
|
1993
2169
|
* * Schema: admin
|
|
1994
2170
|
* * Base Table: UserView
|
|
1995
2171
|
* * Base View: vwUserViews
|
|
1996
|
-
* @description User Views contain the metadata for the user viewing system of entity data
|
|
2172
|
+
* * @description User Views contain the metadata for the user viewing system of entity data
|
|
1997
2173
|
* * Primary Key: ID
|
|
1998
|
-
* * Description: User Views contain the metadata for the user viewing system of entity data
|
|
1999
2174
|
* @extends {BaseEntity}
|
|
2000
2175
|
* @class
|
|
2001
2176
|
* @public
|
|
2002
2177
|
*/
|
|
2003
2178
|
export declare class UserViewEntity extends BaseEntity {
|
|
2179
|
+
/**
|
|
2180
|
+
* Loads the User Views record from the database
|
|
2181
|
+
* @param ID: Number - primary key value to load the User Views record.
|
|
2182
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2183
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2184
|
+
* @public
|
|
2185
|
+
* @async
|
|
2186
|
+
* @memberof UserViewEntity
|
|
2187
|
+
* @method
|
|
2188
|
+
* @override
|
|
2189
|
+
*/
|
|
2190
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2004
2191
|
/**
|
|
2005
2192
|
* * Field Name: ID
|
|
2006
2193
|
* * SQL Data Type: int
|
|
@@ -2186,14 +2373,25 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2186
2373
|
* * Schema: admin
|
|
2187
2374
|
* * Base Table: CompanyIntegrationRun
|
|
2188
2375
|
* * Base View: vwCompanyIntegrationRuns
|
|
2189
|
-
* @description Audit Trail for each run of a given company integration
|
|
2376
|
+
* * @description Audit Trail for each run of a given company integration
|
|
2190
2377
|
* * Primary Key: ID
|
|
2191
|
-
* * Description: Audit Trail for each run of a given company integration
|
|
2192
2378
|
* @extends {BaseEntity}
|
|
2193
2379
|
* @class
|
|
2194
2380
|
* @public
|
|
2195
2381
|
*/
|
|
2196
2382
|
export declare class CompanyIntegrationRunEntity extends BaseEntity {
|
|
2383
|
+
/**
|
|
2384
|
+
* Loads the Company Integration Runs record from the database
|
|
2385
|
+
* @param ID: Number - primary key value to load the Company Integration Runs record.
|
|
2386
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2387
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2388
|
+
* @public
|
|
2389
|
+
* @async
|
|
2390
|
+
* @memberof CompanyIntegrationRunEntity
|
|
2391
|
+
* @method
|
|
2392
|
+
* @override
|
|
2393
|
+
*/
|
|
2394
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2197
2395
|
/**
|
|
2198
2396
|
* * Field Name: ID
|
|
2199
2397
|
* * SQL Data Type: int
|
|
@@ -2254,14 +2452,25 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
|
|
|
2254
2452
|
* * Schema: admin
|
|
2255
2453
|
* * Base Table: CompanyIntegrationRunDetail
|
|
2256
2454
|
* * Base View: vwCompanyIntegrationRunDetails
|
|
2257
|
-
* @description Record-level details for the audit trail for each integration run
|
|
2455
|
+
* * @description Record-level details for the audit trail for each integration run
|
|
2258
2456
|
* * Primary Key: ID
|
|
2259
|
-
* * Description: Record-level details for the audit trail for each integration run
|
|
2260
2457
|
* @extends {BaseEntity}
|
|
2261
2458
|
* @class
|
|
2262
2459
|
* @public
|
|
2263
2460
|
*/
|
|
2264
2461
|
export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
|
|
2462
|
+
/**
|
|
2463
|
+
* Loads the Company Integration Run Details record from the database
|
|
2464
|
+
* @param ID: Number - primary key value to load the Company Integration Run Details record.
|
|
2465
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2466
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2467
|
+
* @public
|
|
2468
|
+
* @async
|
|
2469
|
+
* @memberof CompanyIntegrationRunDetailEntity
|
|
2470
|
+
* @method
|
|
2471
|
+
* @override
|
|
2472
|
+
*/
|
|
2473
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2265
2474
|
/**
|
|
2266
2475
|
* * Field Name: ID
|
|
2267
2476
|
* * SQL Data Type: int
|
|
@@ -2336,12 +2545,23 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
|
|
|
2336
2545
|
* * Base Table: ErrorLog
|
|
2337
2546
|
* * Base View: vwErrorLogs
|
|
2338
2547
|
* * Primary Key: ID
|
|
2339
|
-
* * Description: null
|
|
2340
2548
|
* @extends {BaseEntity}
|
|
2341
2549
|
* @class
|
|
2342
2550
|
* @public
|
|
2343
2551
|
*/
|
|
2344
2552
|
export declare class ErrorLogEntity extends BaseEntity {
|
|
2553
|
+
/**
|
|
2554
|
+
* Loads the Error Logs record from the database
|
|
2555
|
+
* @param ID: Number - primary key value to load the Error Logs record.
|
|
2556
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2557
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2558
|
+
* @public
|
|
2559
|
+
* @async
|
|
2560
|
+
* @memberof ErrorLogEntity
|
|
2561
|
+
* @method
|
|
2562
|
+
* @override
|
|
2563
|
+
*/
|
|
2564
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2345
2565
|
/**
|
|
2346
2566
|
* * Field Name: ID
|
|
2347
2567
|
* * SQL Data Type: int
|
|
@@ -2415,12 +2635,23 @@ export declare class ErrorLogEntity extends BaseEntity {
|
|
|
2415
2635
|
* * Base Table: Application
|
|
2416
2636
|
* * Base View: vwApplications
|
|
2417
2637
|
* * Primary Key: ID
|
|
2418
|
-
* * Description: null
|
|
2419
2638
|
* @extends {BaseEntity}
|
|
2420
2639
|
* @class
|
|
2421
2640
|
* @public
|
|
2422
2641
|
*/
|
|
2423
2642
|
export declare class ApplicationEntity extends BaseEntity {
|
|
2643
|
+
/**
|
|
2644
|
+
* Loads the Applications record from the database
|
|
2645
|
+
* @param ID: Number - primary key value to load the Applications record.
|
|
2646
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2647
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2648
|
+
* @public
|
|
2649
|
+
* @async
|
|
2650
|
+
* @memberof ApplicationEntity
|
|
2651
|
+
* @method
|
|
2652
|
+
* @override
|
|
2653
|
+
*/
|
|
2654
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2424
2655
|
/**
|
|
2425
2656
|
* * Field Name: ID
|
|
2426
2657
|
* * SQL Data Type: int
|
|
@@ -2459,12 +2690,23 @@ export declare class ApplicationEntity extends BaseEntity {
|
|
|
2459
2690
|
* * Base Table: ApplicationEntity
|
|
2460
2691
|
* * Base View: vwApplicationEntities
|
|
2461
2692
|
* * Primary Key: ID
|
|
2462
|
-
* * Description: null
|
|
2463
2693
|
* @extends {BaseEntity}
|
|
2464
2694
|
* @class
|
|
2465
2695
|
* @public
|
|
2466
2696
|
*/
|
|
2467
2697
|
export declare class ApplicationEntityEntity extends BaseEntity {
|
|
2698
|
+
/**
|
|
2699
|
+
* Loads the Application Entities record from the database
|
|
2700
|
+
* @param ID: Number - primary key value to load the Application Entities record.
|
|
2701
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2702
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2703
|
+
* @public
|
|
2704
|
+
* @async
|
|
2705
|
+
* @memberof ApplicationEntityEntity
|
|
2706
|
+
* @method
|
|
2707
|
+
* @override
|
|
2708
|
+
*/
|
|
2709
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2468
2710
|
/**
|
|
2469
2711
|
* * Field Name: ID
|
|
2470
2712
|
* * SQL Data Type: int
|
|
@@ -2539,13 +2781,13 @@ export declare class ApplicationEntityEntity extends BaseEntity {
|
|
|
2539
2781
|
/**
|
|
2540
2782
|
* * Field Name: EntityClassName
|
|
2541
2783
|
* * Display Name: Entity Class Name
|
|
2542
|
-
* * SQL Data Type: nvarchar(
|
|
2784
|
+
* * SQL Data Type: nvarchar(4000)
|
|
2543
2785
|
*/
|
|
2544
2786
|
get EntityClassName(): string;
|
|
2545
2787
|
/**
|
|
2546
2788
|
* * Field Name: EntityBaseTableCodeName
|
|
2547
2789
|
* * Display Name: Entity Base Table Code Name
|
|
2548
|
-
* * SQL Data Type: nvarchar(
|
|
2790
|
+
* * SQL Data Type: nvarchar(4000)
|
|
2549
2791
|
*/
|
|
2550
2792
|
get EntityBaseTableCodeName(): string;
|
|
2551
2793
|
}
|
|
@@ -2555,12 +2797,23 @@ export declare class ApplicationEntityEntity extends BaseEntity {
|
|
|
2555
2797
|
* * Base Table: EntityPermission
|
|
2556
2798
|
* * Base View: vwEntityPermissions
|
|
2557
2799
|
* * Primary Key: ID
|
|
2558
|
-
* * Description: null
|
|
2559
2800
|
* @extends {BaseEntity}
|
|
2560
2801
|
* @class
|
|
2561
2802
|
* @public
|
|
2562
2803
|
*/
|
|
2563
2804
|
export declare class EntityPermissionEntity extends BaseEntity {
|
|
2805
|
+
/**
|
|
2806
|
+
* Loads the Entity Permissions record from the database
|
|
2807
|
+
* @param ID: Number - primary key value to load the Entity Permissions record.
|
|
2808
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2809
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2810
|
+
* @public
|
|
2811
|
+
* @async
|
|
2812
|
+
* @memberof EntityPermissionEntity
|
|
2813
|
+
* @method
|
|
2814
|
+
* @override
|
|
2815
|
+
*/
|
|
2816
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2564
2817
|
/**
|
|
2565
2818
|
* * Field Name: ID
|
|
2566
2819
|
* * SQL Data Type: int
|
|
@@ -2702,12 +2955,23 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
2702
2955
|
* * Base Table: UserApplicationEntity
|
|
2703
2956
|
* * Base View: vwUserApplicationEntities
|
|
2704
2957
|
* * Primary Key: ID
|
|
2705
|
-
* * Description: null
|
|
2706
2958
|
* @extends {BaseEntity}
|
|
2707
2959
|
* @class
|
|
2708
2960
|
* @public
|
|
2709
2961
|
*/
|
|
2710
2962
|
export declare class UserApplicationEntityEntity extends BaseEntity {
|
|
2963
|
+
/**
|
|
2964
|
+
* Loads the User Application Entities record from the database
|
|
2965
|
+
* @param ID: Number - primary key value to load the User Application Entities record.
|
|
2966
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2967
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2968
|
+
* @public
|
|
2969
|
+
* @async
|
|
2970
|
+
* @memberof UserApplicationEntityEntity
|
|
2971
|
+
* @method
|
|
2972
|
+
* @override
|
|
2973
|
+
*/
|
|
2974
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2711
2975
|
/**
|
|
2712
2976
|
* * Field Name: ID
|
|
2713
2977
|
* * SQL Data Type: int
|
|
@@ -2761,12 +3025,23 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
|
|
|
2761
3025
|
* * Base Table: UserApplication
|
|
2762
3026
|
* * Base View: vwUserApplications
|
|
2763
3027
|
* * Primary Key: ID
|
|
2764
|
-
* * Description: null
|
|
2765
3028
|
* @extends {BaseEntity}
|
|
2766
3029
|
* @class
|
|
2767
3030
|
* @public
|
|
2768
3031
|
*/
|
|
2769
3032
|
export declare class UserApplicationEntity extends BaseEntity {
|
|
3033
|
+
/**
|
|
3034
|
+
* Loads the User Applications record from the database
|
|
3035
|
+
* @param ID: Number - primary key value to load the User Applications record.
|
|
3036
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3037
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3038
|
+
* @public
|
|
3039
|
+
* @async
|
|
3040
|
+
* @memberof UserApplicationEntity
|
|
3041
|
+
* @method
|
|
3042
|
+
* @override
|
|
3043
|
+
*/
|
|
3044
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2770
3045
|
/**
|
|
2771
3046
|
* * Field Name: ID
|
|
2772
3047
|
* * SQL Data Type: int
|
|
@@ -2822,12 +3097,23 @@ export declare class UserApplicationEntity extends BaseEntity {
|
|
|
2822
3097
|
* * Base Table: CompanyIntegrationRunAPILog
|
|
2823
3098
|
* * Base View: vwCompanyIntegrationRunAPILogs
|
|
2824
3099
|
* * Primary Key: ID
|
|
2825
|
-
* * Description: null
|
|
2826
3100
|
* @extends {BaseEntity}
|
|
2827
3101
|
* @class
|
|
2828
3102
|
* @public
|
|
2829
3103
|
*/
|
|
2830
3104
|
export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
|
|
3105
|
+
/**
|
|
3106
|
+
* Loads the Company Integration Run API Logs record from the database
|
|
3107
|
+
* @param ID: Number - primary key value to load the Company Integration Run API Logs record.
|
|
3108
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3109
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3110
|
+
* @public
|
|
3111
|
+
* @async
|
|
3112
|
+
* @memberof CompanyIntegrationRunAPILogEntity
|
|
3113
|
+
* @method
|
|
3114
|
+
* @override
|
|
3115
|
+
*/
|
|
3116
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2831
3117
|
/**
|
|
2832
3118
|
* * Field Name: ID
|
|
2833
3119
|
* * SQL Data Type: int
|
|
@@ -2883,12 +3169,23 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
|
|
|
2883
3169
|
* * Base Table: List
|
|
2884
3170
|
* * Base View: vwLists
|
|
2885
3171
|
* * Primary Key: ID
|
|
2886
|
-
* * Description: null
|
|
2887
3172
|
* @extends {BaseEntity}
|
|
2888
3173
|
* @class
|
|
2889
3174
|
* @public
|
|
2890
3175
|
*/
|
|
2891
3176
|
export declare class ListEntity extends BaseEntity {
|
|
3177
|
+
/**
|
|
3178
|
+
* Loads the Lists record from the database
|
|
3179
|
+
* @param ID: Number - primary key value to load the Lists record.
|
|
3180
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3181
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3182
|
+
* @public
|
|
3183
|
+
* @async
|
|
3184
|
+
* @memberof ListEntity
|
|
3185
|
+
* @method
|
|
3186
|
+
* @override
|
|
3187
|
+
*/
|
|
3188
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2892
3189
|
/**
|
|
2893
3190
|
* * Field Name: ID
|
|
2894
3191
|
* * SQL Data Type: int
|
|
@@ -2970,12 +3267,23 @@ export declare class ListEntity extends BaseEntity {
|
|
|
2970
3267
|
* * Base Table: ListDetail
|
|
2971
3268
|
* * Base View: vwListDetails
|
|
2972
3269
|
* * Primary Key: ID
|
|
2973
|
-
* * Description: null
|
|
2974
3270
|
* @extends {BaseEntity}
|
|
2975
3271
|
* @class
|
|
2976
3272
|
* @public
|
|
2977
3273
|
*/
|
|
2978
3274
|
export declare class ListDetailEntity extends BaseEntity {
|
|
3275
|
+
/**
|
|
3276
|
+
* Loads the List Details record from the database
|
|
3277
|
+
* @param ID: Number - primary key value to load the List Details record.
|
|
3278
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3279
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3280
|
+
* @public
|
|
3281
|
+
* @async
|
|
3282
|
+
* @memberof ListDetailEntity
|
|
3283
|
+
* @method
|
|
3284
|
+
* @override
|
|
3285
|
+
*/
|
|
3286
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
2979
3287
|
/**
|
|
2980
3288
|
* * Field Name: ID
|
|
2981
3289
|
* * SQL Data Type: int
|
|
@@ -3010,12 +3318,23 @@ export declare class ListDetailEntity extends BaseEntity {
|
|
|
3010
3318
|
* * Base Table: UserViewRun
|
|
3011
3319
|
* * Base View: vwUserViewRuns
|
|
3012
3320
|
* * Primary Key: ID
|
|
3013
|
-
* * Description: null
|
|
3014
3321
|
* @extends {BaseEntity}
|
|
3015
3322
|
* @class
|
|
3016
3323
|
* @public
|
|
3017
3324
|
*/
|
|
3018
3325
|
export declare class UserViewRunEntity extends BaseEntity {
|
|
3326
|
+
/**
|
|
3327
|
+
* Loads the User View Runs record from the database
|
|
3328
|
+
* @param ID: Number - primary key value to load the User View Runs record.
|
|
3329
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3330
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3331
|
+
* @public
|
|
3332
|
+
* @async
|
|
3333
|
+
* @memberof UserViewRunEntity
|
|
3334
|
+
* @method
|
|
3335
|
+
* @override
|
|
3336
|
+
*/
|
|
3337
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3019
3338
|
/**
|
|
3020
3339
|
* * Field Name: ID
|
|
3021
3340
|
* * SQL Data Type: int
|
|
@@ -3063,12 +3382,23 @@ export declare class UserViewRunEntity extends BaseEntity {
|
|
|
3063
3382
|
* * Base Table: UserViewRunDetail
|
|
3064
3383
|
* * Base View: vwUserViewRunDetails
|
|
3065
3384
|
* * Primary Key: ID
|
|
3066
|
-
* * Description: null
|
|
3067
3385
|
* @extends {BaseEntity}
|
|
3068
3386
|
* @class
|
|
3069
3387
|
* @public
|
|
3070
3388
|
*/
|
|
3071
3389
|
export declare class UserViewRunDetailEntity extends BaseEntity {
|
|
3390
|
+
/**
|
|
3391
|
+
* Loads the User View Run Details record from the database
|
|
3392
|
+
* @param ID: Number - primary key value to load the User View Run Details record.
|
|
3393
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3394
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3395
|
+
* @public
|
|
3396
|
+
* @async
|
|
3397
|
+
* @memberof UserViewRunDetailEntity
|
|
3398
|
+
* @method
|
|
3399
|
+
* @override
|
|
3400
|
+
*/
|
|
3401
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3072
3402
|
/**
|
|
3073
3403
|
* * Field Name: ID
|
|
3074
3404
|
* * SQL Data Type: int
|
|
@@ -3108,12 +3438,23 @@ export declare class UserViewRunDetailEntity extends BaseEntity {
|
|
|
3108
3438
|
* * Base Table: WorkflowRun
|
|
3109
3439
|
* * Base View: vwWorkflowRuns
|
|
3110
3440
|
* * Primary Key: ID
|
|
3111
|
-
* * Description: null
|
|
3112
3441
|
* @extends {BaseEntity}
|
|
3113
3442
|
* @class
|
|
3114
3443
|
* @public
|
|
3115
3444
|
*/
|
|
3116
3445
|
export declare class WorkflowRunEntity extends BaseEntity {
|
|
3446
|
+
/**
|
|
3447
|
+
* Loads the Workflow Runs record from the database
|
|
3448
|
+
* @param ID: Number - primary key value to load the Workflow Runs record.
|
|
3449
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3450
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3451
|
+
* @public
|
|
3452
|
+
* @async
|
|
3453
|
+
* @memberof WorkflowRunEntity
|
|
3454
|
+
* @method
|
|
3455
|
+
* @override
|
|
3456
|
+
*/
|
|
3457
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3117
3458
|
/**
|
|
3118
3459
|
* * Field Name: ID
|
|
3119
3460
|
* * SQL Data Type: int
|
|
@@ -3180,12 +3521,23 @@ export declare class WorkflowRunEntity extends BaseEntity {
|
|
|
3180
3521
|
* * Base Table: Workflow
|
|
3181
3522
|
* * Base View: vwWorkflows
|
|
3182
3523
|
* * Primary Key: ID
|
|
3183
|
-
* * Description: null
|
|
3184
3524
|
* @extends {BaseEntity}
|
|
3185
3525
|
* @class
|
|
3186
3526
|
* @public
|
|
3187
3527
|
*/
|
|
3188
3528
|
export declare class WorkflowEntity extends BaseEntity {
|
|
3529
|
+
/**
|
|
3530
|
+
* Loads the Workflows record from the database
|
|
3531
|
+
* @param ID: Number - primary key value to load the Workflows record.
|
|
3532
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3533
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3534
|
+
* @public
|
|
3535
|
+
* @async
|
|
3536
|
+
* @memberof WorkflowEntity
|
|
3537
|
+
* @method
|
|
3538
|
+
* @override
|
|
3539
|
+
*/
|
|
3540
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3189
3541
|
/**
|
|
3190
3542
|
* * Field Name: ID
|
|
3191
3543
|
* * SQL Data Type: int
|
|
@@ -3247,12 +3599,23 @@ export declare class WorkflowEntity extends BaseEntity {
|
|
|
3247
3599
|
* * Base Table: WorkflowEngine
|
|
3248
3600
|
* * Base View: vwWorkflowEngines
|
|
3249
3601
|
* * Primary Key: ID
|
|
3250
|
-
* * Description: null
|
|
3251
3602
|
* @extends {BaseEntity}
|
|
3252
3603
|
* @class
|
|
3253
3604
|
* @public
|
|
3254
3605
|
*/
|
|
3255
3606
|
export declare class WorkflowEngineEntity extends BaseEntity {
|
|
3607
|
+
/**
|
|
3608
|
+
* Loads the Workflow Engines record from the database
|
|
3609
|
+
* @param ID: Number - primary key value to load the Workflow Engines record.
|
|
3610
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3611
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3612
|
+
* @public
|
|
3613
|
+
* @async
|
|
3614
|
+
* @memberof WorkflowEngineEntity
|
|
3615
|
+
* @method
|
|
3616
|
+
* @override
|
|
3617
|
+
*/
|
|
3618
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3256
3619
|
/**
|
|
3257
3620
|
* * Field Name: ID
|
|
3258
3621
|
* * SQL Data Type: int
|
|
@@ -3304,14 +3667,25 @@ export declare class WorkflowEngineEntity extends BaseEntity {
|
|
|
3304
3667
|
* * Schema: admin
|
|
3305
3668
|
* * Base Table: RecordChange
|
|
3306
3669
|
* * Base View: vwRecordChanges
|
|
3307
|
-
* @description Tracks history of all pending and complete data changes to records
|
|
3670
|
+
* * @description Tracks history of all pending and complete data changes to records
|
|
3308
3671
|
* * Primary Key: ID
|
|
3309
|
-
* * Description: Tracks history of all pending and complete data changes to records
|
|
3310
3672
|
* @extends {BaseEntity}
|
|
3311
3673
|
* @class
|
|
3312
3674
|
* @public
|
|
3313
3675
|
*/
|
|
3314
3676
|
export declare class RecordChangeEntity extends BaseEntity {
|
|
3677
|
+
/**
|
|
3678
|
+
* Loads the Record Changes record from the database
|
|
3679
|
+
* @param ID: Number - primary key value to load the Record Changes record.
|
|
3680
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3681
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3682
|
+
* @public
|
|
3683
|
+
* @async
|
|
3684
|
+
* @memberof RecordChangeEntity
|
|
3685
|
+
* @method
|
|
3686
|
+
* @override
|
|
3687
|
+
*/
|
|
3688
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3315
3689
|
/**
|
|
3316
3690
|
* * Field Name: ID
|
|
3317
3691
|
* * SQL Data Type: int
|
|
@@ -3401,12 +3775,23 @@ export declare class RecordChangeEntity extends BaseEntity {
|
|
|
3401
3775
|
* * Base Table: UserRole
|
|
3402
3776
|
* * Base View: vwUserRoles
|
|
3403
3777
|
* * Primary Key: ID
|
|
3404
|
-
* * Description: null
|
|
3405
3778
|
* @extends {BaseEntity}
|
|
3406
3779
|
* @class
|
|
3407
3780
|
* @public
|
|
3408
3781
|
*/
|
|
3409
3782
|
export declare class UserRoleEntity extends BaseEntity {
|
|
3783
|
+
/**
|
|
3784
|
+
* Loads the User Roles record from the database
|
|
3785
|
+
* @param ID: Number - primary key value to load the User Roles record.
|
|
3786
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3787
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3788
|
+
* @public
|
|
3789
|
+
* @async
|
|
3790
|
+
* @memberof UserRoleEntity
|
|
3791
|
+
* @method
|
|
3792
|
+
* @override
|
|
3793
|
+
*/
|
|
3794
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3410
3795
|
/**
|
|
3411
3796
|
* * Field Name: ID
|
|
3412
3797
|
* * Display Name: ID
|
|
@@ -3456,12 +3841,23 @@ export declare class UserRoleEntity extends BaseEntity {
|
|
|
3456
3841
|
* * Base Table: RowLevelSecurityFilter
|
|
3457
3842
|
* * Base View: vwRowLevelSecurityFilters
|
|
3458
3843
|
* * Primary Key: ID
|
|
3459
|
-
* * Description: null
|
|
3460
3844
|
* @extends {BaseEntity}
|
|
3461
3845
|
* @class
|
|
3462
3846
|
* @public
|
|
3463
3847
|
*/
|
|
3464
3848
|
export declare class RowLevelSecurityFilterEntity extends BaseEntity {
|
|
3849
|
+
/**
|
|
3850
|
+
* Loads the Row Level Security Filters record from the database
|
|
3851
|
+
* @param ID: Number - primary key value to load the Row Level Security Filters record.
|
|
3852
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3853
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3854
|
+
* @public
|
|
3855
|
+
* @async
|
|
3856
|
+
* @memberof RowLevelSecurityFilterEntity
|
|
3857
|
+
* @method
|
|
3858
|
+
* @override
|
|
3859
|
+
*/
|
|
3860
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3465
3861
|
/**
|
|
3466
3862
|
* * Field Name: ID
|
|
3467
3863
|
* * Display Name: ID
|
|
@@ -3510,12 +3906,23 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity {
|
|
|
3510
3906
|
* * Base Table: AuditLog
|
|
3511
3907
|
* * Base View: vwAuditLogs
|
|
3512
3908
|
* * Primary Key: ID
|
|
3513
|
-
* * Description: null
|
|
3514
3909
|
* @extends {BaseEntity}
|
|
3515
3910
|
* @class
|
|
3516
3911
|
* @public
|
|
3517
3912
|
*/
|
|
3518
3913
|
export declare class AuditLogEntity extends BaseEntity {
|
|
3914
|
+
/**
|
|
3915
|
+
* Loads the Audit Logs record from the database
|
|
3916
|
+
* @param ID: Number - primary key value to load the Audit Logs record.
|
|
3917
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3918
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3919
|
+
* @public
|
|
3920
|
+
* @async
|
|
3921
|
+
* @memberof AuditLogEntity
|
|
3922
|
+
* @method
|
|
3923
|
+
* @override
|
|
3924
|
+
*/
|
|
3925
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3519
3926
|
/**
|
|
3520
3927
|
* * Field Name: ID
|
|
3521
3928
|
* * Display Name: ID
|
|
@@ -3616,12 +4023,23 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
3616
4023
|
* * Base Table: Authorization
|
|
3617
4024
|
* * Base View: vwAuthorizations
|
|
3618
4025
|
* * Primary Key: ID
|
|
3619
|
-
* * Description: null
|
|
3620
4026
|
* @extends {BaseEntity}
|
|
3621
4027
|
* @class
|
|
3622
4028
|
* @public
|
|
3623
4029
|
*/
|
|
3624
4030
|
export declare class AuthorizationEntity extends BaseEntity {
|
|
4031
|
+
/**
|
|
4032
|
+
* Loads the Authorizations record from the database
|
|
4033
|
+
* @param ID: Number - primary key value to load the Authorizations record.
|
|
4034
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4035
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4036
|
+
* @public
|
|
4037
|
+
* @async
|
|
4038
|
+
* @memberof AuthorizationEntity
|
|
4039
|
+
* @method
|
|
4040
|
+
* @override
|
|
4041
|
+
*/
|
|
4042
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3625
4043
|
/**
|
|
3626
4044
|
* * Field Name: ID
|
|
3627
4045
|
* * Display Name: ID
|
|
@@ -3687,12 +4105,23 @@ export declare class AuthorizationEntity extends BaseEntity {
|
|
|
3687
4105
|
* * Base Table: AuthorizationRole
|
|
3688
4106
|
* * Base View: vwAuthorizationRoles
|
|
3689
4107
|
* * Primary Key: ID
|
|
3690
|
-
* * Description: null
|
|
3691
4108
|
* @extends {BaseEntity}
|
|
3692
4109
|
* @class
|
|
3693
4110
|
* @public
|
|
3694
4111
|
*/
|
|
3695
4112
|
export declare class AuthorizationRoleEntity extends BaseEntity {
|
|
4113
|
+
/**
|
|
4114
|
+
* Loads the Authorization Roles record from the database
|
|
4115
|
+
* @param ID: Number - primary key value to load the Authorization Roles record.
|
|
4116
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4117
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4118
|
+
* @public
|
|
4119
|
+
* @async
|
|
4120
|
+
* @memberof AuthorizationRoleEntity
|
|
4121
|
+
* @method
|
|
4122
|
+
* @override
|
|
4123
|
+
*/
|
|
4124
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3696
4125
|
/**
|
|
3697
4126
|
* * Field Name: ID
|
|
3698
4127
|
* * Display Name: ID
|
|
@@ -3758,12 +4187,23 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
|
|
|
3758
4187
|
* * Base Table: AuditLogType
|
|
3759
4188
|
* * Base View: vwAuditLogTypes
|
|
3760
4189
|
* * Primary Key: ID
|
|
3761
|
-
* * Description: null
|
|
3762
4190
|
* @extends {BaseEntity}
|
|
3763
4191
|
* @class
|
|
3764
4192
|
* @public
|
|
3765
4193
|
*/
|
|
3766
4194
|
export declare class AuditLogTypeEntity extends BaseEntity {
|
|
4195
|
+
/**
|
|
4196
|
+
* Loads the Audit Log Types record from the database
|
|
4197
|
+
* @param ID: Number - primary key value to load the Audit Log Types record.
|
|
4198
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4199
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4200
|
+
* @public
|
|
4201
|
+
* @async
|
|
4202
|
+
* @memberof AuditLogTypeEntity
|
|
4203
|
+
* @method
|
|
4204
|
+
* @override
|
|
4205
|
+
*/
|
|
4206
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3767
4207
|
/**
|
|
3768
4208
|
* * Field Name: ID
|
|
3769
4209
|
* * Display Name: ID
|
|
@@ -3827,12 +4267,23 @@ export declare class AuditLogTypeEntity extends BaseEntity {
|
|
|
3827
4267
|
* * Base Table: EntityFieldValue
|
|
3828
4268
|
* * Base View: vwEntityFieldValues
|
|
3829
4269
|
* * Primary Key: ID
|
|
3830
|
-
* * Description: null
|
|
3831
4270
|
* @extends {BaseEntity}
|
|
3832
4271
|
* @class
|
|
3833
4272
|
* @public
|
|
3834
4273
|
*/
|
|
3835
4274
|
export declare class EntityFieldValueEntity extends BaseEntity {
|
|
4275
|
+
/**
|
|
4276
|
+
* Loads the Entity Field Values record from the database
|
|
4277
|
+
* @param ID: Number - primary key value to load the Entity Field Values record.
|
|
4278
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4279
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4280
|
+
* @public
|
|
4281
|
+
* @async
|
|
4282
|
+
* @memberof EntityFieldValueEntity
|
|
4283
|
+
* @method
|
|
4284
|
+
* @override
|
|
4285
|
+
*/
|
|
4286
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3836
4287
|
/**
|
|
3837
4288
|
* * Field Name: ID
|
|
3838
4289
|
* * Display Name: ID
|
|
@@ -3910,12 +4361,23 @@ export declare class EntityFieldValueEntity extends BaseEntity {
|
|
|
3910
4361
|
* * Base Table: AIModel
|
|
3911
4362
|
* * Base View: vwAIModels
|
|
3912
4363
|
* * Primary Key: ID
|
|
3913
|
-
* * Description: null
|
|
3914
4364
|
* @extends {BaseEntity}
|
|
3915
4365
|
* @class
|
|
3916
4366
|
* @public
|
|
3917
4367
|
*/
|
|
3918
4368
|
export declare class AIModelEntity extends BaseEntity {
|
|
4369
|
+
/**
|
|
4370
|
+
* Loads the AI Models record from the database
|
|
4371
|
+
* @param ID: Number - primary key value to load the AI Models record.
|
|
4372
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4373
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4374
|
+
* @public
|
|
4375
|
+
* @async
|
|
4376
|
+
* @memberof AIModelEntity
|
|
4377
|
+
* @method
|
|
4378
|
+
* @override
|
|
4379
|
+
*/
|
|
4380
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3919
4381
|
/**
|
|
3920
4382
|
* * Field Name: ID
|
|
3921
4383
|
* * Display Name: ID
|
|
@@ -3994,12 +4456,23 @@ export declare class AIModelEntity extends BaseEntity {
|
|
|
3994
4456
|
* * Base Table: AIAction
|
|
3995
4457
|
* * Base View: vwAIActions
|
|
3996
4458
|
* * Primary Key: ID
|
|
3997
|
-
* * Description: null
|
|
3998
4459
|
* @extends {BaseEntity}
|
|
3999
4460
|
* @class
|
|
4000
4461
|
* @public
|
|
4001
4462
|
*/
|
|
4002
4463
|
export declare class AIActionEntity extends BaseEntity {
|
|
4464
|
+
/**
|
|
4465
|
+
* Loads the AI Actions record from the database
|
|
4466
|
+
* @param ID: Number - primary key value to load the AI Actions record.
|
|
4467
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4468
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4469
|
+
* @public
|
|
4470
|
+
* @async
|
|
4471
|
+
* @memberof AIActionEntity
|
|
4472
|
+
* @method
|
|
4473
|
+
* @override
|
|
4474
|
+
*/
|
|
4475
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4003
4476
|
/**
|
|
4004
4477
|
* * Field Name: ID
|
|
4005
4478
|
* * Display Name: ID
|
|
@@ -4070,12 +4543,23 @@ export declare class AIActionEntity extends BaseEntity {
|
|
|
4070
4543
|
* * Base Table: AIModelAction
|
|
4071
4544
|
* * Base View: vwAIModelActions
|
|
4072
4545
|
* * Primary Key: ID
|
|
4073
|
-
* * Description: null
|
|
4074
4546
|
* @extends {BaseEntity}
|
|
4075
4547
|
* @class
|
|
4076
4548
|
* @public
|
|
4077
4549
|
*/
|
|
4078
4550
|
export declare class AIModelActionEntity extends BaseEntity {
|
|
4551
|
+
/**
|
|
4552
|
+
* Loads the AI Model Actions record from the database
|
|
4553
|
+
* @param ID: Number - primary key value to load the AI Model Actions record.
|
|
4554
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4555
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4556
|
+
* @public
|
|
4557
|
+
* @async
|
|
4558
|
+
* @memberof AIModelActionEntity
|
|
4559
|
+
* @method
|
|
4560
|
+
* @override
|
|
4561
|
+
*/
|
|
4562
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4079
4563
|
/**
|
|
4080
4564
|
* * Field Name: ID
|
|
4081
4565
|
* * Display Name: ID
|
|
@@ -4139,12 +4623,23 @@ export declare class AIModelActionEntity extends BaseEntity {
|
|
|
4139
4623
|
* * Base Table: EntityAIAction
|
|
4140
4624
|
* * Base View: vwEntityAIActions
|
|
4141
4625
|
* * Primary Key: ID
|
|
4142
|
-
* * Description: null
|
|
4143
4626
|
* @extends {BaseEntity}
|
|
4144
4627
|
* @class
|
|
4145
4628
|
* @public
|
|
4146
4629
|
*/
|
|
4147
4630
|
export declare class EntityAIActionEntity extends BaseEntity {
|
|
4631
|
+
/**
|
|
4632
|
+
* Loads the Entity AI Actions record from the database
|
|
4633
|
+
* @param ID: Number - primary key value to load the Entity AI Actions record.
|
|
4634
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4635
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4636
|
+
* @public
|
|
4637
|
+
* @async
|
|
4638
|
+
* @memberof EntityAIActionEntity
|
|
4639
|
+
* @method
|
|
4640
|
+
* @override
|
|
4641
|
+
*/
|
|
4642
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4148
4643
|
/**
|
|
4149
4644
|
* * Field Name: ID
|
|
4150
4645
|
* * Display Name: ID
|
|
@@ -4273,12 +4768,23 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
4273
4768
|
* * Base Table: AIModelType
|
|
4274
4769
|
* * Base View: vwAIModelTypes
|
|
4275
4770
|
* * Primary Key: ID
|
|
4276
|
-
* * Description: null
|
|
4277
4771
|
* @extends {BaseEntity}
|
|
4278
4772
|
* @class
|
|
4279
4773
|
* @public
|
|
4280
4774
|
*/
|
|
4281
4775
|
export declare class AIModelTypeEntity extends BaseEntity {
|
|
4776
|
+
/**
|
|
4777
|
+
* Loads the AI Model Types record from the database
|
|
4778
|
+
* @param ID: Number - primary key value to load the AI Model Types record.
|
|
4779
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4780
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4781
|
+
* @public
|
|
4782
|
+
* @async
|
|
4783
|
+
* @memberof AIModelTypeEntity
|
|
4784
|
+
* @method
|
|
4785
|
+
* @override
|
|
4786
|
+
*/
|
|
4787
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4282
4788
|
/**
|
|
4283
4789
|
* * Field Name: ID
|
|
4284
4790
|
* * Display Name: ID
|
|
@@ -4306,12 +4812,23 @@ export declare class AIModelTypeEntity extends BaseEntity {
|
|
|
4306
4812
|
* * Base Table: QueueType
|
|
4307
4813
|
* * Base View: vwQueueTypes
|
|
4308
4814
|
* * Primary Key: ID
|
|
4309
|
-
* * Description: null
|
|
4310
4815
|
* @extends {BaseEntity}
|
|
4311
4816
|
* @class
|
|
4312
4817
|
* @public
|
|
4313
4818
|
*/
|
|
4314
4819
|
export declare class QueueTypeEntity extends BaseEntity {
|
|
4820
|
+
/**
|
|
4821
|
+
* Loads the Queue Types record from the database
|
|
4822
|
+
* @param ID: Number - primary key value to load the Queue Types record.
|
|
4823
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4824
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4825
|
+
* @public
|
|
4826
|
+
* @async
|
|
4827
|
+
* @memberof QueueTypeEntity
|
|
4828
|
+
* @method
|
|
4829
|
+
* @override
|
|
4830
|
+
*/
|
|
4831
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4315
4832
|
/**
|
|
4316
4833
|
* * Field Name: ID
|
|
4317
4834
|
* * Display Name: ID
|
|
@@ -4361,12 +4878,23 @@ export declare class QueueTypeEntity extends BaseEntity {
|
|
|
4361
4878
|
* * Base Table: Queue
|
|
4362
4879
|
* * Base View: vwQueues
|
|
4363
4880
|
* * Primary Key: ID
|
|
4364
|
-
* * Description: null
|
|
4365
4881
|
* @extends {BaseEntity}
|
|
4366
4882
|
* @class
|
|
4367
4883
|
* @public
|
|
4368
4884
|
*/
|
|
4369
4885
|
export declare class QueueEntity extends BaseEntity {
|
|
4886
|
+
/**
|
|
4887
|
+
* Loads the Queues record from the database
|
|
4888
|
+
* @param ID: Number - primary key value to load the Queues record.
|
|
4889
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4890
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4891
|
+
* @public
|
|
4892
|
+
* @async
|
|
4893
|
+
* @memberof QueueEntity
|
|
4894
|
+
* @method
|
|
4895
|
+
* @override
|
|
4896
|
+
*/
|
|
4897
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4370
4898
|
/**
|
|
4371
4899
|
* * Field Name: ID
|
|
4372
4900
|
* * Display Name: ID
|
|
@@ -4515,12 +5043,23 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
4515
5043
|
* * Base Table: QueueTask
|
|
4516
5044
|
* * Base View: vwQueueTasks
|
|
4517
5045
|
* * Primary Key: ID
|
|
4518
|
-
* * Description: null
|
|
4519
5046
|
* @extends {BaseEntity}
|
|
4520
5047
|
* @class
|
|
4521
5048
|
* @public
|
|
4522
5049
|
*/
|
|
4523
5050
|
export declare class QueueTaskEntity extends BaseEntity {
|
|
5051
|
+
/**
|
|
5052
|
+
* Loads the Queue Tasks record from the database
|
|
5053
|
+
* @param ID: Number - primary key value to load the Queue Tasks record.
|
|
5054
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5055
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5056
|
+
* @public
|
|
5057
|
+
* @async
|
|
5058
|
+
* @memberof QueueTaskEntity
|
|
5059
|
+
* @method
|
|
5060
|
+
* @override
|
|
5061
|
+
*/
|
|
5062
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4524
5063
|
/**
|
|
4525
5064
|
* * Field Name: ID
|
|
4526
5065
|
* * Display Name: ID
|
|
@@ -4599,12 +5138,23 @@ export declare class QueueTaskEntity extends BaseEntity {
|
|
|
4599
5138
|
* * Base Table: Dashboard
|
|
4600
5139
|
* * Base View: vwDashboards
|
|
4601
5140
|
* * Primary Key: ID
|
|
4602
|
-
* * Description: null
|
|
4603
5141
|
* @extends {BaseEntity}
|
|
4604
5142
|
* @class
|
|
4605
5143
|
* @public
|
|
4606
5144
|
*/
|
|
4607
5145
|
export declare class DashboardEntity extends BaseEntity {
|
|
5146
|
+
/**
|
|
5147
|
+
* Loads the Dashboards record from the database
|
|
5148
|
+
* @param ID: Number - primary key value to load the Dashboards record.
|
|
5149
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5150
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5151
|
+
* @public
|
|
5152
|
+
* @async
|
|
5153
|
+
* @memberof DashboardEntity
|
|
5154
|
+
* @method
|
|
5155
|
+
* @override
|
|
5156
|
+
*/
|
|
5157
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4608
5158
|
/**
|
|
4609
5159
|
* * Field Name: ID
|
|
4610
5160
|
* * Display Name: ID
|
|
@@ -4653,12 +5203,23 @@ export declare class DashboardEntity extends BaseEntity {
|
|
|
4653
5203
|
* * Base Table: OutputTriggerType
|
|
4654
5204
|
* * Base View: vwOutputTriggerTypes
|
|
4655
5205
|
* * Primary Key: ID
|
|
4656
|
-
* * Description: null
|
|
4657
5206
|
* @extends {BaseEntity}
|
|
4658
5207
|
* @class
|
|
4659
5208
|
* @public
|
|
4660
5209
|
*/
|
|
4661
5210
|
export declare class OutputTriggerTypeEntity extends BaseEntity {
|
|
5211
|
+
/**
|
|
5212
|
+
* Loads the Output Trigger Types record from the database
|
|
5213
|
+
* @param ID: Number - primary key value to load the Output Trigger Types record.
|
|
5214
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5215
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5216
|
+
* @public
|
|
5217
|
+
* @async
|
|
5218
|
+
* @memberof OutputTriggerTypeEntity
|
|
5219
|
+
* @method
|
|
5220
|
+
* @override
|
|
5221
|
+
*/
|
|
5222
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4662
5223
|
/**
|
|
4663
5224
|
* * Field Name: ID
|
|
4664
5225
|
* * Display Name: ID
|
|
@@ -4686,12 +5247,23 @@ export declare class OutputTriggerTypeEntity extends BaseEntity {
|
|
|
4686
5247
|
* * Base Table: OutputFormatType
|
|
4687
5248
|
* * Base View: vwOutputFormatTypes
|
|
4688
5249
|
* * Primary Key: ID
|
|
4689
|
-
* * Description: null
|
|
4690
5250
|
* @extends {BaseEntity}
|
|
4691
5251
|
* @class
|
|
4692
5252
|
* @public
|
|
4693
5253
|
*/
|
|
4694
5254
|
export declare class OutputFormatTypeEntity extends BaseEntity {
|
|
5255
|
+
/**
|
|
5256
|
+
* Loads the Output Format Types record from the database
|
|
5257
|
+
* @param ID: Number - primary key value to load the Output Format Types record.
|
|
5258
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5259
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5260
|
+
* @public
|
|
5261
|
+
* @async
|
|
5262
|
+
* @memberof OutputFormatTypeEntity
|
|
5263
|
+
* @method
|
|
5264
|
+
* @override
|
|
5265
|
+
*/
|
|
5266
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4695
5267
|
/**
|
|
4696
5268
|
* * Field Name: ID
|
|
4697
5269
|
* * Display Name: ID
|
|
@@ -4726,12 +5298,23 @@ export declare class OutputFormatTypeEntity extends BaseEntity {
|
|
|
4726
5298
|
* * Base Table: OutputDeliveryType
|
|
4727
5299
|
* * Base View: vwOutputDeliveryTypes
|
|
4728
5300
|
* * Primary Key: ID
|
|
4729
|
-
* * Description: null
|
|
4730
5301
|
* @extends {BaseEntity}
|
|
4731
5302
|
* @class
|
|
4732
5303
|
* @public
|
|
4733
5304
|
*/
|
|
4734
5305
|
export declare class OutputDeliveryTypeEntity extends BaseEntity {
|
|
5306
|
+
/**
|
|
5307
|
+
* Loads the Output Delivery Types record from the database
|
|
5308
|
+
* @param ID: Number - primary key value to load the Output Delivery Types record.
|
|
5309
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5310
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5311
|
+
* @public
|
|
5312
|
+
* @async
|
|
5313
|
+
* @memberof OutputDeliveryTypeEntity
|
|
5314
|
+
* @method
|
|
5315
|
+
* @override
|
|
5316
|
+
*/
|
|
5317
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4735
5318
|
/**
|
|
4736
5319
|
* * Field Name: ID
|
|
4737
5320
|
* * Display Name: ID
|
|
@@ -4759,12 +5342,23 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity {
|
|
|
4759
5342
|
* * Base Table: Report
|
|
4760
5343
|
* * Base View: vwReports
|
|
4761
5344
|
* * Primary Key: ID
|
|
4762
|
-
* * Description: null
|
|
4763
5345
|
* @extends {BaseEntity}
|
|
4764
5346
|
* @class
|
|
4765
5347
|
* @public
|
|
4766
5348
|
*/
|
|
4767
5349
|
export declare class ReportEntity extends BaseEntity {
|
|
5350
|
+
/**
|
|
5351
|
+
* Loads the Reports record from the database
|
|
5352
|
+
* @param ID: Number - primary key value to load the Reports record.
|
|
5353
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5354
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5355
|
+
* @public
|
|
5356
|
+
* @async
|
|
5357
|
+
* @memberof ReportEntity
|
|
5358
|
+
* @method
|
|
5359
|
+
* @override
|
|
5360
|
+
*/
|
|
5361
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4768
5362
|
/**
|
|
4769
5363
|
* * Field Name: ID
|
|
4770
5364
|
* * Display Name: ID
|
|
@@ -4942,12 +5536,23 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
4942
5536
|
* * Base Table: ReportSnapshot
|
|
4943
5537
|
* * Base View: vwReportSnapshots
|
|
4944
5538
|
* * Primary Key: ID
|
|
4945
|
-
* * Description: null
|
|
4946
5539
|
* @extends {BaseEntity}
|
|
4947
5540
|
* @class
|
|
4948
5541
|
* @public
|
|
4949
5542
|
*/
|
|
4950
5543
|
export declare class ReportSnapshotEntity extends BaseEntity {
|
|
5544
|
+
/**
|
|
5545
|
+
* Loads the Report Snapshots record from the database
|
|
5546
|
+
* @param ID: Number - primary key value to load the Report Snapshots record.
|
|
5547
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5548
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5549
|
+
* @public
|
|
5550
|
+
* @async
|
|
5551
|
+
* @memberof ReportSnapshotEntity
|
|
5552
|
+
* @method
|
|
5553
|
+
* @override
|
|
5554
|
+
*/
|
|
5555
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4951
5556
|
/**
|
|
4952
5557
|
* * Field Name: ID
|
|
4953
5558
|
* * Display Name: ID
|
|
@@ -5003,12 +5608,23 @@ export declare class ReportSnapshotEntity extends BaseEntity {
|
|
|
5003
5608
|
* * Base Table: ResourceType
|
|
5004
5609
|
* * Base View: vwResourceTypes
|
|
5005
5610
|
* * Primary Key: ID
|
|
5006
|
-
* * Description: null
|
|
5007
5611
|
* @extends {BaseEntity}
|
|
5008
5612
|
* @class
|
|
5009
5613
|
* @public
|
|
5010
5614
|
*/
|
|
5011
5615
|
export declare class ResourceTypeEntity extends BaseEntity {
|
|
5616
|
+
/**
|
|
5617
|
+
* Loads the Resource Types record from the database
|
|
5618
|
+
* @param ID: Number - primary key value to load the Resource Types record.
|
|
5619
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5620
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5621
|
+
* @public
|
|
5622
|
+
* @async
|
|
5623
|
+
* @memberof ResourceTypeEntity
|
|
5624
|
+
* @method
|
|
5625
|
+
* @override
|
|
5626
|
+
*/
|
|
5627
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5012
5628
|
/**
|
|
5013
5629
|
* * Field Name: ID
|
|
5014
5630
|
* * Display Name: ID
|
|
@@ -5078,12 +5694,23 @@ export declare class ResourceTypeEntity extends BaseEntity {
|
|
|
5078
5694
|
* * Base Table: Tag
|
|
5079
5695
|
* * Base View: vwTags
|
|
5080
5696
|
* * Primary Key: ID
|
|
5081
|
-
* * Description: null
|
|
5082
5697
|
* @extends {BaseEntity}
|
|
5083
5698
|
* @class
|
|
5084
5699
|
* @public
|
|
5085
5700
|
*/
|
|
5086
5701
|
export declare class TagEntity extends BaseEntity {
|
|
5702
|
+
/**
|
|
5703
|
+
* Loads the Tags record from the database
|
|
5704
|
+
* @param ID: Number - primary key value to load the Tags record.
|
|
5705
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5706
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5707
|
+
* @public
|
|
5708
|
+
* @async
|
|
5709
|
+
* @memberof TagEntity
|
|
5710
|
+
* @method
|
|
5711
|
+
* @override
|
|
5712
|
+
*/
|
|
5713
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5087
5714
|
/**
|
|
5088
5715
|
* * Field Name: ID
|
|
5089
5716
|
* * Display Name: ID
|
|
@@ -5132,12 +5759,23 @@ export declare class TagEntity extends BaseEntity {
|
|
|
5132
5759
|
* * Base Table: TaggedItem
|
|
5133
5760
|
* * Base View: vwTaggedItems
|
|
5134
5761
|
* * Primary Key: ID
|
|
5135
|
-
* * Description: null
|
|
5136
5762
|
* @extends {BaseEntity}
|
|
5137
5763
|
* @class
|
|
5138
5764
|
* @public
|
|
5139
5765
|
*/
|
|
5140
5766
|
export declare class TaggedItemEntity extends BaseEntity {
|
|
5767
|
+
/**
|
|
5768
|
+
* Loads the Tagged Items record from the database
|
|
5769
|
+
* @param ID: Number - primary key value to load the Tagged Items record.
|
|
5770
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5771
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5772
|
+
* @public
|
|
5773
|
+
* @async
|
|
5774
|
+
* @memberof TaggedItemEntity
|
|
5775
|
+
* @method
|
|
5776
|
+
* @override
|
|
5777
|
+
*/
|
|
5778
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5141
5779
|
/**
|
|
5142
5780
|
* * Field Name: ID
|
|
5143
5781
|
* * Display Name: ID
|
|
@@ -5186,12 +5824,23 @@ export declare class TaggedItemEntity extends BaseEntity {
|
|
|
5186
5824
|
* * Base Table: Workspace
|
|
5187
5825
|
* * Base View: vwWorkspaces
|
|
5188
5826
|
* * Primary Key: ID
|
|
5189
|
-
* * Description: null
|
|
5190
5827
|
* @extends {BaseEntity}
|
|
5191
5828
|
* @class
|
|
5192
5829
|
* @public
|
|
5193
5830
|
*/
|
|
5194
5831
|
export declare class WorkspaceEntity extends BaseEntity {
|
|
5832
|
+
/**
|
|
5833
|
+
* Loads the Workspaces record from the database
|
|
5834
|
+
* @param ID: Number - primary key value to load the Workspaces record.
|
|
5835
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5836
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5837
|
+
* @public
|
|
5838
|
+
* @async
|
|
5839
|
+
* @memberof WorkspaceEntity
|
|
5840
|
+
* @method
|
|
5841
|
+
* @override
|
|
5842
|
+
*/
|
|
5843
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5195
5844
|
/**
|
|
5196
5845
|
* * Field Name: ID
|
|
5197
5846
|
* * Display Name: ID
|
|
@@ -5233,12 +5882,23 @@ export declare class WorkspaceEntity extends BaseEntity {
|
|
|
5233
5882
|
* * Base Table: WorkspaceItem
|
|
5234
5883
|
* * Base View: vwWorkspaceItems
|
|
5235
5884
|
* * Primary Key: ID
|
|
5236
|
-
* * Description: null
|
|
5237
5885
|
* @extends {BaseEntity}
|
|
5238
5886
|
* @class
|
|
5239
5887
|
* @public
|
|
5240
5888
|
*/
|
|
5241
5889
|
export declare class WorkspaceItemEntity extends BaseEntity {
|
|
5890
|
+
/**
|
|
5891
|
+
* Loads the Workspace Items record from the database
|
|
5892
|
+
* @param ID: Number - primary key value to load the Workspace Items record.
|
|
5893
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5894
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5895
|
+
* @public
|
|
5896
|
+
* @async
|
|
5897
|
+
* @memberof WorkspaceItemEntity
|
|
5898
|
+
* @method
|
|
5899
|
+
* @override
|
|
5900
|
+
*/
|
|
5901
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5242
5902
|
/**
|
|
5243
5903
|
* * Field Name: ID
|
|
5244
5904
|
* * Display Name: ID
|
|
@@ -5315,12 +5975,23 @@ export declare class WorkspaceItemEntity extends BaseEntity {
|
|
|
5315
5975
|
* * Base Table: Dataset
|
|
5316
5976
|
* * Base View: vwDatasets
|
|
5317
5977
|
* * Primary Key: ID
|
|
5318
|
-
* * Description: null
|
|
5319
5978
|
* @extends {BaseEntity}
|
|
5320
5979
|
* @class
|
|
5321
5980
|
* @public
|
|
5322
5981
|
*/
|
|
5323
5982
|
export declare class DatasetEntity extends BaseEntity {
|
|
5983
|
+
/**
|
|
5984
|
+
* Loads the Datasets record from the database
|
|
5985
|
+
* @param ID: Number - primary key value to load the Datasets record.
|
|
5986
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5987
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5988
|
+
* @public
|
|
5989
|
+
* @async
|
|
5990
|
+
* @memberof DatasetEntity
|
|
5991
|
+
* @method
|
|
5992
|
+
* @override
|
|
5993
|
+
*/
|
|
5994
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5324
5995
|
/**
|
|
5325
5996
|
* * Field Name: ID
|
|
5326
5997
|
* * Display Name: ID
|
|
@@ -5362,12 +6033,23 @@ export declare class DatasetEntity extends BaseEntity {
|
|
|
5362
6033
|
* * Base Table: DatasetItem
|
|
5363
6034
|
* * Base View: vwDatasetItems
|
|
5364
6035
|
* * Primary Key: ID
|
|
5365
|
-
* * Description: null
|
|
5366
6036
|
* @extends {BaseEntity}
|
|
5367
6037
|
* @class
|
|
5368
6038
|
* @public
|
|
5369
6039
|
*/
|
|
5370
6040
|
export declare class DatasetItemEntity extends BaseEntity {
|
|
6041
|
+
/**
|
|
6042
|
+
* Loads the Dataset Items record from the database
|
|
6043
|
+
* @param ID: Number - primary key value to load the Dataset Items record.
|
|
6044
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6045
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6046
|
+
* @public
|
|
6047
|
+
* @async
|
|
6048
|
+
* @memberof DatasetItemEntity
|
|
6049
|
+
* @method
|
|
6050
|
+
* @override
|
|
6051
|
+
*/
|
|
6052
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5371
6053
|
/**
|
|
5372
6054
|
* * Field Name: ID
|
|
5373
6055
|
* * Display Name: ID
|
|
@@ -5453,12 +6135,23 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
5453
6135
|
* * Base Table: ConversationDetail
|
|
5454
6136
|
* * Base View: vwConversationDetails
|
|
5455
6137
|
* * Primary Key: ID
|
|
5456
|
-
* * Description: null
|
|
5457
6138
|
* @extends {BaseEntity}
|
|
5458
6139
|
* @class
|
|
5459
6140
|
* @public
|
|
5460
6141
|
*/
|
|
5461
6142
|
export declare class ConversationDetailEntity extends BaseEntity {
|
|
6143
|
+
/**
|
|
6144
|
+
* Loads the Conversation Details record from the database
|
|
6145
|
+
* @param ID: Number - primary key value to load the Conversation Details record.
|
|
6146
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6147
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6148
|
+
* @public
|
|
6149
|
+
* @async
|
|
6150
|
+
* @memberof ConversationDetailEntity
|
|
6151
|
+
* @method
|
|
6152
|
+
* @override
|
|
6153
|
+
*/
|
|
6154
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5462
6155
|
/**
|
|
5463
6156
|
* * Field Name: ID
|
|
5464
6157
|
* * Display Name: ID
|
|
@@ -5529,12 +6222,23 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
5529
6222
|
* * Base Table: Conversation
|
|
5530
6223
|
* * Base View: vwConversations
|
|
5531
6224
|
* * Primary Key: ID
|
|
5532
|
-
* * Description: null
|
|
5533
6225
|
* @extends {BaseEntity}
|
|
5534
6226
|
* @class
|
|
5535
6227
|
* @public
|
|
5536
6228
|
*/
|
|
5537
6229
|
export declare class ConversationEntity extends BaseEntity {
|
|
6230
|
+
/**
|
|
6231
|
+
* Loads the Conversations record from the database
|
|
6232
|
+
* @param ID: Number - primary key value to load the Conversations record.
|
|
6233
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6234
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6235
|
+
* @public
|
|
6236
|
+
* @async
|
|
6237
|
+
* @memberof ConversationEntity
|
|
6238
|
+
* @method
|
|
6239
|
+
* @override
|
|
6240
|
+
*/
|
|
6241
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5538
6242
|
/**
|
|
5539
6243
|
* * Field Name: ID
|
|
5540
6244
|
* * Display Name: ID
|
|
@@ -5590,12 +6294,23 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
5590
6294
|
* * Base Table: UserNotification
|
|
5591
6295
|
* * Base View: vwUserNotifications
|
|
5592
6296
|
* * Primary Key: ID
|
|
5593
|
-
* * Description: null
|
|
5594
6297
|
* @extends {BaseEntity}
|
|
5595
6298
|
* @class
|
|
5596
6299
|
* @public
|
|
5597
6300
|
*/
|
|
5598
6301
|
export declare class UserNotificationEntity extends BaseEntity {
|
|
6302
|
+
/**
|
|
6303
|
+
* Loads the User Notifications record from the database
|
|
6304
|
+
* @param ID: Number - primary key value to load the User Notifications record.
|
|
6305
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6306
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6307
|
+
* @public
|
|
6308
|
+
* @async
|
|
6309
|
+
* @memberof UserNotificationEntity
|
|
6310
|
+
* @method
|
|
6311
|
+
* @override
|
|
6312
|
+
*/
|
|
6313
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5599
6314
|
/**
|
|
5600
6315
|
* * Field Name: ID
|
|
5601
6316
|
* * Display Name: ID
|
|
@@ -5687,12 +6402,23 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
5687
6402
|
* * Base Table: ResourceFolder
|
|
5688
6403
|
* * Base View: vwResourceFolders
|
|
5689
6404
|
* * Primary Key: ID
|
|
5690
|
-
* * Description: null
|
|
5691
6405
|
* @extends {BaseEntity}
|
|
5692
6406
|
* @class
|
|
5693
6407
|
* @public
|
|
5694
6408
|
*/
|
|
5695
6409
|
export declare class ResourceFolderEntity extends BaseEntity {
|
|
6410
|
+
/**
|
|
6411
|
+
* Loads the Resource Folders record from the database
|
|
6412
|
+
* @param ID: Number - primary key value to load the Resource Folders record.
|
|
6413
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6414
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6415
|
+
* @public
|
|
6416
|
+
* @async
|
|
6417
|
+
* @memberof ResourceFolderEntity
|
|
6418
|
+
* @method
|
|
6419
|
+
* @override
|
|
6420
|
+
*/
|
|
6421
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5696
6422
|
/**
|
|
5697
6423
|
* * Field Name: ID
|
|
5698
6424
|
* * Display Name: ID
|
|
@@ -5770,12 +6496,23 @@ export declare class ResourceFolderEntity extends BaseEntity {
|
|
|
5770
6496
|
* * Base Table: SchemaInfo
|
|
5771
6497
|
* * Base View: vwSchemaInfos
|
|
5772
6498
|
* * Primary Key: ID
|
|
5773
|
-
* * Description: null
|
|
5774
6499
|
* @extends {BaseEntity}
|
|
5775
6500
|
* @class
|
|
5776
6501
|
* @public
|
|
5777
6502
|
*/
|
|
5778
6503
|
export declare class SchemaInfoEntity extends BaseEntity {
|
|
6504
|
+
/**
|
|
6505
|
+
* Loads the Schema Info record from the database
|
|
6506
|
+
* @param ID: Number - primary key value to load the Schema Info record.
|
|
6507
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6508
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6509
|
+
* @public
|
|
6510
|
+
* @async
|
|
6511
|
+
* @memberof SchemaInfoEntity
|
|
6512
|
+
* @method
|
|
6513
|
+
* @override
|
|
6514
|
+
*/
|
|
6515
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5779
6516
|
/**
|
|
5780
6517
|
* * Field Name: ID
|
|
5781
6518
|
* * Display Name: ID
|
|
@@ -5831,12 +6568,23 @@ export declare class SchemaInfoEntity extends BaseEntity {
|
|
|
5831
6568
|
* * Base Table: CompanyIntegrationRecordMap
|
|
5832
6569
|
* * Base View: vwCompanyIntegrationRecordMaps
|
|
5833
6570
|
* * Primary Key: ID
|
|
5834
|
-
* * Description: null
|
|
5835
6571
|
* @extends {BaseEntity}
|
|
5836
6572
|
* @class
|
|
5837
6573
|
* @public
|
|
5838
6574
|
*/
|
|
5839
6575
|
export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
|
|
6576
|
+
/**
|
|
6577
|
+
* Loads the Company Integration Record Maps record from the database
|
|
6578
|
+
* @param ID: Number - primary key value to load the Company Integration Record Maps record.
|
|
6579
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6580
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6581
|
+
* @public
|
|
6582
|
+
* @async
|
|
6583
|
+
* @memberof CompanyIntegrationRecordMapEntity
|
|
6584
|
+
* @method
|
|
6585
|
+
* @override
|
|
6586
|
+
*/
|
|
6587
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5840
6588
|
/**
|
|
5841
6589
|
* * Field Name: ID
|
|
5842
6590
|
* * Display Name: ID
|
|
@@ -5900,12 +6648,23 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
|
|
|
5900
6648
|
* * Base Table: RecordMergeLog
|
|
5901
6649
|
* * Base View: vwRecordMergeLogs
|
|
5902
6650
|
* * Primary Key: ID
|
|
5903
|
-
* * Description: null
|
|
5904
6651
|
* @extends {BaseEntity}
|
|
5905
6652
|
* @class
|
|
5906
6653
|
* @public
|
|
5907
6654
|
*/
|
|
5908
6655
|
export declare class RecordMergeLogEntity extends BaseEntity {
|
|
6656
|
+
/**
|
|
6657
|
+
* Loads the Record Merge Logs record from the database
|
|
6658
|
+
* @param ID: Number - primary key value to load the Record Merge Logs record.
|
|
6659
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6660
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6661
|
+
* @public
|
|
6662
|
+
* @async
|
|
6663
|
+
* @memberof RecordMergeLogEntity
|
|
6664
|
+
* @method
|
|
6665
|
+
* @override
|
|
6666
|
+
*/
|
|
6667
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5909
6668
|
/**
|
|
5910
6669
|
* * Field Name: ID
|
|
5911
6670
|
* * Display Name: ID
|
|
@@ -6020,12 +6779,23 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
6020
6779
|
* * Base Table: RecordMergeDeletionLog
|
|
6021
6780
|
* * Base View: vwRecordMergeDeletionLogs
|
|
6022
6781
|
* * Primary Key: ID
|
|
6023
|
-
* * Description: null
|
|
6024
6782
|
* @extends {BaseEntity}
|
|
6025
6783
|
* @class
|
|
6026
6784
|
* @public
|
|
6027
6785
|
*/
|
|
6028
6786
|
export declare class RecordMergeDeletionLogEntity extends BaseEntity {
|
|
6787
|
+
/**
|
|
6788
|
+
* Loads the Record Merge Deletion Logs record from the database
|
|
6789
|
+
* @param ID: Number - primary key value to load the Record Merge Deletion Logs record.
|
|
6790
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6791
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6792
|
+
* @public
|
|
6793
|
+
* @async
|
|
6794
|
+
* @memberof RecordMergeDeletionLogEntity
|
|
6795
|
+
* @method
|
|
6796
|
+
* @override
|
|
6797
|
+
*/
|
|
6798
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
6029
6799
|
/**
|
|
6030
6800
|
* * Field Name: ID
|
|
6031
6801
|
* * Display Name: ID
|