@memberjunction/core-entities 0.9.151 → 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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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.
@@ -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.
@@ -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
@@ -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
@@ -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