@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.
@@ -12,7 +12,7 @@ const core_1 = require("@memberjunction/core");
12
12
  const global_1 = require("@memberjunction/global");
13
13
  /**
14
14
  * Companies - strongly typed entity sub-class
15
- * * Schema: admin
15
+ * * Schema: __mj
16
16
  * * Base Table: Company
17
17
  * * Base View: vwCompanies
18
18
  * * Primary Key: ID
@@ -23,7 +23,7 @@ const global_1 = require("@memberjunction/global");
23
23
  let CompanyEntity = class CompanyEntity extends core_1.BaseEntity {
24
24
  /**
25
25
  * Loads the Companies record from the database
26
- * @param ID: Number - primary key value to load the Companies record.
26
+ * @param ID: number - primary key value to load the Companies record.
27
27
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
28
28
  * @returns {Promise<boolean>} - true if successful, false otherwise
29
29
  * @public
@@ -121,7 +121,7 @@ exports.CompanyEntity = CompanyEntity = __decorate([
121
121
  ], CompanyEntity);
122
122
  /**
123
123
  * Employees - strongly typed entity sub-class
124
- * * Schema: admin
124
+ * * Schema: __mj
125
125
  * * Base Table: Employee
126
126
  * * Base View: vwEmployees
127
127
  * * Primary Key: ID
@@ -132,7 +132,7 @@ exports.CompanyEntity = CompanyEntity = __decorate([
132
132
  let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
133
133
  /**
134
134
  * Loads the Employees record from the database
135
- * @param ID: Number - primary key value to load the Employees record.
135
+ * @param ID: number - primary key value to load the Employees record.
136
136
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
137
137
  * @returns {Promise<boolean>} - true if successful, false otherwise
138
138
  * @public
@@ -314,7 +314,7 @@ exports.EmployeeEntity = EmployeeEntity = __decorate([
314
314
  ], EmployeeEntity);
315
315
  /**
316
316
  * User Favorites - strongly typed entity sub-class
317
- * * Schema: admin
317
+ * * Schema: __mj
318
318
  * * Base Table: UserFavorite
319
319
  * * Base View: vwUserFavorites
320
320
  * * Primary Key: ID
@@ -325,7 +325,7 @@ exports.EmployeeEntity = EmployeeEntity = __decorate([
325
325
  let UserFavoriteEntity = class UserFavoriteEntity extends core_1.BaseEntity {
326
326
  /**
327
327
  * Loads the User Favorites record from the database
328
- * @param ID: Number - primary key value to load the User Favorites record.
328
+ * @param ID: number - primary key value to load the User Favorites record.
329
329
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
330
330
  * @returns {Promise<boolean>} - true if successful, false otherwise
331
331
  * @public
@@ -429,7 +429,7 @@ exports.UserFavoriteEntity = UserFavoriteEntity = __decorate([
429
429
  ], UserFavoriteEntity);
430
430
  /**
431
431
  * Employee Company Integrations - strongly typed entity sub-class
432
- * * Schema: admin
432
+ * * Schema: __mj
433
433
  * * Base Table: EmployeeCompanyIntegration
434
434
  * * Base View: vwEmployeeCompanyIntegrations
435
435
  * * Primary Key: ID
@@ -440,7 +440,7 @@ exports.UserFavoriteEntity = UserFavoriteEntity = __decorate([
440
440
  let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity extends core_1.BaseEntity {
441
441
  /**
442
442
  * Loads the Employee Company Integrations record from the database
443
- * @param ID: Number - primary key value to load the Employee Company Integrations record.
443
+ * @param ID: number - primary key value to load the Employee Company Integrations record.
444
444
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
445
445
  * @returns {Promise<boolean>} - true if successful, false otherwise
446
446
  * @public
@@ -544,7 +544,7 @@ exports.EmployeeCompanyIntegrationEntity = EmployeeCompanyIntegrationEntity = __
544
544
  ], EmployeeCompanyIntegrationEntity);
545
545
  /**
546
546
  * Employee Roles - strongly typed entity sub-class
547
- * * Schema: admin
547
+ * * Schema: __mj
548
548
  * * Base Table: EmployeeRole
549
549
  * * Base View: vwEmployeeRoles
550
550
  * * Primary Key: ID
@@ -555,7 +555,7 @@ exports.EmployeeCompanyIntegrationEntity = EmployeeCompanyIntegrationEntity = __
555
555
  let EmployeeRoleEntity = class EmployeeRoleEntity extends core_1.BaseEntity {
556
556
  /**
557
557
  * Loads the Employee Roles record from the database
558
- * @param ID: Number - primary key value to load the Employee Roles record.
558
+ * @param ID: number - primary key value to load the Employee Roles record.
559
559
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
560
560
  * @returns {Promise<boolean>} - true if successful, false otherwise
561
561
  * @public
@@ -645,7 +645,7 @@ exports.EmployeeRoleEntity = EmployeeRoleEntity = __decorate([
645
645
  ], EmployeeRoleEntity);
646
646
  /**
647
647
  * Employee Skills - strongly typed entity sub-class
648
- * * Schema: admin
648
+ * * Schema: __mj
649
649
  * * Base Table: EmployeeSkill
650
650
  * * Base View: vwEmployeeSkills
651
651
  * * Primary Key: ID
@@ -656,7 +656,7 @@ exports.EmployeeRoleEntity = EmployeeRoleEntity = __decorate([
656
656
  let EmployeeSkillEntity = class EmployeeSkillEntity extends core_1.BaseEntity {
657
657
  /**
658
658
  * Loads the Employee Skills record from the database
659
- * @param ID: Number - primary key value to load the Employee Skills record.
659
+ * @param ID: number - primary key value to load the Employee Skills record.
660
660
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
661
661
  * @returns {Promise<boolean>} - true if successful, false otherwise
662
662
  * @public
@@ -746,7 +746,7 @@ exports.EmployeeSkillEntity = EmployeeSkillEntity = __decorate([
746
746
  ], EmployeeSkillEntity);
747
747
  /**
748
748
  * Roles - strongly typed entity sub-class
749
- * * Schema: admin
749
+ * * Schema: __mj
750
750
  * * Base Table: Role
751
751
  * * Base View: vwRoles
752
752
  * * Primary Key: ID
@@ -757,7 +757,7 @@ exports.EmployeeSkillEntity = EmployeeSkillEntity = __decorate([
757
757
  let RoleEntity = class RoleEntity extends core_1.BaseEntity {
758
758
  /**
759
759
  * Loads the Roles record from the database
760
- * @param ID: Number - primary key value to load the Roles record.
760
+ * @param ID: number - primary key value to load the Roles record.
761
761
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
762
762
  * @returns {Promise<boolean>} - true if successful, false otherwise
763
763
  * @public
@@ -855,7 +855,7 @@ exports.RoleEntity = RoleEntity = __decorate([
855
855
  ], RoleEntity);
856
856
  /**
857
857
  * Skills - strongly typed entity sub-class
858
- * * Schema: admin
858
+ * * Schema: __mj
859
859
  * * Base Table: Skill
860
860
  * * Base View: vwSkills
861
861
  * * Primary Key: ID
@@ -866,7 +866,7 @@ exports.RoleEntity = RoleEntity = __decorate([
866
866
  let SkillEntity = class SkillEntity extends core_1.BaseEntity {
867
867
  /**
868
868
  * Loads the Skills record from the database
869
- * @param ID: Number - primary key value to load the Skills record.
869
+ * @param ID: number - primary key value to load the Skills record.
870
870
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
871
871
  * @returns {Promise<boolean>} - true if successful, false otherwise
872
872
  * @public
@@ -964,7 +964,7 @@ exports.SkillEntity = SkillEntity = __decorate([
964
964
  ], SkillEntity);
965
965
  /**
966
966
  * Integration URL Formats - strongly typed entity sub-class
967
- * * Schema: admin
967
+ * * Schema: __mj
968
968
  * * Base Table: IntegrationURLFormat
969
969
  * * Base View: vwIntegrationURLFormats
970
970
  * * Primary Key: ID
@@ -975,7 +975,7 @@ exports.SkillEntity = SkillEntity = __decorate([
975
975
  let IntegrationURLFormatEntity = class IntegrationURLFormatEntity extends core_1.BaseEntity {
976
976
  /**
977
977
  * Loads the Integration URL Formats record from the database
978
- * @param ID: Number - primary key value to load the Integration URL Formats record.
978
+ * @param ID: number - primary key value to load the Integration URL Formats record.
979
979
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
980
980
  * @returns {Promise<boolean>} - true if successful, false otherwise
981
981
  * @public
@@ -1080,7 +1080,7 @@ exports.IntegrationURLFormatEntity = IntegrationURLFormatEntity = __decorate([
1080
1080
  ], IntegrationURLFormatEntity);
1081
1081
  /**
1082
1082
  * Integrations - strongly typed entity sub-class
1083
- * * Schema: admin
1083
+ * * Schema: __mj
1084
1084
  * * Base Table: Integration
1085
1085
  * * Base View: vwIntegrations
1086
1086
  * * Primary Key: ID
@@ -1091,7 +1091,7 @@ exports.IntegrationURLFormatEntity = IntegrationURLFormatEntity = __decorate([
1091
1091
  let IntegrationEntity = class IntegrationEntity extends core_1.BaseEntity {
1092
1092
  /**
1093
1093
  * Loads the Integrations record from the database
1094
- * @param ID: Number - primary key value to load the Integrations record.
1094
+ * @param ID: number - primary key value to load the Integrations record.
1095
1095
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1096
1096
  * @returns {Promise<boolean>} - true if successful, false otherwise
1097
1097
  * @public
@@ -1225,7 +1225,7 @@ exports.IntegrationEntity = IntegrationEntity = __decorate([
1225
1225
  ], IntegrationEntity);
1226
1226
  /**
1227
1227
  * Company Integrations - strongly typed entity sub-class
1228
- * * Schema: admin
1228
+ * * Schema: __mj
1229
1229
  * * Base Table: CompanyIntegration
1230
1230
  * * Base View: vwCompanyIntegrations
1231
1231
  * * Primary Key: ID
@@ -1236,7 +1236,7 @@ exports.IntegrationEntity = IntegrationEntity = __decorate([
1236
1236
  let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.BaseEntity {
1237
1237
  /**
1238
1238
  * Loads the Company Integrations record from the database
1239
- * @param ID: Number - primary key value to load the Company Integrations record.
1239
+ * @param ID: number - primary key value to load the Company Integrations record.
1240
1240
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1241
1241
  * @returns {Promise<boolean>} - true if successful, false otherwise
1242
1242
  * @public
@@ -1497,7 +1497,7 @@ exports.CompanyIntegrationEntity = CompanyIntegrationEntity = __decorate([
1497
1497
  ], CompanyIntegrationEntity);
1498
1498
  /**
1499
1499
  * Entity Fields - strongly typed entity sub-class
1500
- * * Schema: admin
1500
+ * * Schema: __mj
1501
1501
  * * Base Table: EntityField
1502
1502
  * * Base View: vwEntityFields
1503
1503
  * * Primary Key: ID
@@ -1508,7 +1508,7 @@ exports.CompanyIntegrationEntity = CompanyIntegrationEntity = __decorate([
1508
1508
  let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
1509
1509
  /**
1510
1510
  * Loads the Entity Fields record from the database
1511
- * @param ID: Number - primary key value to load the Entity Fields record.
1511
+ * @param ID: number - primary key value to load the Entity Fields record.
1512
1512
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
1513
1513
  * @returns {Promise<boolean>} - true if successful, false otherwise
1514
1514
  * @public
@@ -1533,6 +1533,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
1533
1533
  * * Field Name: EntityID
1534
1534
  * * Display Name: Entity ID
1535
1535
  * * SQL Data Type: int
1536
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
1536
1537
  */
1537
1538
  get EntityID() {
1538
1539
  return this.Get('EntityID');
@@ -1840,6 +1841,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
1840
1841
  * * Field Name: RelatedEntityID
1841
1842
  * * Display Name: RelatedEntity ID
1842
1843
  * * SQL Data Type: int
1844
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
1843
1845
  */
1844
1846
  get RelatedEntityID() {
1845
1847
  return this.Get('RelatedEntityID');
@@ -2001,7 +2003,7 @@ exports.EntityFieldEntity = EntityFieldEntity = __decorate([
2001
2003
  ], EntityFieldEntity);
2002
2004
  /**
2003
2005
  * Entities - strongly typed entity sub-class
2004
- * * Schema: admin
2006
+ * * Schema: __mj
2005
2007
  * * Base Table: Entity
2006
2008
  * * Base View: vwEntities
2007
2009
  * * Primary Key: ID
@@ -2012,7 +2014,7 @@ exports.EntityFieldEntity = EntityFieldEntity = __decorate([
2012
2014
  let EntityEntity = class EntityEntity extends core_1.BaseEntity {
2013
2015
  /**
2014
2016
  * Loads the Entities record from the database
2015
- * @param ID: Number - primary key value to load the Entities record.
2017
+ * @param ID: number - primary key value to load the Entities record.
2016
2018
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2017
2019
  * @returns {Promise<boolean>} - true if successful, false otherwise
2018
2020
  * @public
@@ -2542,7 +2544,7 @@ exports.EntityEntity = EntityEntity = __decorate([
2542
2544
  ], EntityEntity);
2543
2545
  /**
2544
2546
  * Users - strongly typed entity sub-class
2545
- * * Schema: admin
2547
+ * * Schema: __mj
2546
2548
  * * Base Table: User
2547
2549
  * * Base View: vwUsers
2548
2550
  * * Primary Key: ID
@@ -2553,7 +2555,7 @@ exports.EntityEntity = EntityEntity = __decorate([
2553
2555
  let UserEntity = class UserEntity extends core_1.BaseEntity {
2554
2556
  /**
2555
2557
  * Loads the Users record from the database
2556
- * @param ID: Number - primary key value to load the Users record.
2558
+ * @param ID: number - primary key value to load the Users record.
2557
2559
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2558
2560
  * @returns {Promise<boolean>} - true if successful, false otherwise
2559
2561
  * @public
@@ -2687,6 +2689,7 @@ let UserEntity = class UserEntity extends core_1.BaseEntity {
2687
2689
  * * Field Name: LinkedEntityID
2688
2690
  * * Display Name: Linked Entity ID
2689
2691
  * * SQL Data Type: int
2692
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
2690
2693
  */
2691
2694
  get LinkedEntityID() {
2692
2695
  return this.Get('LinkedEntityID');
@@ -2778,7 +2781,7 @@ exports.UserEntity = UserEntity = __decorate([
2778
2781
  ], UserEntity);
2779
2782
  /**
2780
2783
  * Entity Relationships - strongly typed entity sub-class
2781
- * * Schema: admin
2784
+ * * Schema: __mj
2782
2785
  * * Base Table: EntityRelationship
2783
2786
  * * Base View: vwEntityRelationships
2784
2787
  * * Primary Key: ID
@@ -2789,7 +2792,7 @@ exports.UserEntity = UserEntity = __decorate([
2789
2792
  let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.BaseEntity {
2790
2793
  /**
2791
2794
  * Loads the Entity Relationships record from the database
2792
- * @param ID: Number - primary key value to load the Entity Relationships record.
2795
+ * @param ID: number - primary key value to load the Entity Relationships record.
2793
2796
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
2794
2797
  * @returns {Promise<boolean>} - true if successful, false otherwise
2795
2798
  * @public
@@ -3068,7 +3071,7 @@ exports.EntityRelationshipEntity = EntityRelationshipEntity = __decorate([
3068
3071
  ], EntityRelationshipEntity);
3069
3072
  /**
3070
3073
  * User Record Logs - strongly typed entity sub-class
3071
- * * Schema: admin
3074
+ * * Schema: __mj
3072
3075
  * * Base Table: UserRecordLog
3073
3076
  * * Base View: vwUserRecordLogs
3074
3077
  * * Primary Key: ID
@@ -3079,7 +3082,7 @@ exports.EntityRelationshipEntity = EntityRelationshipEntity = __decorate([
3079
3082
  let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
3080
3083
  /**
3081
3084
  * Loads the User Record Logs record from the database
3082
- * @param ID: Number - primary key value to load the User Record Logs record.
3085
+ * @param ID: number - primary key value to load the User Record Logs record.
3083
3086
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3084
3087
  * @returns {Promise<boolean>} - true if successful, false otherwise
3085
3088
  * @public
@@ -3237,7 +3240,7 @@ exports.UserRecordLogEntity = UserRecordLogEntity = __decorate([
3237
3240
  ], UserRecordLogEntity);
3238
3241
  /**
3239
3242
  * User Views - strongly typed entity sub-class
3240
- * * Schema: admin
3243
+ * * Schema: __mj
3241
3244
  * * Base Table: UserView
3242
3245
  * * Base View: vwUserViews
3243
3246
  * * Primary Key: ID
@@ -3248,7 +3251,7 @@ exports.UserRecordLogEntity = UserRecordLogEntity = __decorate([
3248
3251
  let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
3249
3252
  /**
3250
3253
  * Loads the User Views record from the database
3251
- * @param ID: Number - primary key value to load the User Views record.
3254
+ * @param ID: number - primary key value to load the User Views record.
3252
3255
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3253
3256
  * @returns {Promise<boolean>} - true if successful, false otherwise
3254
3257
  * @public
@@ -3285,6 +3288,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
3285
3288
  * * Field Name: EntityID
3286
3289
  * * Display Name: Entity ID
3287
3290
  * * SQL Data Type: int
3291
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
3288
3292
  */
3289
3293
  get EntityID() {
3290
3294
  return this.Get('EntityID');
@@ -3543,7 +3547,7 @@ exports.UserViewEntity = UserViewEntity = __decorate([
3543
3547
  ], UserViewEntity);
3544
3548
  /**
3545
3549
  * Company Integration Runs - strongly typed entity sub-class
3546
- * * Schema: admin
3550
+ * * Schema: __mj
3547
3551
  * * Base Table: CompanyIntegrationRun
3548
3552
  * * Base View: vwCompanyIntegrationRuns
3549
3553
  * * Primary Key: ID
@@ -3554,7 +3558,7 @@ exports.UserViewEntity = UserViewEntity = __decorate([
3554
3558
  let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core_1.BaseEntity {
3555
3559
  /**
3556
3560
  * Loads the Company Integration Runs record from the database
3557
- * @param ID: Number - primary key value to load the Company Integration Runs record.
3561
+ * @param ID: number - primary key value to load the Company Integration Runs record.
3558
3562
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3559
3563
  * @returns {Promise<boolean>} - true if successful, false otherwise
3560
3564
  * @public
@@ -3668,7 +3672,7 @@ exports.CompanyIntegrationRunEntity = CompanyIntegrationRunEntity = __decorate([
3668
3672
  ], CompanyIntegrationRunEntity);
3669
3673
  /**
3670
3674
  * Company Integration Run Details - strongly typed entity sub-class
3671
- * * Schema: admin
3675
+ * * Schema: __mj
3672
3676
  * * Base Table: CompanyIntegrationRunDetail
3673
3677
  * * Base View: vwCompanyIntegrationRunDetails
3674
3678
  * * Primary Key: ID
@@ -3679,7 +3683,7 @@ exports.CompanyIntegrationRunEntity = CompanyIntegrationRunEntity = __decorate([
3679
3683
  let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity extends core_1.BaseEntity {
3680
3684
  /**
3681
3685
  * Loads the Company Integration Run Details record from the database
3682
- * @param ID: Number - primary key value to load the Company Integration Run Details record.
3686
+ * @param ID: number - primary key value to load the Company Integration Run Details record.
3683
3687
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3684
3688
  * @returns {Promise<boolean>} - true if successful, false otherwise
3685
3689
  * @public
@@ -3727,6 +3731,7 @@ let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity
3727
3731
  * * Field Name: EntityID
3728
3732
  * * Display Name: Entity ID
3729
3733
  * * SQL Data Type: int
3734
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
3730
3735
  */
3731
3736
  get EntityID() {
3732
3737
  return this.Get('EntityID');
@@ -3809,7 +3814,7 @@ exports.CompanyIntegrationRunDetailEntity = CompanyIntegrationRunDetailEntity =
3809
3814
  ], CompanyIntegrationRunDetailEntity);
3810
3815
  /**
3811
3816
  * Error Logs - strongly typed entity sub-class
3812
- * * Schema: admin
3817
+ * * Schema: __mj
3813
3818
  * * Base Table: ErrorLog
3814
3819
  * * Base View: vwErrorLogs
3815
3820
  * * Primary Key: ID
@@ -3820,7 +3825,7 @@ exports.CompanyIntegrationRunDetailEntity = CompanyIntegrationRunDetailEntity =
3820
3825
  let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
3821
3826
  /**
3822
3827
  * Loads the Error Logs record from the database
3823
- * @param ID: Number - primary key value to load the Error Logs record.
3828
+ * @param ID: number - primary key value to load the Error Logs record.
3824
3829
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3825
3830
  * @returns {Promise<boolean>} - true if successful, false otherwise
3826
3831
  * @public
@@ -3954,7 +3959,7 @@ exports.ErrorLogEntity = ErrorLogEntity = __decorate([
3954
3959
  ], ErrorLogEntity);
3955
3960
  /**
3956
3961
  * Applications - strongly typed entity sub-class
3957
- * * Schema: admin
3962
+ * * Schema: __mj
3958
3963
  * * Base Table: Application
3959
3964
  * * Base View: vwApplications
3960
3965
  * * Primary Key: ID
@@ -3965,7 +3970,7 @@ exports.ErrorLogEntity = ErrorLogEntity = __decorate([
3965
3970
  let ApplicationEntity = class ApplicationEntity extends core_1.BaseEntity {
3966
3971
  /**
3967
3972
  * Loads the Applications record from the database
3968
- * @param ID: Number - primary key value to load the Applications record.
3973
+ * @param ID: number - primary key value to load the Applications record.
3969
3974
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
3970
3975
  * @returns {Promise<boolean>} - true if successful, false otherwise
3971
3976
  * @public
@@ -4042,7 +4047,7 @@ exports.ApplicationEntity = ApplicationEntity = __decorate([
4042
4047
  ], ApplicationEntity);
4043
4048
  /**
4044
4049
  * Application Entities - strongly typed entity sub-class
4045
- * * Schema: admin
4050
+ * * Schema: __mj
4046
4051
  * * Base Table: ApplicationEntity
4047
4052
  * * Base View: vwApplicationEntities
4048
4053
  * * Primary Key: ID
@@ -4053,7 +4058,7 @@ exports.ApplicationEntity = ApplicationEntity = __decorate([
4053
4058
  let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseEntity {
4054
4059
  /**
4055
4060
  * Loads the Application Entities record from the database
4056
- * @param ID: Number - primary key value to load the Application Entities record.
4061
+ * @param ID: number - primary key value to load the Application Entities record.
4057
4062
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4058
4063
  * @returns {Promise<boolean>} - true if successful, false otherwise
4059
4064
  * @public
@@ -4090,6 +4095,7 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
4090
4095
  * * Field Name: EntityID
4091
4096
  * * Display Name: Entity ID
4092
4097
  * * SQL Data Type: int
4098
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
4093
4099
  */
4094
4100
  get EntityID() {
4095
4101
  return this.Get('EntityID');
@@ -4190,7 +4196,7 @@ exports.ApplicationEntityEntity = ApplicationEntityEntity = __decorate([
4190
4196
  ], ApplicationEntityEntity);
4191
4197
  /**
4192
4198
  * Entity Permissions - strongly typed entity sub-class
4193
- * * Schema: admin
4199
+ * * Schema: __mj
4194
4200
  * * Base Table: EntityPermission
4195
4201
  * * Base View: vwEntityPermissions
4196
4202
  * * Primary Key: ID
@@ -4201,7 +4207,7 @@ exports.ApplicationEntityEntity = ApplicationEntityEntity = __decorate([
4201
4207
  let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEntity {
4202
4208
  /**
4203
4209
  * Loads the Entity Permissions record from the database
4204
- * @param ID: Number - primary key value to load the Entity Permissions record.
4210
+ * @param ID: number - primary key value to load the Entity Permissions record.
4205
4211
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4206
4212
  * @returns {Promise<boolean>} - true if successful, false otherwise
4207
4213
  * @public
@@ -4226,6 +4232,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
4226
4232
  * * Field Name: EntityID
4227
4233
  * * Display Name: Entity ID
4228
4234
  * * SQL Data Type: int
4235
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
4229
4236
  */
4230
4237
  get EntityID() {
4231
4238
  return this.Get('EntityID');
@@ -4413,7 +4420,7 @@ exports.EntityPermissionEntity = EntityPermissionEntity = __decorate([
4413
4420
  ], EntityPermissionEntity);
4414
4421
  /**
4415
4422
  * User Application Entities - strongly typed entity sub-class
4416
- * * Schema: admin
4423
+ * * Schema: __mj
4417
4424
  * * Base Table: UserApplicationEntity
4418
4425
  * * Base View: vwUserApplicationEntities
4419
4426
  * * Primary Key: ID
@@ -4424,7 +4431,7 @@ exports.EntityPermissionEntity = EntityPermissionEntity = __decorate([
4424
4431
  let UserApplicationEntityEntity = class UserApplicationEntityEntity extends core_1.BaseEntity {
4425
4432
  /**
4426
4433
  * Loads the User Application Entities record from the database
4427
- * @param ID: Number - primary key value to load the User Application Entities record.
4434
+ * @param ID: number - primary key value to load the User Application Entities record.
4428
4435
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4429
4436
  * @returns {Promise<boolean>} - true if successful, false otherwise
4430
4437
  * @public
@@ -4461,6 +4468,7 @@ let UserApplicationEntityEntity = class UserApplicationEntityEntity extends core
4461
4468
  * * Field Name: EntityID
4462
4469
  * * Display Name: Entity ID
4463
4470
  * * SQL Data Type: int
4471
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
4464
4472
  */
4465
4473
  get EntityID() {
4466
4474
  return this.Get('EntityID');
@@ -4510,7 +4518,7 @@ exports.UserApplicationEntityEntity = UserApplicationEntityEntity = __decorate([
4510
4518
  ], UserApplicationEntityEntity);
4511
4519
  /**
4512
4520
  * User Applications - strongly typed entity sub-class
4513
- * * Schema: admin
4521
+ * * Schema: __mj
4514
4522
  * * Base Table: UserApplication
4515
4523
  * * Base View: vwUserApplications
4516
4524
  * * Primary Key: ID
@@ -4521,7 +4529,7 @@ exports.UserApplicationEntityEntity = UserApplicationEntityEntity = __decorate([
4521
4529
  let UserApplicationEntity = class UserApplicationEntity extends core_1.BaseEntity {
4522
4530
  /**
4523
4531
  * Loads the User Applications record from the database
4524
- * @param ID: Number - primary key value to load the User Applications record.
4532
+ * @param ID: number - primary key value to load the User Applications record.
4525
4533
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4526
4534
  * @returns {Promise<boolean>} - true if successful, false otherwise
4527
4535
  * @public
@@ -4623,7 +4631,7 @@ exports.UserApplicationEntity = UserApplicationEntity = __decorate([
4623
4631
  ], UserApplicationEntity);
4624
4632
  /**
4625
4633
  * Company Integration Run API Logs - strongly typed entity sub-class
4626
- * * Schema: admin
4634
+ * * Schema: __mj
4627
4635
  * * Base Table: CompanyIntegrationRunAPILog
4628
4636
  * * Base View: vwCompanyIntegrationRunAPILogs
4629
4637
  * * Primary Key: ID
@@ -4634,7 +4642,7 @@ exports.UserApplicationEntity = UserApplicationEntity = __decorate([
4634
4642
  let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity extends core_1.BaseEntity {
4635
4643
  /**
4636
4644
  * Loads the Company Integration Run API Logs record from the database
4637
- * @param ID: Number - primary key value to load the Company Integration Run API Logs record.
4645
+ * @param ID: number - primary key value to load the Company Integration Run API Logs record.
4638
4646
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4639
4647
  * @returns {Promise<boolean>} - true if successful, false otherwise
4640
4648
  * @public
@@ -4740,7 +4748,7 @@ exports.CompanyIntegrationRunAPILogEntity = CompanyIntegrationRunAPILogEntity =
4740
4748
  ], CompanyIntegrationRunAPILogEntity);
4741
4749
  /**
4742
4750
  * Lists - strongly typed entity sub-class
4743
- * * Schema: admin
4751
+ * * Schema: __mj
4744
4752
  * * Base Table: List
4745
4753
  * * Base View: vwLists
4746
4754
  * * Primary Key: ID
@@ -4751,7 +4759,7 @@ exports.CompanyIntegrationRunAPILogEntity = CompanyIntegrationRunAPILogEntity =
4751
4759
  let ListEntity = class ListEntity extends core_1.BaseEntity {
4752
4760
  /**
4753
4761
  * Loads the Lists record from the database
4754
- * @param ID: Number - primary key value to load the Lists record.
4762
+ * @param ID: number - primary key value to load the Lists record.
4755
4763
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4756
4764
  * @returns {Promise<boolean>} - true if successful, false otherwise
4757
4765
  * @public
@@ -4796,6 +4804,7 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
4796
4804
  * * Field Name: EntityID
4797
4805
  * * Display Name: Entity ID
4798
4806
  * * SQL Data Type: int
4807
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
4799
4808
  */
4800
4809
  get EntityID() {
4801
4810
  return this.Get('EntityID');
@@ -4857,6 +4866,14 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
4857
4866
  return this.Get('UpdatedAt');
4858
4867
  }
4859
4868
  /**
4869
+ * * Field Name: Entity
4870
+ * * Display Name: Entity
4871
+ * * SQL Data Type: nvarchar(255)
4872
+ */
4873
+ get Entity() {
4874
+ return this.Get('Entity');
4875
+ }
4876
+ /**
4860
4877
  * * Field Name: User
4861
4878
  * * Display Name: User
4862
4879
  * * SQL Data Type: nvarchar(100)
@@ -4871,7 +4888,7 @@ exports.ListEntity = ListEntity = __decorate([
4871
4888
  ], ListEntity);
4872
4889
  /**
4873
4890
  * List Details - strongly typed entity sub-class
4874
- * * Schema: admin
4891
+ * * Schema: __mj
4875
4892
  * * Base Table: ListDetail
4876
4893
  * * Base View: vwListDetails
4877
4894
  * * Primary Key: ID
@@ -4882,7 +4899,7 @@ exports.ListEntity = ListEntity = __decorate([
4882
4899
  let ListDetailEntity = class ListDetailEntity extends core_1.BaseEntity {
4883
4900
  /**
4884
4901
  * Loads the List Details record from the database
4885
- * @param ID: Number - primary key value to load the List Details record.
4902
+ * @param ID: number - primary key value to load the List Details record.
4886
4903
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4887
4904
  * @returns {Promise<boolean>} - true if successful, false otherwise
4888
4905
  * @public
@@ -4944,7 +4961,7 @@ exports.ListDetailEntity = ListDetailEntity = __decorate([
4944
4961
  ], ListDetailEntity);
4945
4962
  /**
4946
4963
  * User View Runs - strongly typed entity sub-class
4947
- * * Schema: admin
4964
+ * * Schema: __mj
4948
4965
  * * Base Table: UserViewRun
4949
4966
  * * Base View: vwUserViewRuns
4950
4967
  * * Primary Key: ID
@@ -4955,7 +4972,7 @@ exports.ListDetailEntity = ListDetailEntity = __decorate([
4955
4972
  let UserViewRunEntity = class UserViewRunEntity extends core_1.BaseEntity {
4956
4973
  /**
4957
4974
  * Loads the User View Runs record from the database
4958
- * @param ID: Number - primary key value to load the User View Runs record.
4975
+ * @param ID: number - primary key value to load the User View Runs record.
4959
4976
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
4960
4977
  * @returns {Promise<boolean>} - true if successful, false otherwise
4961
4978
  * @public
@@ -5045,7 +5062,7 @@ exports.UserViewRunEntity = UserViewRunEntity = __decorate([
5045
5062
  ], UserViewRunEntity);
5046
5063
  /**
5047
5064
  * User View Run Details - strongly typed entity sub-class
5048
- * * Schema: admin
5065
+ * * Schema: __mj
5049
5066
  * * Base Table: UserViewRunDetail
5050
5067
  * * Base View: vwUserViewRunDetails
5051
5068
  * * Primary Key: ID
@@ -5056,7 +5073,7 @@ exports.UserViewRunEntity = UserViewRunEntity = __decorate([
5056
5073
  let UserViewRunDetailEntity = class UserViewRunDetailEntity extends core_1.BaseEntity {
5057
5074
  /**
5058
5075
  * Loads the User View Run Details record from the database
5059
- * @param ID: Number - primary key value to load the User View Run Details record.
5076
+ * @param ID: number - primary key value to load the User View Run Details record.
5060
5077
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5061
5078
  * @returns {Promise<boolean>} - true if successful, false otherwise
5062
5079
  * @public
@@ -5134,7 +5151,7 @@ exports.UserViewRunDetailEntity = UserViewRunDetailEntity = __decorate([
5134
5151
  ], UserViewRunDetailEntity);
5135
5152
  /**
5136
5153
  * Workflow Runs - strongly typed entity sub-class
5137
- * * Schema: admin
5154
+ * * Schema: __mj
5138
5155
  * * Base Table: WorkflowRun
5139
5156
  * * Base View: vwWorkflowRuns
5140
5157
  * * Primary Key: ID
@@ -5145,7 +5162,7 @@ exports.UserViewRunDetailEntity = UserViewRunDetailEntity = __decorate([
5145
5162
  let WorkflowRunEntity = class WorkflowRunEntity extends core_1.BaseEntity {
5146
5163
  /**
5147
5164
  * Loads the Workflow Runs record from the database
5148
- * @param ID: Number - primary key value to load the Workflow Runs record.
5165
+ * @param ID: number - primary key value to load the Workflow Runs record.
5149
5166
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5150
5167
  * @returns {Promise<boolean>} - true if successful, false otherwise
5151
5168
  * @public
@@ -5266,7 +5283,7 @@ exports.WorkflowRunEntity = WorkflowRunEntity = __decorate([
5266
5283
  ], WorkflowRunEntity);
5267
5284
  /**
5268
5285
  * Workflows - strongly typed entity sub-class
5269
- * * Schema: admin
5286
+ * * Schema: __mj
5270
5287
  * * Base Table: Workflow
5271
5288
  * * Base View: vwWorkflows
5272
5289
  * * Primary Key: ID
@@ -5277,7 +5294,7 @@ exports.WorkflowRunEntity = WorkflowRunEntity = __decorate([
5277
5294
  let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
5278
5295
  /**
5279
5296
  * Loads the Workflows record from the database
5280
- * @param ID: Number - primary key value to load the Workflows record.
5297
+ * @param ID: number - primary key value to load the Workflows record.
5281
5298
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5282
5299
  * @returns {Promise<boolean>} - true if successful, false otherwise
5283
5300
  * @public
@@ -5389,7 +5406,7 @@ exports.WorkflowEntity = WorkflowEntity = __decorate([
5389
5406
  ], WorkflowEntity);
5390
5407
  /**
5391
5408
  * Workflow Engines - strongly typed entity sub-class
5392
- * * Schema: admin
5409
+ * * Schema: __mj
5393
5410
  * * Base Table: WorkflowEngine
5394
5411
  * * Base View: vwWorkflowEngines
5395
5412
  * * Primary Key: ID
@@ -5400,7 +5417,7 @@ exports.WorkflowEntity = WorkflowEntity = __decorate([
5400
5417
  let WorkflowEngineEntity = class WorkflowEngineEntity extends core_1.BaseEntity {
5401
5418
  /**
5402
5419
  * Loads the Workflow Engines record from the database
5403
- * @param ID: Number - primary key value to load the Workflow Engines record.
5420
+ * @param ID: number - primary key value to load the Workflow Engines record.
5404
5421
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5405
5422
  * @returns {Promise<boolean>} - true if successful, false otherwise
5406
5423
  * @public
@@ -5499,7 +5516,7 @@ exports.WorkflowEngineEntity = WorkflowEngineEntity = __decorate([
5499
5516
  ], WorkflowEngineEntity);
5500
5517
  /**
5501
5518
  * Record Changes - strongly typed entity sub-class
5502
- * * Schema: admin
5519
+ * * Schema: __mj
5503
5520
  * * Base Table: RecordChange
5504
5521
  * * Base View: vwRecordChanges
5505
5522
  * * Primary Key: ID
@@ -5510,7 +5527,7 @@ exports.WorkflowEngineEntity = WorkflowEngineEntity = __decorate([
5510
5527
  let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
5511
5528
  /**
5512
5529
  * Loads the Record Changes record from the database
5513
- * @param ID: Number - primary key value to load the Record Changes record.
5530
+ * @param ID: number - primary key value to load the Record Changes record.
5514
5531
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5515
5532
  * @returns {Promise<boolean>} - true if successful, false otherwise
5516
5533
  * @public
@@ -5666,7 +5683,7 @@ exports.RecordChangeEntity = RecordChangeEntity = __decorate([
5666
5683
  ], RecordChangeEntity);
5667
5684
  /**
5668
5685
  * User Roles - strongly typed entity sub-class
5669
- * * Schema: admin
5686
+ * * Schema: __mj
5670
5687
  * * Base Table: UserRole
5671
5688
  * * Base View: vwUserRoles
5672
5689
  * * Primary Key: ID
@@ -5677,7 +5694,7 @@ exports.RecordChangeEntity = RecordChangeEntity = __decorate([
5677
5694
  let UserRoleEntity = class UserRoleEntity extends core_1.BaseEntity {
5678
5695
  /**
5679
5696
  * Loads the User Roles record from the database
5680
- * @param ID: Number - primary key value to load the User Roles record.
5697
+ * @param ID: number - primary key value to load the User Roles record.
5681
5698
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5682
5699
  * @returns {Promise<boolean>} - true if successful, false otherwise
5683
5700
  * @public
@@ -5767,7 +5784,7 @@ exports.UserRoleEntity = UserRoleEntity = __decorate([
5767
5784
  ], UserRoleEntity);
5768
5785
  /**
5769
5786
  * Row Level Security Filters - strongly typed entity sub-class
5770
- * * Schema: admin
5787
+ * * Schema: __mj
5771
5788
  * * Base Table: RowLevelSecurityFilter
5772
5789
  * * Base View: vwRowLevelSecurityFilters
5773
5790
  * * Primary Key: ID
@@ -5778,7 +5795,7 @@ exports.UserRoleEntity = UserRoleEntity = __decorate([
5778
5795
  let RowLevelSecurityFilterEntity = class RowLevelSecurityFilterEntity extends core_1.BaseEntity {
5779
5796
  /**
5780
5797
  * Loads the Row Level Security Filters record from the database
5781
- * @param ID: Number - primary key value to load the Row Level Security Filters record.
5798
+ * @param ID: number - primary key value to load the Row Level Security Filters record.
5782
5799
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5783
5800
  * @returns {Promise<boolean>} - true if successful, false otherwise
5784
5801
  * @public
@@ -5880,7 +5897,7 @@ exports.RowLevelSecurityFilterEntity = RowLevelSecurityFilterEntity = __decorate
5880
5897
  ], RowLevelSecurityFilterEntity);
5881
5898
  /**
5882
5899
  * Audit Logs - strongly typed entity sub-class
5883
- * * Schema: admin
5900
+ * * Schema: __mj
5884
5901
  * * Base Table: AuditLog
5885
5902
  * * Base View: vwAuditLogs
5886
5903
  * * Primary Key: ID
@@ -5891,7 +5908,7 @@ exports.RowLevelSecurityFilterEntity = RowLevelSecurityFilterEntity = __decorate
5891
5908
  let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
5892
5909
  /**
5893
5910
  * Loads the Audit Logs record from the database
5894
- * @param ID: Number - primary key value to load the Audit Logs record.
5911
+ * @param ID: number - primary key value to load the Audit Logs record.
5895
5912
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
5896
5913
  * @returns {Promise<boolean>} - true if successful, false otherwise
5897
5914
  * @public
@@ -5998,6 +6015,7 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
5998
6015
  * * Field Name: EntityID
5999
6016
  * * Display Name: Entity ID
6000
6017
  * * SQL Data Type: int
6018
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
6001
6019
  */
6002
6020
  get EntityID() {
6003
6021
  return this.Get('EntityID');
@@ -6042,6 +6060,14 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
6042
6060
  get User() {
6043
6061
  return this.Get('User');
6044
6062
  }
6063
+ /**
6064
+ * * Field Name: Entity
6065
+ * * Display Name: Entity
6066
+ * * SQL Data Type: nvarchar(255)
6067
+ */
6068
+ get Entity() {
6069
+ return this.Get('Entity');
6070
+ }
6045
6071
  };
6046
6072
  exports.AuditLogEntity = AuditLogEntity;
6047
6073
  exports.AuditLogEntity = AuditLogEntity = __decorate([
@@ -6049,7 +6075,7 @@ exports.AuditLogEntity = AuditLogEntity = __decorate([
6049
6075
  ], AuditLogEntity);
6050
6076
  /**
6051
6077
  * Authorizations - strongly typed entity sub-class
6052
- * * Schema: admin
6078
+ * * Schema: __mj
6053
6079
  * * Base Table: Authorization
6054
6080
  * * Base View: vwAuthorizations
6055
6081
  * * Primary Key: ID
@@ -6060,7 +6086,7 @@ exports.AuditLogEntity = AuditLogEntity = __decorate([
6060
6086
  let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
6061
6087
  /**
6062
6088
  * Loads the Authorizations record from the database
6063
- * @param ID: Number - primary key value to load the Authorizations record.
6089
+ * @param ID: number - primary key value to load the Authorizations record.
6064
6090
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6065
6091
  * @returns {Promise<boolean>} - true if successful, false otherwise
6066
6092
  * @public
@@ -6187,7 +6213,7 @@ exports.AuthorizationEntity = AuthorizationEntity = __decorate([
6187
6213
  ], AuthorizationEntity);
6188
6214
  /**
6189
6215
  * Authorization Roles - strongly typed entity sub-class
6190
- * * Schema: admin
6216
+ * * Schema: __mj
6191
6217
  * * Base Table: AuthorizationRole
6192
6218
  * * Base View: vwAuthorizationRoles
6193
6219
  * * Primary Key: ID
@@ -6198,7 +6224,7 @@ exports.AuthorizationEntity = AuthorizationEntity = __decorate([
6198
6224
  let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseEntity {
6199
6225
  /**
6200
6226
  * Loads the Authorization Roles record from the database
6201
- * @param ID: Number - primary key value to load the Authorization Roles record.
6227
+ * @param ID: number - primary key value to load the Authorization Roles record.
6202
6228
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6203
6229
  * @returns {Promise<boolean>} - true if successful, false otherwise
6204
6230
  * @public
@@ -6317,7 +6343,7 @@ exports.AuthorizationRoleEntity = AuthorizationRoleEntity = __decorate([
6317
6343
  ], AuthorizationRoleEntity);
6318
6344
  /**
6319
6345
  * Audit Log Types - strongly typed entity sub-class
6320
- * * Schema: admin
6346
+ * * Schema: __mj
6321
6347
  * * Base Table: AuditLogType
6322
6348
  * * Base View: vwAuditLogTypes
6323
6349
  * * Primary Key: ID
@@ -6328,7 +6354,7 @@ exports.AuthorizationRoleEntity = AuthorizationRoleEntity = __decorate([
6328
6354
  let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
6329
6355
  /**
6330
6356
  * Loads the Audit Log Types record from the database
6331
- * @param ID: Number - primary key value to load the Audit Log Types record.
6357
+ * @param ID: number - primary key value to load the Audit Log Types record.
6332
6358
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6333
6359
  * @returns {Promise<boolean>} - true if successful, false otherwise
6334
6360
  * @public
@@ -6451,7 +6477,7 @@ exports.AuditLogTypeEntity = AuditLogTypeEntity = __decorate([
6451
6477
  ], AuditLogTypeEntity);
6452
6478
  /**
6453
6479
  * Entity Field Values - strongly typed entity sub-class
6454
- * * Schema: admin
6480
+ * * Schema: __mj
6455
6481
  * * Base Table: EntityFieldValue
6456
6482
  * * Base View: vwEntityFieldValues
6457
6483
  * * Primary Key: ID
@@ -6462,7 +6488,7 @@ exports.AuditLogTypeEntity = AuditLogTypeEntity = __decorate([
6462
6488
  let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEntity {
6463
6489
  /**
6464
6490
  * Loads the Entity Field Values record from the database
6465
- * @param ID: Number - primary key value to load the Entity Field Values record.
6491
+ * @param ID: number - primary key value to load the Entity Field Values record.
6466
6492
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6467
6493
  * @returns {Promise<boolean>} - true if successful, false otherwise
6468
6494
  * @public
@@ -6607,7 +6633,7 @@ exports.EntityFieldValueEntity = EntityFieldValueEntity = __decorate([
6607
6633
  ], EntityFieldValueEntity);
6608
6634
  /**
6609
6635
  * AI Models - strongly typed entity sub-class
6610
- * * Schema: admin
6636
+ * * Schema: __mj
6611
6637
  * * Base Table: AIModel
6612
6638
  * * Base View: vwAIModels
6613
6639
  * * Primary Key: ID
@@ -6618,7 +6644,7 @@ exports.EntityFieldValueEntity = EntityFieldValueEntity = __decorate([
6618
6644
  let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
6619
6645
  /**
6620
6646
  * Loads the AI Models record from the database
6621
- * @param ID: Number - primary key value to load the AI Models record.
6647
+ * @param ID: number - primary key value to load the AI Models record.
6622
6648
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6623
6649
  * @returns {Promise<boolean>} - true if successful, false otherwise
6624
6650
  * @public
@@ -6755,7 +6781,7 @@ exports.AIModelEntity = AIModelEntity = __decorate([
6755
6781
  ], AIModelEntity);
6756
6782
  /**
6757
6783
  * AI Actions - strongly typed entity sub-class
6758
- * * Schema: admin
6784
+ * * Schema: __mj
6759
6785
  * * Base Table: AIAction
6760
6786
  * * Base View: vwAIActions
6761
6787
  * * Primary Key: ID
@@ -6766,7 +6792,7 @@ exports.AIModelEntity = AIModelEntity = __decorate([
6766
6792
  let AIActionEntity = class AIActionEntity extends core_1.BaseEntity {
6767
6793
  /**
6768
6794
  * Loads the AI Actions record from the database
6769
- * @param ID: Number - primary key value to load the AI Actions record.
6795
+ * @param ID: number - primary key value to load the AI Actions record.
6770
6796
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6771
6797
  * @returns {Promise<boolean>} - true if successful, false otherwise
6772
6798
  * @public
@@ -6889,7 +6915,7 @@ exports.AIActionEntity = AIActionEntity = __decorate([
6889
6915
  ], AIActionEntity);
6890
6916
  /**
6891
6917
  * AI Model Actions - strongly typed entity sub-class
6892
- * * Schema: admin
6918
+ * * Schema: __mj
6893
6919
  * * Base Table: AIModelAction
6894
6920
  * * Base View: vwAIModelActions
6895
6921
  * * Primary Key: ID
@@ -6900,7 +6926,7 @@ exports.AIActionEntity = AIActionEntity = __decorate([
6900
6926
  let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
6901
6927
  /**
6902
6928
  * Loads the AI Model Actions record from the database
6903
- * @param ID: Number - primary key value to load the AI Model Actions record.
6929
+ * @param ID: number - primary key value to load the AI Model Actions record.
6904
6930
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6905
6931
  * @returns {Promise<boolean>} - true if successful, false otherwise
6906
6932
  * @public
@@ -7010,7 +7036,7 @@ exports.AIModelActionEntity = AIModelActionEntity = __decorate([
7010
7036
  ], AIModelActionEntity);
7011
7037
  /**
7012
7038
  * Entity AI Actions - strongly typed entity sub-class
7013
- * * Schema: admin
7039
+ * * Schema: __mj
7014
7040
  * * Base Table: EntityAIAction
7015
7041
  * * Base View: vwEntityAIActions
7016
7042
  * * Primary Key: ID
@@ -7021,7 +7047,7 @@ exports.AIModelActionEntity = AIModelActionEntity = __decorate([
7021
7047
  let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity {
7022
7048
  /**
7023
7049
  * Loads the Entity AI Actions record from the database
7024
- * @param ID: Number - primary key value to load the Entity AI Actions record.
7050
+ * @param ID: number - primary key value to load the Entity AI Actions record.
7025
7051
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7026
7052
  * @returns {Promise<boolean>} - true if successful, false otherwise
7027
7053
  * @public
@@ -7232,7 +7258,7 @@ exports.EntityAIActionEntity = EntityAIActionEntity = __decorate([
7232
7258
  ], EntityAIActionEntity);
7233
7259
  /**
7234
7260
  * AI Model Types - strongly typed entity sub-class
7235
- * * Schema: admin
7261
+ * * Schema: __mj
7236
7262
  * * Base Table: AIModelType
7237
7263
  * * Base View: vwAIModelTypes
7238
7264
  * * Primary Key: ID
@@ -7243,7 +7269,7 @@ exports.EntityAIActionEntity = EntityAIActionEntity = __decorate([
7243
7269
  let AIModelTypeEntity = class AIModelTypeEntity extends core_1.BaseEntity {
7244
7270
  /**
7245
7271
  * Loads the AI Model Types record from the database
7246
- * @param ID: Number - primary key value to load the AI Model Types record.
7272
+ * @param ID: number - primary key value to load the AI Model Types record.
7247
7273
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7248
7274
  * @returns {Promise<boolean>} - true if successful, false otherwise
7249
7275
  * @public
@@ -7305,7 +7331,7 @@ exports.AIModelTypeEntity = AIModelTypeEntity = __decorate([
7305
7331
  ], AIModelTypeEntity);
7306
7332
  /**
7307
7333
  * Queue Types - strongly typed entity sub-class
7308
- * * Schema: admin
7334
+ * * Schema: __mj
7309
7335
  * * Base Table: QueueType
7310
7336
  * * Base View: vwQueueTypes
7311
7337
  * * Primary Key: ID
@@ -7316,7 +7342,7 @@ exports.AIModelTypeEntity = AIModelTypeEntity = __decorate([
7316
7342
  let QueueTypeEntity = class QueueTypeEntity extends core_1.BaseEntity {
7317
7343
  /**
7318
7344
  * Loads the Queue Types record from the database
7319
- * @param ID: Number - primary key value to load the Queue Types record.
7345
+ * @param ID: number - primary key value to load the Queue Types record.
7320
7346
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7321
7347
  * @returns {Promise<boolean>} - true if successful, false otherwise
7322
7348
  * @public
@@ -7423,7 +7449,7 @@ exports.QueueTypeEntity = QueueTypeEntity = __decorate([
7423
7449
  ], QueueTypeEntity);
7424
7450
  /**
7425
7451
  * Queues - strongly typed entity sub-class
7426
- * * Schema: admin
7452
+ * * Schema: __mj
7427
7453
  * * Base Table: Queue
7428
7454
  * * Base View: vwQueues
7429
7455
  * * Primary Key: ID
@@ -7434,7 +7460,7 @@ exports.QueueTypeEntity = QueueTypeEntity = __decorate([
7434
7460
  let QueueEntity = class QueueEntity extends core_1.BaseEntity {
7435
7461
  /**
7436
7462
  * Loads the Queues record from the database
7437
- * @param ID: Number - primary key value to load the Queues record.
7463
+ * @param ID: number - primary key value to load the Queues record.
7438
7464
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7439
7465
  * @returns {Promise<boolean>} - true if successful, false otherwise
7440
7466
  * @public
@@ -7679,7 +7705,7 @@ exports.QueueEntity = QueueEntity = __decorate([
7679
7705
  ], QueueEntity);
7680
7706
  /**
7681
7707
  * Queue Tasks - strongly typed entity sub-class
7682
- * * Schema: admin
7708
+ * * Schema: __mj
7683
7709
  * * Base Table: QueueTask
7684
7710
  * * Base View: vwQueueTasks
7685
7711
  * * Primary Key: ID
@@ -7690,7 +7716,7 @@ exports.QueueEntity = QueueEntity = __decorate([
7690
7716
  let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
7691
7717
  /**
7692
7718
  * Loads the Queue Tasks record from the database
7693
- * @param ID: Number - primary key value to load the Queue Tasks record.
7719
+ * @param ID: number - primary key value to load the Queue Tasks record.
7694
7720
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7695
7721
  * @returns {Promise<boolean>} - true if successful, false otherwise
7696
7722
  * @public
@@ -7831,7 +7857,7 @@ exports.QueueTaskEntity = QueueTaskEntity = __decorate([
7831
7857
  ], QueueTaskEntity);
7832
7858
  /**
7833
7859
  * Dashboards - strongly typed entity sub-class
7834
- * * Schema: admin
7860
+ * * Schema: __mj
7835
7861
  * * Base Table: Dashboard
7836
7862
  * * Base View: vwDashboards
7837
7863
  * * Primary Key: ID
@@ -7842,7 +7868,7 @@ exports.QueueTaskEntity = QueueTaskEntity = __decorate([
7842
7868
  let DashboardEntity = class DashboardEntity extends core_1.BaseEntity {
7843
7869
  /**
7844
7870
  * Loads the Dashboards record from the database
7845
- * @param ID: Number - primary key value to load the Dashboards record.
7871
+ * @param ID: number - primary key value to load the Dashboards record.
7846
7872
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7847
7873
  * @returns {Promise<boolean>} - true if successful, false otherwise
7848
7874
  * @public
@@ -7944,7 +7970,7 @@ exports.DashboardEntity = DashboardEntity = __decorate([
7944
7970
  ], DashboardEntity);
7945
7971
  /**
7946
7972
  * Output Trigger Types - strongly typed entity sub-class
7947
- * * Schema: admin
7973
+ * * Schema: __mj
7948
7974
  * * Base Table: OutputTriggerType
7949
7975
  * * Base View: vwOutputTriggerTypes
7950
7976
  * * Primary Key: ID
@@ -7955,7 +7981,7 @@ exports.DashboardEntity = DashboardEntity = __decorate([
7955
7981
  let OutputTriggerTypeEntity = class OutputTriggerTypeEntity extends core_1.BaseEntity {
7956
7982
  /**
7957
7983
  * Loads the Output Trigger Types record from the database
7958
- * @param ID: Number - primary key value to load the Output Trigger Types record.
7984
+ * @param ID: number - primary key value to load the Output Trigger Types record.
7959
7985
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
7960
7986
  * @returns {Promise<boolean>} - true if successful, false otherwise
7961
7987
  * @public
@@ -8028,7 +8054,7 @@ exports.OutputTriggerTypeEntity = OutputTriggerTypeEntity = __decorate([
8028
8054
  ], OutputTriggerTypeEntity);
8029
8055
  /**
8030
8056
  * Output Format Types - strongly typed entity sub-class
8031
- * * Schema: admin
8057
+ * * Schema: __mj
8032
8058
  * * Base Table: OutputFormatType
8033
8059
  * * Base View: vwOutputFormatTypes
8034
8060
  * * Primary Key: ID
@@ -8039,7 +8065,7 @@ exports.OutputTriggerTypeEntity = OutputTriggerTypeEntity = __decorate([
8039
8065
  let OutputFormatTypeEntity = class OutputFormatTypeEntity extends core_1.BaseEntity {
8040
8066
  /**
8041
8067
  * Loads the Output Format Types record from the database
8042
- * @param ID: Number - primary key value to load the Output Format Types record.
8068
+ * @param ID: number - primary key value to load the Output Format Types record.
8043
8069
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8044
8070
  * @returns {Promise<boolean>} - true if successful, false otherwise
8045
8071
  * @public
@@ -8123,7 +8149,7 @@ exports.OutputFormatTypeEntity = OutputFormatTypeEntity = __decorate([
8123
8149
  ], OutputFormatTypeEntity);
8124
8150
  /**
8125
8151
  * Output Delivery Types - strongly typed entity sub-class
8126
- * * Schema: admin
8152
+ * * Schema: __mj
8127
8153
  * * Base Table: OutputDeliveryType
8128
8154
  * * Base View: vwOutputDeliveryTypes
8129
8155
  * * Primary Key: ID
@@ -8134,7 +8160,7 @@ exports.OutputFormatTypeEntity = OutputFormatTypeEntity = __decorate([
8134
8160
  let OutputDeliveryTypeEntity = class OutputDeliveryTypeEntity extends core_1.BaseEntity {
8135
8161
  /**
8136
8162
  * Loads the Output Delivery Types record from the database
8137
- * @param ID: Number - primary key value to load the Output Delivery Types record.
8163
+ * @param ID: number - primary key value to load the Output Delivery Types record.
8138
8164
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8139
8165
  * @returns {Promise<boolean>} - true if successful, false otherwise
8140
8166
  * @public
@@ -8207,7 +8233,7 @@ exports.OutputDeliveryTypeEntity = OutputDeliveryTypeEntity = __decorate([
8207
8233
  ], OutputDeliveryTypeEntity);
8208
8234
  /**
8209
8235
  * Reports - strongly typed entity sub-class
8210
- * * Schema: admin
8236
+ * * Schema: __mj
8211
8237
  * * Base Table: Report
8212
8238
  * * Base View: vwReports
8213
8239
  * * Primary Key: ID
@@ -8218,7 +8244,7 @@ exports.OutputDeliveryTypeEntity = OutputDeliveryTypeEntity = __decorate([
8218
8244
  let ReportEntity = class ReportEntity extends core_1.BaseEntity {
8219
8245
  /**
8220
8246
  * Loads the Reports record from the database
8221
- * @param ID: Number - primary key value to load the Reports record.
8247
+ * @param ID: number - primary key value to load the Reports record.
8222
8248
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8223
8249
  * @returns {Promise<boolean>} - true if successful, false otherwise
8224
8250
  * @public
@@ -8516,7 +8542,7 @@ exports.ReportEntity = ReportEntity = __decorate([
8516
8542
  ], ReportEntity);
8517
8543
  /**
8518
8544
  * Report Snapshots - strongly typed entity sub-class
8519
- * * Schema: admin
8545
+ * * Schema: __mj
8520
8546
  * * Base Table: ReportSnapshot
8521
8547
  * * Base View: vwReportSnapshots
8522
8548
  * * Primary Key: ID
@@ -8527,7 +8553,7 @@ exports.ReportEntity = ReportEntity = __decorate([
8527
8553
  let ReportSnapshotEntity = class ReportSnapshotEntity extends core_1.BaseEntity {
8528
8554
  /**
8529
8555
  * Loads the Report Snapshots record from the database
8530
- * @param ID: Number - primary key value to load the Report Snapshots record.
8556
+ * @param ID: number - primary key value to load the Report Snapshots record.
8531
8557
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8532
8558
  * @returns {Promise<boolean>} - true if successful, false otherwise
8533
8559
  * @public
@@ -8616,7 +8642,7 @@ exports.ReportSnapshotEntity = ReportSnapshotEntity = __decorate([
8616
8642
  ], ReportSnapshotEntity);
8617
8643
  /**
8618
8644
  * Resource Types - strongly typed entity sub-class
8619
- * * Schema: admin
8645
+ * * Schema: __mj
8620
8646
  * * Base Table: ResourceType
8621
8647
  * * Base View: vwResourceTypes
8622
8648
  * * Primary Key: ID
@@ -8627,7 +8653,7 @@ exports.ReportSnapshotEntity = ReportSnapshotEntity = __decorate([
8627
8653
  let ResourceTypeEntity = class ResourceTypeEntity extends core_1.BaseEntity {
8628
8654
  /**
8629
8655
  * Loads the Resource Types record from the database
8630
- * @param ID: Number - primary key value to load the Resource Types record.
8656
+ * @param ID: number - primary key value to load the Resource Types record.
8631
8657
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8632
8658
  * @returns {Promise<boolean>} - true if successful, false otherwise
8633
8659
  * @public
@@ -8760,7 +8786,7 @@ exports.ResourceTypeEntity = ResourceTypeEntity = __decorate([
8760
8786
  ], ResourceTypeEntity);
8761
8787
  /**
8762
8788
  * Tags - strongly typed entity sub-class
8763
- * * Schema: admin
8789
+ * * Schema: __mj
8764
8790
  * * Base Table: Tag
8765
8791
  * * Base View: vwTags
8766
8792
  * * Primary Key: ID
@@ -8771,7 +8797,7 @@ exports.ResourceTypeEntity = ResourceTypeEntity = __decorate([
8771
8797
  let TagEntity = class TagEntity extends core_1.BaseEntity {
8772
8798
  /**
8773
8799
  * Loads the Tags record from the database
8774
- * @param ID: Number - primary key value to load the Tags record.
8800
+ * @param ID: number - primary key value to load the Tags record.
8775
8801
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8776
8802
  * @returns {Promise<boolean>} - true if successful, false otherwise
8777
8803
  * @public
@@ -8875,7 +8901,7 @@ exports.TagEntity = TagEntity = __decorate([
8875
8901
  ], TagEntity);
8876
8902
  /**
8877
8903
  * Tagged Items - strongly typed entity sub-class
8878
- * * Schema: admin
8904
+ * * Schema: __mj
8879
8905
  * * Base Table: TaggedItem
8880
8906
  * * Base View: vwTaggedItems
8881
8907
  * * Primary Key: ID
@@ -8886,7 +8912,7 @@ exports.TagEntity = TagEntity = __decorate([
8886
8912
  let TaggedItemEntity = class TaggedItemEntity extends core_1.BaseEntity {
8887
8913
  /**
8888
8914
  * Loads the Tagged Items record from the database
8889
- * @param ID: Number - primary key value to load the Tagged Items record.
8915
+ * @param ID: number - primary key value to load the Tagged Items record.
8890
8916
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8891
8917
  * @returns {Promise<boolean>} - true if successful, false otherwise
8892
8918
  * @public
@@ -8946,6 +8972,7 @@ let TaggedItemEntity = class TaggedItemEntity extends core_1.BaseEntity {
8946
8972
  * * Field Name: EntityID
8947
8973
  * * Display Name: Entity ID
8948
8974
  * * SQL Data Type: int
8975
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
8949
8976
  */
8950
8977
  get EntityID() {
8951
8978
  return this.Get('EntityID');
@@ -8972,6 +8999,14 @@ let TaggedItemEntity = class TaggedItemEntity extends core_1.BaseEntity {
8972
8999
  get Tag() {
8973
9000
  return this.Get('Tag');
8974
9001
  }
9002
+ /**
9003
+ * * Field Name: Entity
9004
+ * * Display Name: Entity
9005
+ * * SQL Data Type: nvarchar(255)
9006
+ */
9007
+ get Entity() {
9008
+ return this.Get('Entity');
9009
+ }
8975
9010
  };
8976
9011
  exports.TaggedItemEntity = TaggedItemEntity;
8977
9012
  exports.TaggedItemEntity = TaggedItemEntity = __decorate([
@@ -8979,7 +9014,7 @@ exports.TaggedItemEntity = TaggedItemEntity = __decorate([
8979
9014
  ], TaggedItemEntity);
8980
9015
  /**
8981
9016
  * Workspaces - strongly typed entity sub-class
8982
- * * Schema: admin
9017
+ * * Schema: __mj
8983
9018
  * * Base Table: Workspace
8984
9019
  * * Base View: vwWorkspaces
8985
9020
  * * Primary Key: ID
@@ -8990,7 +9025,7 @@ exports.TaggedItemEntity = TaggedItemEntity = __decorate([
8990
9025
  let WorkspaceEntity = class WorkspaceEntity extends core_1.BaseEntity {
8991
9026
  /**
8992
9027
  * Loads the Workspaces record from the database
8993
- * @param ID: Number - primary key value to load the Workspaces record.
9028
+ * @param ID: number - primary key value to load the Workspaces record.
8994
9029
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
8995
9030
  * @returns {Promise<boolean>} - true if successful, false otherwise
8996
9031
  * @public
@@ -9061,7 +9096,7 @@ exports.WorkspaceEntity = WorkspaceEntity = __decorate([
9061
9096
  ], WorkspaceEntity);
9062
9097
  /**
9063
9098
  * Workspace Items - strongly typed entity sub-class
9064
- * * Schema: admin
9099
+ * * Schema: __mj
9065
9100
  * * Base Table: WorkspaceItem
9066
9101
  * * Base View: vwWorkspaceItems
9067
9102
  * * Primary Key: ID
@@ -9072,7 +9107,7 @@ exports.WorkspaceEntity = WorkspaceEntity = __decorate([
9072
9107
  let WorkspaceItemEntity = class WorkspaceItemEntity extends core_1.BaseEntity {
9073
9108
  /**
9074
9109
  * Loads the Workspace Items record from the database
9075
- * @param ID: Number - primary key value to load the Workspace Items record.
9110
+ * @param ID: number - primary key value to load the Workspace Items record.
9076
9111
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
9077
9112
  * @returns {Promise<boolean>} - true if successful, false otherwise
9078
9113
  * @public
@@ -9196,7 +9231,7 @@ exports.WorkspaceItemEntity = WorkspaceItemEntity = __decorate([
9196
9231
  ], WorkspaceItemEntity);
9197
9232
  /**
9198
9233
  * Datasets - strongly typed entity sub-class
9199
- * * Schema: admin
9234
+ * * Schema: __mj
9200
9235
  * * Base Table: Dataset
9201
9236
  * * Base View: vwDatasets
9202
9237
  * * Primary Key: ID
@@ -9207,7 +9242,7 @@ exports.WorkspaceItemEntity = WorkspaceItemEntity = __decorate([
9207
9242
  let DatasetEntity = class DatasetEntity extends core_1.BaseEntity {
9208
9243
  /**
9209
9244
  * Loads the Datasets record from the database
9210
- * @param ID: Number - primary key value to load the Datasets record.
9245
+ * @param ID: number - primary key value to load the Datasets record.
9211
9246
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
9212
9247
  * @returns {Promise<boolean>} - true if successful, false otherwise
9213
9248
  * @public
@@ -9298,7 +9333,7 @@ exports.DatasetEntity = DatasetEntity = __decorate([
9298
9333
  ], DatasetEntity);
9299
9334
  /**
9300
9335
  * Dataset Items - strongly typed entity sub-class
9301
- * * Schema: admin
9336
+ * * Schema: __mj
9302
9337
  * * Base Table: DatasetItem
9303
9338
  * * Base View: vwDatasetItems
9304
9339
  * * Primary Key: ID
@@ -9309,7 +9344,7 @@ exports.DatasetEntity = DatasetEntity = __decorate([
9309
9344
  let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
9310
9345
  /**
9311
9346
  * Loads the Dataset Items record from the database
9312
- * @param ID: Number - primary key value to load the Dataset Items record.
9347
+ * @param ID: number - primary key value to load the Dataset Items record.
9313
9348
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
9314
9349
  * @returns {Promise<boolean>} - true if successful, false otherwise
9315
9350
  * @public
@@ -9466,7 +9501,7 @@ exports.DatasetItemEntity = DatasetItemEntity = __decorate([
9466
9501
  ], DatasetItemEntity);
9467
9502
  /**
9468
9503
  * Conversation Details - strongly typed entity sub-class
9469
- * * Schema: admin
9504
+ * * Schema: __mj
9470
9505
  * * Base Table: ConversationDetail
9471
9506
  * * Base View: vwConversationDetails
9472
9507
  * * Primary Key: ID
@@ -9477,7 +9512,7 @@ exports.DatasetItemEntity = DatasetItemEntity = __decorate([
9477
9512
  let ConversationDetailEntity = class ConversationDetailEntity extends core_1.BaseEntity {
9478
9513
  /**
9479
9514
  * Loads the Conversation Details record from the database
9480
- * @param ID: Number - primary key value to load the Conversation Details record.
9515
+ * @param ID: number - primary key value to load the Conversation Details record.
9481
9516
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
9482
9517
  * @returns {Promise<boolean>} - true if successful, false otherwise
9483
9518
  * @public
@@ -9601,7 +9636,7 @@ exports.ConversationDetailEntity = ConversationDetailEntity = __decorate([
9601
9636
  ], ConversationDetailEntity);
9602
9637
  /**
9603
9638
  * Conversations - strongly typed entity sub-class
9604
- * * Schema: admin
9639
+ * * Schema: __mj
9605
9640
  * * Base Table: Conversation
9606
9641
  * * Base View: vwConversations
9607
9642
  * * Primary Key: ID
@@ -9612,7 +9647,7 @@ exports.ConversationDetailEntity = ConversationDetailEntity = __decorate([
9612
9647
  let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
9613
9648
  /**
9614
9649
  * Loads the Conversations record from the database
9615
- * @param ID: Number - primary key value to load the Conversations record.
9650
+ * @param ID: number - primary key value to load the Conversations record.
9616
9651
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
9617
9652
  * @returns {Promise<boolean>} - true if successful, false otherwise
9618
9653
  * @public
@@ -9778,7 +9813,7 @@ exports.ConversationEntity = ConversationEntity = __decorate([
9778
9813
  ], ConversationEntity);
9779
9814
  /**
9780
9815
  * User Notifications - strongly typed entity sub-class
9781
- * * Schema: admin
9816
+ * * Schema: __mj
9782
9817
  * * Base Table: UserNotification
9783
9818
  * * Base View: vwUserNotifications
9784
9819
  * * Primary Key: ID
@@ -9789,7 +9824,7 @@ exports.ConversationEntity = ConversationEntity = __decorate([
9789
9824
  let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEntity {
9790
9825
  /**
9791
9826
  * Loads the User Notifications record from the database
9792
- * @param ID: Number - primary key value to load the User Notifications record.
9827
+ * @param ID: number - primary key value to load the User Notifications record.
9793
9828
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
9794
9829
  * @returns {Promise<boolean>} - true if successful, false otherwise
9795
9830
  * @public
@@ -9945,7 +9980,7 @@ exports.UserNotificationEntity = UserNotificationEntity = __decorate([
9945
9980
  ], UserNotificationEntity);
9946
9981
  /**
9947
9982
  * Schema Info - strongly typed entity sub-class
9948
- * * Schema: admin
9983
+ * * Schema: __mj
9949
9984
  * * Base Table: SchemaInfo
9950
9985
  * * Base View: vwSchemaInfos
9951
9986
  * * Primary Key: ID
@@ -9956,7 +9991,7 @@ exports.UserNotificationEntity = UserNotificationEntity = __decorate([
9956
9991
  let SchemaInfoEntity = class SchemaInfoEntity extends core_1.BaseEntity {
9957
9992
  /**
9958
9993
  * Loads the Schema Info record from the database
9959
- * @param ID: Number - primary key value to load the Schema Info record.
9994
+ * @param ID: number - primary key value to load the Schema Info record.
9960
9995
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
9961
9996
  * @returns {Promise<boolean>} - true if successful, false otherwise
9962
9997
  * @public
@@ -10058,7 +10093,7 @@ exports.SchemaInfoEntity = SchemaInfoEntity = __decorate([
10058
10093
  ], SchemaInfoEntity);
10059
10094
  /**
10060
10095
  * Company Integration Record Maps - strongly typed entity sub-class
10061
- * * Schema: admin
10096
+ * * Schema: __mj
10062
10097
  * * Base Table: CompanyIntegrationRecordMap
10063
10098
  * * Base View: vwCompanyIntegrationRecordMaps
10064
10099
  * * Primary Key: ID
@@ -10069,7 +10104,7 @@ exports.SchemaInfoEntity = SchemaInfoEntity = __decorate([
10069
10104
  let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity extends core_1.BaseEntity {
10070
10105
  /**
10071
10106
  * Loads the Company Integration Record Maps record from the database
10072
- * @param ID: Number - primary key value to load the Company Integration Record Maps record.
10107
+ * @param ID: number - primary key value to load the Company Integration Record Maps record.
10073
10108
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
10074
10109
  * @returns {Promise<boolean>} - true if successful, false otherwise
10075
10110
  * @public
@@ -10129,6 +10164,7 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
10129
10164
  * * Field Name: EntityID
10130
10165
  * * Display Name: Entity ID
10131
10166
  * * SQL Data Type: int
10167
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
10132
10168
  */
10133
10169
  get EntityID() {
10134
10170
  return this.Get('EntityID');
@@ -10165,6 +10201,14 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
10165
10201
  get UpdatedAt() {
10166
10202
  return this.Get('UpdatedAt');
10167
10203
  }
10204
+ /**
10205
+ * * Field Name: Entity
10206
+ * * Display Name: Entity
10207
+ * * SQL Data Type: nvarchar(255)
10208
+ */
10209
+ get Entity() {
10210
+ return this.Get('Entity');
10211
+ }
10168
10212
  };
10169
10213
  exports.CompanyIntegrationRecordMapEntity = CompanyIntegrationRecordMapEntity;
10170
10214
  exports.CompanyIntegrationRecordMapEntity = CompanyIntegrationRecordMapEntity = __decorate([
@@ -10172,7 +10216,7 @@ exports.CompanyIntegrationRecordMapEntity = CompanyIntegrationRecordMapEntity =
10172
10216
  ], CompanyIntegrationRecordMapEntity);
10173
10217
  /**
10174
10218
  * Record Merge Logs - strongly typed entity sub-class
10175
- * * Schema: admin
10219
+ * * Schema: __mj
10176
10220
  * * Base Table: RecordMergeLog
10177
10221
  * * Base View: vwRecordMergeLogs
10178
10222
  * * Primary Key: ID
@@ -10183,7 +10227,7 @@ exports.CompanyIntegrationRecordMapEntity = CompanyIntegrationRecordMapEntity =
10183
10227
  let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity {
10184
10228
  /**
10185
10229
  * Loads the Record Merge Logs record from the database
10186
- * @param ID: Number - primary key value to load the Record Merge Logs record.
10230
+ * @param ID: number - primary key value to load the Record Merge Logs record.
10187
10231
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
10188
10232
  * @returns {Promise<boolean>} - true if successful, false otherwise
10189
10233
  * @public
@@ -10372,7 +10416,7 @@ exports.RecordMergeLogEntity = RecordMergeLogEntity = __decorate([
10372
10416
  ], RecordMergeLogEntity);
10373
10417
  /**
10374
10418
  * Record Merge Deletion Logs - strongly typed entity sub-class
10375
- * * Schema: admin
10419
+ * * Schema: __mj
10376
10420
  * * Base Table: RecordMergeDeletionLog
10377
10421
  * * Base View: vwRecordMergeDeletionLogs
10378
10422
  * * Primary Key: ID
@@ -10383,7 +10427,7 @@ exports.RecordMergeLogEntity = RecordMergeLogEntity = __decorate([
10383
10427
  let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends core_1.BaseEntity {
10384
10428
  /**
10385
10429
  * Loads the Record Merge Deletion Logs record from the database
10386
- * @param ID: Number - primary key value to load the Record Merge Deletion Logs record.
10430
+ * @param ID: number - primary key value to load the Record Merge Deletion Logs record.
10387
10431
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
10388
10432
  * @returns {Promise<boolean>} - true if successful, false otherwise
10389
10433
  * @public
@@ -10487,7 +10531,7 @@ exports.RecordMergeDeletionLogEntity = RecordMergeDeletionLogEntity = __decorate
10487
10531
  ], RecordMergeDeletionLogEntity);
10488
10532
  /**
10489
10533
  * Query Fields - strongly typed entity sub-class
10490
- * * Schema: admin
10534
+ * * Schema: __mj
10491
10535
  * * Base Table: QueryField
10492
10536
  * * Base View: vwQueryFields
10493
10537
  * * Primary Key: ID
@@ -10498,7 +10542,7 @@ exports.RecordMergeDeletionLogEntity = RecordMergeDeletionLogEntity = __decorate
10498
10542
  let QueryFieldEntity = class QueryFieldEntity extends core_1.BaseEntity {
10499
10543
  /**
10500
10544
  * Loads the Query Fields record from the database
10501
- * @param ID: Number - primary key value to load the Query Fields record.
10545
+ * @param ID: number - primary key value to load the Query Fields record.
10502
10546
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
10503
10547
  * @returns {Promise<boolean>} - true if successful, false otherwise
10504
10548
  * @public
@@ -10604,6 +10648,7 @@ let QueryFieldEntity = class QueryFieldEntity extends core_1.BaseEntity {
10604
10648
  * * Field Name: SourceEntityID
10605
10649
  * * Display Name: Source Entity ID
10606
10650
  * * SQL Data Type: int
10651
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
10607
10652
  */
10608
10653
  get SourceEntityID() {
10609
10654
  return this.Get('SourceEntityID');
@@ -10694,6 +10739,14 @@ let QueryFieldEntity = class QueryFieldEntity extends core_1.BaseEntity {
10694
10739
  get Query() {
10695
10740
  return this.Get('Query');
10696
10741
  }
10742
+ /**
10743
+ * * Field Name: SourceEntity
10744
+ * * Display Name: Source Entity
10745
+ * * SQL Data Type: nvarchar(255)
10746
+ */
10747
+ get SourceEntity() {
10748
+ return this.Get('SourceEntity');
10749
+ }
10697
10750
  };
10698
10751
  exports.QueryFieldEntity = QueryFieldEntity;
10699
10752
  exports.QueryFieldEntity = QueryFieldEntity = __decorate([
@@ -10701,7 +10754,7 @@ exports.QueryFieldEntity = QueryFieldEntity = __decorate([
10701
10754
  ], QueryFieldEntity);
10702
10755
  /**
10703
10756
  * Query Categories - strongly typed entity sub-class
10704
- * * Schema: admin
10757
+ * * Schema: __mj
10705
10758
  * * Base Table: QueryCategory
10706
10759
  * * Base View: vwQueryCategories
10707
10760
  * * Primary Key: ID
@@ -10712,7 +10765,7 @@ exports.QueryFieldEntity = QueryFieldEntity = __decorate([
10712
10765
  let QueryCategoryEntity = class QueryCategoryEntity extends core_1.BaseEntity {
10713
10766
  /**
10714
10767
  * Loads the Query Categories record from the database
10715
- * @param ID: Number - primary key value to load the Query Categories record.
10768
+ * @param ID: number - primary key value to load the Query Categories record.
10716
10769
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
10717
10770
  * @returns {Promise<boolean>} - true if successful, false otherwise
10718
10771
  * @public
@@ -10812,7 +10865,7 @@ exports.QueryCategoryEntity = QueryCategoryEntity = __decorate([
10812
10865
  ], QueryCategoryEntity);
10813
10866
  /**
10814
10867
  * Queries - strongly typed entity sub-class
10815
- * * Schema: admin
10868
+ * * Schema: __mj
10816
10869
  * * Base Table: Query
10817
10870
  * * Base View: vwQueries
10818
10871
  * * Primary Key: ID
@@ -10823,7 +10876,7 @@ exports.QueryCategoryEntity = QueryCategoryEntity = __decorate([
10823
10876
  let QueryEntity = class QueryEntity extends core_1.BaseEntity {
10824
10877
  /**
10825
10878
  * Loads the Queries record from the database
10826
- * @param ID: Number - primary key value to load the Queries record.
10879
+ * @param ID: number - primary key value to load the Queries record.
10827
10880
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
10828
10881
  * @returns {Promise<boolean>} - true if successful, false otherwise
10829
10882
  * @public
@@ -10980,7 +11033,7 @@ exports.QueryEntity = QueryEntity = __decorate([
10980
11033
  ], QueryEntity);
10981
11034
  /**
10982
11035
  * Query Permissions - strongly typed entity sub-class
10983
- * * Schema: admin
11036
+ * * Schema: __mj
10984
11037
  * * Base Table: QueryPermission
10985
11038
  * * Base View: vwQueryPermissions
10986
11039
  * * Primary Key: ID
@@ -10991,7 +11044,7 @@ exports.QueryEntity = QueryEntity = __decorate([
10991
11044
  let QueryPermissionEntity = class QueryPermissionEntity extends core_1.BaseEntity {
10992
11045
  /**
10993
11046
  * Loads the Query Permissions record from the database
10994
- * @param ID: Number - primary key value to load the Query Permissions record.
11047
+ * @param ID: number - primary key value to load the Query Permissions record.
10995
11048
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
10996
11049
  * @returns {Promise<boolean>} - true if successful, false otherwise
10997
11050
  * @public
@@ -11073,7 +11126,7 @@ exports.QueryPermissionEntity = QueryPermissionEntity = __decorate([
11073
11126
  ], QueryPermissionEntity);
11074
11127
  /**
11075
11128
  * Vector Indexes - strongly typed entity sub-class
11076
- * * Schema: admin
11129
+ * * Schema: __mj
11077
11130
  * * Base Table: VectorIndex
11078
11131
  * * Base View: vwVectorIndexes
11079
11132
  * * Primary Key: ID
@@ -11084,7 +11137,7 @@ exports.QueryPermissionEntity = QueryPermissionEntity = __decorate([
11084
11137
  let VectorIndexEntity = class VectorIndexEntity extends core_1.BaseEntity {
11085
11138
  /**
11086
11139
  * Loads the Vector Indexes record from the database
11087
- * @param ID: Number - primary key value to load the Vector Indexes record.
11140
+ * @param ID: number - primary key value to load the Vector Indexes record.
11088
11141
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
11089
11142
  * @returns {Promise<boolean>} - true if successful, false otherwise
11090
11143
  * @public
@@ -11204,7 +11257,7 @@ exports.VectorIndexEntity = VectorIndexEntity = __decorate([
11204
11257
  ], VectorIndexEntity);
11205
11258
  /**
11206
11259
  * Entity Document Types - strongly typed entity sub-class
11207
- * * Schema: admin
11260
+ * * Schema: __mj
11208
11261
  * * Base Table: EntityDocumentType
11209
11262
  * * Base View: vwEntityDocumentTypes
11210
11263
  * * Primary Key: ID
@@ -11215,7 +11268,7 @@ exports.VectorIndexEntity = VectorIndexEntity = __decorate([
11215
11268
  let EntityDocumentTypeEntity = class EntityDocumentTypeEntity extends core_1.BaseEntity {
11216
11269
  /**
11217
11270
  * Loads the Entity Document Types record from the database
11218
- * @param ID: Number - primary key value to load the Entity Document Types record.
11271
+ * @param ID: number - primary key value to load the Entity Document Types record.
11219
11272
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
11220
11273
  * @returns {Promise<boolean>} - true if successful, false otherwise
11221
11274
  * @public
@@ -11295,7 +11348,7 @@ exports.EntityDocumentTypeEntity = EntityDocumentTypeEntity = __decorate([
11295
11348
  ], EntityDocumentTypeEntity);
11296
11349
  /**
11297
11350
  * Entity Document Runs - strongly typed entity sub-class
11298
- * * Schema: admin
11351
+ * * Schema: __mj
11299
11352
  * * Base Table: EntityDocumentRun
11300
11353
  * * Base View: vwEntityDocumentRuns
11301
11354
  * * Primary Key: ID
@@ -11306,7 +11359,7 @@ exports.EntityDocumentTypeEntity = EntityDocumentTypeEntity = __decorate([
11306
11359
  let EntityDocumentRunEntity = class EntityDocumentRunEntity extends core_1.BaseEntity {
11307
11360
  /**
11308
11361
  * Loads the Entity Document Runs record from the database
11309
- * @param ID: Number - primary key value to load the Entity Document Runs record.
11362
+ * @param ID: number - primary key value to load the Entity Document Runs record.
11310
11363
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
11311
11364
  * @returns {Promise<boolean>} - true if successful, false otherwise
11312
11365
  * @public
@@ -11419,7 +11472,7 @@ exports.EntityDocumentRunEntity = EntityDocumentRunEntity = __decorate([
11419
11472
  ], EntityDocumentRunEntity);
11420
11473
  /**
11421
11474
  * Vector Databases - strongly typed entity sub-class
11422
- * * Schema: admin
11475
+ * * Schema: __mj
11423
11476
  * * Base Table: VectorDatabase
11424
11477
  * * Base View: vwVectorDatabases
11425
11478
  * * Primary Key: ID
@@ -11430,7 +11483,7 @@ exports.EntityDocumentRunEntity = EntityDocumentRunEntity = __decorate([
11430
11483
  let VectorDatabaseEntity = class VectorDatabaseEntity extends core_1.BaseEntity {
11431
11484
  /**
11432
11485
  * Loads the Vector Databases record from the database
11433
- * @param ID: Number - primary key value to load the Vector Databases record.
11486
+ * @param ID: number - primary key value to load the Vector Databases record.
11434
11487
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
11435
11488
  * @returns {Promise<boolean>} - true if successful, false otherwise
11436
11489
  * @public
@@ -11532,7 +11585,7 @@ exports.VectorDatabaseEntity = VectorDatabaseEntity = __decorate([
11532
11585
  ], VectorDatabaseEntity);
11533
11586
  /**
11534
11587
  * Entity Record Documents - strongly typed entity sub-class
11535
- * * Schema: admin
11588
+ * * Schema: __mj
11536
11589
  * * Base Table: EntityRecordDocument
11537
11590
  * * Base View: vwEntityRecordDocuments
11538
11591
  * * Primary Key: ID
@@ -11543,7 +11596,7 @@ exports.VectorDatabaseEntity = VectorDatabaseEntity = __decorate([
11543
11596
  let EntityRecordDocumentEntity = class EntityRecordDocumentEntity extends core_1.BaseEntity {
11544
11597
  /**
11545
11598
  * Loads the Entity Record Documents record from the database
11546
- * @param ID: Number - primary key value to load the Entity Record Documents record.
11599
+ * @param ID: number - primary key value to load the Entity Record Documents record.
11547
11600
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
11548
11601
  * @returns {Promise<boolean>} - true if successful, false otherwise
11549
11602
  * @public
@@ -11580,6 +11633,7 @@ let EntityRecordDocumentEntity = class EntityRecordDocumentEntity extends core_1
11580
11633
  * * Field Name: EntityID
11581
11634
  * * Display Name: Entity ID
11582
11635
  * * SQL Data Type: int
11636
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
11583
11637
  */
11584
11638
  get EntityID() {
11585
11639
  return this.Get('EntityID');
@@ -11678,7 +11732,7 @@ exports.EntityRecordDocumentEntity = EntityRecordDocumentEntity = __decorate([
11678
11732
  ], EntityRecordDocumentEntity);
11679
11733
  /**
11680
11734
  * Entity Documents - strongly typed entity sub-class
11681
- * * Schema: admin
11735
+ * * Schema: __mj
11682
11736
  * * Base Table: EntityDocument
11683
11737
  * * Base View: vwEntityDocuments
11684
11738
  * * Primary Key: ID
@@ -11689,7 +11743,7 @@ exports.EntityRecordDocumentEntity = EntityRecordDocumentEntity = __decorate([
11689
11743
  let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity {
11690
11744
  /**
11691
11745
  * Loads the Entity Documents record from the database
11692
- * @param ID: Number - primary key value to load the Entity Documents record.
11746
+ * @param ID: number - primary key value to load the Entity Documents record.
11693
11747
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
11694
11748
  * @returns {Promise<boolean>} - true if successful, false otherwise
11695
11749
  * @public
@@ -11737,6 +11791,7 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
11737
11791
  * * Field Name: EntityID
11738
11792
  * * Display Name: Entity ID
11739
11793
  * * SQL Data Type: int
11794
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
11740
11795
  */
11741
11796
  get EntityID() {
11742
11797
  return this.Get('EntityID');
@@ -11798,6 +11853,14 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
11798
11853
  return this.Get('UpdatedAt');
11799
11854
  }
11800
11855
  /**
11856
+ * * Field Name: Entity
11857
+ * * Display Name: Entity
11858
+ * * SQL Data Type: nvarchar(255)
11859
+ */
11860
+ get Entity() {
11861
+ return this.Get('Entity');
11862
+ }
11863
+ /**
11801
11864
  * * Field Name: Type
11802
11865
  * * Display Name: Type
11803
11866
  * * SQL Data Type: nvarchar(100)
@@ -11812,7 +11875,7 @@ exports.EntityDocumentEntity = EntityDocumentEntity = __decorate([
11812
11875
  ], EntityDocumentEntity);
11813
11876
  /**
11814
11877
  * Data Context Items - strongly typed entity sub-class
11815
- * * Schema: admin
11878
+ * * Schema: __mj
11816
11879
  * * Base Table: DataContextItem
11817
11880
  * * Base View: vwDataContextItems
11818
11881
  * * @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.
@@ -11824,7 +11887,7 @@ exports.EntityDocumentEntity = EntityDocumentEntity = __decorate([
11824
11887
  let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntity {
11825
11888
  /**
11826
11889
  * Loads the Data Context Items record from the database
11827
- * @param ID: Number - primary key value to load the Data Context Items record.
11890
+ * @param ID: number - primary key value to load the Data Context Items record.
11828
11891
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
11829
11892
  * @returns {Promise<boolean>} - true if successful, false otherwise
11830
11893
  * @public
@@ -11912,6 +11975,7 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
11912
11975
  * * Field Name: EntityID
11913
11976
  * * Display Name: Entity ID
11914
11977
  * * SQL Data Type: int
11978
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
11915
11979
  * * Description: Used if type='full_entity' or type='single_record'
11916
11980
  */
11917
11981
  get EntityID() {
@@ -12010,6 +12074,14 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
12010
12074
  get Query() {
12011
12075
  return this.Get('Query');
12012
12076
  }
12077
+ /**
12078
+ * * Field Name: Entity
12079
+ * * Display Name: Entity
12080
+ * * SQL Data Type: nvarchar(255)
12081
+ */
12082
+ get Entity() {
12083
+ return this.Get('Entity');
12084
+ }
12013
12085
  };
12014
12086
  exports.DataContextItemEntity = DataContextItemEntity;
12015
12087
  exports.DataContextItemEntity = DataContextItemEntity = __decorate([
@@ -12017,7 +12089,7 @@ exports.DataContextItemEntity = DataContextItemEntity = __decorate([
12017
12089
  ], DataContextItemEntity);
12018
12090
  /**
12019
12091
  * Data Contexts - strongly typed entity sub-class
12020
- * * Schema: admin
12092
+ * * Schema: __mj
12021
12093
  * * Base Table: DataContext
12022
12094
  * * Base View: vwDataContexts
12023
12095
  * * @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.
@@ -12029,7 +12101,7 @@ exports.DataContextItemEntity = DataContextItemEntity = __decorate([
12029
12101
  let DataContextEntity = class DataContextEntity extends core_1.BaseEntity {
12030
12102
  /**
12031
12103
  * Loads the Data Contexts record from the database
12032
- * @param ID: Number - primary key value to load the Data Contexts record.
12104
+ * @param ID: number - primary key value to load the Data Contexts record.
12033
12105
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
12034
12106
  * @returns {Promise<boolean>} - true if successful, false otherwise
12035
12107
  * @public
@@ -12140,7 +12212,7 @@ exports.DataContextEntity = DataContextEntity = __decorate([
12140
12212
  ], DataContextEntity);
12141
12213
  /**
12142
12214
  * User View Categories - strongly typed entity sub-class
12143
- * * Schema: admin
12215
+ * * Schema: __mj
12144
12216
  * * Base Table: UserViewCategory
12145
12217
  * * Base View: vwUserViewCategories
12146
12218
  * * Primary Key: ID
@@ -12151,7 +12223,7 @@ exports.DataContextEntity = DataContextEntity = __decorate([
12151
12223
  let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEntity {
12152
12224
  /**
12153
12225
  * Loads the User View Categories record from the database
12154
- * @param ID: Number - primary key value to load the User View Categories record.
12226
+ * @param ID: number - primary key value to load the User View Categories record.
12155
12227
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
12156
12228
  * @returns {Promise<boolean>} - true if successful, false otherwise
12157
12229
  * @public
@@ -12251,7 +12323,7 @@ exports.UserViewCategoryEntity = UserViewCategoryEntity = __decorate([
12251
12323
  ], UserViewCategoryEntity);
12252
12324
  /**
12253
12325
  * Dashboard Categories - strongly typed entity sub-class
12254
- * * Schema: admin
12326
+ * * Schema: __mj
12255
12327
  * * Base Table: DashboardCategory
12256
12328
  * * Base View: vwDashboardCategories
12257
12329
  * * Primary Key: ID
@@ -12262,7 +12334,7 @@ exports.UserViewCategoryEntity = UserViewCategoryEntity = __decorate([
12262
12334
  let DashboardCategoryEntity = class DashboardCategoryEntity extends core_1.BaseEntity {
12263
12335
  /**
12264
12336
  * Loads the Dashboard Categories record from the database
12265
- * @param ID: Number - primary key value to load the Dashboard Categories record.
12337
+ * @param ID: number - primary key value to load the Dashboard Categories record.
12266
12338
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
12267
12339
  * @returns {Promise<boolean>} - true if successful, false otherwise
12268
12340
  * @public
@@ -12362,7 +12434,7 @@ exports.DashboardCategoryEntity = DashboardCategoryEntity = __decorate([
12362
12434
  ], DashboardCategoryEntity);
12363
12435
  /**
12364
12436
  * Report Categories - strongly typed entity sub-class
12365
- * * Schema: admin
12437
+ * * Schema: __mj
12366
12438
  * * Base Table: ReportCategory
12367
12439
  * * Base View: vwReportCategories
12368
12440
  * * Primary Key: ID
@@ -12373,7 +12445,7 @@ exports.DashboardCategoryEntity = DashboardCategoryEntity = __decorate([
12373
12445
  let ReportCategoryEntity = class ReportCategoryEntity extends core_1.BaseEntity {
12374
12446
  /**
12375
12447
  * Loads the Report Categories record from the database
12376
- * @param ID: Number - primary key value to load the Report Categories record.
12448
+ * @param ID: number - primary key value to load the Report Categories record.
12377
12449
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
12378
12450
  * @returns {Promise<boolean>} - true if successful, false otherwise
12379
12451
  * @public