@memberjunction/core-entities 0.9.129 → 0.9.131
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.
|
@@ -7,7 +7,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
7
7
|
};
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.DashboardEntity = exports.QueueTaskEntity = exports.QueueEntity = exports.QueueTypeEntity = exports.AIModelTypeEntity = exports.EntityAIActionEntity = exports.AIModelActionEntity = exports.AIActionEntity = exports.AIModelEntity = exports.EntityFieldValueEntity = exports.AuditLogTypeEntity = exports.AuthorizationRoleEntity = exports.AuthorizationEntity = exports.AuditLogEntity = exports.RowLevelSecurityFilterEntity = exports.UserRoleEntity = exports.RecordChangeEntity = exports.WorkflowEngineEntity = exports.WorkflowEntity = exports.WorkflowRunEntity = exports.UserViewRunDetailEntity = exports.UserViewRunEntity = exports.ListDetailEntity = exports.ListEntity = exports.CompanyIntegrationRunAPILogEntity = exports.UserApplicationEntity = exports.UserApplicationEntityEntity = exports.EntityPermissionEntity = exports.ApplicationEntityEntity = exports.ApplicationEntity = exports.ErrorLogEntity = exports.CompanyIntegrationRunDetailEntity = exports.CompanyIntegrationRunEntity = exports.UserViewEntity = exports.UserRecordLogEntity = exports.EntityRelationshipEntity = exports.UserEntity = exports.EntityEntity = exports.EntityFieldEntity = exports.CompanyIntegrationEntity = exports.IntegrationEntity = exports.IntegrationURLFormatEntity = exports.SkillEntity = exports.RoleEntity = exports.EmployeeSkillEntity = exports.EmployeeRoleEntity = exports.EmployeeCompanyIntegrationEntity = exports.UserFavoriteEntity = exports.EmployeeEntity = exports.CompanyEntity = void 0;
|
|
10
|
-
exports.DataContextEntity = exports.DataContextItemEntity = exports.EntityDocumentEntity = exports.EntityRecordDocumentEntity = exports.VectorDatabaseEntity = exports.EntityDocumentRunEntity = exports.EntityDocumentTypeEntity = exports.VectorIndexEntity = exports.QueryPermissionEntity = exports.QueryEntity = exports.QueryCategoryEntity = exports.QueryFieldEntity = exports.RecordMergeDeletionLogEntity = exports.RecordMergeLogEntity = exports.CompanyIntegrationRecordMapEntity = exports.SchemaInfoEntity = exports.
|
|
10
|
+
exports.ReportCategoryEntity = exports.DashboardCategoryEntity = exports.UserViewCategoryEntity = exports.DataContextEntity = exports.DataContextItemEntity = exports.EntityDocumentEntity = exports.EntityRecordDocumentEntity = exports.VectorDatabaseEntity = exports.EntityDocumentRunEntity = exports.EntityDocumentTypeEntity = exports.VectorIndexEntity = exports.QueryPermissionEntity = exports.QueryEntity = exports.QueryCategoryEntity = exports.QueryFieldEntity = exports.RecordMergeDeletionLogEntity = exports.RecordMergeLogEntity = exports.CompanyIntegrationRecordMapEntity = exports.SchemaInfoEntity = exports.UserNotificationEntity = exports.ConversationEntity = exports.ConversationDetailEntity = exports.DatasetItemEntity = exports.DatasetEntity = exports.WorkspaceItemEntity = exports.WorkspaceEntity = exports.TaggedItemEntity = exports.TagEntity = exports.ResourceTypeEntity = exports.ReportSnapshotEntity = exports.ReportEntity = exports.OutputDeliveryTypeEntity = exports.OutputFormatTypeEntity = exports.OutputTriggerTypeEntity = void 0;
|
|
11
11
|
const core_1 = require("@memberjunction/core");
|
|
12
12
|
const global_1 = require("@memberjunction/global");
|
|
13
13
|
/**
|
|
@@ -229,7 +229,7 @@ let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
|
|
|
229
229
|
* * Field Name: CompanyID
|
|
230
230
|
* * Display Name: Company ID
|
|
231
231
|
* * SQL Data Type: int
|
|
232
|
-
* * Related Entity: Companies
|
|
232
|
+
* * Related Entity/Foreign Key: Companies (vwCompanies.ID)
|
|
233
233
|
*/
|
|
234
234
|
get CompanyID() {
|
|
235
235
|
return this.Get('CompanyID');
|
|
@@ -241,7 +241,7 @@ let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
|
|
|
241
241
|
* * Field Name: SupervisorID
|
|
242
242
|
* * Display Name: Supervisor ID
|
|
243
243
|
* * SQL Data Type: int
|
|
244
|
-
* * Related Entity: Employees
|
|
244
|
+
* * Related Entity/Foreign Key: Employees (vwEmployees.ID)
|
|
245
245
|
*/
|
|
246
246
|
get SupervisorID() {
|
|
247
247
|
return this.Get('SupervisorID');
|
|
@@ -350,7 +350,7 @@ let UserFavoriteEntity = class UserFavoriteEntity extends core_1.BaseEntity {
|
|
|
350
350
|
* * Field Name: UserID
|
|
351
351
|
* * Display Name: User ID
|
|
352
352
|
* * SQL Data Type: int
|
|
353
|
-
* * Related Entity: Users
|
|
353
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
354
354
|
*/
|
|
355
355
|
get UserID() {
|
|
356
356
|
return this.Get('UserID');
|
|
@@ -362,7 +362,7 @@ let UserFavoriteEntity = class UserFavoriteEntity extends core_1.BaseEntity {
|
|
|
362
362
|
* * Field Name: EntityID
|
|
363
363
|
* * Display Name: Entity ID
|
|
364
364
|
* * SQL Data Type: int
|
|
365
|
-
* * Related Entity: Entities
|
|
365
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
366
366
|
*/
|
|
367
367
|
get EntityID() {
|
|
368
368
|
return this.Get('EntityID');
|
|
@@ -476,7 +476,7 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
|
|
|
476
476
|
* * Field Name: EmployeeID
|
|
477
477
|
* * Display Name: Employee ID
|
|
478
478
|
* * SQL Data Type: int
|
|
479
|
-
* * Related Entity: Employees
|
|
479
|
+
* * Related Entity/Foreign Key: Employees (vwEmployees.ID)
|
|
480
480
|
*/
|
|
481
481
|
get EmployeeID() {
|
|
482
482
|
return this.Get('EmployeeID');
|
|
@@ -488,7 +488,7 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
|
|
|
488
488
|
* * Field Name: CompanyIntegrationID
|
|
489
489
|
* * Display Name: Company Integration ID
|
|
490
490
|
* * SQL Data Type: int
|
|
491
|
-
* * Related Entity: Company Integrations
|
|
491
|
+
* * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)
|
|
492
492
|
*/
|
|
493
493
|
get CompanyIntegrationID() {
|
|
494
494
|
return this.Get('CompanyIntegrationID');
|
|
@@ -592,7 +592,7 @@ let EmployeeRoleEntity = class EmployeeRoleEntity extends core_1.BaseEntity {
|
|
|
592
592
|
* * Field Name: EmployeeID
|
|
593
593
|
* * Display Name: Employee ID
|
|
594
594
|
* * SQL Data Type: int
|
|
595
|
-
* * Related Entity: Employees
|
|
595
|
+
* * Related Entity/Foreign Key: Employees (vwEmployees.ID)
|
|
596
596
|
*/
|
|
597
597
|
get EmployeeID() {
|
|
598
598
|
return this.Get('EmployeeID');
|
|
@@ -604,7 +604,7 @@ let EmployeeRoleEntity = class EmployeeRoleEntity extends core_1.BaseEntity {
|
|
|
604
604
|
* * Field Name: RoleID
|
|
605
605
|
* * Display Name: Role ID
|
|
606
606
|
* * SQL Data Type: int
|
|
607
|
-
* * Related Entity: Roles
|
|
607
|
+
* * Related Entity/Foreign Key: Roles (vwRoles.ID)
|
|
608
608
|
*/
|
|
609
609
|
get RoleID() {
|
|
610
610
|
return this.Get('RoleID');
|
|
@@ -693,7 +693,7 @@ let EmployeeSkillEntity = class EmployeeSkillEntity extends core_1.BaseEntity {
|
|
|
693
693
|
* * Field Name: EmployeeID
|
|
694
694
|
* * Display Name: Employee ID
|
|
695
695
|
* * SQL Data Type: int
|
|
696
|
-
* * Related Entity: Employees
|
|
696
|
+
* * Related Entity/Foreign Key: Employees (vwEmployees.ID)
|
|
697
697
|
*/
|
|
698
698
|
get EmployeeID() {
|
|
699
699
|
return this.Get('EmployeeID');
|
|
@@ -705,7 +705,7 @@ let EmployeeSkillEntity = class EmployeeSkillEntity extends core_1.BaseEntity {
|
|
|
705
705
|
* * Field Name: SkillID
|
|
706
706
|
* * Display Name: Skill ID
|
|
707
707
|
* * SQL Data Type: int
|
|
708
|
-
* * Related Entity: Skills
|
|
708
|
+
* * Related Entity/Foreign Key: Skills (vwSkills.ID)
|
|
709
709
|
*/
|
|
710
710
|
get SkillID() {
|
|
711
711
|
return this.Get('SkillID');
|
|
@@ -923,7 +923,7 @@ let SkillEntity = class SkillEntity extends core_1.BaseEntity {
|
|
|
923
923
|
* * Field Name: ParentID
|
|
924
924
|
* * Display Name: Parent
|
|
925
925
|
* * SQL Data Type: int
|
|
926
|
-
* * Related Entity: Skills
|
|
926
|
+
* * Related Entity/Foreign Key: Skills (vwSkills.ID)
|
|
927
927
|
*/
|
|
928
928
|
get ParentID() {
|
|
929
929
|
return this.Get('ParentID');
|
|
@@ -1011,7 +1011,7 @@ let IntegrationURLFormatEntity = class IntegrationURLFormatEntity extends core_1
|
|
|
1011
1011
|
* * Field Name: IntegrationName
|
|
1012
1012
|
* * Display Name: Integration Name
|
|
1013
1013
|
* * SQL Data Type: nvarchar(100)
|
|
1014
|
-
* * Related Entity: Integrations
|
|
1014
|
+
* * Related Entity/Foreign Key: Integrations (vwIntegrations.Name)
|
|
1015
1015
|
*/
|
|
1016
1016
|
get IntegrationName() {
|
|
1017
1017
|
return this.Get('IntegrationName');
|
|
@@ -1023,7 +1023,7 @@ let IntegrationURLFormatEntity = class IntegrationURLFormatEntity extends core_1
|
|
|
1023
1023
|
* * Field Name: EntityID
|
|
1024
1024
|
* * Display Name: Entity ID
|
|
1025
1025
|
* * SQL Data Type: int
|
|
1026
|
-
* * Related Entity: Entities
|
|
1026
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
1027
1027
|
*/
|
|
1028
1028
|
get EntityID() {
|
|
1029
1029
|
return this.Get('EntityID');
|
|
@@ -1272,7 +1272,7 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
1272
1272
|
* * Field Name: CompanyName
|
|
1273
1273
|
* * Display Name: Company Name
|
|
1274
1274
|
* * SQL Data Type: nvarchar(50)
|
|
1275
|
-
* * Related Entity: Companies
|
|
1275
|
+
* * Related Entity/Foreign Key: Companies (vwCompanies.Name)
|
|
1276
1276
|
*/
|
|
1277
1277
|
get CompanyName() {
|
|
1278
1278
|
return this.Get('CompanyName');
|
|
@@ -1284,7 +1284,7 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
1284
1284
|
* * Field Name: IntegrationName
|
|
1285
1285
|
* * Display Name: Integration Name
|
|
1286
1286
|
* * SQL Data Type: nvarchar(100)
|
|
1287
|
-
* * Related Entity: Integrations
|
|
1287
|
+
* * Related Entity/Foreign Key: Integrations (vwIntegrations.Name)
|
|
1288
1288
|
*/
|
|
1289
1289
|
get IntegrationName() {
|
|
1290
1290
|
return this.Get('IntegrationName');
|
|
@@ -2037,7 +2037,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2037
2037
|
* * Field Name: ParentID
|
|
2038
2038
|
* * Display Name: Parent ID
|
|
2039
2039
|
* * SQL Data Type: int
|
|
2040
|
-
* * Related Entity: Entities
|
|
2040
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
2041
2041
|
*/
|
|
2042
2042
|
get ParentID() {
|
|
2043
2043
|
return this.Get('ParentID');
|
|
@@ -2814,7 +2814,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
2814
2814
|
* * Field Name: EntityID
|
|
2815
2815
|
* * Display Name: Entity ID
|
|
2816
2816
|
* * SQL Data Type: int
|
|
2817
|
-
* * Related Entity: Entities
|
|
2817
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
2818
2818
|
*/
|
|
2819
2819
|
get EntityID() {
|
|
2820
2820
|
return this.Get('EntityID');
|
|
@@ -2826,7 +2826,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
2826
2826
|
* * Field Name: RelatedEntityID
|
|
2827
2827
|
* * Display Name: Related Entity ID
|
|
2828
2828
|
* * SQL Data Type: int
|
|
2829
|
-
* * Related Entity: Entities
|
|
2829
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
2830
2830
|
*/
|
|
2831
2831
|
get RelatedEntityID() {
|
|
2832
2832
|
return this.Get('RelatedEntityID');
|
|
@@ -2951,7 +2951,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
2951
2951
|
* * Field Name: DisplayUserViewGUID
|
|
2952
2952
|
* * Display Name: Display User View GUID
|
|
2953
2953
|
* * SQL Data Type: uniqueidentifier
|
|
2954
|
-
* * Related Entity: User Views
|
|
2954
|
+
* * Related Entity/Foreign Key: User Views (vwUserViews.GUID)
|
|
2955
2955
|
*/
|
|
2956
2956
|
get DisplayUserViewGUID() {
|
|
2957
2957
|
return this.Get('DisplayUserViewGUID');
|
|
@@ -3115,7 +3115,7 @@ let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
|
|
|
3115
3115
|
* * Field Name: UserID
|
|
3116
3116
|
* * Display Name: User ID
|
|
3117
3117
|
* * SQL Data Type: int
|
|
3118
|
-
* * Related Entity: Users
|
|
3118
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
3119
3119
|
*/
|
|
3120
3120
|
get UserID() {
|
|
3121
3121
|
return this.Get('UserID');
|
|
@@ -3127,7 +3127,7 @@ let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
|
|
|
3127
3127
|
* * Field Name: EntityID
|
|
3128
3128
|
* * Display Name: Entity ID
|
|
3129
3129
|
* * SQL Data Type: int
|
|
3130
|
-
* * Related Entity: Entities
|
|
3130
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
3131
3131
|
*/
|
|
3132
3132
|
get EntityID() {
|
|
3133
3133
|
return this.Get('EntityID');
|
|
@@ -3273,7 +3273,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
3273
3273
|
* * Field Name: UserID
|
|
3274
3274
|
* * Display Name: User ID
|
|
3275
3275
|
* * SQL Data Type: int
|
|
3276
|
-
* * Related Entity: Users
|
|
3276
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
3277
3277
|
*/
|
|
3278
3278
|
get UserID() {
|
|
3279
3279
|
return this.Get('UserID');
|
|
@@ -3322,6 +3322,18 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
3322
3322
|
this.Set('Description', value);
|
|
3323
3323
|
}
|
|
3324
3324
|
/**
|
|
3325
|
+
* * Field Name: CategoryID
|
|
3326
|
+
* * Display Name: Category ID
|
|
3327
|
+
* * SQL Data Type: int
|
|
3328
|
+
* * Related Entity/Foreign Key: User View Categories (vwUserViewCategories.ID)
|
|
3329
|
+
*/
|
|
3330
|
+
get CategoryID() {
|
|
3331
|
+
return this.Get('CategoryID');
|
|
3332
|
+
}
|
|
3333
|
+
set CategoryID(value) {
|
|
3334
|
+
this.Set('CategoryID', value);
|
|
3335
|
+
}
|
|
3336
|
+
/**
|
|
3325
3337
|
* * Field Name: IsShared
|
|
3326
3338
|
* * Display Name: Is Shared
|
|
3327
3339
|
* * SQL Data Type: bit
|
|
@@ -3578,7 +3590,7 @@ let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core
|
|
|
3578
3590
|
* * Field Name: CompanyIntegrationID
|
|
3579
3591
|
* * Display Name: CompanyIntegration ID
|
|
3580
3592
|
* * SQL Data Type: int
|
|
3581
|
-
* * Related Entity: Company Integrations
|
|
3593
|
+
* * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)
|
|
3582
3594
|
*/
|
|
3583
3595
|
get CompanyIntegrationID() {
|
|
3584
3596
|
return this.Get('CompanyIntegrationID');
|
|
@@ -3590,7 +3602,7 @@ let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core
|
|
|
3590
3602
|
* * Field Name: RunByUserID
|
|
3591
3603
|
* * Display Name: RunByUser ID
|
|
3592
3604
|
* * SQL Data Type: int
|
|
3593
|
-
* * Related Entity: Users
|
|
3605
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
3594
3606
|
*/
|
|
3595
3607
|
get RunByUserID() {
|
|
3596
3608
|
return this.Get('RunByUserID');
|
|
@@ -3703,7 +3715,7 @@ let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity
|
|
|
3703
3715
|
* * Field Name: CompanyIntegrationRunID
|
|
3704
3716
|
* * Display Name: CompanyIntegrationRun ID
|
|
3705
3717
|
* * SQL Data Type: int
|
|
3706
|
-
* * Related Entity: Company Integration Runs
|
|
3718
|
+
* * Related Entity/Foreign Key: Company Integration Runs (vwCompanyIntegrationRuns.ID)
|
|
3707
3719
|
*/
|
|
3708
3720
|
get CompanyIntegrationRunID() {
|
|
3709
3721
|
return this.Get('CompanyIntegrationRunID');
|
|
@@ -3844,7 +3856,7 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
|
|
|
3844
3856
|
* * Field Name: CompanyIntegrationRunID
|
|
3845
3857
|
* * Display Name: CompanyIntegrationRun ID
|
|
3846
3858
|
* * SQL Data Type: int
|
|
3847
|
-
* * Related Entity: Company Integration Runs
|
|
3859
|
+
* * Related Entity/Foreign Key: Company Integration Runs (vwCompanyIntegrationRuns.ID)
|
|
3848
3860
|
*/
|
|
3849
3861
|
get CompanyIntegrationRunID() {
|
|
3850
3862
|
return this.Get('CompanyIntegrationRunID');
|
|
@@ -3856,7 +3868,7 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
|
|
|
3856
3868
|
* * Field Name: CompanyIntegrationRunDetailID
|
|
3857
3869
|
* * Display Name: CompanyIntegrationRunDetail ID
|
|
3858
3870
|
* * SQL Data Type: int
|
|
3859
|
-
* * Related Entity: Company Integration Run Details
|
|
3871
|
+
* * Related Entity/Foreign Key: Company Integration Run Details (vwCompanyIntegrationRunDetails.ID)
|
|
3860
3872
|
*/
|
|
3861
3873
|
get CompanyIntegrationRunDetailID() {
|
|
3862
3874
|
return this.Get('CompanyIntegrationRunDetailID');
|
|
@@ -4066,7 +4078,7 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
|
|
|
4066
4078
|
* * Field Name: ApplicationName
|
|
4067
4079
|
* * Display Name: Application Name
|
|
4068
4080
|
* * SQL Data Type: nvarchar(50)
|
|
4069
|
-
* * Related Entity: Applications
|
|
4081
|
+
* * Related Entity/Foreign Key: Applications (vwApplications.Name)
|
|
4070
4082
|
*/
|
|
4071
4083
|
get ApplicationName() {
|
|
4072
4084
|
return this.Get('ApplicationName');
|
|
@@ -4225,7 +4237,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
4225
4237
|
* * Field Name: RoleName
|
|
4226
4238
|
* * Display Name: Role Name
|
|
4227
4239
|
* * SQL Data Type: nvarchar(50)
|
|
4228
|
-
* * Related Entity: Roles
|
|
4240
|
+
* * Related Entity/Foreign Key: Roles (vwRoles.Name)
|
|
4229
4241
|
*/
|
|
4230
4242
|
get RoleName() {
|
|
4231
4243
|
return this.Get('RoleName');
|
|
@@ -4285,7 +4297,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
4285
4297
|
* * Field Name: ReadRLSFilterID
|
|
4286
4298
|
* * Display Name: Read RLSFilter ID
|
|
4287
4299
|
* * SQL Data Type: int
|
|
4288
|
-
* * Related Entity: Row Level Security Filters
|
|
4300
|
+
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
4289
4301
|
*/
|
|
4290
4302
|
get ReadRLSFilterID() {
|
|
4291
4303
|
return this.Get('ReadRLSFilterID');
|
|
@@ -4297,7 +4309,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
4297
4309
|
* * Field Name: CreateRLSFilterID
|
|
4298
4310
|
* * Display Name: Create RLSFilter ID
|
|
4299
4311
|
* * SQL Data Type: int
|
|
4300
|
-
* * Related Entity: Row Level Security Filters
|
|
4312
|
+
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
4301
4313
|
*/
|
|
4302
4314
|
get CreateRLSFilterID() {
|
|
4303
4315
|
return this.Get('CreateRLSFilterID');
|
|
@@ -4309,7 +4321,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
4309
4321
|
* * Field Name: UpdateRLSFilterID
|
|
4310
4322
|
* * Display Name: Update RLSFilter ID
|
|
4311
4323
|
* * SQL Data Type: int
|
|
4312
|
-
* * Related Entity: Row Level Security Filters
|
|
4324
|
+
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
4313
4325
|
*/
|
|
4314
4326
|
get UpdateRLSFilterID() {
|
|
4315
4327
|
return this.Get('UpdateRLSFilterID');
|
|
@@ -4321,7 +4333,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
4321
4333
|
* * Field Name: DeleteRLSFilterID
|
|
4322
4334
|
* * Display Name: Delete RLSFilter ID
|
|
4323
4335
|
* * SQL Data Type: int
|
|
4324
|
-
* * Related Entity: Row Level Security Filters
|
|
4336
|
+
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
4325
4337
|
*/
|
|
4326
4338
|
get DeleteRLSFilterID() {
|
|
4327
4339
|
return this.Get('DeleteRLSFilterID');
|
|
@@ -4437,7 +4449,7 @@ let UserApplicationEntityEntity = class UserApplicationEntityEntity extends core
|
|
|
4437
4449
|
* * Field Name: UserApplicationID
|
|
4438
4450
|
* * Display Name: UserApplication ID
|
|
4439
4451
|
* * SQL Data Type: int
|
|
4440
|
-
* * Related Entity: User Applications
|
|
4452
|
+
* * Related Entity/Foreign Key: User Applications (vwUserApplications.ID)
|
|
4441
4453
|
*/
|
|
4442
4454
|
get UserApplicationID() {
|
|
4443
4455
|
return this.Get('UserApplicationID');
|
|
@@ -4545,7 +4557,7 @@ let UserApplicationEntity = class UserApplicationEntity extends core_1.BaseEntit
|
|
|
4545
4557
|
* * Field Name: UserID
|
|
4546
4558
|
* * Display Name: User ID
|
|
4547
4559
|
* * SQL Data Type: int
|
|
4548
|
-
* * Related Entity: Users
|
|
4560
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
4549
4561
|
*/
|
|
4550
4562
|
get UserID() {
|
|
4551
4563
|
return this.Get('UserID');
|
|
@@ -4557,7 +4569,7 @@ let UserApplicationEntity = class UserApplicationEntity extends core_1.BaseEntit
|
|
|
4557
4569
|
* * Field Name: ApplicationID
|
|
4558
4570
|
* * Display Name: Application ID
|
|
4559
4571
|
* * SQL Data Type: int
|
|
4560
|
-
* * Related Entity: Applications
|
|
4572
|
+
* * Related Entity/Foreign Key: Applications (vwApplications.ID)
|
|
4561
4573
|
*/
|
|
4562
4574
|
get ApplicationID() {
|
|
4563
4575
|
return this.Get('ApplicationID');
|
|
@@ -4658,7 +4670,7 @@ let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity
|
|
|
4658
4670
|
* * Field Name: CompanyIntegrationRunID
|
|
4659
4671
|
* * Display Name: Company Integration Run ID
|
|
4660
4672
|
* * SQL Data Type: int
|
|
4661
|
-
* * Related Entity: Company Integration Runs
|
|
4673
|
+
* * Related Entity/Foreign Key: Company Integration Runs (vwCompanyIntegrationRuns.ID)
|
|
4662
4674
|
*/
|
|
4663
4675
|
get CompanyIntegrationRunID() {
|
|
4664
4676
|
return this.Get('CompanyIntegrationRunID');
|
|
@@ -4795,7 +4807,7 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
|
|
|
4795
4807
|
* * Field Name: UserID
|
|
4796
4808
|
* * Display Name: User ID
|
|
4797
4809
|
* * SQL Data Type: int
|
|
4798
|
-
* * Related Entity: Users
|
|
4810
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
4799
4811
|
*/
|
|
4800
4812
|
get UserID() {
|
|
4801
4813
|
return this.Get('UserID');
|
|
@@ -4818,7 +4830,7 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
|
|
|
4818
4830
|
* * Field Name: CompanyIntegrationID
|
|
4819
4831
|
* * Display Name: Company Integration ID
|
|
4820
4832
|
* * SQL Data Type: int
|
|
4821
|
-
* * Related Entity: Company Integrations
|
|
4833
|
+
* * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)
|
|
4822
4834
|
*/
|
|
4823
4835
|
get CompanyIntegrationID() {
|
|
4824
4836
|
return this.Get('CompanyIntegrationID');
|
|
@@ -4895,7 +4907,7 @@ let ListDetailEntity = class ListDetailEntity extends core_1.BaseEntity {
|
|
|
4895
4907
|
* * Field Name: ListID
|
|
4896
4908
|
* * Display Name: List ID
|
|
4897
4909
|
* * SQL Data Type: int
|
|
4898
|
-
* * Related Entity: Lists
|
|
4910
|
+
* * Related Entity/Foreign Key: Lists (vwLists.ID)
|
|
4899
4911
|
*/
|
|
4900
4912
|
get ListID() {
|
|
4901
4913
|
return this.Get('ListID');
|
|
@@ -4979,7 +4991,7 @@ let UserViewRunEntity = class UserViewRunEntity extends core_1.BaseEntity {
|
|
|
4979
4991
|
* * Field Name: UserViewID
|
|
4980
4992
|
* * Display Name: User View ID
|
|
4981
4993
|
* * SQL Data Type: int
|
|
4982
|
-
* * Related Entity: User Views
|
|
4994
|
+
* * Related Entity/Foreign Key: User Views (vwUserViews.ID)
|
|
4983
4995
|
*/
|
|
4984
4996
|
get UserViewID() {
|
|
4985
4997
|
return this.Get('UserViewID');
|
|
@@ -5002,7 +5014,7 @@ let UserViewRunEntity = class UserViewRunEntity extends core_1.BaseEntity {
|
|
|
5002
5014
|
* * Field Name: RunByUserID
|
|
5003
5015
|
* * Display Name: Run By User ID
|
|
5004
5016
|
* * SQL Data Type: int
|
|
5005
|
-
* * Related Entity: Users
|
|
5017
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
5006
5018
|
*/
|
|
5007
5019
|
get RunByUserID() {
|
|
5008
5020
|
return this.Get('RunByUserID');
|
|
@@ -5080,7 +5092,7 @@ let UserViewRunDetailEntity = class UserViewRunDetailEntity extends core_1.BaseE
|
|
|
5080
5092
|
* * Field Name: UserViewRunID
|
|
5081
5093
|
* * Display Name: User View Run ID
|
|
5082
5094
|
* * SQL Data Type: int
|
|
5083
|
-
* * Related Entity: User View Runs
|
|
5095
|
+
* * Related Entity/Foreign Key: User View Runs (vwUserViewRuns.ID)
|
|
5084
5096
|
*/
|
|
5085
5097
|
get UserViewRunID() {
|
|
5086
5098
|
return this.Get('UserViewRunID');
|
|
@@ -5169,7 +5181,7 @@ let WorkflowRunEntity = class WorkflowRunEntity extends core_1.BaseEntity {
|
|
|
5169
5181
|
* * Field Name: WorkflowName
|
|
5170
5182
|
* * Display Name: Workflow Name
|
|
5171
5183
|
* * SQL Data Type: nvarchar(100)
|
|
5172
|
-
* * Related Entity: Workflows
|
|
5184
|
+
* * Related Entity/Foreign Key: Workflows (vwWorkflows.Name)
|
|
5173
5185
|
*/
|
|
5174
5186
|
get WorkflowName() {
|
|
5175
5187
|
return this.Get('WorkflowName');
|
|
@@ -5321,7 +5333,7 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
|
5321
5333
|
* * Field Name: WorkflowEngineName
|
|
5322
5334
|
* * Display Name: Workflow Engine Name
|
|
5323
5335
|
* * SQL Data Type: nvarchar(100)
|
|
5324
|
-
* * Related Entity: Workflow Engines
|
|
5336
|
+
* * Related Entity/Foreign Key: Workflow Engines (vwWorkflowEngines.Name)
|
|
5325
5337
|
*/
|
|
5326
5338
|
get WorkflowEngineName() {
|
|
5327
5339
|
return this.Get('WorkflowEngineName');
|
|
@@ -5333,7 +5345,7 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
|
5333
5345
|
* * Field Name: CompanyName
|
|
5334
5346
|
* * Display Name: Company Name
|
|
5335
5347
|
* * SQL Data Type: nvarchar(50)
|
|
5336
|
-
* * Related Entity: Companies
|
|
5348
|
+
* * Related Entity/Foreign Key: Companies (vwCompanies.Name)
|
|
5337
5349
|
*/
|
|
5338
5350
|
get CompanyName() {
|
|
5339
5351
|
return this.Get('CompanyName');
|
|
@@ -5534,7 +5546,7 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
5534
5546
|
* * Field Name: EntityID
|
|
5535
5547
|
* * Display Name: Entity ID
|
|
5536
5548
|
* * SQL Data Type: int
|
|
5537
|
-
* * Related Entity: Entities
|
|
5549
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
5538
5550
|
*/
|
|
5539
5551
|
get EntityID() {
|
|
5540
5552
|
return this.Get('EntityID');
|
|
@@ -5557,7 +5569,7 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
5557
5569
|
* * Field Name: UserID
|
|
5558
5570
|
* * Display Name: User ID
|
|
5559
5571
|
* * SQL Data Type: int
|
|
5560
|
-
* * Related Entity: Users
|
|
5572
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
5561
5573
|
*/
|
|
5562
5574
|
get UserID() {
|
|
5563
5575
|
return this.Get('UserID');
|
|
@@ -5702,7 +5714,7 @@ let UserRoleEntity = class UserRoleEntity extends core_1.BaseEntity {
|
|
|
5702
5714
|
* * Field Name: UserID
|
|
5703
5715
|
* * Display Name: User ID
|
|
5704
5716
|
* * SQL Data Type: int
|
|
5705
|
-
* * Related Entity: Users
|
|
5717
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
5706
5718
|
*/
|
|
5707
5719
|
get UserID() {
|
|
5708
5720
|
return this.Get('UserID');
|
|
@@ -5714,7 +5726,7 @@ let UserRoleEntity = class UserRoleEntity extends core_1.BaseEntity {
|
|
|
5714
5726
|
* * Field Name: RoleName
|
|
5715
5727
|
* * Display Name: Role Name
|
|
5716
5728
|
* * SQL Data Type: nvarchar(50)
|
|
5717
|
-
* * Related Entity: Roles
|
|
5729
|
+
* * Related Entity/Foreign Key: Roles (vwRoles.Name)
|
|
5718
5730
|
*/
|
|
5719
5731
|
get RoleName() {
|
|
5720
5732
|
return this.Get('RoleName');
|
|
@@ -5916,7 +5928,7 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
|
5916
5928
|
* * Field Name: AuditLogTypeName
|
|
5917
5929
|
* * Display Name: Audit Log Type Name
|
|
5918
5930
|
* * SQL Data Type: nvarchar(50)
|
|
5919
|
-
* * Related Entity: Audit Log Types
|
|
5931
|
+
* * Related Entity/Foreign Key: Audit Log Types (vwAuditLogTypes.Name)
|
|
5920
5932
|
*/
|
|
5921
5933
|
get AuditLogTypeName() {
|
|
5922
5934
|
return this.Get('AuditLogTypeName');
|
|
@@ -5928,7 +5940,7 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
|
5928
5940
|
* * Field Name: UserID
|
|
5929
5941
|
* * Display Name: User ID
|
|
5930
5942
|
* * SQL Data Type: int
|
|
5931
|
-
* * Related Entity: Users
|
|
5943
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
5932
5944
|
*/
|
|
5933
5945
|
get UserID() {
|
|
5934
5946
|
return this.Get('UserID');
|
|
@@ -5940,7 +5952,7 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
|
5940
5952
|
* * Field Name: AuthorizationName
|
|
5941
5953
|
* * Display Name: Authorization Name
|
|
5942
5954
|
* * SQL Data Type: nvarchar(100)
|
|
5943
|
-
* * Related Entity: Authorizations
|
|
5955
|
+
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
|
|
5944
5956
|
*/
|
|
5945
5957
|
get AuthorizationName() {
|
|
5946
5958
|
return this.Get('AuthorizationName');
|
|
@@ -6096,7 +6108,7 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
|
|
|
6096
6108
|
* * Field Name: ParentID
|
|
6097
6109
|
* * Display Name: Parent ID
|
|
6098
6110
|
* * SQL Data Type: int
|
|
6099
|
-
* * Related Entity: Authorizations
|
|
6111
|
+
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.ID)
|
|
6100
6112
|
*/
|
|
6101
6113
|
get ParentID() {
|
|
6102
6114
|
return this.Get('ParentID');
|
|
@@ -6234,7 +6246,7 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
|
|
|
6234
6246
|
* * Field Name: AuthorizationName
|
|
6235
6247
|
* * Display Name: Authorization Name
|
|
6236
6248
|
* * SQL Data Type: nvarchar(100)
|
|
6237
|
-
* * Related Entity: Authorizations
|
|
6249
|
+
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
|
|
6238
6250
|
*/
|
|
6239
6251
|
get AuthorizationName() {
|
|
6240
6252
|
return this.Get('AuthorizationName');
|
|
@@ -6246,7 +6258,7 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
|
|
|
6246
6258
|
* * Field Name: RoleName
|
|
6247
6259
|
* * Display Name: Role Name
|
|
6248
6260
|
* * SQL Data Type: nvarchar(50)
|
|
6249
|
-
* * Related Entity: Roles
|
|
6261
|
+
* * Related Entity/Foreign Key: Roles (vwRoles.Name)
|
|
6250
6262
|
*/
|
|
6251
6263
|
get RoleName() {
|
|
6252
6264
|
return this.Get('RoleName');
|
|
@@ -6364,7 +6376,7 @@ let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
|
|
|
6364
6376
|
* * Field Name: ParentID
|
|
6365
6377
|
* * Display Name: Parent ID
|
|
6366
6378
|
* * SQL Data Type: int
|
|
6367
|
-
* * Related Entity: Audit Log Types
|
|
6379
|
+
* * Related Entity/Foreign Key: Audit Log Types (vwAuditLogTypes.ID)
|
|
6368
6380
|
*/
|
|
6369
6381
|
get ParentID() {
|
|
6370
6382
|
return this.Get('ParentID');
|
|
@@ -6398,7 +6410,7 @@ let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
|
|
|
6398
6410
|
* * Field Name: AuthorizationName
|
|
6399
6411
|
* * Display Name: Authorization Name
|
|
6400
6412
|
* * SQL Data Type: nvarchar(100)
|
|
6401
|
-
* * Related Entity: Authorizations
|
|
6413
|
+
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
|
|
6402
6414
|
*/
|
|
6403
6415
|
get AuthorizationName() {
|
|
6404
6416
|
return this.Get('AuthorizationName');
|
|
@@ -6498,7 +6510,7 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
|
|
|
6498
6510
|
* * Field Name: EntityID
|
|
6499
6511
|
* * Display Name: Entity ID
|
|
6500
6512
|
* * SQL Data Type: int
|
|
6501
|
-
* * Related Entity: Entity Fields
|
|
6513
|
+
* * Related Entity/Foreign Key: Entity Fields (vwEntityFields.EntityID)
|
|
6502
6514
|
*/
|
|
6503
6515
|
get EntityID() {
|
|
6504
6516
|
return this.Get('EntityID');
|
|
@@ -6510,7 +6522,7 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
|
|
|
6510
6522
|
* * Field Name: EntityFieldName
|
|
6511
6523
|
* * Display Name: Entity Field Name
|
|
6512
6524
|
* * SQL Data Type: nvarchar(255)
|
|
6513
|
-
* * Related Entity: Entity Fields
|
|
6525
|
+
* * Related Entity/Foreign Key: Entity Fields (vwEntityFields.Name)
|
|
6514
6526
|
*/
|
|
6515
6527
|
get EntityFieldName() {
|
|
6516
6528
|
return this.Get('EntityFieldName');
|
|
@@ -6665,7 +6677,7 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
|
|
|
6665
6677
|
* * Field Name: AIModelTypeID
|
|
6666
6678
|
* * Display Name: AI Model Type ID
|
|
6667
6679
|
* * SQL Data Type: int
|
|
6668
|
-
* * Related Entity: AI Model Types
|
|
6680
|
+
* * Related Entity/Foreign Key: AI Model Types (vwAIModelTypes.ID)
|
|
6669
6681
|
*/
|
|
6670
6682
|
get AIModelTypeID() {
|
|
6671
6683
|
return this.Get('AIModelTypeID');
|
|
@@ -6813,7 +6825,7 @@ let AIActionEntity = class AIActionEntity extends core_1.BaseEntity {
|
|
|
6813
6825
|
* * Field Name: DefaultModelID
|
|
6814
6826
|
* * Display Name: Default Model ID
|
|
6815
6827
|
* * SQL Data Type: int
|
|
6816
|
-
* * Related Entity: AI Models
|
|
6828
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
6817
6829
|
*/
|
|
6818
6830
|
get DefaultModelID() {
|
|
6819
6831
|
return this.Get('DefaultModelID');
|
|
@@ -6925,7 +6937,7 @@ let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
|
|
|
6925
6937
|
* * Field Name: AIModelID
|
|
6926
6938
|
* * Display Name: AI Model ID
|
|
6927
6939
|
* * SQL Data Type: int
|
|
6928
|
-
* * Related Entity: AI Models
|
|
6940
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
6929
6941
|
*/
|
|
6930
6942
|
get AIModelID() {
|
|
6931
6943
|
return this.Get('AIModelID');
|
|
@@ -6937,7 +6949,7 @@ let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
|
|
|
6937
6949
|
* * Field Name: AIActionID
|
|
6938
6950
|
* * Display Name: AI Action ID
|
|
6939
6951
|
* * SQL Data Type: int
|
|
6940
|
-
* * Related Entity: AI Actions
|
|
6952
|
+
* * Related Entity/Foreign Key: AI Actions (vwAIActions.ID)
|
|
6941
6953
|
*/
|
|
6942
6954
|
get AIActionID() {
|
|
6943
6955
|
return this.Get('AIActionID');
|
|
@@ -7046,7 +7058,7 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
|
|
|
7046
7058
|
* * Field Name: EntityID
|
|
7047
7059
|
* * Display Name: Entity ID
|
|
7048
7060
|
* * SQL Data Type: int
|
|
7049
|
-
* * Related Entity: Entities
|
|
7061
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
7050
7062
|
*/
|
|
7051
7063
|
get EntityID() {
|
|
7052
7064
|
return this.Get('EntityID');
|
|
@@ -7058,7 +7070,7 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
|
|
|
7058
7070
|
* * Field Name: AIActionID
|
|
7059
7071
|
* * Display Name: AI Action ID
|
|
7060
7072
|
* * SQL Data Type: int
|
|
7061
|
-
* * Related Entity: AI Actions
|
|
7073
|
+
* * Related Entity/Foreign Key: AI Actions (vwAIActions.ID)
|
|
7062
7074
|
*/
|
|
7063
7075
|
get AIActionID() {
|
|
7064
7076
|
return this.Get('AIActionID');
|
|
@@ -7070,7 +7082,7 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
|
|
|
7070
7082
|
* * Field Name: AIModelID
|
|
7071
7083
|
* * Display Name: AI Model ID
|
|
7072
7084
|
* * SQL Data Type: int
|
|
7073
|
-
* * Related Entity: AI Models
|
|
7085
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
7074
7086
|
*/
|
|
7075
7087
|
get AIModelID() {
|
|
7076
7088
|
return this.Get('AIModelID');
|
|
@@ -7162,7 +7174,7 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
|
|
|
7162
7174
|
* * Field Name: OutputEntityID
|
|
7163
7175
|
* * Display Name: Output Entity ID
|
|
7164
7176
|
* * SQL Data Type: int
|
|
7165
|
-
* * Related Entity: Entities
|
|
7177
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
7166
7178
|
*/
|
|
7167
7179
|
get OutputEntityID() {
|
|
7168
7180
|
return this.Get('OutputEntityID');
|
|
@@ -7481,7 +7493,7 @@ let QueueEntity = class QueueEntity extends core_1.BaseEntity {
|
|
|
7481
7493
|
* * Field Name: QueueTypeID
|
|
7482
7494
|
* * Display Name: Queue Type ID
|
|
7483
7495
|
* * SQL Data Type: int
|
|
7484
|
-
* * Related Entity: Queue Types
|
|
7496
|
+
* * Related Entity/Foreign Key: Queue Types (vwQueueTypes.ID)
|
|
7485
7497
|
*/
|
|
7486
7498
|
get QueueTypeID() {
|
|
7487
7499
|
return this.Get('QueueTypeID');
|
|
@@ -7715,7 +7727,7 @@ let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
|
|
|
7715
7727
|
* * Field Name: QueueID
|
|
7716
7728
|
* * Display Name: Queue ID
|
|
7717
7729
|
* * SQL Data Type: int
|
|
7718
|
-
* * Related Entity: Queues
|
|
7730
|
+
* * Related Entity/Foreign Key: Queues (vwQueues.ID)
|
|
7719
7731
|
*/
|
|
7720
7732
|
get QueueID() {
|
|
7721
7733
|
return this.Get('QueueID');
|
|
@@ -7875,6 +7887,18 @@ let DashboardEntity = class DashboardEntity extends core_1.BaseEntity {
|
|
|
7875
7887
|
this.Set('Description', value);
|
|
7876
7888
|
}
|
|
7877
7889
|
/**
|
|
7890
|
+
* * Field Name: CategoryID
|
|
7891
|
+
* * Display Name: Category ID
|
|
7892
|
+
* * SQL Data Type: int
|
|
7893
|
+
* * Related Entity/Foreign Key: Dashboard Categories (vwDashboardCategories.ID)
|
|
7894
|
+
*/
|
|
7895
|
+
get CategoryID() {
|
|
7896
|
+
return this.Get('CategoryID');
|
|
7897
|
+
}
|
|
7898
|
+
set CategoryID(value) {
|
|
7899
|
+
this.Set('CategoryID', value);
|
|
7900
|
+
}
|
|
7901
|
+
/**
|
|
7878
7902
|
* * Field Name: UIConfigDetails
|
|
7879
7903
|
* * Display Name: UIConfig Details
|
|
7880
7904
|
* * SQL Data Type: nvarchar(MAX)
|
|
@@ -7889,7 +7913,7 @@ let DashboardEntity = class DashboardEntity extends core_1.BaseEntity {
|
|
|
7889
7913
|
* * Field Name: UserID
|
|
7890
7914
|
* * Display Name: User ID
|
|
7891
7915
|
* * SQL Data Type: int
|
|
7892
|
-
* * Related Entity: Users
|
|
7916
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
7893
7917
|
*/
|
|
7894
7918
|
get UserID() {
|
|
7895
7919
|
return this.Get('UserID');
|
|
@@ -7898,6 +7922,15 @@ let DashboardEntity = class DashboardEntity extends core_1.BaseEntity {
|
|
|
7898
7922
|
this.Set('UserID', value);
|
|
7899
7923
|
}
|
|
7900
7924
|
/**
|
|
7925
|
+
* * Field Name: Category
|
|
7926
|
+
* * Display Name: Category
|
|
7927
|
+
* * SQL Data Type: nvarchar(100)
|
|
7928
|
+
* * Default Value: null
|
|
7929
|
+
*/
|
|
7930
|
+
get Category() {
|
|
7931
|
+
return this.Get('Category');
|
|
7932
|
+
}
|
|
7933
|
+
/**
|
|
7901
7934
|
* * Field Name: User
|
|
7902
7935
|
* * Display Name: User
|
|
7903
7936
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -8231,10 +8264,22 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8231
8264
|
this.Set('Description', value);
|
|
8232
8265
|
}
|
|
8233
8266
|
/**
|
|
8267
|
+
* * Field Name: CategoryID
|
|
8268
|
+
* * Display Name: Category ID
|
|
8269
|
+
* * SQL Data Type: int
|
|
8270
|
+
* * Related Entity/Foreign Key: Report Categories (vwReportCategories.ID)
|
|
8271
|
+
*/
|
|
8272
|
+
get CategoryID() {
|
|
8273
|
+
return this.Get('CategoryID');
|
|
8274
|
+
}
|
|
8275
|
+
set CategoryID(value) {
|
|
8276
|
+
this.Set('CategoryID', value);
|
|
8277
|
+
}
|
|
8278
|
+
/**
|
|
8234
8279
|
* * Field Name: UserID
|
|
8235
8280
|
* * Display Name: User ID
|
|
8236
8281
|
* * SQL Data Type: int
|
|
8237
|
-
* * Related Entity: Users
|
|
8282
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
8238
8283
|
*/
|
|
8239
8284
|
get UserID() {
|
|
8240
8285
|
return this.Get('UserID');
|
|
@@ -8258,7 +8303,7 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8258
8303
|
* * Field Name: ConversationID
|
|
8259
8304
|
* * Display Name: Conversation ID
|
|
8260
8305
|
* * SQL Data Type: int
|
|
8261
|
-
* * Related Entity: Conversations
|
|
8306
|
+
* * Related Entity/Foreign Key: Conversations (vwConversations.ID)
|
|
8262
8307
|
*/
|
|
8263
8308
|
get ConversationID() {
|
|
8264
8309
|
return this.Get('ConversationID');
|
|
@@ -8270,7 +8315,7 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8270
8315
|
* * Field Name: ConversationDetailID
|
|
8271
8316
|
* * Display Name: Conversation Detail ID
|
|
8272
8317
|
* * SQL Data Type: int
|
|
8273
|
-
* * Related Entity: Conversation Details
|
|
8318
|
+
* * Related Entity/Foreign Key: Conversation Details (vwConversationDetails.ID)
|
|
8274
8319
|
*/
|
|
8275
8320
|
get ConversationDetailID() {
|
|
8276
8321
|
return this.Get('ConversationDetailID');
|
|
@@ -8279,32 +8324,33 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8279
8324
|
this.Set('ConversationDetailID', value);
|
|
8280
8325
|
}
|
|
8281
8326
|
/**
|
|
8282
|
-
* * Field Name:
|
|
8283
|
-
* * Display Name:
|
|
8284
|
-
* * SQL Data Type:
|
|
8327
|
+
* * Field Name: DataContextID
|
|
8328
|
+
* * Display Name: Data Context ID
|
|
8329
|
+
* * SQL Data Type: int
|
|
8330
|
+
* * Related Entity/Foreign Key: Data Contexts (vwDataContexts.ID)
|
|
8285
8331
|
*/
|
|
8286
|
-
get
|
|
8287
|
-
return this.Get('
|
|
8332
|
+
get DataContextID() {
|
|
8333
|
+
return this.Get('DataContextID');
|
|
8288
8334
|
}
|
|
8289
|
-
set
|
|
8290
|
-
this.Set('
|
|
8335
|
+
set DataContextID(value) {
|
|
8336
|
+
this.Set('DataContextID', value);
|
|
8291
8337
|
}
|
|
8292
8338
|
/**
|
|
8293
|
-
* * Field Name:
|
|
8294
|
-
* * Display Name:
|
|
8339
|
+
* * Field Name: Configuration
|
|
8340
|
+
* * Display Name: Configuration
|
|
8295
8341
|
* * SQL Data Type: nvarchar(MAX)
|
|
8296
8342
|
*/
|
|
8297
|
-
get
|
|
8298
|
-
return this.Get('
|
|
8343
|
+
get Configuration() {
|
|
8344
|
+
return this.Get('Configuration');
|
|
8299
8345
|
}
|
|
8300
|
-
set
|
|
8301
|
-
this.Set('
|
|
8346
|
+
set Configuration(value) {
|
|
8347
|
+
this.Set('Configuration', value);
|
|
8302
8348
|
}
|
|
8303
8349
|
/**
|
|
8304
8350
|
* * Field Name: OutputTriggerTypeID
|
|
8305
8351
|
* * Display Name: Output Trigger Type ID
|
|
8306
8352
|
* * SQL Data Type: int
|
|
8307
|
-
* * Related Entity: Output Trigger Types
|
|
8353
|
+
* * Related Entity/Foreign Key: Output Trigger Types (vwOutputTriggerTypes.ID)
|
|
8308
8354
|
*/
|
|
8309
8355
|
get OutputTriggerTypeID() {
|
|
8310
8356
|
return this.Get('OutputTriggerTypeID');
|
|
@@ -8316,7 +8362,7 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8316
8362
|
* * Field Name: OutputFormatTypeID
|
|
8317
8363
|
* * Display Name: Output Format Type ID
|
|
8318
8364
|
* * SQL Data Type: int
|
|
8319
|
-
* * Related Entity: Output Format Types
|
|
8365
|
+
* * Related Entity/Foreign Key: Output Format Types (vwOutputFormatTypes.ID)
|
|
8320
8366
|
*/
|
|
8321
8367
|
get OutputFormatTypeID() {
|
|
8322
8368
|
return this.Get('OutputFormatTypeID');
|
|
@@ -8328,7 +8374,7 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8328
8374
|
* * Field Name: OutputDeliveryTypeID
|
|
8329
8375
|
* * Display Name: Output Delivery Type ID
|
|
8330
8376
|
* * SQL Data Type: int
|
|
8331
|
-
* * Related Entity: Output Delivery Types
|
|
8377
|
+
* * Related Entity/Foreign Key: Output Delivery Types (vwOutputDeliveryTypes.ID)
|
|
8332
8378
|
*/
|
|
8333
8379
|
get OutputDeliveryTypeID() {
|
|
8334
8380
|
return this.Get('OutputDeliveryTypeID');
|
|
@@ -8340,7 +8386,7 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8340
8386
|
* * Field Name: OutputEventID
|
|
8341
8387
|
* * Display Name: Output Event ID
|
|
8342
8388
|
* * SQL Data Type: int
|
|
8343
|
-
* * Related Entity: Output Delivery Types
|
|
8389
|
+
* * Related Entity/Foreign Key: Output Delivery Types (vwOutputDeliveryTypes.ID)
|
|
8344
8390
|
*/
|
|
8345
8391
|
get OutputEventID() {
|
|
8346
8392
|
return this.Get('OutputEventID');
|
|
@@ -8374,7 +8420,7 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8374
8420
|
* * Field Name: OutputWorkflowID
|
|
8375
8421
|
* * Display Name: Output Workflow ID
|
|
8376
8422
|
* * SQL Data Type: int
|
|
8377
|
-
* * Related Entity: Workflows
|
|
8423
|
+
* * Related Entity/Foreign Key: Workflows (vwWorkflows.ID)
|
|
8378
8424
|
*/
|
|
8379
8425
|
get OutputWorkflowID() {
|
|
8380
8426
|
return this.Get('OutputWorkflowID');
|
|
@@ -8401,6 +8447,15 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8401
8447
|
return this.Get('UpdatedAt');
|
|
8402
8448
|
}
|
|
8403
8449
|
/**
|
|
8450
|
+
* * Field Name: Category
|
|
8451
|
+
* * Display Name: Category
|
|
8452
|
+
* * SQL Data Type: nvarchar(100)
|
|
8453
|
+
* * Default Value: null
|
|
8454
|
+
*/
|
|
8455
|
+
get Category() {
|
|
8456
|
+
return this.Get('Category');
|
|
8457
|
+
}
|
|
8458
|
+
/**
|
|
8404
8459
|
* * Field Name: User
|
|
8405
8460
|
* * Display Name: User
|
|
8406
8461
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -8417,6 +8472,15 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8417
8472
|
return this.Get('Conversation');
|
|
8418
8473
|
}
|
|
8419
8474
|
/**
|
|
8475
|
+
* * Field Name: DataContext
|
|
8476
|
+
* * Display Name: Data Context
|
|
8477
|
+
* * SQL Data Type: nvarchar(255)
|
|
8478
|
+
* * Default Value: null
|
|
8479
|
+
*/
|
|
8480
|
+
get DataContext() {
|
|
8481
|
+
return this.Get('DataContext');
|
|
8482
|
+
}
|
|
8483
|
+
/**
|
|
8420
8484
|
* * Field Name: OutputTriggerType
|
|
8421
8485
|
* * Display Name: Output Trigger Type
|
|
8422
8486
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -8492,7 +8556,7 @@ let ReportSnapshotEntity = class ReportSnapshotEntity extends core_1.BaseEntity
|
|
|
8492
8556
|
* * Field Name: ReportID
|
|
8493
8557
|
* * Display Name: Report ID
|
|
8494
8558
|
* * SQL Data Type: int
|
|
8495
|
-
* * Related Entity: Reports
|
|
8559
|
+
* * Related Entity/Foreign Key: Reports (vwReports.ID)
|
|
8496
8560
|
*/
|
|
8497
8561
|
get ReportID() {
|
|
8498
8562
|
return this.Get('ReportID');
|
|
@@ -8524,7 +8588,7 @@ let ReportSnapshotEntity = class ReportSnapshotEntity extends core_1.BaseEntity
|
|
|
8524
8588
|
* * Field Name: UserID
|
|
8525
8589
|
* * Display Name: User ID
|
|
8526
8590
|
* * SQL Data Type: int
|
|
8527
|
-
* * Related Entity: Users
|
|
8591
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
8528
8592
|
*/
|
|
8529
8593
|
get UserID() {
|
|
8530
8594
|
return this.Get('UserID');
|
|
@@ -8658,7 +8722,7 @@ let ResourceTypeEntity = class ResourceTypeEntity extends core_1.BaseEntity {
|
|
|
8658
8722
|
* * Field Name: EntityID
|
|
8659
8723
|
* * Display Name: Entity ID
|
|
8660
8724
|
* * SQL Data Type: int
|
|
8661
|
-
* * Related Entity: Entities
|
|
8725
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
8662
8726
|
*/
|
|
8663
8727
|
get EntityID() {
|
|
8664
8728
|
return this.Get('EntityID');
|
|
@@ -8791,7 +8855,7 @@ let TagEntity = class TagEntity extends core_1.BaseEntity {
|
|
|
8791
8855
|
* * Field Name: ParentID
|
|
8792
8856
|
* * Display Name: Parent ID
|
|
8793
8857
|
* * SQL Data Type: int
|
|
8794
|
-
* * Related Entity: Tags
|
|
8858
|
+
* * Related Entity/Foreign Key: Tags (vwTags.ID)
|
|
8795
8859
|
*/
|
|
8796
8860
|
get ParentID() {
|
|
8797
8861
|
return this.Get('ParentID');
|
|
@@ -8873,7 +8937,7 @@ let TaggedItemEntity = class TaggedItemEntity extends core_1.BaseEntity {
|
|
|
8873
8937
|
* * Field Name: TagID
|
|
8874
8938
|
* * Display Name: Tag ID
|
|
8875
8939
|
* * SQL Data Type: int
|
|
8876
|
-
* * Related Entity: Tags
|
|
8940
|
+
* * Related Entity/Foreign Key: Tags (vwTags.ID)
|
|
8877
8941
|
*/
|
|
8878
8942
|
get TagID() {
|
|
8879
8943
|
return this.Get('TagID');
|
|
@@ -8977,7 +9041,7 @@ let WorkspaceEntity = class WorkspaceEntity extends core_1.BaseEntity {
|
|
|
8977
9041
|
* * Field Name: UserID
|
|
8978
9042
|
* * Display Name: User ID
|
|
8979
9043
|
* * SQL Data Type: int
|
|
8980
|
-
* * Related Entity: Users
|
|
9044
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
8981
9045
|
*/
|
|
8982
9046
|
get UserID() {
|
|
8983
9047
|
return this.Get('UserID');
|
|
@@ -9059,7 +9123,7 @@ let WorkspaceItemEntity = class WorkspaceItemEntity extends core_1.BaseEntity {
|
|
|
9059
9123
|
* * Field Name: WorkSpaceID
|
|
9060
9124
|
* * Display Name: Work Space ID
|
|
9061
9125
|
* * SQL Data Type: int
|
|
9062
|
-
* * Related Entity: Workspaces
|
|
9126
|
+
* * Related Entity/Foreign Key: Workspaces (vwWorkspaces.ID)
|
|
9063
9127
|
*/
|
|
9064
9128
|
get WorkSpaceID() {
|
|
9065
9129
|
return this.Get('WorkSpaceID');
|
|
@@ -9071,7 +9135,7 @@ let WorkspaceItemEntity = class WorkspaceItemEntity extends core_1.BaseEntity {
|
|
|
9071
9135
|
* * Field Name: ResourceTypeID
|
|
9072
9136
|
* * Display Name: Resource Type ID
|
|
9073
9137
|
* * SQL Data Type: int
|
|
9074
|
-
* * Related Entity: Resource Types
|
|
9138
|
+
* * Related Entity/Foreign Key: Resource Types (vwResourceTypes.ID)
|
|
9075
9139
|
*/
|
|
9076
9140
|
get ResourceTypeID() {
|
|
9077
9141
|
return this.Get('ResourceTypeID');
|
|
@@ -9307,7 +9371,7 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
|
|
|
9307
9371
|
* * Field Name: DatasetName
|
|
9308
9372
|
* * Display Name: Dataset Name
|
|
9309
9373
|
* * SQL Data Type: nvarchar(50)
|
|
9310
|
-
* * Related Entity: Datasets
|
|
9374
|
+
* * Related Entity/Foreign Key: Datasets (vwDatasets.Name)
|
|
9311
9375
|
*/
|
|
9312
9376
|
get DatasetName() {
|
|
9313
9377
|
return this.Get('DatasetName');
|
|
@@ -9331,7 +9395,7 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
|
|
|
9331
9395
|
* * Field Name: EntityID
|
|
9332
9396
|
* * Display Name: Entity ID
|
|
9333
9397
|
* * SQL Data Type: int
|
|
9334
|
-
* * Related Entity: Entities
|
|
9398
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
9335
9399
|
*/
|
|
9336
9400
|
get EntityID() {
|
|
9337
9401
|
return this.Get('EntityID');
|
|
@@ -9442,7 +9506,7 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
|
|
|
9442
9506
|
* * Field Name: ConversationID
|
|
9443
9507
|
* * Display Name: Conversation ID
|
|
9444
9508
|
* * SQL Data Type: int
|
|
9445
|
-
* * Related Entity: Conversations
|
|
9509
|
+
* * Related Entity/Foreign Key: Conversations (vwConversations.ID)
|
|
9446
9510
|
*/
|
|
9447
9511
|
get ConversationID() {
|
|
9448
9512
|
return this.Get('ConversationID');
|
|
@@ -9577,7 +9641,7 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
|
|
|
9577
9641
|
* * Field Name: UserID
|
|
9578
9642
|
* * Display Name: User ID
|
|
9579
9643
|
* * SQL Data Type: int
|
|
9580
|
-
* * Related Entity: Users
|
|
9644
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
9581
9645
|
*/
|
|
9582
9646
|
get UserID() {
|
|
9583
9647
|
return this.Get('UserID');
|
|
@@ -9634,7 +9698,7 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
|
|
|
9634
9698
|
* * Field Name: LinkedEntityID
|
|
9635
9699
|
* * Display Name: Linked Entity ID
|
|
9636
9700
|
* * SQL Data Type: int
|
|
9637
|
-
* * Related Entity: Entities
|
|
9701
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
9638
9702
|
*/
|
|
9639
9703
|
get LinkedEntityID() {
|
|
9640
9704
|
return this.Get('LinkedEntityID');
|
|
@@ -9753,7 +9817,7 @@ let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEnt
|
|
|
9753
9817
|
* * Field Name: UserID
|
|
9754
9818
|
* * Display Name: User ID
|
|
9755
9819
|
* * SQL Data Type: int
|
|
9756
|
-
* * Related Entity: Users
|
|
9820
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
9757
9821
|
*/
|
|
9758
9822
|
get UserID() {
|
|
9759
9823
|
return this.Get('UserID');
|
|
@@ -9870,149 +9934,6 @@ exports.UserNotificationEntity = UserNotificationEntity;
|
|
|
9870
9934
|
exports.UserNotificationEntity = UserNotificationEntity = __decorate([
|
|
9871
9935
|
(0, global_1.RegisterClass)(core_1.BaseEntity, 'User Notifications')
|
|
9872
9936
|
], UserNotificationEntity);
|
|
9873
|
-
/**
|
|
9874
|
-
* Resource Folders - strongly typed entity sub-class
|
|
9875
|
-
* * Schema: admin
|
|
9876
|
-
* * Base Table: ResourceFolder
|
|
9877
|
-
* * Base View: vwResourceFolders
|
|
9878
|
-
* * Primary Key: ID
|
|
9879
|
-
* @extends {BaseEntity}
|
|
9880
|
-
* @class
|
|
9881
|
-
* @public
|
|
9882
|
-
*/
|
|
9883
|
-
let ResourceFolderEntity = class ResourceFolderEntity extends core_1.BaseEntity {
|
|
9884
|
-
/**
|
|
9885
|
-
* Loads the Resource Folders record from the database
|
|
9886
|
-
* @param ID: Number - primary key value to load the Resource Folders record.
|
|
9887
|
-
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
9888
|
-
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
9889
|
-
* @public
|
|
9890
|
-
* @async
|
|
9891
|
-
* @memberof ResourceFolderEntity
|
|
9892
|
-
* @method
|
|
9893
|
-
* @override
|
|
9894
|
-
*/
|
|
9895
|
-
async Load(ID, EntityRelationshipsToLoad = null) {
|
|
9896
|
-
const pkeyValues = [];
|
|
9897
|
-
pkeyValues.push({ FieldName: 'ID', Value: ID });
|
|
9898
|
-
return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
|
|
9899
|
-
}
|
|
9900
|
-
/**
|
|
9901
|
-
* Resource Folders - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
9902
|
-
* @public
|
|
9903
|
-
* @method
|
|
9904
|
-
* @override
|
|
9905
|
-
* @memberof ResourceFolderEntity
|
|
9906
|
-
* @throws {Error} - Delete is not allowed for Resource Folders, to enable it set AllowDeleteAPI to 1 in the database.
|
|
9907
|
-
*/
|
|
9908
|
-
async Delete() {
|
|
9909
|
-
throw new Error('Delete is not allowed for Resource Folders, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
9910
|
-
}
|
|
9911
|
-
/**
|
|
9912
|
-
* * Field Name: ID
|
|
9913
|
-
* * Display Name: ID
|
|
9914
|
-
* * SQL Data Type: int
|
|
9915
|
-
*/
|
|
9916
|
-
get ID() {
|
|
9917
|
-
return this.Get('ID');
|
|
9918
|
-
}
|
|
9919
|
-
/**
|
|
9920
|
-
* * Field Name: ParentID
|
|
9921
|
-
* * Display Name: Parent ID
|
|
9922
|
-
* * SQL Data Type: int
|
|
9923
|
-
* * Related Entity: Resource Folders
|
|
9924
|
-
*/
|
|
9925
|
-
get ParentID() {
|
|
9926
|
-
return this.Get('ParentID');
|
|
9927
|
-
}
|
|
9928
|
-
set ParentID(value) {
|
|
9929
|
-
this.Set('ParentID', value);
|
|
9930
|
-
}
|
|
9931
|
-
/**
|
|
9932
|
-
* * Field Name: Name
|
|
9933
|
-
* * Display Name: Name
|
|
9934
|
-
* * SQL Data Type: nvarchar(50)
|
|
9935
|
-
*/
|
|
9936
|
-
get Name() {
|
|
9937
|
-
return this.Get('Name');
|
|
9938
|
-
}
|
|
9939
|
-
set Name(value) {
|
|
9940
|
-
this.Set('Name', value);
|
|
9941
|
-
}
|
|
9942
|
-
/**
|
|
9943
|
-
* * Field Name: ResourceTypeName
|
|
9944
|
-
* * Display Name: Resource Type Name
|
|
9945
|
-
* * SQL Data Type: nvarchar(255)
|
|
9946
|
-
* * Related Entity: Resource Types
|
|
9947
|
-
*/
|
|
9948
|
-
get ResourceTypeName() {
|
|
9949
|
-
return this.Get('ResourceTypeName');
|
|
9950
|
-
}
|
|
9951
|
-
set ResourceTypeName(value) {
|
|
9952
|
-
this.Set('ResourceTypeName', value);
|
|
9953
|
-
}
|
|
9954
|
-
/**
|
|
9955
|
-
* * Field Name: Description
|
|
9956
|
-
* * Display Name: Description
|
|
9957
|
-
* * SQL Data Type: nvarchar(MAX)
|
|
9958
|
-
*/
|
|
9959
|
-
get Description() {
|
|
9960
|
-
return this.Get('Description');
|
|
9961
|
-
}
|
|
9962
|
-
set Description(value) {
|
|
9963
|
-
this.Set('Description', value);
|
|
9964
|
-
}
|
|
9965
|
-
/**
|
|
9966
|
-
* * Field Name: UserID
|
|
9967
|
-
* * Display Name: User ID
|
|
9968
|
-
* * SQL Data Type: int
|
|
9969
|
-
* * Related Entity: Users
|
|
9970
|
-
*/
|
|
9971
|
-
get UserID() {
|
|
9972
|
-
return this.Get('UserID');
|
|
9973
|
-
}
|
|
9974
|
-
set UserID(value) {
|
|
9975
|
-
this.Set('UserID', value);
|
|
9976
|
-
}
|
|
9977
|
-
/**
|
|
9978
|
-
* * Field Name: CreatedAt
|
|
9979
|
-
* * Display Name: Created At
|
|
9980
|
-
* * SQL Data Type: datetime
|
|
9981
|
-
* * Default Value: getdate()
|
|
9982
|
-
*/
|
|
9983
|
-
get CreatedAt() {
|
|
9984
|
-
return this.Get('CreatedAt');
|
|
9985
|
-
}
|
|
9986
|
-
/**
|
|
9987
|
-
* * Field Name: UpdatedAt
|
|
9988
|
-
* * Display Name: Updated At
|
|
9989
|
-
* * SQL Data Type: datetime
|
|
9990
|
-
* * Default Value: getdate()
|
|
9991
|
-
*/
|
|
9992
|
-
get UpdatedAt() {
|
|
9993
|
-
return this.Get('UpdatedAt');
|
|
9994
|
-
}
|
|
9995
|
-
/**
|
|
9996
|
-
* * Field Name: Parent
|
|
9997
|
-
* * Display Name: Parent
|
|
9998
|
-
* * SQL Data Type: nvarchar(50)
|
|
9999
|
-
*/
|
|
10000
|
-
get Parent() {
|
|
10001
|
-
return this.Get('Parent');
|
|
10002
|
-
}
|
|
10003
|
-
/**
|
|
10004
|
-
* * Field Name: User
|
|
10005
|
-
* * Display Name: User
|
|
10006
|
-
* * SQL Data Type: nvarchar(100)
|
|
10007
|
-
*/
|
|
10008
|
-
get User() {
|
|
10009
|
-
return this.Get('User');
|
|
10010
|
-
}
|
|
10011
|
-
};
|
|
10012
|
-
exports.ResourceFolderEntity = ResourceFolderEntity;
|
|
10013
|
-
exports.ResourceFolderEntity = ResourceFolderEntity = __decorate([
|
|
10014
|
-
(0, global_1.RegisterClass)(core_1.BaseEntity, 'Resource Folders')
|
|
10015
|
-
], ResourceFolderEntity);
|
|
10016
9937
|
/**
|
|
10017
9938
|
* Schema Info - strongly typed entity sub-class
|
|
10018
9939
|
* * Schema: admin
|
|
@@ -10176,7 +10097,7 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
|
|
|
10176
10097
|
* * Field Name: CompanyIntegrationID
|
|
10177
10098
|
* * Display Name: Company Integration ID
|
|
10178
10099
|
* * SQL Data Type: int
|
|
10179
|
-
* * Related Entity: Company Integrations
|
|
10100
|
+
* * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)
|
|
10180
10101
|
*/
|
|
10181
10102
|
get CompanyIntegrationID() {
|
|
10182
10103
|
return this.Get('CompanyIntegrationID');
|
|
@@ -10290,7 +10211,7 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
10290
10211
|
* * Field Name: EntityID
|
|
10291
10212
|
* * Display Name: Entity ID
|
|
10292
10213
|
* * SQL Data Type: int
|
|
10293
|
-
* * Related Entity: Entities
|
|
10214
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
10294
10215
|
*/
|
|
10295
10216
|
get EntityID() {
|
|
10296
10217
|
return this.Get('EntityID');
|
|
@@ -10313,7 +10234,7 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
10313
10234
|
* * Field Name: InitiatedByUserID
|
|
10314
10235
|
* * Display Name: Initiated By User ID
|
|
10315
10236
|
* * SQL Data Type: int
|
|
10316
|
-
* * Related Entity: Users
|
|
10237
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
10317
10238
|
*/
|
|
10318
10239
|
get InitiatedByUserID() {
|
|
10319
10240
|
return this.Get('InitiatedByUserID');
|
|
@@ -10490,7 +10411,7 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
|
|
|
10490
10411
|
* * Field Name: RecordMergeLogID
|
|
10491
10412
|
* * Display Name: Record Merge Log ID
|
|
10492
10413
|
* * SQL Data Type: int
|
|
10493
|
-
* * Related Entity: Record Merge Logs
|
|
10414
|
+
* * Related Entity/Foreign Key: Record Merge Logs (vwRecordMergeLogs.ID)
|
|
10494
10415
|
*/
|
|
10495
10416
|
get RecordMergeLogID() {
|
|
10496
10417
|
return this.Get('RecordMergeLogID');
|
|
@@ -10605,7 +10526,7 @@ let QueryFieldEntity = class QueryFieldEntity extends core_1.BaseEntity {
|
|
|
10605
10526
|
* * Field Name: QueryID
|
|
10606
10527
|
* * Display Name: Query ID
|
|
10607
10528
|
* * SQL Data Type: int
|
|
10608
|
-
* * Related Entity: Queries
|
|
10529
|
+
* * Related Entity/Foreign Key: Queries (vwQueries.ID)
|
|
10609
10530
|
*/
|
|
10610
10531
|
get QueryID() {
|
|
10611
10532
|
return this.Get('QueryID');
|
|
@@ -10830,7 +10751,7 @@ let QueryCategoryEntity = class QueryCategoryEntity extends core_1.BaseEntity {
|
|
|
10830
10751
|
* * Field Name: ParentID
|
|
10831
10752
|
* * Display Name: Parent ID
|
|
10832
10753
|
* * SQL Data Type: int
|
|
10833
|
-
* * Related Entity: Query Categories
|
|
10754
|
+
* * Related Entity/Foreign Key: Query Categories (vwQueryCategories.ID)
|
|
10834
10755
|
*/
|
|
10835
10756
|
get ParentID() {
|
|
10836
10757
|
return this.Get('ParentID');
|
|
@@ -10952,7 +10873,7 @@ let QueryEntity = class QueryEntity extends core_1.BaseEntity {
|
|
|
10952
10873
|
* * Field Name: CategoryID
|
|
10953
10874
|
* * Display Name: Category ID
|
|
10954
10875
|
* * SQL Data Type: int
|
|
10955
|
-
* * Related Entity: Query Categories
|
|
10876
|
+
* * Related Entity/Foreign Key: Query Categories (vwQueryCategories.ID)
|
|
10956
10877
|
*/
|
|
10957
10878
|
get CategoryID() {
|
|
10958
10879
|
return this.Get('CategoryID');
|
|
@@ -11098,7 +11019,7 @@ let QueryPermissionEntity = class QueryPermissionEntity extends core_1.BaseEntit
|
|
|
11098
11019
|
* * Field Name: QueryID
|
|
11099
11020
|
* * Display Name: Query ID
|
|
11100
11021
|
* * SQL Data Type: int
|
|
11101
|
-
* * Related Entity: Queries
|
|
11022
|
+
* * Related Entity/Foreign Key: Queries (vwQueries.ID)
|
|
11102
11023
|
*/
|
|
11103
11024
|
get QueryID() {
|
|
11104
11025
|
return this.Get('QueryID');
|
|
@@ -11110,7 +11031,7 @@ let QueryPermissionEntity = class QueryPermissionEntity extends core_1.BaseEntit
|
|
|
11110
11031
|
* * Field Name: RoleName
|
|
11111
11032
|
* * Display Name: Role Name
|
|
11112
11033
|
* * SQL Data Type: nvarchar(50)
|
|
11113
|
-
* * Related Entity: Roles
|
|
11034
|
+
* * Related Entity/Foreign Key: Roles (vwRoles.Name)
|
|
11114
11035
|
*/
|
|
11115
11036
|
get RoleName() {
|
|
11116
11037
|
return this.Get('RoleName');
|
|
@@ -11213,7 +11134,7 @@ let VectorIndexEntity = class VectorIndexEntity extends core_1.BaseEntity {
|
|
|
11213
11134
|
* * Field Name: VectorDatabaseID
|
|
11214
11135
|
* * Display Name: Vector Database ID
|
|
11215
11136
|
* * SQL Data Type: int
|
|
11216
|
-
* * Related Entity: Vector Databases
|
|
11137
|
+
* * Related Entity/Foreign Key: Vector Databases (vwVectorDatabases.ID)
|
|
11217
11138
|
*/
|
|
11218
11139
|
get VectorDatabaseID() {
|
|
11219
11140
|
return this.Get('VectorDatabaseID');
|
|
@@ -11225,7 +11146,7 @@ let VectorIndexEntity = class VectorIndexEntity extends core_1.BaseEntity {
|
|
|
11225
11146
|
* * Field Name: EmbeddingModelID
|
|
11226
11147
|
* * Display Name: Embedding Model ID
|
|
11227
11148
|
* * SQL Data Type: int
|
|
11228
|
-
* * Related Entity: AI Models
|
|
11149
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
11229
11150
|
*/
|
|
11230
11151
|
get EmbeddingModelID() {
|
|
11231
11152
|
return this.Get('EmbeddingModelID');
|
|
@@ -11413,7 +11334,7 @@ let EntityDocumentRunEntity = class EntityDocumentRunEntity extends core_1.BaseE
|
|
|
11413
11334
|
* * Field Name: EntityDocumentID
|
|
11414
11335
|
* * Display Name: Entity Document ID
|
|
11415
11336
|
* * SQL Data Type: int
|
|
11416
|
-
* * Related Entity: Entity Documents
|
|
11337
|
+
* * Related Entity/Foreign Key: Entity Documents (vwEntityDocuments.ID)
|
|
11417
11338
|
*/
|
|
11418
11339
|
get EntityDocumentID() {
|
|
11419
11340
|
return this.Get('EntityDocumentID');
|
|
@@ -11818,7 +11739,7 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
|
|
|
11818
11739
|
* * Field Name: TypeID
|
|
11819
11740
|
* * Display Name: Type ID
|
|
11820
11741
|
* * SQL Data Type: int
|
|
11821
|
-
* * Related Entity: Entity Document Types
|
|
11742
|
+
* * Related Entity/Foreign Key: Entity Document Types (vwEntityDocumentTypes.ID)
|
|
11822
11743
|
*/
|
|
11823
11744
|
get TypeID() {
|
|
11824
11745
|
return this.Get('TypeID');
|
|
@@ -11931,7 +11852,7 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
|
|
|
11931
11852
|
* * Field Name: DataContextID
|
|
11932
11853
|
* * Display Name: Data Context ID
|
|
11933
11854
|
* * SQL Data Type: int
|
|
11934
|
-
* * Related Entity: Data Contexts
|
|
11855
|
+
* * Related Entity/Foreign Key: Data Contexts (vwDataContexts.ID)
|
|
11935
11856
|
* * Description: Foreign key to the DataContext table
|
|
11936
11857
|
*/
|
|
11937
11858
|
get DataContextID() {
|
|
@@ -11956,7 +11877,7 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
|
|
|
11956
11877
|
* * Field Name: ViewID
|
|
11957
11878
|
* * Display Name: View ID
|
|
11958
11879
|
* * SQL Data Type: int
|
|
11959
|
-
* * Related Entity: User Views
|
|
11880
|
+
* * Related Entity/Foreign Key: User Views (vwUserViews.ID)
|
|
11960
11881
|
* * Description: Only used if Type='view'
|
|
11961
11882
|
*/
|
|
11962
11883
|
get ViewID() {
|
|
@@ -11969,7 +11890,7 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
|
|
|
11969
11890
|
* * Field Name: QueryID
|
|
11970
11891
|
* * Display Name: Query ID
|
|
11971
11892
|
* * SQL Data Type: int
|
|
11972
|
-
* * Related Entity: Queries
|
|
11893
|
+
* * Related Entity/Foreign Key: Queries (vwQueries.ID)
|
|
11973
11894
|
* * Description: Only used if Type='query'
|
|
11974
11895
|
*/
|
|
11975
11896
|
get QueryID() {
|
|
@@ -12147,7 +12068,7 @@ let DataContextEntity = class DataContextEntity extends core_1.BaseEntity {
|
|
|
12147
12068
|
* * Field Name: UserID
|
|
12148
12069
|
* * Display Name: User ID
|
|
12149
12070
|
* * SQL Data Type: int
|
|
12150
|
-
* * Related Entity: Users
|
|
12071
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
12151
12072
|
*/
|
|
12152
12073
|
get UserID() {
|
|
12153
12074
|
return this.Get('UserID');
|
|
@@ -12208,4 +12129,340 @@ exports.DataContextEntity = DataContextEntity;
|
|
|
12208
12129
|
exports.DataContextEntity = DataContextEntity = __decorate([
|
|
12209
12130
|
(0, global_1.RegisterClass)(core_1.BaseEntity, 'Data Contexts')
|
|
12210
12131
|
], DataContextEntity);
|
|
12132
|
+
/**
|
|
12133
|
+
* User View Categories - strongly typed entity sub-class
|
|
12134
|
+
* * Schema: admin
|
|
12135
|
+
* * Base Table: UserViewCategory
|
|
12136
|
+
* * Base View: vwUserViewCategories
|
|
12137
|
+
* * Primary Key: ID
|
|
12138
|
+
* @extends {BaseEntity}
|
|
12139
|
+
* @class
|
|
12140
|
+
* @public
|
|
12141
|
+
*/
|
|
12142
|
+
let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEntity {
|
|
12143
|
+
/**
|
|
12144
|
+
* Loads the User View Categories record from the database
|
|
12145
|
+
* @param ID: Number - primary key value to load the User View Categories record.
|
|
12146
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12147
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12148
|
+
* @public
|
|
12149
|
+
* @async
|
|
12150
|
+
* @memberof UserViewCategoryEntity
|
|
12151
|
+
* @method
|
|
12152
|
+
* @override
|
|
12153
|
+
*/
|
|
12154
|
+
async Load(ID, EntityRelationshipsToLoad = null) {
|
|
12155
|
+
const pkeyValues = [];
|
|
12156
|
+
pkeyValues.push({ FieldName: 'ID', Value: ID });
|
|
12157
|
+
return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
|
|
12158
|
+
}
|
|
12159
|
+
/**
|
|
12160
|
+
* User View Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
12161
|
+
* @public
|
|
12162
|
+
* @method
|
|
12163
|
+
* @override
|
|
12164
|
+
* @memberof UserViewCategoryEntity
|
|
12165
|
+
* @throws {Error} - Delete is not allowed for User View Categories, to enable it set AllowDeleteAPI to 1 in the database.
|
|
12166
|
+
*/
|
|
12167
|
+
async Delete() {
|
|
12168
|
+
throw new Error('Delete is not allowed for User View Categories, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
12169
|
+
}
|
|
12170
|
+
/**
|
|
12171
|
+
* * Field Name: ID
|
|
12172
|
+
* * Display Name: ID
|
|
12173
|
+
* * SQL Data Type: int
|
|
12174
|
+
*/
|
|
12175
|
+
get ID() {
|
|
12176
|
+
return this.Get('ID');
|
|
12177
|
+
}
|
|
12178
|
+
/**
|
|
12179
|
+
* * Field Name: Name
|
|
12180
|
+
* * Display Name: Name
|
|
12181
|
+
* * SQL Data Type: nvarchar(100)
|
|
12182
|
+
*/
|
|
12183
|
+
get Name() {
|
|
12184
|
+
return this.Get('Name');
|
|
12185
|
+
}
|
|
12186
|
+
set Name(value) {
|
|
12187
|
+
this.Set('Name', value);
|
|
12188
|
+
}
|
|
12189
|
+
/**
|
|
12190
|
+
* * Field Name: Description
|
|
12191
|
+
* * Display Name: Description
|
|
12192
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12193
|
+
*/
|
|
12194
|
+
get Description() {
|
|
12195
|
+
return this.Get('Description');
|
|
12196
|
+
}
|
|
12197
|
+
set Description(value) {
|
|
12198
|
+
this.Set('Description', value);
|
|
12199
|
+
}
|
|
12200
|
+
/**
|
|
12201
|
+
* * Field Name: ParentID
|
|
12202
|
+
* * Display Name: Parent ID
|
|
12203
|
+
* * SQL Data Type: int
|
|
12204
|
+
* * Related Entity/Foreign Key: User View Categories (vwUserViewCategories.ID)
|
|
12205
|
+
*/
|
|
12206
|
+
get ParentID() {
|
|
12207
|
+
return this.Get('ParentID');
|
|
12208
|
+
}
|
|
12209
|
+
set ParentID(value) {
|
|
12210
|
+
this.Set('ParentID', value);
|
|
12211
|
+
}
|
|
12212
|
+
/**
|
|
12213
|
+
* * Field Name: CreatedAt
|
|
12214
|
+
* * Display Name: Created At
|
|
12215
|
+
* * SQL Data Type: datetime
|
|
12216
|
+
* * Default Value: getdate()
|
|
12217
|
+
*/
|
|
12218
|
+
get CreatedAt() {
|
|
12219
|
+
return this.Get('CreatedAt');
|
|
12220
|
+
}
|
|
12221
|
+
/**
|
|
12222
|
+
* * Field Name: UpdatedAt
|
|
12223
|
+
* * Display Name: Updated At
|
|
12224
|
+
* * SQL Data Type: datetime
|
|
12225
|
+
* * Default Value: getdate()
|
|
12226
|
+
*/
|
|
12227
|
+
get UpdatedAt() {
|
|
12228
|
+
return this.Get('UpdatedAt');
|
|
12229
|
+
}
|
|
12230
|
+
/**
|
|
12231
|
+
* * Field Name: Parent
|
|
12232
|
+
* * Display Name: Parent
|
|
12233
|
+
* * SQL Data Type: nvarchar(100)
|
|
12234
|
+
* * Default Value: null
|
|
12235
|
+
*/
|
|
12236
|
+
get Parent() {
|
|
12237
|
+
return this.Get('Parent');
|
|
12238
|
+
}
|
|
12239
|
+
};
|
|
12240
|
+
exports.UserViewCategoryEntity = UserViewCategoryEntity;
|
|
12241
|
+
exports.UserViewCategoryEntity = UserViewCategoryEntity = __decorate([
|
|
12242
|
+
(0, global_1.RegisterClass)(core_1.BaseEntity, 'User View Categories')
|
|
12243
|
+
], UserViewCategoryEntity);
|
|
12244
|
+
/**
|
|
12245
|
+
* Dashboard Categories - strongly typed entity sub-class
|
|
12246
|
+
* * Schema: admin
|
|
12247
|
+
* * Base Table: DashboardCategory
|
|
12248
|
+
* * Base View: vwDashboardCategories
|
|
12249
|
+
* * Primary Key: ID
|
|
12250
|
+
* @extends {BaseEntity}
|
|
12251
|
+
* @class
|
|
12252
|
+
* @public
|
|
12253
|
+
*/
|
|
12254
|
+
let DashboardCategoryEntity = class DashboardCategoryEntity extends core_1.BaseEntity {
|
|
12255
|
+
/**
|
|
12256
|
+
* Loads the Dashboard Categories record from the database
|
|
12257
|
+
* @param ID: Number - primary key value to load the Dashboard Categories record.
|
|
12258
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12259
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12260
|
+
* @public
|
|
12261
|
+
* @async
|
|
12262
|
+
* @memberof DashboardCategoryEntity
|
|
12263
|
+
* @method
|
|
12264
|
+
* @override
|
|
12265
|
+
*/
|
|
12266
|
+
async Load(ID, EntityRelationshipsToLoad = null) {
|
|
12267
|
+
const pkeyValues = [];
|
|
12268
|
+
pkeyValues.push({ FieldName: 'ID', Value: ID });
|
|
12269
|
+
return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
|
|
12270
|
+
}
|
|
12271
|
+
/**
|
|
12272
|
+
* Dashboard Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
12273
|
+
* @public
|
|
12274
|
+
* @method
|
|
12275
|
+
* @override
|
|
12276
|
+
* @memberof DashboardCategoryEntity
|
|
12277
|
+
* @throws {Error} - Delete is not allowed for Dashboard Categories, to enable it set AllowDeleteAPI to 1 in the database.
|
|
12278
|
+
*/
|
|
12279
|
+
async Delete() {
|
|
12280
|
+
throw new Error('Delete is not allowed for Dashboard Categories, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
12281
|
+
}
|
|
12282
|
+
/**
|
|
12283
|
+
* * Field Name: ID
|
|
12284
|
+
* * Display Name: ID
|
|
12285
|
+
* * SQL Data Type: int
|
|
12286
|
+
*/
|
|
12287
|
+
get ID() {
|
|
12288
|
+
return this.Get('ID');
|
|
12289
|
+
}
|
|
12290
|
+
/**
|
|
12291
|
+
* * Field Name: Name
|
|
12292
|
+
* * Display Name: Name
|
|
12293
|
+
* * SQL Data Type: nvarchar(100)
|
|
12294
|
+
*/
|
|
12295
|
+
get Name() {
|
|
12296
|
+
return this.Get('Name');
|
|
12297
|
+
}
|
|
12298
|
+
set Name(value) {
|
|
12299
|
+
this.Set('Name', value);
|
|
12300
|
+
}
|
|
12301
|
+
/**
|
|
12302
|
+
* * Field Name: Description
|
|
12303
|
+
* * Display Name: Description
|
|
12304
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12305
|
+
*/
|
|
12306
|
+
get Description() {
|
|
12307
|
+
return this.Get('Description');
|
|
12308
|
+
}
|
|
12309
|
+
set Description(value) {
|
|
12310
|
+
this.Set('Description', value);
|
|
12311
|
+
}
|
|
12312
|
+
/**
|
|
12313
|
+
* * Field Name: ParentID
|
|
12314
|
+
* * Display Name: Parent ID
|
|
12315
|
+
* * SQL Data Type: int
|
|
12316
|
+
* * Related Entity/Foreign Key: Dashboard Categories (vwDashboardCategories.ID)
|
|
12317
|
+
*/
|
|
12318
|
+
get ParentID() {
|
|
12319
|
+
return this.Get('ParentID');
|
|
12320
|
+
}
|
|
12321
|
+
set ParentID(value) {
|
|
12322
|
+
this.Set('ParentID', value);
|
|
12323
|
+
}
|
|
12324
|
+
/**
|
|
12325
|
+
* * Field Name: CreatedAt
|
|
12326
|
+
* * Display Name: Created At
|
|
12327
|
+
* * SQL Data Type: datetime
|
|
12328
|
+
* * Default Value: getdate()
|
|
12329
|
+
*/
|
|
12330
|
+
get CreatedAt() {
|
|
12331
|
+
return this.Get('CreatedAt');
|
|
12332
|
+
}
|
|
12333
|
+
/**
|
|
12334
|
+
* * Field Name: UpdatedAt
|
|
12335
|
+
* * Display Name: Updated At
|
|
12336
|
+
* * SQL Data Type: datetime
|
|
12337
|
+
* * Default Value: getdate()
|
|
12338
|
+
*/
|
|
12339
|
+
get UpdatedAt() {
|
|
12340
|
+
return this.Get('UpdatedAt');
|
|
12341
|
+
}
|
|
12342
|
+
/**
|
|
12343
|
+
* * Field Name: Parent
|
|
12344
|
+
* * Display Name: Parent
|
|
12345
|
+
* * SQL Data Type: nvarchar(100)
|
|
12346
|
+
* * Default Value: null
|
|
12347
|
+
*/
|
|
12348
|
+
get Parent() {
|
|
12349
|
+
return this.Get('Parent');
|
|
12350
|
+
}
|
|
12351
|
+
};
|
|
12352
|
+
exports.DashboardCategoryEntity = DashboardCategoryEntity;
|
|
12353
|
+
exports.DashboardCategoryEntity = DashboardCategoryEntity = __decorate([
|
|
12354
|
+
(0, global_1.RegisterClass)(core_1.BaseEntity, 'Dashboard Categories')
|
|
12355
|
+
], DashboardCategoryEntity);
|
|
12356
|
+
/**
|
|
12357
|
+
* Report Categories - strongly typed entity sub-class
|
|
12358
|
+
* * Schema: admin
|
|
12359
|
+
* * Base Table: ReportCategory
|
|
12360
|
+
* * Base View: vwReportCategories
|
|
12361
|
+
* * Primary Key: ID
|
|
12362
|
+
* @extends {BaseEntity}
|
|
12363
|
+
* @class
|
|
12364
|
+
* @public
|
|
12365
|
+
*/
|
|
12366
|
+
let ReportCategoryEntity = class ReportCategoryEntity extends core_1.BaseEntity {
|
|
12367
|
+
/**
|
|
12368
|
+
* Loads the Report Categories record from the database
|
|
12369
|
+
* @param ID: Number - primary key value to load the Report Categories record.
|
|
12370
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12371
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12372
|
+
* @public
|
|
12373
|
+
* @async
|
|
12374
|
+
* @memberof ReportCategoryEntity
|
|
12375
|
+
* @method
|
|
12376
|
+
* @override
|
|
12377
|
+
*/
|
|
12378
|
+
async Load(ID, EntityRelationshipsToLoad = null) {
|
|
12379
|
+
const pkeyValues = [];
|
|
12380
|
+
pkeyValues.push({ FieldName: 'ID', Value: ID });
|
|
12381
|
+
return await super.InnerLoad(pkeyValues, EntityRelationshipsToLoad);
|
|
12382
|
+
}
|
|
12383
|
+
/**
|
|
12384
|
+
* Report Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
12385
|
+
* @public
|
|
12386
|
+
* @method
|
|
12387
|
+
* @override
|
|
12388
|
+
* @memberof ReportCategoryEntity
|
|
12389
|
+
* @throws {Error} - Delete is not allowed for Report Categories, to enable it set AllowDeleteAPI to 1 in the database.
|
|
12390
|
+
*/
|
|
12391
|
+
async Delete() {
|
|
12392
|
+
throw new Error('Delete is not allowed for Report Categories, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
12393
|
+
}
|
|
12394
|
+
/**
|
|
12395
|
+
* * Field Name: ID
|
|
12396
|
+
* * Display Name: ID
|
|
12397
|
+
* * SQL Data Type: int
|
|
12398
|
+
*/
|
|
12399
|
+
get ID() {
|
|
12400
|
+
return this.Get('ID');
|
|
12401
|
+
}
|
|
12402
|
+
/**
|
|
12403
|
+
* * Field Name: Name
|
|
12404
|
+
* * Display Name: Name
|
|
12405
|
+
* * SQL Data Type: nvarchar(100)
|
|
12406
|
+
*/
|
|
12407
|
+
get Name() {
|
|
12408
|
+
return this.Get('Name');
|
|
12409
|
+
}
|
|
12410
|
+
set Name(value) {
|
|
12411
|
+
this.Set('Name', value);
|
|
12412
|
+
}
|
|
12413
|
+
/**
|
|
12414
|
+
* * Field Name: Description
|
|
12415
|
+
* * Display Name: Description
|
|
12416
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12417
|
+
*/
|
|
12418
|
+
get Description() {
|
|
12419
|
+
return this.Get('Description');
|
|
12420
|
+
}
|
|
12421
|
+
set Description(value) {
|
|
12422
|
+
this.Set('Description', value);
|
|
12423
|
+
}
|
|
12424
|
+
/**
|
|
12425
|
+
* * Field Name: ParentID
|
|
12426
|
+
* * Display Name: Parent ID
|
|
12427
|
+
* * SQL Data Type: int
|
|
12428
|
+
* * Related Entity/Foreign Key: Report Categories (vwReportCategories.ID)
|
|
12429
|
+
*/
|
|
12430
|
+
get ParentID() {
|
|
12431
|
+
return this.Get('ParentID');
|
|
12432
|
+
}
|
|
12433
|
+
set ParentID(value) {
|
|
12434
|
+
this.Set('ParentID', value);
|
|
12435
|
+
}
|
|
12436
|
+
/**
|
|
12437
|
+
* * Field Name: CreatedAt
|
|
12438
|
+
* * Display Name: Created At
|
|
12439
|
+
* * SQL Data Type: datetime
|
|
12440
|
+
* * Default Value: getdate()
|
|
12441
|
+
*/
|
|
12442
|
+
get CreatedAt() {
|
|
12443
|
+
return this.Get('CreatedAt');
|
|
12444
|
+
}
|
|
12445
|
+
/**
|
|
12446
|
+
* * Field Name: UpdatedAt
|
|
12447
|
+
* * Display Name: Updated At
|
|
12448
|
+
* * SQL Data Type: datetime
|
|
12449
|
+
* * Default Value: getdate()
|
|
12450
|
+
*/
|
|
12451
|
+
get UpdatedAt() {
|
|
12452
|
+
return this.Get('UpdatedAt');
|
|
12453
|
+
}
|
|
12454
|
+
/**
|
|
12455
|
+
* * Field Name: Parent
|
|
12456
|
+
* * Display Name: Parent
|
|
12457
|
+
* * SQL Data Type: nvarchar(100)
|
|
12458
|
+
* * Default Value: null
|
|
12459
|
+
*/
|
|
12460
|
+
get Parent() {
|
|
12461
|
+
return this.Get('Parent');
|
|
12462
|
+
}
|
|
12463
|
+
};
|
|
12464
|
+
exports.ReportCategoryEntity = ReportCategoryEntity;
|
|
12465
|
+
exports.ReportCategoryEntity = ReportCategoryEntity = __decorate([
|
|
12466
|
+
(0, global_1.RegisterClass)(core_1.BaseEntity, 'Report Categories')
|
|
12467
|
+
], ReportCategoryEntity);
|
|
12211
12468
|
//# sourceMappingURL=entity_subclasses.js.map
|