@memberjunction/core-entities 0.9.150 → 0.9.152

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.
@@ -1,7 +1,7 @@
1
1
  import { BaseEntity, EntitySaveOptions } from "@memberjunction/core";
2
2
  /**
3
3
  * Companies - strongly typed entity sub-class
4
- * * Schema: admin
4
+ * * Schema: __mj
5
5
  * * Base Table: Company
6
6
  * * Base View: vwCompanies
7
7
  * * Primary Key: ID
@@ -12,7 +12,7 @@ import { BaseEntity, EntitySaveOptions } from "@memberjunction/core";
12
12
  export declare class CompanyEntity extends BaseEntity {
13
13
  /**
14
14
  * Loads the Companies record from the database
15
- * @param ID: Number - primary key value to load the Companies record.
15
+ * @param ID: number - primary key value to load the Companies record.
16
16
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
17
17
  * @returns {Promise<boolean>} - true if successful, false otherwise
18
18
  * @public
@@ -21,7 +21,7 @@ export declare class CompanyEntity extends BaseEntity {
21
21
  * @method
22
22
  * @override
23
23
  */
24
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
24
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
25
25
  /**
26
26
  * * Field Name: ID
27
27
  * * SQL Data Type: int
@@ -76,7 +76,7 @@ export declare class CompanyEntity extends BaseEntity {
76
76
  }
77
77
  /**
78
78
  * Employees - strongly typed entity sub-class
79
- * * Schema: admin
79
+ * * Schema: __mj
80
80
  * * Base Table: Employee
81
81
  * * Base View: vwEmployees
82
82
  * * Primary Key: ID
@@ -87,7 +87,7 @@ export declare class CompanyEntity extends BaseEntity {
87
87
  export declare class EmployeeEntity extends BaseEntity {
88
88
  /**
89
89
  * Loads the Employees record from the database
90
- * @param ID: Number - primary key value to load the Employees record.
90
+ * @param ID: number - primary key value to load the Employees record.
91
91
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
92
92
  * @returns {Promise<boolean>} - true if successful, false otherwise
93
93
  * @public
@@ -96,7 +96,7 @@ export declare class EmployeeEntity extends BaseEntity {
96
96
  * @method
97
97
  * @override
98
98
  */
99
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
99
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
100
100
  /**
101
101
  * * Field Name: ID
102
102
  * * SQL Data Type: int
@@ -211,7 +211,7 @@ export declare class EmployeeEntity extends BaseEntity {
211
211
  }
212
212
  /**
213
213
  * User Favorites - strongly typed entity sub-class
214
- * * Schema: admin
214
+ * * Schema: __mj
215
215
  * * Base Table: UserFavorite
216
216
  * * Base View: vwUserFavorites
217
217
  * * Primary Key: ID
@@ -222,7 +222,7 @@ export declare class EmployeeEntity extends BaseEntity {
222
222
  export declare class UserFavoriteEntity extends BaseEntity {
223
223
  /**
224
224
  * Loads the User Favorites record from the database
225
- * @param ID: Number - primary key value to load the User Favorites record.
225
+ * @param ID: number - primary key value to load the User Favorites record.
226
226
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
227
227
  * @returns {Promise<boolean>} - true if successful, false otherwise
228
228
  * @public
@@ -231,7 +231,7 @@ export declare class UserFavoriteEntity extends BaseEntity {
231
231
  * @method
232
232
  * @override
233
233
  */
234
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
234
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
235
235
  /**
236
236
  * * Field Name: ID
237
237
  * * SQL Data Type: int
@@ -294,7 +294,7 @@ export declare class UserFavoriteEntity extends BaseEntity {
294
294
  }
295
295
  /**
296
296
  * Employee Company Integrations - strongly typed entity sub-class
297
- * * Schema: admin
297
+ * * Schema: __mj
298
298
  * * Base Table: EmployeeCompanyIntegration
299
299
  * * Base View: vwEmployeeCompanyIntegrations
300
300
  * * Primary Key: ID
@@ -305,7 +305,7 @@ export declare class UserFavoriteEntity extends BaseEntity {
305
305
  export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
306
306
  /**
307
307
  * Loads the Employee Company Integrations record from the database
308
- * @param ID: Number - primary key value to load the Employee Company Integrations record.
308
+ * @param ID: number - primary key value to load the Employee Company Integrations record.
309
309
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
310
310
  * @returns {Promise<boolean>} - true if successful, false otherwise
311
311
  * @public
@@ -314,7 +314,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
314
314
  * @method
315
315
  * @override
316
316
  */
317
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
317
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
318
318
  /**
319
319
  * Employee Company Integrations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
320
320
  * @public
@@ -377,7 +377,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
377
377
  }
378
378
  /**
379
379
  * Employee Roles - strongly typed entity sub-class
380
- * * Schema: admin
380
+ * * Schema: __mj
381
381
  * * Base Table: EmployeeRole
382
382
  * * Base View: vwEmployeeRoles
383
383
  * * Primary Key: ID
@@ -388,7 +388,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
388
388
  export declare class EmployeeRoleEntity extends BaseEntity {
389
389
  /**
390
390
  * Loads the Employee Roles record from the database
391
- * @param ID: Number - primary key value to load the Employee Roles record.
391
+ * @param ID: number - primary key value to load the Employee Roles record.
392
392
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
393
393
  * @returns {Promise<boolean>} - true if successful, false otherwise
394
394
  * @public
@@ -397,7 +397,7 @@ export declare class EmployeeRoleEntity extends BaseEntity {
397
397
  * @method
398
398
  * @override
399
399
  */
400
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
400
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
401
401
  /**
402
402
  * Employee Roles - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
403
403
  * @public
@@ -452,7 +452,7 @@ export declare class EmployeeRoleEntity extends BaseEntity {
452
452
  }
453
453
  /**
454
454
  * Employee Skills - strongly typed entity sub-class
455
- * * Schema: admin
455
+ * * Schema: __mj
456
456
  * * Base Table: EmployeeSkill
457
457
  * * Base View: vwEmployeeSkills
458
458
  * * Primary Key: ID
@@ -463,7 +463,7 @@ export declare class EmployeeRoleEntity extends BaseEntity {
463
463
  export declare class EmployeeSkillEntity extends BaseEntity {
464
464
  /**
465
465
  * Loads the Employee Skills record from the database
466
- * @param ID: Number - primary key value to load the Employee Skills record.
466
+ * @param ID: number - primary key value to load the Employee Skills record.
467
467
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
468
468
  * @returns {Promise<boolean>} - true if successful, false otherwise
469
469
  * @public
@@ -472,7 +472,7 @@ export declare class EmployeeSkillEntity extends BaseEntity {
472
472
  * @method
473
473
  * @override
474
474
  */
475
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
475
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
476
476
  /**
477
477
  * Employee Skills - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
478
478
  * @public
@@ -527,7 +527,7 @@ export declare class EmployeeSkillEntity extends BaseEntity {
527
527
  }
528
528
  /**
529
529
  * Roles - strongly typed entity sub-class
530
- * * Schema: admin
530
+ * * Schema: __mj
531
531
  * * Base Table: Role
532
532
  * * Base View: vwRoles
533
533
  * * Primary Key: ID
@@ -538,7 +538,7 @@ export declare class EmployeeSkillEntity extends BaseEntity {
538
538
  export declare class RoleEntity extends BaseEntity {
539
539
  /**
540
540
  * Loads the Roles record from the database
541
- * @param ID: Number - primary key value to load the Roles record.
541
+ * @param ID: number - primary key value to load the Roles record.
542
542
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
543
543
  * @returns {Promise<boolean>} - true if successful, false otherwise
544
544
  * @public
@@ -547,7 +547,7 @@ export declare class RoleEntity extends BaseEntity {
547
547
  * @method
548
548
  * @override
549
549
  */
550
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
550
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
551
551
  /**
552
552
  * Roles - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
553
553
  * @public
@@ -604,7 +604,7 @@ export declare class RoleEntity extends BaseEntity {
604
604
  }
605
605
  /**
606
606
  * Skills - strongly typed entity sub-class
607
- * * Schema: admin
607
+ * * Schema: __mj
608
608
  * * Base Table: Skill
609
609
  * * Base View: vwSkills
610
610
  * * Primary Key: ID
@@ -615,7 +615,7 @@ export declare class RoleEntity extends BaseEntity {
615
615
  export declare class SkillEntity extends BaseEntity {
616
616
  /**
617
617
  * Loads the Skills record from the database
618
- * @param ID: Number - primary key value to load the Skills record.
618
+ * @param ID: number - primary key value to load the Skills record.
619
619
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
620
620
  * @returns {Promise<boolean>} - true if successful, false otherwise
621
621
  * @public
@@ -624,7 +624,7 @@ export declare class SkillEntity extends BaseEntity {
624
624
  * @method
625
625
  * @override
626
626
  */
627
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
627
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
628
628
  /**
629
629
  * Skills - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
630
630
  * @public
@@ -685,7 +685,7 @@ export declare class SkillEntity extends BaseEntity {
685
685
  }
686
686
  /**
687
687
  * Integration URL Formats - strongly typed entity sub-class
688
- * * Schema: admin
688
+ * * Schema: __mj
689
689
  * * Base Table: IntegrationURLFormat
690
690
  * * Base View: vwIntegrationURLFormats
691
691
  * * Primary Key: ID
@@ -696,7 +696,7 @@ export declare class SkillEntity extends BaseEntity {
696
696
  export declare class IntegrationURLFormatEntity extends BaseEntity {
697
697
  /**
698
698
  * Loads the Integration URL Formats record from the database
699
- * @param ID: Number - primary key value to load the Integration URL Formats record.
699
+ * @param ID: number - primary key value to load the Integration URL Formats record.
700
700
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
701
701
  * @returns {Promise<boolean>} - true if successful, false otherwise
702
702
  * @public
@@ -705,7 +705,7 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
705
705
  * @method
706
706
  * @override
707
707
  */
708
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
708
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
709
709
  /**
710
710
  * Integration URL Formats - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
711
711
  * @public
@@ -769,7 +769,7 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
769
769
  }
770
770
  /**
771
771
  * Integrations - strongly typed entity sub-class
772
- * * Schema: admin
772
+ * * Schema: __mj
773
773
  * * Base Table: Integration
774
774
  * * Base View: vwIntegrations
775
775
  * * Primary Key: ID
@@ -780,7 +780,7 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
780
780
  export declare class IntegrationEntity extends BaseEntity {
781
781
  /**
782
782
  * Loads the Integrations record from the database
783
- * @param ID: Number - primary key value to load the Integrations record.
783
+ * @param ID: number - primary key value to load the Integrations record.
784
784
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
785
785
  * @returns {Promise<boolean>} - true if successful, false otherwise
786
786
  * @public
@@ -789,7 +789,7 @@ export declare class IntegrationEntity extends BaseEntity {
789
789
  * @method
790
790
  * @override
791
791
  */
792
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
792
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
793
793
  /**
794
794
  * Integrations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
795
795
  * @public
@@ -870,7 +870,7 @@ export declare class IntegrationEntity extends BaseEntity {
870
870
  }
871
871
  /**
872
872
  * Company Integrations - strongly typed entity sub-class
873
- * * Schema: admin
873
+ * * Schema: __mj
874
874
  * * Base Table: CompanyIntegration
875
875
  * * Base View: vwCompanyIntegrations
876
876
  * * Primary Key: ID
@@ -881,7 +881,7 @@ export declare class IntegrationEntity extends BaseEntity {
881
881
  export declare class CompanyIntegrationEntity extends BaseEntity {
882
882
  /**
883
883
  * Loads the Company Integrations record from the database
884
- * @param ID: Number - primary key value to load the Company Integrations record.
884
+ * @param ID: number - primary key value to load the Company Integrations record.
885
885
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
886
886
  * @returns {Promise<boolean>} - true if successful, false otherwise
887
887
  * @public
@@ -890,7 +890,7 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
890
890
  * @method
891
891
  * @override
892
892
  */
893
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
893
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
894
894
  /**
895
895
  * Company Integrations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
896
896
  * @public
@@ -1060,7 +1060,7 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
1060
1060
  }
1061
1061
  /**
1062
1062
  * Entity Fields - strongly typed entity sub-class
1063
- * * Schema: admin
1063
+ * * Schema: __mj
1064
1064
  * * Base Table: EntityField
1065
1065
  * * Base View: vwEntityFields
1066
1066
  * * Primary Key: ID
@@ -1071,7 +1071,7 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
1071
1071
  export declare class EntityFieldEntity extends BaseEntity {
1072
1072
  /**
1073
1073
  * Loads the Entity Fields record from the database
1074
- * @param ID: Number - primary key value to load the Entity Fields record.
1074
+ * @param ID: number - primary key value to load the Entity Fields record.
1075
1075
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1076
1076
  * @returns {Promise<boolean>} - true if successful, false otherwise
1077
1077
  * @public
@@ -1080,7 +1080,7 @@ export declare class EntityFieldEntity extends BaseEntity {
1080
1080
  * @method
1081
1081
  * @override
1082
1082
  */
1083
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1083
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1084
1084
  /**
1085
1085
  * * Field Name: ID
1086
1086
  * * SQL Data Type: int
@@ -1090,6 +1090,7 @@ export declare class EntityFieldEntity extends BaseEntity {
1090
1090
  * * Field Name: EntityID
1091
1091
  * * Display Name: Entity ID
1092
1092
  * * SQL Data Type: int
1093
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
1093
1094
  */
1094
1095
  get EntityID(): number;
1095
1096
  /**
@@ -1299,6 +1300,7 @@ export declare class EntityFieldEntity extends BaseEntity {
1299
1300
  * * Field Name: RelatedEntityID
1300
1301
  * * Display Name: RelatedEntity ID
1301
1302
  * * SQL Data Type: int
1303
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
1302
1304
  */
1303
1305
  get RelatedEntityID(): number;
1304
1306
  set RelatedEntityID(value: number);
@@ -1412,7 +1414,7 @@ export declare class EntityFieldEntity extends BaseEntity {
1412
1414
  }
1413
1415
  /**
1414
1416
  * Entities - strongly typed entity sub-class
1415
- * * Schema: admin
1417
+ * * Schema: __mj
1416
1418
  * * Base Table: Entity
1417
1419
  * * Base View: vwEntities
1418
1420
  * * Primary Key: ID
@@ -1423,7 +1425,7 @@ export declare class EntityFieldEntity extends BaseEntity {
1423
1425
  export declare class EntityEntity extends BaseEntity {
1424
1426
  /**
1425
1427
  * Loads the Entities record from the database
1426
- * @param ID: Number - primary key value to load the Entities record.
1428
+ * @param ID: number - primary key value to load the Entities record.
1427
1429
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1428
1430
  * @returns {Promise<boolean>} - true if successful, false otherwise
1429
1431
  * @public
@@ -1432,7 +1434,7 @@ export declare class EntityEntity extends BaseEntity {
1432
1434
  * @method
1433
1435
  * @override
1434
1436
  */
1435
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1437
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1436
1438
  /**
1437
1439
  * * Field Name: ID
1438
1440
  * * SQL Data Type: int
@@ -1779,7 +1781,7 @@ export declare class EntityEntity extends BaseEntity {
1779
1781
  }
1780
1782
  /**
1781
1783
  * Users - strongly typed entity sub-class
1782
- * * Schema: admin
1784
+ * * Schema: __mj
1783
1785
  * * Base Table: User
1784
1786
  * * Base View: vwUsers
1785
1787
  * * Primary Key: ID
@@ -1790,7 +1792,7 @@ export declare class EntityEntity extends BaseEntity {
1790
1792
  export declare class UserEntity extends BaseEntity {
1791
1793
  /**
1792
1794
  * Loads the Users record from the database
1793
- * @param ID: Number - primary key value to load the Users record.
1795
+ * @param ID: number - primary key value to load the Users record.
1794
1796
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1795
1797
  * @returns {Promise<boolean>} - true if successful, false otherwise
1796
1798
  * @public
@@ -1799,7 +1801,7 @@ export declare class UserEntity extends BaseEntity {
1799
1801
  * @method
1800
1802
  * @override
1801
1803
  */
1802
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1804
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1803
1805
  /**
1804
1806
  * Users - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
1805
1807
  * @public
@@ -1880,6 +1882,7 @@ export declare class UserEntity extends BaseEntity {
1880
1882
  * * Field Name: LinkedEntityID
1881
1883
  * * Display Name: Linked Entity ID
1882
1884
  * * SQL Data Type: int
1885
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
1883
1886
  */
1884
1887
  get LinkedEntityID(): number;
1885
1888
  set LinkedEntityID(value: number);
@@ -1943,7 +1946,7 @@ export declare class UserEntity extends BaseEntity {
1943
1946
  }
1944
1947
  /**
1945
1948
  * Entity Relationships - strongly typed entity sub-class
1946
- * * Schema: admin
1949
+ * * Schema: __mj
1947
1950
  * * Base Table: EntityRelationship
1948
1951
  * * Base View: vwEntityRelationships
1949
1952
  * * Primary Key: ID
@@ -1954,7 +1957,7 @@ export declare class UserEntity extends BaseEntity {
1954
1957
  export declare class EntityRelationshipEntity extends BaseEntity {
1955
1958
  /**
1956
1959
  * Loads the Entity Relationships record from the database
1957
- * @param ID: Number - primary key value to load the Entity Relationships record.
1960
+ * @param ID: number - primary key value to load the Entity Relationships record.
1958
1961
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1959
1962
  * @returns {Promise<boolean>} - true if successful, false otherwise
1960
1963
  * @public
@@ -1963,7 +1966,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
1963
1966
  * @method
1964
1967
  * @override
1965
1968
  */
1966
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1969
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1967
1970
  /**
1968
1971
  * * Field Name: ID
1969
1972
  * * SQL Data Type: int
@@ -2147,7 +2150,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
2147
2150
  }
2148
2151
  /**
2149
2152
  * User Record Logs - strongly typed entity sub-class
2150
- * * Schema: admin
2153
+ * * Schema: __mj
2151
2154
  * * Base Table: UserRecordLog
2152
2155
  * * Base View: vwUserRecordLogs
2153
2156
  * * Primary Key: ID
@@ -2158,7 +2161,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
2158
2161
  export declare class UserRecordLogEntity extends BaseEntity {
2159
2162
  /**
2160
2163
  * Loads the User Record Logs record from the database
2161
- * @param ID: Number - primary key value to load the User Record Logs record.
2164
+ * @param ID: number - primary key value to load the User Record Logs record.
2162
2165
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2163
2166
  * @returns {Promise<boolean>} - true if successful, false otherwise
2164
2167
  * @public
@@ -2167,7 +2170,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
2167
2170
  * @method
2168
2171
  * @override
2169
2172
  */
2170
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2173
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2171
2174
  /**
2172
2175
  * User Record Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
2173
2176
  * @public
@@ -2268,7 +2271,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
2268
2271
  }
2269
2272
  /**
2270
2273
  * User Views - strongly typed entity sub-class
2271
- * * Schema: admin
2274
+ * * Schema: __mj
2272
2275
  * * Base Table: UserView
2273
2276
  * * Base View: vwUserViews
2274
2277
  * * Primary Key: ID
@@ -2279,7 +2282,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
2279
2282
  export declare class UserViewEntity extends BaseEntity {
2280
2283
  /**
2281
2284
  * Loads the User Views record from the database
2282
- * @param ID: Number - primary key value to load the User Views record.
2285
+ * @param ID: number - primary key value to load the User Views record.
2283
2286
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2284
2287
  * @returns {Promise<boolean>} - true if successful, false otherwise
2285
2288
  * @public
@@ -2288,7 +2291,7 @@ export declare class UserViewEntity extends BaseEntity {
2288
2291
  * @method
2289
2292
  * @override
2290
2293
  */
2291
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2294
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2292
2295
  /**
2293
2296
  * * Field Name: ID
2294
2297
  * * SQL Data Type: int
@@ -2306,6 +2309,7 @@ export declare class UserViewEntity extends BaseEntity {
2306
2309
  * * Field Name: EntityID
2307
2310
  * * Display Name: Entity ID
2308
2311
  * * SQL Data Type: int
2312
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
2309
2313
  */
2310
2314
  get EntityID(): number;
2311
2315
  set EntityID(value: number);
@@ -2478,7 +2482,7 @@ export declare class UserViewEntity extends BaseEntity {
2478
2482
  }
2479
2483
  /**
2480
2484
  * Company Integration Runs - strongly typed entity sub-class
2481
- * * Schema: admin
2485
+ * * Schema: __mj
2482
2486
  * * Base Table: CompanyIntegrationRun
2483
2487
  * * Base View: vwCompanyIntegrationRuns
2484
2488
  * * Primary Key: ID
@@ -2489,7 +2493,7 @@ export declare class UserViewEntity extends BaseEntity {
2489
2493
  export declare class CompanyIntegrationRunEntity extends BaseEntity {
2490
2494
  /**
2491
2495
  * Loads the Company Integration Runs record from the database
2492
- * @param ID: Number - primary key value to load the Company Integration Runs record.
2496
+ * @param ID: number - primary key value to load the Company Integration Runs record.
2493
2497
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2494
2498
  * @returns {Promise<boolean>} - true if successful, false otherwise
2495
2499
  * @public
@@ -2498,7 +2502,7 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
2498
2502
  * @method
2499
2503
  * @override
2500
2504
  */
2501
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2505
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2502
2506
  /**
2503
2507
  * Company Integration Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
2504
2508
  * @public
@@ -2565,7 +2569,7 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
2565
2569
  }
2566
2570
  /**
2567
2571
  * Company Integration Run Details - strongly typed entity sub-class
2568
- * * Schema: admin
2572
+ * * Schema: __mj
2569
2573
  * * Base Table: CompanyIntegrationRunDetail
2570
2574
  * * Base View: vwCompanyIntegrationRunDetails
2571
2575
  * * Primary Key: ID
@@ -2576,7 +2580,7 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
2576
2580
  export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
2577
2581
  /**
2578
2582
  * Loads the Company Integration Run Details record from the database
2579
- * @param ID: Number - primary key value to load the Company Integration Run Details record.
2583
+ * @param ID: number - primary key value to load the Company Integration Run Details record.
2580
2584
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2581
2585
  * @returns {Promise<boolean>} - true if successful, false otherwise
2582
2586
  * @public
@@ -2585,7 +2589,7 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
2585
2589
  * @method
2586
2590
  * @override
2587
2591
  */
2588
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2592
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2589
2593
  /**
2590
2594
  * Company Integration Run Details - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
2591
2595
  * @public
@@ -2612,6 +2616,7 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
2612
2616
  * * Field Name: EntityID
2613
2617
  * * Display Name: Entity ID
2614
2618
  * * SQL Data Type: int
2619
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
2615
2620
  */
2616
2621
  get EntityID(): number;
2617
2622
  set EntityID(value: number);
@@ -2664,7 +2669,7 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
2664
2669
  }
2665
2670
  /**
2666
2671
  * Error Logs - strongly typed entity sub-class
2667
- * * Schema: admin
2672
+ * * Schema: __mj
2668
2673
  * * Base Table: ErrorLog
2669
2674
  * * Base View: vwErrorLogs
2670
2675
  * * Primary Key: ID
@@ -2675,7 +2680,7 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
2675
2680
  export declare class ErrorLogEntity extends BaseEntity {
2676
2681
  /**
2677
2682
  * Loads the Error Logs record from the database
2678
- * @param ID: Number - primary key value to load the Error Logs record.
2683
+ * @param ID: number - primary key value to load the Error Logs record.
2679
2684
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2680
2685
  * @returns {Promise<boolean>} - true if successful, false otherwise
2681
2686
  * @public
@@ -2684,7 +2689,7 @@ export declare class ErrorLogEntity extends BaseEntity {
2684
2689
  * @method
2685
2690
  * @override
2686
2691
  */
2687
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2692
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2688
2693
  /**
2689
2694
  * Error Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
2690
2695
  * @public
@@ -2763,7 +2768,7 @@ export declare class ErrorLogEntity extends BaseEntity {
2763
2768
  }
2764
2769
  /**
2765
2770
  * Applications - strongly typed entity sub-class
2766
- * * Schema: admin
2771
+ * * Schema: __mj
2767
2772
  * * Base Table: Application
2768
2773
  * * Base View: vwApplications
2769
2774
  * * Primary Key: ID
@@ -2774,7 +2779,7 @@ export declare class ErrorLogEntity extends BaseEntity {
2774
2779
  export declare class ApplicationEntity extends BaseEntity {
2775
2780
  /**
2776
2781
  * Loads the Applications record from the database
2777
- * @param ID: Number - primary key value to load the Applications record.
2782
+ * @param ID: number - primary key value to load the Applications record.
2778
2783
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2779
2784
  * @returns {Promise<boolean>} - true if successful, false otherwise
2780
2785
  * @public
@@ -2783,7 +2788,7 @@ export declare class ApplicationEntity extends BaseEntity {
2783
2788
  * @method
2784
2789
  * @override
2785
2790
  */
2786
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2791
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2787
2792
  /**
2788
2793
  * Applications - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
2789
2794
  * @public
@@ -2827,7 +2832,7 @@ export declare class ApplicationEntity extends BaseEntity {
2827
2832
  }
2828
2833
  /**
2829
2834
  * Application Entities - strongly typed entity sub-class
2830
- * * Schema: admin
2835
+ * * Schema: __mj
2831
2836
  * * Base Table: ApplicationEntity
2832
2837
  * * Base View: vwApplicationEntities
2833
2838
  * * Primary Key: ID
@@ -2838,7 +2843,7 @@ export declare class ApplicationEntity extends BaseEntity {
2838
2843
  export declare class ApplicationEntityEntity extends BaseEntity {
2839
2844
  /**
2840
2845
  * Loads the Application Entities record from the database
2841
- * @param ID: Number - primary key value to load the Application Entities record.
2846
+ * @param ID: number - primary key value to load the Application Entities record.
2842
2847
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2843
2848
  * @returns {Promise<boolean>} - true if successful, false otherwise
2844
2849
  * @public
@@ -2847,7 +2852,7 @@ export declare class ApplicationEntityEntity extends BaseEntity {
2847
2852
  * @method
2848
2853
  * @override
2849
2854
  */
2850
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2855
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2851
2856
  /**
2852
2857
  * * Field Name: ID
2853
2858
  * * SQL Data Type: int
@@ -2865,6 +2870,7 @@ export declare class ApplicationEntityEntity extends BaseEntity {
2865
2870
  * * Field Name: EntityID
2866
2871
  * * Display Name: Entity ID
2867
2872
  * * SQL Data Type: int
2873
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
2868
2874
  */
2869
2875
  get EntityID(): number;
2870
2876
  set EntityID(value: number);
@@ -2933,7 +2939,7 @@ export declare class ApplicationEntityEntity extends BaseEntity {
2933
2939
  }
2934
2940
  /**
2935
2941
  * Entity Permissions - strongly typed entity sub-class
2936
- * * Schema: admin
2942
+ * * Schema: __mj
2937
2943
  * * Base Table: EntityPermission
2938
2944
  * * Base View: vwEntityPermissions
2939
2945
  * * Primary Key: ID
@@ -2944,7 +2950,7 @@ export declare class ApplicationEntityEntity extends BaseEntity {
2944
2950
  export declare class EntityPermissionEntity extends BaseEntity {
2945
2951
  /**
2946
2952
  * Loads the Entity Permissions record from the database
2947
- * @param ID: Number - primary key value to load the Entity Permissions record.
2953
+ * @param ID: number - primary key value to load the Entity Permissions record.
2948
2954
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2949
2955
  * @returns {Promise<boolean>} - true if successful, false otherwise
2950
2956
  * @public
@@ -2953,7 +2959,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
2953
2959
  * @method
2954
2960
  * @override
2955
2961
  */
2956
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2962
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
2957
2963
  /**
2958
2964
  * * Field Name: ID
2959
2965
  * * SQL Data Type: int
@@ -2963,6 +2969,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
2963
2969
  * * Field Name: EntityID
2964
2970
  * * Display Name: Entity ID
2965
2971
  * * SQL Data Type: int
2972
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
2966
2973
  */
2967
2974
  get EntityID(): number;
2968
2975
  set EntityID(value: number);
@@ -3090,7 +3097,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
3090
3097
  }
3091
3098
  /**
3092
3099
  * User Application Entities - strongly typed entity sub-class
3093
- * * Schema: admin
3100
+ * * Schema: __mj
3094
3101
  * * Base Table: UserApplicationEntity
3095
3102
  * * Base View: vwUserApplicationEntities
3096
3103
  * * Primary Key: ID
@@ -3101,7 +3108,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
3101
3108
  export declare class UserApplicationEntityEntity extends BaseEntity {
3102
3109
  /**
3103
3110
  * Loads the User Application Entities record from the database
3104
- * @param ID: Number - primary key value to load the User Application Entities record.
3111
+ * @param ID: number - primary key value to load the User Application Entities record.
3105
3112
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3106
3113
  * @returns {Promise<boolean>} - true if successful, false otherwise
3107
3114
  * @public
@@ -3110,7 +3117,7 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
3110
3117
  * @method
3111
3118
  * @override
3112
3119
  */
3113
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3120
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3114
3121
  /**
3115
3122
  * * Field Name: ID
3116
3123
  * * SQL Data Type: int
@@ -3128,6 +3135,7 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
3128
3135
  * * Field Name: EntityID
3129
3136
  * * Display Name: Entity ID
3130
3137
  * * SQL Data Type: int
3138
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
3131
3139
  */
3132
3140
  get EntityID(): number;
3133
3141
  set EntityID(value: number);
@@ -3159,7 +3167,7 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
3159
3167
  }
3160
3168
  /**
3161
3169
  * User Applications - strongly typed entity sub-class
3162
- * * Schema: admin
3170
+ * * Schema: __mj
3163
3171
  * * Base Table: UserApplication
3164
3172
  * * Base View: vwUserApplications
3165
3173
  * * Primary Key: ID
@@ -3170,7 +3178,7 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
3170
3178
  export declare class UserApplicationEntity extends BaseEntity {
3171
3179
  /**
3172
3180
  * Loads the User Applications record from the database
3173
- * @param ID: Number - primary key value to load the User Applications record.
3181
+ * @param ID: number - primary key value to load the User Applications record.
3174
3182
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3175
3183
  * @returns {Promise<boolean>} - true if successful, false otherwise
3176
3184
  * @public
@@ -3179,7 +3187,7 @@ export declare class UserApplicationEntity extends BaseEntity {
3179
3187
  * @method
3180
3188
  * @override
3181
3189
  */
3182
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3190
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3183
3191
  /**
3184
3192
  * User Applications - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3185
3193
  * @public
@@ -3240,7 +3248,7 @@ export declare class UserApplicationEntity extends BaseEntity {
3240
3248
  }
3241
3249
  /**
3242
3250
  * Company Integration Run API Logs - strongly typed entity sub-class
3243
- * * Schema: admin
3251
+ * * Schema: __mj
3244
3252
  * * Base Table: CompanyIntegrationRunAPILog
3245
3253
  * * Base View: vwCompanyIntegrationRunAPILogs
3246
3254
  * * Primary Key: ID
@@ -3251,7 +3259,7 @@ export declare class UserApplicationEntity extends BaseEntity {
3251
3259
  export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
3252
3260
  /**
3253
3261
  * Loads the Company Integration Run API Logs record from the database
3254
- * @param ID: Number - primary key value to load the Company Integration Run API Logs record.
3262
+ * @param ID: number - primary key value to load the Company Integration Run API Logs record.
3255
3263
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3256
3264
  * @returns {Promise<boolean>} - true if successful, false otherwise
3257
3265
  * @public
@@ -3260,7 +3268,7 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
3260
3268
  * @method
3261
3269
  * @override
3262
3270
  */
3263
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3271
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3264
3272
  /**
3265
3273
  * Company Integration Run API Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3266
3274
  * @public
@@ -3321,7 +3329,7 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
3321
3329
  }
3322
3330
  /**
3323
3331
  * Lists - strongly typed entity sub-class
3324
- * * Schema: admin
3332
+ * * Schema: __mj
3325
3333
  * * Base Table: List
3326
3334
  * * Base View: vwLists
3327
3335
  * * Primary Key: ID
@@ -3332,7 +3340,7 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
3332
3340
  export declare class ListEntity extends BaseEntity {
3333
3341
  /**
3334
3342
  * Loads the Lists record from the database
3335
- * @param ID: Number - primary key value to load the Lists record.
3343
+ * @param ID: number - primary key value to load the Lists record.
3336
3344
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3337
3345
  * @returns {Promise<boolean>} - true if successful, false otherwise
3338
3346
  * @public
@@ -3341,7 +3349,7 @@ export declare class ListEntity extends BaseEntity {
3341
3349
  * @method
3342
3350
  * @override
3343
3351
  */
3344
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3352
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3345
3353
  /**
3346
3354
  * * Field Name: ID
3347
3355
  * * SQL Data Type: int
@@ -3363,6 +3371,7 @@ export declare class ListEntity extends BaseEntity {
3363
3371
  * * Field Name: EntityID
3364
3372
  * * Display Name: Entity ID
3365
3373
  * * SQL Data Type: int
3374
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
3366
3375
  */
3367
3376
  get EntityID(): number;
3368
3377
  set EntityID(value: number);
@@ -3404,6 +3413,12 @@ export declare class ListEntity extends BaseEntity {
3404
3413
  */
3405
3414
  get UpdatedAt(): Date;
3406
3415
  /**
3416
+ * * Field Name: Entity
3417
+ * * Display Name: Entity
3418
+ * * SQL Data Type: nvarchar(255)
3419
+ */
3420
+ get Entity(): string;
3421
+ /**
3407
3422
  * * Field Name: User
3408
3423
  * * Display Name: User
3409
3424
  * * SQL Data Type: nvarchar(100)
@@ -3412,7 +3427,7 @@ export declare class ListEntity extends BaseEntity {
3412
3427
  }
3413
3428
  /**
3414
3429
  * List Details - strongly typed entity sub-class
3415
- * * Schema: admin
3430
+ * * Schema: __mj
3416
3431
  * * Base Table: ListDetail
3417
3432
  * * Base View: vwListDetails
3418
3433
  * * Primary Key: ID
@@ -3423,7 +3438,7 @@ export declare class ListEntity extends BaseEntity {
3423
3438
  export declare class ListDetailEntity extends BaseEntity {
3424
3439
  /**
3425
3440
  * Loads the List Details record from the database
3426
- * @param ID: Number - primary key value to load the List Details record.
3441
+ * @param ID: number - primary key value to load the List Details record.
3427
3442
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3428
3443
  * @returns {Promise<boolean>} - true if successful, false otherwise
3429
3444
  * @public
@@ -3432,7 +3447,7 @@ export declare class ListDetailEntity extends BaseEntity {
3432
3447
  * @method
3433
3448
  * @override
3434
3449
  */
3435
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3450
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3436
3451
  /**
3437
3452
  * * Field Name: ID
3438
3453
  * * SQL Data Type: int
@@ -3463,7 +3478,7 @@ export declare class ListDetailEntity extends BaseEntity {
3463
3478
  }
3464
3479
  /**
3465
3480
  * User View Runs - strongly typed entity sub-class
3466
- * * Schema: admin
3481
+ * * Schema: __mj
3467
3482
  * * Base Table: UserViewRun
3468
3483
  * * Base View: vwUserViewRuns
3469
3484
  * * Primary Key: ID
@@ -3474,7 +3489,7 @@ export declare class ListDetailEntity extends BaseEntity {
3474
3489
  export declare class UserViewRunEntity extends BaseEntity {
3475
3490
  /**
3476
3491
  * Loads the User View Runs record from the database
3477
- * @param ID: Number - primary key value to load the User View Runs record.
3492
+ * @param ID: number - primary key value to load the User View Runs record.
3478
3493
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3479
3494
  * @returns {Promise<boolean>} - true if successful, false otherwise
3480
3495
  * @public
@@ -3483,7 +3498,7 @@ export declare class UserViewRunEntity extends BaseEntity {
3483
3498
  * @method
3484
3499
  * @override
3485
3500
  */
3486
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3501
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3487
3502
  /**
3488
3503
  * User View Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3489
3504
  * @public
@@ -3536,7 +3551,7 @@ export declare class UserViewRunEntity extends BaseEntity {
3536
3551
  }
3537
3552
  /**
3538
3553
  * User View Run Details - strongly typed entity sub-class
3539
- * * Schema: admin
3554
+ * * Schema: __mj
3540
3555
  * * Base Table: UserViewRunDetail
3541
3556
  * * Base View: vwUserViewRunDetails
3542
3557
  * * Primary Key: ID
@@ -3547,7 +3562,7 @@ export declare class UserViewRunEntity extends BaseEntity {
3547
3562
  export declare class UserViewRunDetailEntity extends BaseEntity {
3548
3563
  /**
3549
3564
  * Loads the User View Run Details record from the database
3550
- * @param ID: Number - primary key value to load the User View Run Details record.
3565
+ * @param ID: number - primary key value to load the User View Run Details record.
3551
3566
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3552
3567
  * @returns {Promise<boolean>} - true if successful, false otherwise
3553
3568
  * @public
@@ -3556,7 +3571,7 @@ export declare class UserViewRunDetailEntity extends BaseEntity {
3556
3571
  * @method
3557
3572
  * @override
3558
3573
  */
3559
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3574
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3560
3575
  /**
3561
3576
  * User View Run Details - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3562
3577
  * @public
@@ -3601,7 +3616,7 @@ export declare class UserViewRunDetailEntity extends BaseEntity {
3601
3616
  }
3602
3617
  /**
3603
3618
  * Workflow Runs - strongly typed entity sub-class
3604
- * * Schema: admin
3619
+ * * Schema: __mj
3605
3620
  * * Base Table: WorkflowRun
3606
3621
  * * Base View: vwWorkflowRuns
3607
3622
  * * Primary Key: ID
@@ -3612,7 +3627,7 @@ export declare class UserViewRunDetailEntity extends BaseEntity {
3612
3627
  export declare class WorkflowRunEntity extends BaseEntity {
3613
3628
  /**
3614
3629
  * Loads the Workflow Runs record from the database
3615
- * @param ID: Number - primary key value to load the Workflow Runs record.
3630
+ * @param ID: number - primary key value to load the Workflow Runs record.
3616
3631
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3617
3632
  * @returns {Promise<boolean>} - true if successful, false otherwise
3618
3633
  * @public
@@ -3621,7 +3636,7 @@ export declare class WorkflowRunEntity extends BaseEntity {
3621
3636
  * @method
3622
3637
  * @override
3623
3638
  */
3624
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3639
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3625
3640
  /**
3626
3641
  * Workflow Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3627
3642
  * @public
@@ -3693,7 +3708,7 @@ export declare class WorkflowRunEntity extends BaseEntity {
3693
3708
  }
3694
3709
  /**
3695
3710
  * Workflows - strongly typed entity sub-class
3696
- * * Schema: admin
3711
+ * * Schema: __mj
3697
3712
  * * Base Table: Workflow
3698
3713
  * * Base View: vwWorkflows
3699
3714
  * * Primary Key: ID
@@ -3704,7 +3719,7 @@ export declare class WorkflowRunEntity extends BaseEntity {
3704
3719
  export declare class WorkflowEntity extends BaseEntity {
3705
3720
  /**
3706
3721
  * Loads the Workflows record from the database
3707
- * @param ID: Number - primary key value to load the Workflows record.
3722
+ * @param ID: number - primary key value to load the Workflows record.
3708
3723
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3709
3724
  * @returns {Promise<boolean>} - true if successful, false otherwise
3710
3725
  * @public
@@ -3713,7 +3728,7 @@ export declare class WorkflowEntity extends BaseEntity {
3713
3728
  * @method
3714
3729
  * @override
3715
3730
  */
3716
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3731
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3717
3732
  /**
3718
3733
  * Workflows - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3719
3734
  * @public
@@ -3780,7 +3795,7 @@ export declare class WorkflowEntity extends BaseEntity {
3780
3795
  }
3781
3796
  /**
3782
3797
  * Workflow Engines - strongly typed entity sub-class
3783
- * * Schema: admin
3798
+ * * Schema: __mj
3784
3799
  * * Base Table: WorkflowEngine
3785
3800
  * * Base View: vwWorkflowEngines
3786
3801
  * * Primary Key: ID
@@ -3791,7 +3806,7 @@ export declare class WorkflowEntity extends BaseEntity {
3791
3806
  export declare class WorkflowEngineEntity extends BaseEntity {
3792
3807
  /**
3793
3808
  * Loads the Workflow Engines record from the database
3794
- * @param ID: Number - primary key value to load the Workflow Engines record.
3809
+ * @param ID: number - primary key value to load the Workflow Engines record.
3795
3810
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3796
3811
  * @returns {Promise<boolean>} - true if successful, false otherwise
3797
3812
  * @public
@@ -3800,7 +3815,7 @@ export declare class WorkflowEngineEntity extends BaseEntity {
3800
3815
  * @method
3801
3816
  * @override
3802
3817
  */
3803
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3818
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3804
3819
  /**
3805
3820
  * Workflow Engines - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3806
3821
  * @public
@@ -3858,7 +3873,7 @@ export declare class WorkflowEngineEntity extends BaseEntity {
3858
3873
  }
3859
3874
  /**
3860
3875
  * Record Changes - strongly typed entity sub-class
3861
- * * Schema: admin
3876
+ * * Schema: __mj
3862
3877
  * * Base Table: RecordChange
3863
3878
  * * Base View: vwRecordChanges
3864
3879
  * * Primary Key: ID
@@ -3869,7 +3884,7 @@ export declare class WorkflowEngineEntity extends BaseEntity {
3869
3884
  export declare class RecordChangeEntity extends BaseEntity {
3870
3885
  /**
3871
3886
  * Loads the Record Changes record from the database
3872
- * @param ID: Number - primary key value to load the Record Changes record.
3887
+ * @param ID: number - primary key value to load the Record Changes record.
3873
3888
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3874
3889
  * @returns {Promise<boolean>} - true if successful, false otherwise
3875
3890
  * @public
@@ -3878,7 +3893,7 @@ export declare class RecordChangeEntity extends BaseEntity {
3878
3893
  * @method
3879
3894
  * @override
3880
3895
  */
3881
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3896
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3882
3897
  /**
3883
3898
  * Record Changes - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3884
3899
  * @public
@@ -3973,7 +3988,7 @@ export declare class RecordChangeEntity extends BaseEntity {
3973
3988
  }
3974
3989
  /**
3975
3990
  * User Roles - strongly typed entity sub-class
3976
- * * Schema: admin
3991
+ * * Schema: __mj
3977
3992
  * * Base Table: UserRole
3978
3993
  * * Base View: vwUserRoles
3979
3994
  * * Primary Key: ID
@@ -3984,7 +3999,7 @@ export declare class RecordChangeEntity extends BaseEntity {
3984
3999
  export declare class UserRoleEntity extends BaseEntity {
3985
4000
  /**
3986
4001
  * Loads the User Roles record from the database
3987
- * @param ID: Number - primary key value to load the User Roles record.
4002
+ * @param ID: number - primary key value to load the User Roles record.
3988
4003
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3989
4004
  * @returns {Promise<boolean>} - true if successful, false otherwise
3990
4005
  * @public
@@ -3993,7 +4008,7 @@ export declare class UserRoleEntity extends BaseEntity {
3993
4008
  * @method
3994
4009
  * @override
3995
4010
  */
3996
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4011
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3997
4012
  /**
3998
4013
  * User Roles - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
3999
4014
  * @public
@@ -4048,7 +4063,7 @@ export declare class UserRoleEntity extends BaseEntity {
4048
4063
  }
4049
4064
  /**
4050
4065
  * Row Level Security Filters - strongly typed entity sub-class
4051
- * * Schema: admin
4066
+ * * Schema: __mj
4052
4067
  * * Base Table: RowLevelSecurityFilter
4053
4068
  * * Base View: vwRowLevelSecurityFilters
4054
4069
  * * Primary Key: ID
@@ -4059,7 +4074,7 @@ export declare class UserRoleEntity extends BaseEntity {
4059
4074
  export declare class RowLevelSecurityFilterEntity extends BaseEntity {
4060
4075
  /**
4061
4076
  * Loads the Row Level Security Filters record from the database
4062
- * @param ID: Number - primary key value to load the Row Level Security Filters record.
4077
+ * @param ID: number - primary key value to load the Row Level Security Filters record.
4063
4078
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4064
4079
  * @returns {Promise<boolean>} - true if successful, false otherwise
4065
4080
  * @public
@@ -4068,7 +4083,7 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity {
4068
4083
  * @method
4069
4084
  * @override
4070
4085
  */
4071
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4086
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4072
4087
  /**
4073
4088
  * Row Level Security Filters - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
4074
4089
  * @public
@@ -4131,7 +4146,7 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity {
4131
4146
  }
4132
4147
  /**
4133
4148
  * Audit Logs - strongly typed entity sub-class
4134
- * * Schema: admin
4149
+ * * Schema: __mj
4135
4150
  * * Base Table: AuditLog
4136
4151
  * * Base View: vwAuditLogs
4137
4152
  * * Primary Key: ID
@@ -4142,7 +4157,7 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity {
4142
4157
  export declare class AuditLogEntity extends BaseEntity {
4143
4158
  /**
4144
4159
  * Loads the Audit Logs record from the database
4145
- * @param ID: Number - primary key value to load the Audit Logs record.
4160
+ * @param ID: number - primary key value to load the Audit Logs record.
4146
4161
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4147
4162
  * @returns {Promise<boolean>} - true if successful, false otherwise
4148
4163
  * @public
@@ -4151,7 +4166,7 @@ export declare class AuditLogEntity extends BaseEntity {
4151
4166
  * @method
4152
4167
  * @override
4153
4168
  */
4154
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4169
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4155
4170
  /**
4156
4171
  * Audit Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
4157
4172
  * @public
@@ -4217,6 +4232,7 @@ export declare class AuditLogEntity extends BaseEntity {
4217
4232
  * * Field Name: EntityID
4218
4233
  * * Display Name: Entity ID
4219
4234
  * * SQL Data Type: int
4235
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
4220
4236
  */
4221
4237
  get EntityID(): number;
4222
4238
  set EntityID(value: number);
@@ -4247,10 +4263,16 @@ export declare class AuditLogEntity extends BaseEntity {
4247
4263
  * * SQL Data Type: nvarchar(100)
4248
4264
  */
4249
4265
  get User(): string;
4266
+ /**
4267
+ * * Field Name: Entity
4268
+ * * Display Name: Entity
4269
+ * * SQL Data Type: nvarchar(255)
4270
+ */
4271
+ get Entity(): string;
4250
4272
  }
4251
4273
  /**
4252
4274
  * Authorizations - strongly typed entity sub-class
4253
- * * Schema: admin
4275
+ * * Schema: __mj
4254
4276
  * * Base Table: Authorization
4255
4277
  * * Base View: vwAuthorizations
4256
4278
  * * Primary Key: ID
@@ -4261,7 +4283,7 @@ export declare class AuditLogEntity extends BaseEntity {
4261
4283
  export declare class AuthorizationEntity extends BaseEntity {
4262
4284
  /**
4263
4285
  * Loads the Authorizations record from the database
4264
- * @param ID: Number - primary key value to load the Authorizations record.
4286
+ * @param ID: number - primary key value to load the Authorizations record.
4265
4287
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4266
4288
  * @returns {Promise<boolean>} - true if successful, false otherwise
4267
4289
  * @public
@@ -4270,7 +4292,7 @@ export declare class AuthorizationEntity extends BaseEntity {
4270
4292
  * @method
4271
4293
  * @override
4272
4294
  */
4273
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4295
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4274
4296
  /**
4275
4297
  * Authorizations - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
4276
4298
  * @public
@@ -4350,7 +4372,7 @@ export declare class AuthorizationEntity extends BaseEntity {
4350
4372
  }
4351
4373
  /**
4352
4374
  * Authorization Roles - strongly typed entity sub-class
4353
- * * Schema: admin
4375
+ * * Schema: __mj
4354
4376
  * * Base Table: AuthorizationRole
4355
4377
  * * Base View: vwAuthorizationRoles
4356
4378
  * * Primary Key: ID
@@ -4361,7 +4383,7 @@ export declare class AuthorizationEntity extends BaseEntity {
4361
4383
  export declare class AuthorizationRoleEntity extends BaseEntity {
4362
4384
  /**
4363
4385
  * Loads the Authorization Roles record from the database
4364
- * @param ID: Number - primary key value to load the Authorization Roles record.
4386
+ * @param ID: number - primary key value to load the Authorization Roles record.
4365
4387
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4366
4388
  * @returns {Promise<boolean>} - true if successful, false otherwise
4367
4389
  * @public
@@ -4370,7 +4392,7 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
4370
4392
  * @method
4371
4393
  * @override
4372
4394
  */
4373
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4395
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4374
4396
  /**
4375
4397
  * Authorization Roles - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
4376
4398
  * @public
@@ -4450,7 +4472,7 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
4450
4472
  }
4451
4473
  /**
4452
4474
  * Audit Log Types - strongly typed entity sub-class
4453
- * * Schema: admin
4475
+ * * Schema: __mj
4454
4476
  * * Base Table: AuditLogType
4455
4477
  * * Base View: vwAuditLogTypes
4456
4478
  * * Primary Key: ID
@@ -4461,7 +4483,7 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
4461
4483
  export declare class AuditLogTypeEntity extends BaseEntity {
4462
4484
  /**
4463
4485
  * Loads the Audit Log Types record from the database
4464
- * @param ID: Number - primary key value to load the Audit Log Types record.
4486
+ * @param ID: number - primary key value to load the Audit Log Types record.
4465
4487
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4466
4488
  * @returns {Promise<boolean>} - true if successful, false otherwise
4467
4489
  * @public
@@ -4470,7 +4492,7 @@ export declare class AuditLogTypeEntity extends BaseEntity {
4470
4492
  * @method
4471
4493
  * @override
4472
4494
  */
4473
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4495
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4474
4496
  /**
4475
4497
  * Audit Log Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
4476
4498
  * @public
@@ -4548,7 +4570,7 @@ export declare class AuditLogTypeEntity extends BaseEntity {
4548
4570
  }
4549
4571
  /**
4550
4572
  * Entity Field Values - strongly typed entity sub-class
4551
- * * Schema: admin
4573
+ * * Schema: __mj
4552
4574
  * * Base Table: EntityFieldValue
4553
4575
  * * Base View: vwEntityFieldValues
4554
4576
  * * Primary Key: ID
@@ -4559,7 +4581,7 @@ export declare class AuditLogTypeEntity extends BaseEntity {
4559
4581
  export declare class EntityFieldValueEntity extends BaseEntity {
4560
4582
  /**
4561
4583
  * Loads the Entity Field Values record from the database
4562
- * @param ID: Number - primary key value to load the Entity Field Values record.
4584
+ * @param ID: number - primary key value to load the Entity Field Values record.
4563
4585
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4564
4586
  * @returns {Promise<boolean>} - true if successful, false otherwise
4565
4587
  * @public
@@ -4568,7 +4590,7 @@ export declare class EntityFieldValueEntity extends BaseEntity {
4568
4590
  * @method
4569
4591
  * @override
4570
4592
  */
4571
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4593
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4572
4594
  /**
4573
4595
  * Entity Field Values - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
4574
4596
  * @public
@@ -4660,7 +4682,7 @@ export declare class EntityFieldValueEntity extends BaseEntity {
4660
4682
  }
4661
4683
  /**
4662
4684
  * AI Models - strongly typed entity sub-class
4663
- * * Schema: admin
4685
+ * * Schema: __mj
4664
4686
  * * Base Table: AIModel
4665
4687
  * * Base View: vwAIModels
4666
4688
  * * Primary Key: ID
@@ -4671,7 +4693,7 @@ export declare class EntityFieldValueEntity extends BaseEntity {
4671
4693
  export declare class AIModelEntity extends BaseEntity {
4672
4694
  /**
4673
4695
  * Loads the AI Models record from the database
4674
- * @param ID: Number - primary key value to load the AI Models record.
4696
+ * @param ID: number - primary key value to load the AI Models record.
4675
4697
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4676
4698
  * @returns {Promise<boolean>} - true if successful, false otherwise
4677
4699
  * @public
@@ -4680,7 +4702,7 @@ export declare class AIModelEntity extends BaseEntity {
4680
4702
  * @method
4681
4703
  * @override
4682
4704
  */
4683
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4705
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4684
4706
  /**
4685
4707
  * AI Models - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
4686
4708
  * @public
@@ -4764,7 +4786,7 @@ export declare class AIModelEntity extends BaseEntity {
4764
4786
  }
4765
4787
  /**
4766
4788
  * AI Actions - strongly typed entity sub-class
4767
- * * Schema: admin
4789
+ * * Schema: __mj
4768
4790
  * * Base Table: AIAction
4769
4791
  * * Base View: vwAIActions
4770
4792
  * * Primary Key: ID
@@ -4775,7 +4797,7 @@ export declare class AIModelEntity extends BaseEntity {
4775
4797
  export declare class AIActionEntity extends BaseEntity {
4776
4798
  /**
4777
4799
  * Loads the AI Actions record from the database
4778
- * @param ID: Number - primary key value to load the AI Actions record.
4800
+ * @param ID: number - primary key value to load the AI Actions record.
4779
4801
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4780
4802
  * @returns {Promise<boolean>} - true if successful, false otherwise
4781
4803
  * @public
@@ -4784,7 +4806,7 @@ export declare class AIActionEntity extends BaseEntity {
4784
4806
  * @method
4785
4807
  * @override
4786
4808
  */
4787
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4809
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4788
4810
  /**
4789
4811
  * AI Actions - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
4790
4812
  * @public
@@ -4860,7 +4882,7 @@ export declare class AIActionEntity extends BaseEntity {
4860
4882
  }
4861
4883
  /**
4862
4884
  * AI Model Actions - strongly typed entity sub-class
4863
- * * Schema: admin
4885
+ * * Schema: __mj
4864
4886
  * * Base Table: AIModelAction
4865
4887
  * * Base View: vwAIModelActions
4866
4888
  * * Primary Key: ID
@@ -4871,7 +4893,7 @@ export declare class AIActionEntity extends BaseEntity {
4871
4893
  export declare class AIModelActionEntity extends BaseEntity {
4872
4894
  /**
4873
4895
  * Loads the AI Model Actions record from the database
4874
- * @param ID: Number - primary key value to load the AI Model Actions record.
4896
+ * @param ID: number - primary key value to load the AI Model Actions record.
4875
4897
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4876
4898
  * @returns {Promise<boolean>} - true if successful, false otherwise
4877
4899
  * @public
@@ -4880,7 +4902,7 @@ export declare class AIModelActionEntity extends BaseEntity {
4880
4902
  * @method
4881
4903
  * @override
4882
4904
  */
4883
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4905
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4884
4906
  /**
4885
4907
  * AI Model Actions - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
4886
4908
  * @public
@@ -4949,7 +4971,7 @@ export declare class AIModelActionEntity extends BaseEntity {
4949
4971
  }
4950
4972
  /**
4951
4973
  * Entity AI Actions - strongly typed entity sub-class
4952
- * * Schema: admin
4974
+ * * Schema: __mj
4953
4975
  * * Base Table: EntityAIAction
4954
4976
  * * Base View: vwEntityAIActions
4955
4977
  * * Primary Key: ID
@@ -4960,7 +4982,7 @@ export declare class AIModelActionEntity extends BaseEntity {
4960
4982
  export declare class EntityAIActionEntity extends BaseEntity {
4961
4983
  /**
4962
4984
  * Loads the Entity AI Actions record from the database
4963
- * @param ID: Number - primary key value to load the Entity AI Actions record.
4985
+ * @param ID: number - primary key value to load the Entity AI Actions record.
4964
4986
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4965
4987
  * @returns {Promise<boolean>} - true if successful, false otherwise
4966
4988
  * @public
@@ -4969,7 +4991,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
4969
4991
  * @method
4970
4992
  * @override
4971
4993
  */
4972
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4994
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4973
4995
  /**
4974
4996
  * Entity AI Actions - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
4975
4997
  * @public
@@ -5103,7 +5125,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
5103
5125
  }
5104
5126
  /**
5105
5127
  * AI Model Types - strongly typed entity sub-class
5106
- * * Schema: admin
5128
+ * * Schema: __mj
5107
5129
  * * Base Table: AIModelType
5108
5130
  * * Base View: vwAIModelTypes
5109
5131
  * * Primary Key: ID
@@ -5114,7 +5136,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
5114
5136
  export declare class AIModelTypeEntity extends BaseEntity {
5115
5137
  /**
5116
5138
  * Loads the AI Model Types record from the database
5117
- * @param ID: Number - primary key value to load the AI Model Types record.
5139
+ * @param ID: number - primary key value to load the AI Model Types record.
5118
5140
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5119
5141
  * @returns {Promise<boolean>} - true if successful, false otherwise
5120
5142
  * @public
@@ -5123,7 +5145,7 @@ export declare class AIModelTypeEntity extends BaseEntity {
5123
5145
  * @method
5124
5146
  * @override
5125
5147
  */
5126
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5148
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5127
5149
  /**
5128
5150
  * AI Model Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
5129
5151
  * @public
@@ -5156,7 +5178,7 @@ export declare class AIModelTypeEntity extends BaseEntity {
5156
5178
  }
5157
5179
  /**
5158
5180
  * Queue Types - strongly typed entity sub-class
5159
- * * Schema: admin
5181
+ * * Schema: __mj
5160
5182
  * * Base Table: QueueType
5161
5183
  * * Base View: vwQueueTypes
5162
5184
  * * Primary Key: ID
@@ -5167,7 +5189,7 @@ export declare class AIModelTypeEntity extends BaseEntity {
5167
5189
  export declare class QueueTypeEntity extends BaseEntity {
5168
5190
  /**
5169
5191
  * Loads the Queue Types record from the database
5170
- * @param ID: Number - primary key value to load the Queue Types record.
5192
+ * @param ID: number - primary key value to load the Queue Types record.
5171
5193
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5172
5194
  * @returns {Promise<boolean>} - true if successful, false otherwise
5173
5195
  * @public
@@ -5176,7 +5198,7 @@ export declare class QueueTypeEntity extends BaseEntity {
5176
5198
  * @method
5177
5199
  * @override
5178
5200
  */
5179
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5201
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5180
5202
  /**
5181
5203
  * Queue Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
5182
5204
  * @public
@@ -5240,7 +5262,7 @@ export declare class QueueTypeEntity extends BaseEntity {
5240
5262
  }
5241
5263
  /**
5242
5264
  * Queues - strongly typed entity sub-class
5243
- * * Schema: admin
5265
+ * * Schema: __mj
5244
5266
  * * Base Table: Queue
5245
5267
  * * Base View: vwQueues
5246
5268
  * * Primary Key: ID
@@ -5251,7 +5273,7 @@ export declare class QueueTypeEntity extends BaseEntity {
5251
5273
  export declare class QueueEntity extends BaseEntity {
5252
5274
  /**
5253
5275
  * Loads the Queues record from the database
5254
- * @param ID: Number - primary key value to load the Queues record.
5276
+ * @param ID: number - primary key value to load the Queues record.
5255
5277
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5256
5278
  * @returns {Promise<boolean>} - true if successful, false otherwise
5257
5279
  * @public
@@ -5260,7 +5282,7 @@ export declare class QueueEntity extends BaseEntity {
5260
5282
  * @method
5261
5283
  * @override
5262
5284
  */
5263
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5285
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5264
5286
  /**
5265
5287
  * Queues - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
5266
5288
  * @public
@@ -5414,7 +5436,7 @@ export declare class QueueEntity extends BaseEntity {
5414
5436
  }
5415
5437
  /**
5416
5438
  * Queue Tasks - strongly typed entity sub-class
5417
- * * Schema: admin
5439
+ * * Schema: __mj
5418
5440
  * * Base Table: QueueTask
5419
5441
  * * Base View: vwQueueTasks
5420
5442
  * * Primary Key: ID
@@ -5425,7 +5447,7 @@ export declare class QueueEntity extends BaseEntity {
5425
5447
  export declare class QueueTaskEntity extends BaseEntity {
5426
5448
  /**
5427
5449
  * Loads the Queue Tasks record from the database
5428
- * @param ID: Number - primary key value to load the Queue Tasks record.
5450
+ * @param ID: number - primary key value to load the Queue Tasks record.
5429
5451
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5430
5452
  * @returns {Promise<boolean>} - true if successful, false otherwise
5431
5453
  * @public
@@ -5434,7 +5456,7 @@ export declare class QueueTaskEntity extends BaseEntity {
5434
5456
  * @method
5435
5457
  * @override
5436
5458
  */
5437
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5459
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5438
5460
  /**
5439
5461
  * Queue Tasks - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
5440
5462
  * @public
@@ -5518,7 +5540,7 @@ export declare class QueueTaskEntity extends BaseEntity {
5518
5540
  }
5519
5541
  /**
5520
5542
  * Dashboards - strongly typed entity sub-class
5521
- * * Schema: admin
5543
+ * * Schema: __mj
5522
5544
  * * Base Table: Dashboard
5523
5545
  * * Base View: vwDashboards
5524
5546
  * * Primary Key: ID
@@ -5529,7 +5551,7 @@ export declare class QueueTaskEntity extends BaseEntity {
5529
5551
  export declare class DashboardEntity extends BaseEntity {
5530
5552
  /**
5531
5553
  * Loads the Dashboards record from the database
5532
- * @param ID: Number - primary key value to load the Dashboards record.
5554
+ * @param ID: number - primary key value to load the Dashboards record.
5533
5555
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5534
5556
  * @returns {Promise<boolean>} - true if successful, false otherwise
5535
5557
  * @public
@@ -5538,7 +5560,7 @@ export declare class DashboardEntity extends BaseEntity {
5538
5560
  * @method
5539
5561
  * @override
5540
5562
  */
5541
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5563
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5542
5564
  /**
5543
5565
  * * Field Name: ID
5544
5566
  * * Display Name: ID
@@ -5597,7 +5619,7 @@ export declare class DashboardEntity extends BaseEntity {
5597
5619
  }
5598
5620
  /**
5599
5621
  * Output Trigger Types - strongly typed entity sub-class
5600
- * * Schema: admin
5622
+ * * Schema: __mj
5601
5623
  * * Base Table: OutputTriggerType
5602
5624
  * * Base View: vwOutputTriggerTypes
5603
5625
  * * Primary Key: ID
@@ -5608,7 +5630,7 @@ export declare class DashboardEntity extends BaseEntity {
5608
5630
  export declare class OutputTriggerTypeEntity extends BaseEntity {
5609
5631
  /**
5610
5632
  * Loads the Output Trigger Types record from the database
5611
- * @param ID: Number - primary key value to load the Output Trigger Types record.
5633
+ * @param ID: number - primary key value to load the Output Trigger Types record.
5612
5634
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5613
5635
  * @returns {Promise<boolean>} - true if successful, false otherwise
5614
5636
  * @public
@@ -5617,7 +5639,7 @@ export declare class OutputTriggerTypeEntity extends BaseEntity {
5617
5639
  * @method
5618
5640
  * @override
5619
5641
  */
5620
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5642
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5621
5643
  /**
5622
5644
  * Output Trigger Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
5623
5645
  * @public
@@ -5659,7 +5681,7 @@ export declare class OutputTriggerTypeEntity extends BaseEntity {
5659
5681
  }
5660
5682
  /**
5661
5683
  * Output Format Types - strongly typed entity sub-class
5662
- * * Schema: admin
5684
+ * * Schema: __mj
5663
5685
  * * Base Table: OutputFormatType
5664
5686
  * * Base View: vwOutputFormatTypes
5665
5687
  * * Primary Key: ID
@@ -5670,7 +5692,7 @@ export declare class OutputTriggerTypeEntity extends BaseEntity {
5670
5692
  export declare class OutputFormatTypeEntity extends BaseEntity {
5671
5693
  /**
5672
5694
  * Loads the Output Format Types record from the database
5673
- * @param ID: Number - primary key value to load the Output Format Types record.
5695
+ * @param ID: number - primary key value to load the Output Format Types record.
5674
5696
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5675
5697
  * @returns {Promise<boolean>} - true if successful, false otherwise
5676
5698
  * @public
@@ -5679,7 +5701,7 @@ export declare class OutputFormatTypeEntity extends BaseEntity {
5679
5701
  * @method
5680
5702
  * @override
5681
5703
  */
5682
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5704
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5683
5705
  /**
5684
5706
  * Output Format Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
5685
5707
  * @public
@@ -5728,7 +5750,7 @@ export declare class OutputFormatTypeEntity extends BaseEntity {
5728
5750
  }
5729
5751
  /**
5730
5752
  * Output Delivery Types - strongly typed entity sub-class
5731
- * * Schema: admin
5753
+ * * Schema: __mj
5732
5754
  * * Base Table: OutputDeliveryType
5733
5755
  * * Base View: vwOutputDeliveryTypes
5734
5756
  * * Primary Key: ID
@@ -5739,7 +5761,7 @@ export declare class OutputFormatTypeEntity extends BaseEntity {
5739
5761
  export declare class OutputDeliveryTypeEntity extends BaseEntity {
5740
5762
  /**
5741
5763
  * Loads the Output Delivery Types record from the database
5742
- * @param ID: Number - primary key value to load the Output Delivery Types record.
5764
+ * @param ID: number - primary key value to load the Output Delivery Types record.
5743
5765
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5744
5766
  * @returns {Promise<boolean>} - true if successful, false otherwise
5745
5767
  * @public
@@ -5748,7 +5770,7 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity {
5748
5770
  * @method
5749
5771
  * @override
5750
5772
  */
5751
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5773
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5752
5774
  /**
5753
5775
  * Output Delivery Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
5754
5776
  * @public
@@ -5790,7 +5812,7 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity {
5790
5812
  }
5791
5813
  /**
5792
5814
  * Reports - strongly typed entity sub-class
5793
- * * Schema: admin
5815
+ * * Schema: __mj
5794
5816
  * * Base Table: Report
5795
5817
  * * Base View: vwReports
5796
5818
  * * Primary Key: ID
@@ -5801,7 +5823,7 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity {
5801
5823
  export declare class ReportEntity extends BaseEntity {
5802
5824
  /**
5803
5825
  * Loads the Reports record from the database
5804
- * @param ID: Number - primary key value to load the Reports record.
5826
+ * @param ID: number - primary key value to load the Reports record.
5805
5827
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5806
5828
  * @returns {Promise<boolean>} - true if successful, false otherwise
5807
5829
  * @public
@@ -5810,7 +5832,7 @@ export declare class ReportEntity extends BaseEntity {
5810
5832
  * @method
5811
5833
  * @override
5812
5834
  */
5813
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5835
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
5814
5836
  /**
5815
5837
  * * Field Name: ID
5816
5838
  * * Display Name: ID
@@ -6005,7 +6027,7 @@ export declare class ReportEntity extends BaseEntity {
6005
6027
  }
6006
6028
  /**
6007
6029
  * Report Snapshots - strongly typed entity sub-class
6008
- * * Schema: admin
6030
+ * * Schema: __mj
6009
6031
  * * Base Table: ReportSnapshot
6010
6032
  * * Base View: vwReportSnapshots
6011
6033
  * * Primary Key: ID
@@ -6016,7 +6038,7 @@ export declare class ReportEntity extends BaseEntity {
6016
6038
  export declare class ReportSnapshotEntity extends BaseEntity {
6017
6039
  /**
6018
6040
  * Loads the Report Snapshots record from the database
6019
- * @param ID: Number - primary key value to load the Report Snapshots record.
6041
+ * @param ID: number - primary key value to load the Report Snapshots record.
6020
6042
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6021
6043
  * @returns {Promise<boolean>} - true if successful, false otherwise
6022
6044
  * @public
@@ -6025,7 +6047,7 @@ export declare class ReportSnapshotEntity extends BaseEntity {
6025
6047
  * @method
6026
6048
  * @override
6027
6049
  */
6028
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6050
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6029
6051
  /**
6030
6052
  * * Field Name: ID
6031
6053
  * * Display Name: ID
@@ -6077,7 +6099,7 @@ export declare class ReportSnapshotEntity extends BaseEntity {
6077
6099
  }
6078
6100
  /**
6079
6101
  * Resource Types - strongly typed entity sub-class
6080
- * * Schema: admin
6102
+ * * Schema: __mj
6081
6103
  * * Base Table: ResourceType
6082
6104
  * * Base View: vwResourceTypes
6083
6105
  * * Primary Key: ID
@@ -6088,7 +6110,7 @@ export declare class ReportSnapshotEntity extends BaseEntity {
6088
6110
  export declare class ResourceTypeEntity extends BaseEntity {
6089
6111
  /**
6090
6112
  * Loads the Resource Types record from the database
6091
- * @param ID: Number - primary key value to load the Resource Types record.
6113
+ * @param ID: number - primary key value to load the Resource Types record.
6092
6114
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6093
6115
  * @returns {Promise<boolean>} - true if successful, false otherwise
6094
6116
  * @public
@@ -6097,7 +6119,7 @@ export declare class ResourceTypeEntity extends BaseEntity {
6097
6119
  * @method
6098
6120
  * @override
6099
6121
  */
6100
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6122
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6101
6123
  /**
6102
6124
  * Resource Types - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
6103
6125
  * @public
@@ -6181,7 +6203,7 @@ export declare class ResourceTypeEntity extends BaseEntity {
6181
6203
  }
6182
6204
  /**
6183
6205
  * Tags - strongly typed entity sub-class
6184
- * * Schema: admin
6206
+ * * Schema: __mj
6185
6207
  * * Base Table: Tag
6186
6208
  * * Base View: vwTags
6187
6209
  * * Primary Key: ID
@@ -6192,7 +6214,7 @@ export declare class ResourceTypeEntity extends BaseEntity {
6192
6214
  export declare class TagEntity extends BaseEntity {
6193
6215
  /**
6194
6216
  * Loads the Tags record from the database
6195
- * @param ID: Number - primary key value to load the Tags record.
6217
+ * @param ID: number - primary key value to load the Tags record.
6196
6218
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6197
6219
  * @returns {Promise<boolean>} - true if successful, false otherwise
6198
6220
  * @public
@@ -6201,7 +6223,7 @@ export declare class TagEntity extends BaseEntity {
6201
6223
  * @method
6202
6224
  * @override
6203
6225
  */
6204
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6226
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6205
6227
  /**
6206
6228
  * Tags - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
6207
6229
  * @public
@@ -6264,7 +6286,7 @@ export declare class TagEntity extends BaseEntity {
6264
6286
  }
6265
6287
  /**
6266
6288
  * Tagged Items - strongly typed entity sub-class
6267
- * * Schema: admin
6289
+ * * Schema: __mj
6268
6290
  * * Base Table: TaggedItem
6269
6291
  * * Base View: vwTaggedItems
6270
6292
  * * Primary Key: ID
@@ -6275,7 +6297,7 @@ export declare class TagEntity extends BaseEntity {
6275
6297
  export declare class TaggedItemEntity extends BaseEntity {
6276
6298
  /**
6277
6299
  * Loads the Tagged Items record from the database
6278
- * @param ID: Number - primary key value to load the Tagged Items record.
6300
+ * @param ID: number - primary key value to load the Tagged Items record.
6279
6301
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6280
6302
  * @returns {Promise<boolean>} - true if successful, false otherwise
6281
6303
  * @public
@@ -6284,7 +6306,7 @@ export declare class TaggedItemEntity extends BaseEntity {
6284
6306
  * @method
6285
6307
  * @override
6286
6308
  */
6287
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6309
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6288
6310
  /**
6289
6311
  * Tagged Items - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
6290
6312
  * @public
@@ -6321,6 +6343,7 @@ export declare class TaggedItemEntity extends BaseEntity {
6321
6343
  * * Field Name: EntityID
6322
6344
  * * Display Name: Entity ID
6323
6345
  * * SQL Data Type: int
6346
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
6324
6347
  */
6325
6348
  get EntityID(): number;
6326
6349
  set EntityID(value: number);
@@ -6337,10 +6360,16 @@ export declare class TaggedItemEntity extends BaseEntity {
6337
6360
  * * SQL Data Type: nvarchar(255)
6338
6361
  */
6339
6362
  get Tag(): string;
6363
+ /**
6364
+ * * Field Name: Entity
6365
+ * * Display Name: Entity
6366
+ * * SQL Data Type: nvarchar(255)
6367
+ */
6368
+ get Entity(): string;
6340
6369
  }
6341
6370
  /**
6342
6371
  * Workspaces - strongly typed entity sub-class
6343
- * * Schema: admin
6372
+ * * Schema: __mj
6344
6373
  * * Base Table: Workspace
6345
6374
  * * Base View: vwWorkspaces
6346
6375
  * * Primary Key: ID
@@ -6351,7 +6380,7 @@ export declare class TaggedItemEntity extends BaseEntity {
6351
6380
  export declare class WorkspaceEntity extends BaseEntity {
6352
6381
  /**
6353
6382
  * Loads the Workspaces record from the database
6354
- * @param ID: Number - primary key value to load the Workspaces record.
6383
+ * @param ID: number - primary key value to load the Workspaces record.
6355
6384
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6356
6385
  * @returns {Promise<boolean>} - true if successful, false otherwise
6357
6386
  * @public
@@ -6360,7 +6389,7 @@ export declare class WorkspaceEntity extends BaseEntity {
6360
6389
  * @method
6361
6390
  * @override
6362
6391
  */
6363
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6392
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6364
6393
  /**
6365
6394
  * * Field Name: ID
6366
6395
  * * Display Name: ID
@@ -6398,7 +6427,7 @@ export declare class WorkspaceEntity extends BaseEntity {
6398
6427
  }
6399
6428
  /**
6400
6429
  * Workspace Items - strongly typed entity sub-class
6401
- * * Schema: admin
6430
+ * * Schema: __mj
6402
6431
  * * Base Table: WorkspaceItem
6403
6432
  * * Base View: vwWorkspaceItems
6404
6433
  * * Primary Key: ID
@@ -6409,7 +6438,7 @@ export declare class WorkspaceEntity extends BaseEntity {
6409
6438
  export declare class WorkspaceItemEntity extends BaseEntity {
6410
6439
  /**
6411
6440
  * Loads the Workspace Items record from the database
6412
- * @param ID: Number - primary key value to load the Workspace Items record.
6441
+ * @param ID: number - primary key value to load the Workspace Items record.
6413
6442
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6414
6443
  * @returns {Promise<boolean>} - true if successful, false otherwise
6415
6444
  * @public
@@ -6418,7 +6447,7 @@ export declare class WorkspaceItemEntity extends BaseEntity {
6418
6447
  * @method
6419
6448
  * @override
6420
6449
  */
6421
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6450
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6422
6451
  /**
6423
6452
  * * Field Name: ID
6424
6453
  * * Display Name: ID
@@ -6491,7 +6520,7 @@ export declare class WorkspaceItemEntity extends BaseEntity {
6491
6520
  }
6492
6521
  /**
6493
6522
  * Datasets - strongly typed entity sub-class
6494
- * * Schema: admin
6523
+ * * Schema: __mj
6495
6524
  * * Base Table: Dataset
6496
6525
  * * Base View: vwDatasets
6497
6526
  * * Primary Key: ID
@@ -6502,7 +6531,7 @@ export declare class WorkspaceItemEntity extends BaseEntity {
6502
6531
  export declare class DatasetEntity extends BaseEntity {
6503
6532
  /**
6504
6533
  * Loads the Datasets record from the database
6505
- * @param ID: Number - primary key value to load the Datasets record.
6534
+ * @param ID: number - primary key value to load the Datasets record.
6506
6535
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6507
6536
  * @returns {Promise<boolean>} - true if successful, false otherwise
6508
6537
  * @public
@@ -6511,7 +6540,7 @@ export declare class DatasetEntity extends BaseEntity {
6511
6540
  * @method
6512
6541
  * @override
6513
6542
  */
6514
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6543
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6515
6544
  /**
6516
6545
  * Datasets - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
6517
6546
  * @public
@@ -6567,7 +6596,7 @@ export declare class DatasetEntity extends BaseEntity {
6567
6596
  }
6568
6597
  /**
6569
6598
  * Dataset Items - strongly typed entity sub-class
6570
- * * Schema: admin
6599
+ * * Schema: __mj
6571
6600
  * * Base Table: DatasetItem
6572
6601
  * * Base View: vwDatasetItems
6573
6602
  * * Primary Key: ID
@@ -6578,7 +6607,7 @@ export declare class DatasetEntity extends BaseEntity {
6578
6607
  export declare class DatasetItemEntity extends BaseEntity {
6579
6608
  /**
6580
6609
  * Loads the Dataset Items record from the database
6581
- * @param ID: Number - primary key value to load the Dataset Items record.
6610
+ * @param ID: number - primary key value to load the Dataset Items record.
6582
6611
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6583
6612
  * @returns {Promise<boolean>} - true if successful, false otherwise
6584
6613
  * @public
@@ -6587,7 +6616,7 @@ export declare class DatasetItemEntity extends BaseEntity {
6587
6616
  * @method
6588
6617
  * @override
6589
6618
  */
6590
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6619
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6591
6620
  /**
6592
6621
  * Dataset Items - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
6593
6622
  * @public
@@ -6687,7 +6716,7 @@ export declare class DatasetItemEntity extends BaseEntity {
6687
6716
  }
6688
6717
  /**
6689
6718
  * Conversation Details - strongly typed entity sub-class
6690
- * * Schema: admin
6719
+ * * Schema: __mj
6691
6720
  * * Base Table: ConversationDetail
6692
6721
  * * Base View: vwConversationDetails
6693
6722
  * * Primary Key: ID
@@ -6698,7 +6727,7 @@ export declare class DatasetItemEntity extends BaseEntity {
6698
6727
  export declare class ConversationDetailEntity extends BaseEntity {
6699
6728
  /**
6700
6729
  * Loads the Conversation Details record from the database
6701
- * @param ID: Number - primary key value to load the Conversation Details record.
6730
+ * @param ID: number - primary key value to load the Conversation Details record.
6702
6731
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6703
6732
  * @returns {Promise<boolean>} - true if successful, false otherwise
6704
6733
  * @public
@@ -6707,7 +6736,7 @@ export declare class ConversationDetailEntity extends BaseEntity {
6707
6736
  * @method
6708
6737
  * @override
6709
6738
  */
6710
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6739
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6711
6740
  /**
6712
6741
  * * Field Name: ID
6713
6742
  * * Display Name: ID
@@ -6782,7 +6811,7 @@ export declare class ConversationDetailEntity extends BaseEntity {
6782
6811
  }
6783
6812
  /**
6784
6813
  * Conversations - strongly typed entity sub-class
6785
- * * Schema: admin
6814
+ * * Schema: __mj
6786
6815
  * * Base Table: Conversation
6787
6816
  * * Base View: vwConversations
6788
6817
  * * Primary Key: ID
@@ -6793,7 +6822,7 @@ export declare class ConversationDetailEntity extends BaseEntity {
6793
6822
  export declare class ConversationEntity extends BaseEntity {
6794
6823
  /**
6795
6824
  * Loads the Conversations record from the database
6796
- * @param ID: Number - primary key value to load the Conversations record.
6825
+ * @param ID: number - primary key value to load the Conversations record.
6797
6826
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6798
6827
  * @returns {Promise<boolean>} - true if successful, false otherwise
6799
6828
  * @public
@@ -6802,7 +6831,7 @@ export declare class ConversationEntity extends BaseEntity {
6802
6831
  * @method
6803
6832
  * @override
6804
6833
  */
6805
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6834
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6806
6835
  /**
6807
6836
  * * Field Name: ID
6808
6837
  * * Display Name: ID
@@ -6905,7 +6934,7 @@ export declare class ConversationEntity extends BaseEntity {
6905
6934
  }
6906
6935
  /**
6907
6936
  * User Notifications - strongly typed entity sub-class
6908
- * * Schema: admin
6937
+ * * Schema: __mj
6909
6938
  * * Base Table: UserNotification
6910
6939
  * * Base View: vwUserNotifications
6911
6940
  * * Primary Key: ID
@@ -6916,7 +6945,7 @@ export declare class ConversationEntity extends BaseEntity {
6916
6945
  export declare class UserNotificationEntity extends BaseEntity {
6917
6946
  /**
6918
6947
  * Loads the User Notifications record from the database
6919
- * @param ID: Number - primary key value to load the User Notifications record.
6948
+ * @param ID: number - primary key value to load the User Notifications record.
6920
6949
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6921
6950
  * @returns {Promise<boolean>} - true if successful, false otherwise
6922
6951
  * @public
@@ -6925,7 +6954,7 @@ export declare class UserNotificationEntity extends BaseEntity {
6925
6954
  * @method
6926
6955
  * @override
6927
6956
  */
6928
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6957
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6929
6958
  /**
6930
6959
  * User Notifications - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
6931
6960
  * @public
@@ -7022,7 +7051,7 @@ export declare class UserNotificationEntity extends BaseEntity {
7022
7051
  }
7023
7052
  /**
7024
7053
  * Schema Info - strongly typed entity sub-class
7025
- * * Schema: admin
7054
+ * * Schema: __mj
7026
7055
  * * Base Table: SchemaInfo
7027
7056
  * * Base View: vwSchemaInfos
7028
7057
  * * Primary Key: ID
@@ -7033,7 +7062,7 @@ export declare class UserNotificationEntity extends BaseEntity {
7033
7062
  export declare class SchemaInfoEntity extends BaseEntity {
7034
7063
  /**
7035
7064
  * Loads the Schema Info record from the database
7036
- * @param ID: Number - primary key value to load the Schema Info record.
7065
+ * @param ID: number - primary key value to load the Schema Info record.
7037
7066
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7038
7067
  * @returns {Promise<boolean>} - true if successful, false otherwise
7039
7068
  * @public
@@ -7042,7 +7071,7 @@ export declare class SchemaInfoEntity extends BaseEntity {
7042
7071
  * @method
7043
7072
  * @override
7044
7073
  */
7045
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7074
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7046
7075
  /**
7047
7076
  * Schema Info - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7048
7077
  * @public
@@ -7103,7 +7132,7 @@ export declare class SchemaInfoEntity extends BaseEntity {
7103
7132
  }
7104
7133
  /**
7105
7134
  * Company Integration Record Maps - strongly typed entity sub-class
7106
- * * Schema: admin
7135
+ * * Schema: __mj
7107
7136
  * * Base Table: CompanyIntegrationRecordMap
7108
7137
  * * Base View: vwCompanyIntegrationRecordMaps
7109
7138
  * * Primary Key: ID
@@ -7114,7 +7143,7 @@ export declare class SchemaInfoEntity extends BaseEntity {
7114
7143
  export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
7115
7144
  /**
7116
7145
  * Loads the Company Integration Record Maps record from the database
7117
- * @param ID: Number - primary key value to load the Company Integration Record Maps record.
7146
+ * @param ID: number - primary key value to load the Company Integration Record Maps record.
7118
7147
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7119
7148
  * @returns {Promise<boolean>} - true if successful, false otherwise
7120
7149
  * @public
@@ -7123,7 +7152,7 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
7123
7152
  * @method
7124
7153
  * @override
7125
7154
  */
7126
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7155
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7127
7156
  /**
7128
7157
  * Company Integration Record Maps - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7129
7158
  * @public
@@ -7158,6 +7187,7 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
7158
7187
  * * Field Name: EntityID
7159
7188
  * * Display Name: Entity ID
7160
7189
  * * SQL Data Type: int
7190
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
7161
7191
  */
7162
7192
  get EntityID(): number;
7163
7193
  set EntityID(value: number);
@@ -7182,10 +7212,16 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
7182
7212
  * * Default Value: getdate()
7183
7213
  */
7184
7214
  get UpdatedAt(): Date;
7215
+ /**
7216
+ * * Field Name: Entity
7217
+ * * Display Name: Entity
7218
+ * * SQL Data Type: nvarchar(255)
7219
+ */
7220
+ get Entity(): string;
7185
7221
  }
7186
7222
  /**
7187
7223
  * Record Merge Logs - strongly typed entity sub-class
7188
- * * Schema: admin
7224
+ * * Schema: __mj
7189
7225
  * * Base Table: RecordMergeLog
7190
7226
  * * Base View: vwRecordMergeLogs
7191
7227
  * * Primary Key: ID
@@ -7196,7 +7232,7 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
7196
7232
  export declare class RecordMergeLogEntity extends BaseEntity {
7197
7233
  /**
7198
7234
  * Loads the Record Merge Logs record from the database
7199
- * @param ID: Number - primary key value to load the Record Merge Logs record.
7235
+ * @param ID: number - primary key value to load the Record Merge Logs record.
7200
7236
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7201
7237
  * @returns {Promise<boolean>} - true if successful, false otherwise
7202
7238
  * @public
@@ -7205,7 +7241,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
7205
7241
  * @method
7206
7242
  * @override
7207
7243
  */
7208
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7244
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7209
7245
  /**
7210
7246
  * Record Merge Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7211
7247
  * @public
@@ -7325,7 +7361,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
7325
7361
  }
7326
7362
  /**
7327
7363
  * Record Merge Deletion Logs - strongly typed entity sub-class
7328
- * * Schema: admin
7364
+ * * Schema: __mj
7329
7365
  * * Base Table: RecordMergeDeletionLog
7330
7366
  * * Base View: vwRecordMergeDeletionLogs
7331
7367
  * * Primary Key: ID
@@ -7336,7 +7372,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
7336
7372
  export declare class RecordMergeDeletionLogEntity extends BaseEntity {
7337
7373
  /**
7338
7374
  * Loads the Record Merge Deletion Logs record from the database
7339
- * @param ID: Number - primary key value to load the Record Merge Deletion Logs record.
7375
+ * @param ID: number - primary key value to load the Record Merge Deletion Logs record.
7340
7376
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7341
7377
  * @returns {Promise<boolean>} - true if successful, false otherwise
7342
7378
  * @public
@@ -7345,7 +7381,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
7345
7381
  * @method
7346
7382
  * @override
7347
7383
  */
7348
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7384
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7349
7385
  /**
7350
7386
  * Record Merge Deletion Logs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7351
7387
  * @public
@@ -7408,7 +7444,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
7408
7444
  }
7409
7445
  /**
7410
7446
  * Query Fields - strongly typed entity sub-class
7411
- * * Schema: admin
7447
+ * * Schema: __mj
7412
7448
  * * Base Table: QueryField
7413
7449
  * * Base View: vwQueryFields
7414
7450
  * * Primary Key: ID
@@ -7419,7 +7455,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
7419
7455
  export declare class QueryFieldEntity extends BaseEntity {
7420
7456
  /**
7421
7457
  * Loads the Query Fields record from the database
7422
- * @param ID: Number - primary key value to load the Query Fields record.
7458
+ * @param ID: number - primary key value to load the Query Fields record.
7423
7459
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7424
7460
  * @returns {Promise<boolean>} - true if successful, false otherwise
7425
7461
  * @public
@@ -7428,7 +7464,7 @@ export declare class QueryFieldEntity extends BaseEntity {
7428
7464
  * @method
7429
7465
  * @override
7430
7466
  */
7431
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7467
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7432
7468
  /**
7433
7469
  * Query Fields - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7434
7470
  * @public
@@ -7493,6 +7529,7 @@ export declare class QueryFieldEntity extends BaseEntity {
7493
7529
  * * Field Name: SourceEntityID
7494
7530
  * * Display Name: Source Entity ID
7495
7531
  * * SQL Data Type: int
7532
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
7496
7533
  */
7497
7534
  get SourceEntityID(): number;
7498
7535
  set SourceEntityID(value: number);
@@ -7553,10 +7590,16 @@ export declare class QueryFieldEntity extends BaseEntity {
7553
7590
  * * SQL Data Type: nvarchar(255)
7554
7591
  */
7555
7592
  get Query(): string;
7593
+ /**
7594
+ * * Field Name: SourceEntity
7595
+ * * Display Name: Source Entity
7596
+ * * SQL Data Type: nvarchar(255)
7597
+ */
7598
+ get SourceEntity(): string;
7556
7599
  }
7557
7600
  /**
7558
7601
  * Query Categories - strongly typed entity sub-class
7559
- * * Schema: admin
7602
+ * * Schema: __mj
7560
7603
  * * Base Table: QueryCategory
7561
7604
  * * Base View: vwQueryCategories
7562
7605
  * * Primary Key: ID
@@ -7567,7 +7610,7 @@ export declare class QueryFieldEntity extends BaseEntity {
7567
7610
  export declare class QueryCategoryEntity extends BaseEntity {
7568
7611
  /**
7569
7612
  * Loads the Query Categories record from the database
7570
- * @param ID: Number - primary key value to load the Query Categories record.
7613
+ * @param ID: number - primary key value to load the Query Categories record.
7571
7614
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7572
7615
  * @returns {Promise<boolean>} - true if successful, false otherwise
7573
7616
  * @public
@@ -7576,7 +7619,7 @@ export declare class QueryCategoryEntity extends BaseEntity {
7576
7619
  * @method
7577
7620
  * @override
7578
7621
  */
7579
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7622
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7580
7623
  /**
7581
7624
  * Query Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7582
7625
  * @public
@@ -7637,7 +7680,7 @@ export declare class QueryCategoryEntity extends BaseEntity {
7637
7680
  }
7638
7681
  /**
7639
7682
  * Queries - strongly typed entity sub-class
7640
- * * Schema: admin
7683
+ * * Schema: __mj
7641
7684
  * * Base Table: Query
7642
7685
  * * Base View: vwQueries
7643
7686
  * * Primary Key: ID
@@ -7648,7 +7691,7 @@ export declare class QueryCategoryEntity extends BaseEntity {
7648
7691
  export declare class QueryEntity extends BaseEntity {
7649
7692
  /**
7650
7693
  * Loads the Queries record from the database
7651
- * @param ID: Number - primary key value to load the Queries record.
7694
+ * @param ID: number - primary key value to load the Queries record.
7652
7695
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7653
7696
  * @returns {Promise<boolean>} - true if successful, false otherwise
7654
7697
  * @public
@@ -7657,7 +7700,7 @@ export declare class QueryEntity extends BaseEntity {
7657
7700
  * @method
7658
7701
  * @override
7659
7702
  */
7660
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7703
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7661
7704
  /**
7662
7705
  * Queries - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7663
7706
  * @public
@@ -7755,7 +7798,7 @@ export declare class QueryEntity extends BaseEntity {
7755
7798
  }
7756
7799
  /**
7757
7800
  * Query Permissions - strongly typed entity sub-class
7758
- * * Schema: admin
7801
+ * * Schema: __mj
7759
7802
  * * Base Table: QueryPermission
7760
7803
  * * Base View: vwQueryPermissions
7761
7804
  * * Primary Key: ID
@@ -7766,7 +7809,7 @@ export declare class QueryEntity extends BaseEntity {
7766
7809
  export declare class QueryPermissionEntity extends BaseEntity {
7767
7810
  /**
7768
7811
  * Loads the Query Permissions record from the database
7769
- * @param ID: Number - primary key value to load the Query Permissions record.
7812
+ * @param ID: number - primary key value to load the Query Permissions record.
7770
7813
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7771
7814
  * @returns {Promise<boolean>} - true if successful, false otherwise
7772
7815
  * @public
@@ -7775,7 +7818,7 @@ export declare class QueryPermissionEntity extends BaseEntity {
7775
7818
  * @method
7776
7819
  * @override
7777
7820
  */
7778
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7821
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7779
7822
  /**
7780
7823
  * Query Permissions - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7781
7824
  * @public
@@ -7824,7 +7867,7 @@ export declare class QueryPermissionEntity extends BaseEntity {
7824
7867
  }
7825
7868
  /**
7826
7869
  * Vector Indexes - strongly typed entity sub-class
7827
- * * Schema: admin
7870
+ * * Schema: __mj
7828
7871
  * * Base Table: VectorIndex
7829
7872
  * * Base View: vwVectorIndexes
7830
7873
  * * Primary Key: ID
@@ -7835,7 +7878,7 @@ export declare class QueryPermissionEntity extends BaseEntity {
7835
7878
  export declare class VectorIndexEntity extends BaseEntity {
7836
7879
  /**
7837
7880
  * Loads the Vector Indexes record from the database
7838
- * @param ID: Number - primary key value to load the Vector Indexes record.
7881
+ * @param ID: number - primary key value to load the Vector Indexes record.
7839
7882
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7840
7883
  * @returns {Promise<boolean>} - true if successful, false otherwise
7841
7884
  * @public
@@ -7844,7 +7887,7 @@ export declare class VectorIndexEntity extends BaseEntity {
7844
7887
  * @method
7845
7888
  * @override
7846
7889
  */
7847
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7890
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7848
7891
  /**
7849
7892
  * Vector Indexes - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7850
7893
  * @public
@@ -7919,7 +7962,7 @@ export declare class VectorIndexEntity extends BaseEntity {
7919
7962
  }
7920
7963
  /**
7921
7964
  * Entity Document Types - strongly typed entity sub-class
7922
- * * Schema: admin
7965
+ * * Schema: __mj
7923
7966
  * * Base Table: EntityDocumentType
7924
7967
  * * Base View: vwEntityDocumentTypes
7925
7968
  * * Primary Key: ID
@@ -7930,7 +7973,7 @@ export declare class VectorIndexEntity extends BaseEntity {
7930
7973
  export declare class EntityDocumentTypeEntity extends BaseEntity {
7931
7974
  /**
7932
7975
  * Loads the Entity Document Types record from the database
7933
- * @param ID: Number - primary key value to load the Entity Document Types record.
7976
+ * @param ID: number - primary key value to load the Entity Document Types record.
7934
7977
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7935
7978
  * @returns {Promise<boolean>} - true if successful, false otherwise
7936
7979
  * @public
@@ -7939,7 +7982,7 @@ export declare class EntityDocumentTypeEntity extends BaseEntity {
7939
7982
  * @method
7940
7983
  * @override
7941
7984
  */
7942
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7985
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7943
7986
  /**
7944
7987
  * Entity Document Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
7945
7988
  * @public
@@ -7986,7 +8029,7 @@ export declare class EntityDocumentTypeEntity extends BaseEntity {
7986
8029
  }
7987
8030
  /**
7988
8031
  * Entity Document Runs - strongly typed entity sub-class
7989
- * * Schema: admin
8032
+ * * Schema: __mj
7990
8033
  * * Base Table: EntityDocumentRun
7991
8034
  * * Base View: vwEntityDocumentRuns
7992
8035
  * * Primary Key: ID
@@ -7997,7 +8040,7 @@ export declare class EntityDocumentTypeEntity extends BaseEntity {
7997
8040
  export declare class EntityDocumentRunEntity extends BaseEntity {
7998
8041
  /**
7999
8042
  * Loads the Entity Document Runs record from the database
8000
- * @param ID: Number - primary key value to load the Entity Document Runs record.
8043
+ * @param ID: number - primary key value to load the Entity Document Runs record.
8001
8044
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8002
8045
  * @returns {Promise<boolean>} - true if successful, false otherwise
8003
8046
  * @public
@@ -8006,7 +8049,7 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
8006
8049
  * @method
8007
8050
  * @override
8008
8051
  */
8009
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8052
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8010
8053
  /**
8011
8054
  * Entity Document Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8012
8055
  * @public
@@ -8076,7 +8119,7 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
8076
8119
  }
8077
8120
  /**
8078
8121
  * Vector Databases - strongly typed entity sub-class
8079
- * * Schema: admin
8122
+ * * Schema: __mj
8080
8123
  * * Base Table: VectorDatabase
8081
8124
  * * Base View: vwVectorDatabases
8082
8125
  * * Primary Key: ID
@@ -8087,7 +8130,7 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
8087
8130
  export declare class VectorDatabaseEntity extends BaseEntity {
8088
8131
  /**
8089
8132
  * Loads the Vector Databases record from the database
8090
- * @param ID: Number - primary key value to load the Vector Databases record.
8133
+ * @param ID: number - primary key value to load the Vector Databases record.
8091
8134
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8092
8135
  * @returns {Promise<boolean>} - true if successful, false otherwise
8093
8136
  * @public
@@ -8096,7 +8139,7 @@ export declare class VectorDatabaseEntity extends BaseEntity {
8096
8139
  * @method
8097
8140
  * @override
8098
8141
  */
8099
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8142
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8100
8143
  /**
8101
8144
  * Vector Databases - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8102
8145
  * @public
@@ -8157,7 +8200,7 @@ export declare class VectorDatabaseEntity extends BaseEntity {
8157
8200
  }
8158
8201
  /**
8159
8202
  * Entity Record Documents - strongly typed entity sub-class
8160
- * * Schema: admin
8203
+ * * Schema: __mj
8161
8204
  * * Base Table: EntityRecordDocument
8162
8205
  * * Base View: vwEntityRecordDocuments
8163
8206
  * * Primary Key: ID
@@ -8168,7 +8211,7 @@ export declare class VectorDatabaseEntity extends BaseEntity {
8168
8211
  export declare class EntityRecordDocumentEntity extends BaseEntity {
8169
8212
  /**
8170
8213
  * Loads the Entity Record Documents record from the database
8171
- * @param ID: Number - primary key value to load the Entity Record Documents record.
8214
+ * @param ID: number - primary key value to load the Entity Record Documents record.
8172
8215
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8173
8216
  * @returns {Promise<boolean>} - true if successful, false otherwise
8174
8217
  * @public
@@ -8177,7 +8220,7 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
8177
8220
  * @method
8178
8221
  * @override
8179
8222
  */
8180
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8223
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8181
8224
  /**
8182
8225
  * Entity Record Documents - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8183
8226
  * @public
@@ -8197,6 +8240,7 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
8197
8240
  * * Field Name: EntityID
8198
8241
  * * Display Name: Entity ID
8199
8242
  * * SQL Data Type: int
8243
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
8200
8244
  */
8201
8245
  get EntityID(): number;
8202
8246
  set EntityID(value: number);
@@ -8259,7 +8303,7 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
8259
8303
  }
8260
8304
  /**
8261
8305
  * Entity Documents - strongly typed entity sub-class
8262
- * * Schema: admin
8306
+ * * Schema: __mj
8263
8307
  * * Base Table: EntityDocument
8264
8308
  * * Base View: vwEntityDocuments
8265
8309
  * * Primary Key: ID
@@ -8270,7 +8314,7 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
8270
8314
  export declare class EntityDocumentEntity extends BaseEntity {
8271
8315
  /**
8272
8316
  * Loads the Entity Documents record from the database
8273
- * @param ID: Number - primary key value to load the Entity Documents record.
8317
+ * @param ID: number - primary key value to load the Entity Documents record.
8274
8318
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8275
8319
  * @returns {Promise<boolean>} - true if successful, false otherwise
8276
8320
  * @public
@@ -8279,7 +8323,7 @@ export declare class EntityDocumentEntity extends BaseEntity {
8279
8323
  * @method
8280
8324
  * @override
8281
8325
  */
8282
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8326
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8283
8327
  /**
8284
8328
  * Entity Documents - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8285
8329
  * @public
@@ -8306,6 +8350,7 @@ export declare class EntityDocumentEntity extends BaseEntity {
8306
8350
  * * Field Name: EntityID
8307
8351
  * * Display Name: Entity ID
8308
8352
  * * SQL Data Type: int
8353
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
8309
8354
  */
8310
8355
  get EntityID(): number;
8311
8356
  set EntityID(value: number);
@@ -8347,6 +8392,12 @@ export declare class EntityDocumentEntity extends BaseEntity {
8347
8392
  */
8348
8393
  get UpdatedAt(): Date;
8349
8394
  /**
8395
+ * * Field Name: Entity
8396
+ * * Display Name: Entity
8397
+ * * SQL Data Type: nvarchar(255)
8398
+ */
8399
+ get Entity(): string;
8400
+ /**
8350
8401
  * * Field Name: Type
8351
8402
  * * Display Name: Type
8352
8403
  * * SQL Data Type: nvarchar(100)
@@ -8355,7 +8406,7 @@ export declare class EntityDocumentEntity extends BaseEntity {
8355
8406
  }
8356
8407
  /**
8357
8408
  * Data Context Items - strongly typed entity sub-class
8358
- * * Schema: admin
8409
+ * * Schema: __mj
8359
8410
  * * Base Table: DataContextItem
8360
8411
  * * Base View: vwDataContextItems
8361
8412
  * * @description Data Context Items store information about each item within a Data Context. Each item stores a link to a view, query, or raw sql statement and can optionally cache the JSON representing the last run of that data object as well.
@@ -8367,7 +8418,7 @@ export declare class EntityDocumentEntity extends BaseEntity {
8367
8418
  export declare class DataContextItemEntity extends BaseEntity {
8368
8419
  /**
8369
8420
  * Loads the Data Context Items record from the database
8370
- * @param ID: Number - primary key value to load the Data Context Items record.
8421
+ * @param ID: number - primary key value to load the Data Context Items record.
8371
8422
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8372
8423
  * @returns {Promise<boolean>} - true if successful, false otherwise
8373
8424
  * @public
@@ -8376,7 +8427,7 @@ export declare class DataContextItemEntity extends BaseEntity {
8376
8427
  * @method
8377
8428
  * @override
8378
8429
  */
8379
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8430
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8380
8431
  /**
8381
8432
  * Data Context Items - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8382
8433
  * @public
@@ -8431,6 +8482,7 @@ export declare class DataContextItemEntity extends BaseEntity {
8431
8482
  * * Field Name: EntityID
8432
8483
  * * Display Name: Entity ID
8433
8484
  * * SQL Data Type: int
8485
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
8434
8486
  * * Description: Used if type='full_entity' or type='single_record'
8435
8487
  */
8436
8488
  get EntityID(): number;
@@ -8499,10 +8551,16 @@ export declare class DataContextItemEntity extends BaseEntity {
8499
8551
  * * SQL Data Type: nvarchar(255)
8500
8552
  */
8501
8553
  get Query(): string;
8554
+ /**
8555
+ * * Field Name: Entity
8556
+ * * Display Name: Entity
8557
+ * * SQL Data Type: nvarchar(255)
8558
+ */
8559
+ get Entity(): string;
8502
8560
  }
8503
8561
  /**
8504
8562
  * Data Contexts - strongly typed entity sub-class
8505
- * * Schema: admin
8563
+ * * Schema: __mj
8506
8564
  * * Base Table: DataContext
8507
8565
  * * Base View: vwDataContexts
8508
8566
  * * @description Data Contexts are a primitive within the MemberJunction architecture. They store information about data contexts which are groups of data including views, queries, or raw SQL statements. Data contexts can be used in conversations, reports and more.
@@ -8514,7 +8572,7 @@ export declare class DataContextItemEntity extends BaseEntity {
8514
8572
  export declare class DataContextEntity extends BaseEntity {
8515
8573
  /**
8516
8574
  * Loads the Data Contexts record from the database
8517
- * @param ID: Number - primary key value to load the Data Contexts record.
8575
+ * @param ID: number - primary key value to load the Data Contexts record.
8518
8576
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8519
8577
  * @returns {Promise<boolean>} - true if successful, false otherwise
8520
8578
  * @public
@@ -8523,7 +8581,7 @@ export declare class DataContextEntity extends BaseEntity {
8523
8581
  * @method
8524
8582
  * @override
8525
8583
  */
8526
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8584
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8527
8585
  /**
8528
8586
  * Data Contexts - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8529
8587
  * @public
@@ -8591,7 +8649,7 @@ export declare class DataContextEntity extends BaseEntity {
8591
8649
  }
8592
8650
  /**
8593
8651
  * User View Categories - strongly typed entity sub-class
8594
- * * Schema: admin
8652
+ * * Schema: __mj
8595
8653
  * * Base Table: UserViewCategory
8596
8654
  * * Base View: vwUserViewCategories
8597
8655
  * * Primary Key: ID
@@ -8602,7 +8660,7 @@ export declare class DataContextEntity extends BaseEntity {
8602
8660
  export declare class UserViewCategoryEntity extends BaseEntity {
8603
8661
  /**
8604
8662
  * Loads the User View Categories record from the database
8605
- * @param ID: Number - primary key value to load the User View Categories record.
8663
+ * @param ID: number - primary key value to load the User View Categories record.
8606
8664
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8607
8665
  * @returns {Promise<boolean>} - true if successful, false otherwise
8608
8666
  * @public
@@ -8611,7 +8669,7 @@ export declare class UserViewCategoryEntity extends BaseEntity {
8611
8669
  * @method
8612
8670
  * @override
8613
8671
  */
8614
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8672
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8615
8673
  /**
8616
8674
  * User View Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8617
8675
  * @public
@@ -8672,7 +8730,7 @@ export declare class UserViewCategoryEntity extends BaseEntity {
8672
8730
  }
8673
8731
  /**
8674
8732
  * Dashboard Categories - strongly typed entity sub-class
8675
- * * Schema: admin
8733
+ * * Schema: __mj
8676
8734
  * * Base Table: DashboardCategory
8677
8735
  * * Base View: vwDashboardCategories
8678
8736
  * * Primary Key: ID
@@ -8683,7 +8741,7 @@ export declare class UserViewCategoryEntity extends BaseEntity {
8683
8741
  export declare class DashboardCategoryEntity extends BaseEntity {
8684
8742
  /**
8685
8743
  * Loads the Dashboard Categories record from the database
8686
- * @param ID: Number - primary key value to load the Dashboard Categories record.
8744
+ * @param ID: number - primary key value to load the Dashboard Categories record.
8687
8745
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8688
8746
  * @returns {Promise<boolean>} - true if successful, false otherwise
8689
8747
  * @public
@@ -8692,7 +8750,7 @@ export declare class DashboardCategoryEntity extends BaseEntity {
8692
8750
  * @method
8693
8751
  * @override
8694
8752
  */
8695
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8753
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8696
8754
  /**
8697
8755
  * Dashboard Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8698
8756
  * @public
@@ -8753,7 +8811,7 @@ export declare class DashboardCategoryEntity extends BaseEntity {
8753
8811
  }
8754
8812
  /**
8755
8813
  * Report Categories - strongly typed entity sub-class
8756
- * * Schema: admin
8814
+ * * Schema: __mj
8757
8815
  * * Base Table: ReportCategory
8758
8816
  * * Base View: vwReportCategories
8759
8817
  * * Primary Key: ID
@@ -8764,7 +8822,7 @@ export declare class DashboardCategoryEntity extends BaseEntity {
8764
8822
  export declare class ReportCategoryEntity extends BaseEntity {
8765
8823
  /**
8766
8824
  * Loads the Report Categories record from the database
8767
- * @param ID: Number - primary key value to load the Report Categories record.
8825
+ * @param ID: number - primary key value to load the Report Categories record.
8768
8826
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8769
8827
  * @returns {Promise<boolean>} - true if successful, false otherwise
8770
8828
  * @public
@@ -8773,7 +8831,7 @@ export declare class ReportCategoryEntity extends BaseEntity {
8773
8831
  * @method
8774
8832
  * @override
8775
8833
  */
8776
- Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8834
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8777
8835
  /**
8778
8836
  * Report Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
8779
8837
  * @public