@memberjunction/core-entities 0.9.150 → 0.9.151
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.
|
@@ -23,7 +23,7 @@ const global_1 = require("@memberjunction/global");
|
|
|
23
23
|
let CompanyEntity = class CompanyEntity extends core_1.BaseEntity {
|
|
24
24
|
/**
|
|
25
25
|
* Loads the Companies record from the database
|
|
26
|
-
* @param ID:
|
|
26
|
+
* @param ID: number - primary key value to load the Companies record.
|
|
27
27
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
28
28
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
29
29
|
* @public
|
|
@@ -132,7 +132,7 @@ exports.CompanyEntity = CompanyEntity = __decorate([
|
|
|
132
132
|
let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
|
|
133
133
|
/**
|
|
134
134
|
* Loads the Employees record from the database
|
|
135
|
-
* @param ID:
|
|
135
|
+
* @param ID: number - primary key value to load the Employees record.
|
|
136
136
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
137
137
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
138
138
|
* @public
|
|
@@ -325,7 +325,7 @@ exports.EmployeeEntity = EmployeeEntity = __decorate([
|
|
|
325
325
|
let UserFavoriteEntity = class UserFavoriteEntity extends core_1.BaseEntity {
|
|
326
326
|
/**
|
|
327
327
|
* Loads the User Favorites record from the database
|
|
328
|
-
* @param ID:
|
|
328
|
+
* @param ID: number - primary key value to load the User Favorites record.
|
|
329
329
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
330
330
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
331
331
|
* @public
|
|
@@ -440,7 +440,7 @@ exports.UserFavoriteEntity = UserFavoriteEntity = __decorate([
|
|
|
440
440
|
let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity extends core_1.BaseEntity {
|
|
441
441
|
/**
|
|
442
442
|
* Loads the Employee Company Integrations record from the database
|
|
443
|
-
* @param ID:
|
|
443
|
+
* @param ID: number - primary key value to load the Employee Company Integrations record.
|
|
444
444
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
445
445
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
446
446
|
* @public
|
|
@@ -555,7 +555,7 @@ exports.EmployeeCompanyIntegrationEntity = EmployeeCompanyIntegrationEntity = __
|
|
|
555
555
|
let EmployeeRoleEntity = class EmployeeRoleEntity extends core_1.BaseEntity {
|
|
556
556
|
/**
|
|
557
557
|
* Loads the Employee Roles record from the database
|
|
558
|
-
* @param ID:
|
|
558
|
+
* @param ID: number - primary key value to load the Employee Roles record.
|
|
559
559
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
560
560
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
561
561
|
* @public
|
|
@@ -656,7 +656,7 @@ exports.EmployeeRoleEntity = EmployeeRoleEntity = __decorate([
|
|
|
656
656
|
let EmployeeSkillEntity = class EmployeeSkillEntity extends core_1.BaseEntity {
|
|
657
657
|
/**
|
|
658
658
|
* Loads the Employee Skills record from the database
|
|
659
|
-
* @param ID:
|
|
659
|
+
* @param ID: number - primary key value to load the Employee Skills record.
|
|
660
660
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
661
661
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
662
662
|
* @public
|
|
@@ -757,7 +757,7 @@ exports.EmployeeSkillEntity = EmployeeSkillEntity = __decorate([
|
|
|
757
757
|
let RoleEntity = class RoleEntity extends core_1.BaseEntity {
|
|
758
758
|
/**
|
|
759
759
|
* Loads the Roles record from the database
|
|
760
|
-
* @param ID:
|
|
760
|
+
* @param ID: number - primary key value to load the Roles record.
|
|
761
761
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
762
762
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
763
763
|
* @public
|
|
@@ -866,7 +866,7 @@ exports.RoleEntity = RoleEntity = __decorate([
|
|
|
866
866
|
let SkillEntity = class SkillEntity extends core_1.BaseEntity {
|
|
867
867
|
/**
|
|
868
868
|
* Loads the Skills record from the database
|
|
869
|
-
* @param ID:
|
|
869
|
+
* @param ID: number - primary key value to load the Skills record.
|
|
870
870
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
871
871
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
872
872
|
* @public
|
|
@@ -975,7 +975,7 @@ exports.SkillEntity = SkillEntity = __decorate([
|
|
|
975
975
|
let IntegrationURLFormatEntity = class IntegrationURLFormatEntity extends core_1.BaseEntity {
|
|
976
976
|
/**
|
|
977
977
|
* Loads the Integration URL Formats record from the database
|
|
978
|
-
* @param ID:
|
|
978
|
+
* @param ID: number - primary key value to load the Integration URL Formats record.
|
|
979
979
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
980
980
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
981
981
|
* @public
|
|
@@ -1091,7 +1091,7 @@ exports.IntegrationURLFormatEntity = IntegrationURLFormatEntity = __decorate([
|
|
|
1091
1091
|
let IntegrationEntity = class IntegrationEntity extends core_1.BaseEntity {
|
|
1092
1092
|
/**
|
|
1093
1093
|
* Loads the Integrations record from the database
|
|
1094
|
-
* @param ID:
|
|
1094
|
+
* @param ID: number - primary key value to load the Integrations record.
|
|
1095
1095
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
1096
1096
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
1097
1097
|
* @public
|
|
@@ -1236,7 +1236,7 @@ exports.IntegrationEntity = IntegrationEntity = __decorate([
|
|
|
1236
1236
|
let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.BaseEntity {
|
|
1237
1237
|
/**
|
|
1238
1238
|
* Loads the Company Integrations record from the database
|
|
1239
|
-
* @param ID:
|
|
1239
|
+
* @param ID: number - primary key value to load the Company Integrations record.
|
|
1240
1240
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
1241
1241
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
1242
1242
|
* @public
|
|
@@ -1508,7 +1508,7 @@ exports.CompanyIntegrationEntity = CompanyIntegrationEntity = __decorate([
|
|
|
1508
1508
|
let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
1509
1509
|
/**
|
|
1510
1510
|
* Loads the Entity Fields record from the database
|
|
1511
|
-
* @param ID:
|
|
1511
|
+
* @param ID: number - primary key value to load the Entity Fields record.
|
|
1512
1512
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
1513
1513
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
1514
1514
|
* @public
|
|
@@ -2012,7 +2012,7 @@ exports.EntityFieldEntity = EntityFieldEntity = __decorate([
|
|
|
2012
2012
|
let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
2013
2013
|
/**
|
|
2014
2014
|
* Loads the Entities record from the database
|
|
2015
|
-
* @param ID:
|
|
2015
|
+
* @param ID: number - primary key value to load the Entities record.
|
|
2016
2016
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2017
2017
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2018
2018
|
* @public
|
|
@@ -2553,7 +2553,7 @@ exports.EntityEntity = EntityEntity = __decorate([
|
|
|
2553
2553
|
let UserEntity = class UserEntity extends core_1.BaseEntity {
|
|
2554
2554
|
/**
|
|
2555
2555
|
* Loads the Users record from the database
|
|
2556
|
-
* @param ID:
|
|
2556
|
+
* @param ID: number - primary key value to load the Users record.
|
|
2557
2557
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2558
2558
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2559
2559
|
* @public
|
|
@@ -2789,7 +2789,7 @@ exports.UserEntity = UserEntity = __decorate([
|
|
|
2789
2789
|
let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.BaseEntity {
|
|
2790
2790
|
/**
|
|
2791
2791
|
* Loads the Entity Relationships record from the database
|
|
2792
|
-
* @param ID:
|
|
2792
|
+
* @param ID: number - primary key value to load the Entity Relationships record.
|
|
2793
2793
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
2794
2794
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
2795
2795
|
* @public
|
|
@@ -3079,7 +3079,7 @@ exports.EntityRelationshipEntity = EntityRelationshipEntity = __decorate([
|
|
|
3079
3079
|
let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
|
|
3080
3080
|
/**
|
|
3081
3081
|
* Loads the User Record Logs record from the database
|
|
3082
|
-
* @param ID:
|
|
3082
|
+
* @param ID: number - primary key value to load the User Record Logs record.
|
|
3083
3083
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3084
3084
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3085
3085
|
* @public
|
|
@@ -3248,7 +3248,7 @@ exports.UserRecordLogEntity = UserRecordLogEntity = __decorate([
|
|
|
3248
3248
|
let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
3249
3249
|
/**
|
|
3250
3250
|
* Loads the User Views record from the database
|
|
3251
|
-
* @param ID:
|
|
3251
|
+
* @param ID: number - primary key value to load the User Views record.
|
|
3252
3252
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3253
3253
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3254
3254
|
* @public
|
|
@@ -3554,7 +3554,7 @@ exports.UserViewEntity = UserViewEntity = __decorate([
|
|
|
3554
3554
|
let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core_1.BaseEntity {
|
|
3555
3555
|
/**
|
|
3556
3556
|
* Loads the Company Integration Runs record from the database
|
|
3557
|
-
* @param ID:
|
|
3557
|
+
* @param ID: number - primary key value to load the Company Integration Runs record.
|
|
3558
3558
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3559
3559
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3560
3560
|
* @public
|
|
@@ -3679,7 +3679,7 @@ exports.CompanyIntegrationRunEntity = CompanyIntegrationRunEntity = __decorate([
|
|
|
3679
3679
|
let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity extends core_1.BaseEntity {
|
|
3680
3680
|
/**
|
|
3681
3681
|
* Loads the Company Integration Run Details record from the database
|
|
3682
|
-
* @param ID:
|
|
3682
|
+
* @param ID: number - primary key value to load the Company Integration Run Details record.
|
|
3683
3683
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3684
3684
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3685
3685
|
* @public
|
|
@@ -3820,7 +3820,7 @@ exports.CompanyIntegrationRunDetailEntity = CompanyIntegrationRunDetailEntity =
|
|
|
3820
3820
|
let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
|
|
3821
3821
|
/**
|
|
3822
3822
|
* Loads the Error Logs record from the database
|
|
3823
|
-
* @param ID:
|
|
3823
|
+
* @param ID: number - primary key value to load the Error Logs record.
|
|
3824
3824
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3825
3825
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3826
3826
|
* @public
|
|
@@ -3965,7 +3965,7 @@ exports.ErrorLogEntity = ErrorLogEntity = __decorate([
|
|
|
3965
3965
|
let ApplicationEntity = class ApplicationEntity extends core_1.BaseEntity {
|
|
3966
3966
|
/**
|
|
3967
3967
|
* Loads the Applications record from the database
|
|
3968
|
-
* @param ID:
|
|
3968
|
+
* @param ID: number - primary key value to load the Applications record.
|
|
3969
3969
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
3970
3970
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
3971
3971
|
* @public
|
|
@@ -4053,7 +4053,7 @@ exports.ApplicationEntity = ApplicationEntity = __decorate([
|
|
|
4053
4053
|
let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseEntity {
|
|
4054
4054
|
/**
|
|
4055
4055
|
* Loads the Application Entities record from the database
|
|
4056
|
-
* @param ID:
|
|
4056
|
+
* @param ID: number - primary key value to load the Application Entities record.
|
|
4057
4057
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4058
4058
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4059
4059
|
* @public
|
|
@@ -4201,7 +4201,7 @@ exports.ApplicationEntityEntity = ApplicationEntityEntity = __decorate([
|
|
|
4201
4201
|
let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEntity {
|
|
4202
4202
|
/**
|
|
4203
4203
|
* Loads the Entity Permissions record from the database
|
|
4204
|
-
* @param ID:
|
|
4204
|
+
* @param ID: number - primary key value to load the Entity Permissions record.
|
|
4205
4205
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4206
4206
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4207
4207
|
* @public
|
|
@@ -4424,7 +4424,7 @@ exports.EntityPermissionEntity = EntityPermissionEntity = __decorate([
|
|
|
4424
4424
|
let UserApplicationEntityEntity = class UserApplicationEntityEntity extends core_1.BaseEntity {
|
|
4425
4425
|
/**
|
|
4426
4426
|
* Loads the User Application Entities record from the database
|
|
4427
|
-
* @param ID:
|
|
4427
|
+
* @param ID: number - primary key value to load the User Application Entities record.
|
|
4428
4428
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4429
4429
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4430
4430
|
* @public
|
|
@@ -4521,7 +4521,7 @@ exports.UserApplicationEntityEntity = UserApplicationEntityEntity = __decorate([
|
|
|
4521
4521
|
let UserApplicationEntity = class UserApplicationEntity extends core_1.BaseEntity {
|
|
4522
4522
|
/**
|
|
4523
4523
|
* Loads the User Applications record from the database
|
|
4524
|
-
* @param ID:
|
|
4524
|
+
* @param ID: number - primary key value to load the User Applications record.
|
|
4525
4525
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4526
4526
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4527
4527
|
* @public
|
|
@@ -4634,7 +4634,7 @@ exports.UserApplicationEntity = UserApplicationEntity = __decorate([
|
|
|
4634
4634
|
let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity extends core_1.BaseEntity {
|
|
4635
4635
|
/**
|
|
4636
4636
|
* Loads the Company Integration Run API Logs record from the database
|
|
4637
|
-
* @param ID:
|
|
4637
|
+
* @param ID: number - primary key value to load the Company Integration Run API Logs record.
|
|
4638
4638
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4639
4639
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4640
4640
|
* @public
|
|
@@ -4751,7 +4751,7 @@ exports.CompanyIntegrationRunAPILogEntity = CompanyIntegrationRunAPILogEntity =
|
|
|
4751
4751
|
let ListEntity = class ListEntity extends core_1.BaseEntity {
|
|
4752
4752
|
/**
|
|
4753
4753
|
* Loads the Lists record from the database
|
|
4754
|
-
* @param ID:
|
|
4754
|
+
* @param ID: number - primary key value to load the Lists record.
|
|
4755
4755
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4756
4756
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4757
4757
|
* @public
|
|
@@ -4882,7 +4882,7 @@ exports.ListEntity = ListEntity = __decorate([
|
|
|
4882
4882
|
let ListDetailEntity = class ListDetailEntity extends core_1.BaseEntity {
|
|
4883
4883
|
/**
|
|
4884
4884
|
* Loads the List Details record from the database
|
|
4885
|
-
* @param ID:
|
|
4885
|
+
* @param ID: number - primary key value to load the List Details record.
|
|
4886
4886
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4887
4887
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4888
4888
|
* @public
|
|
@@ -4955,7 +4955,7 @@ exports.ListDetailEntity = ListDetailEntity = __decorate([
|
|
|
4955
4955
|
let UserViewRunEntity = class UserViewRunEntity extends core_1.BaseEntity {
|
|
4956
4956
|
/**
|
|
4957
4957
|
* Loads the User View Runs record from the database
|
|
4958
|
-
* @param ID:
|
|
4958
|
+
* @param ID: number - primary key value to load the User View Runs record.
|
|
4959
4959
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
4960
4960
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
4961
4961
|
* @public
|
|
@@ -5056,7 +5056,7 @@ exports.UserViewRunEntity = UserViewRunEntity = __decorate([
|
|
|
5056
5056
|
let UserViewRunDetailEntity = class UserViewRunDetailEntity extends core_1.BaseEntity {
|
|
5057
5057
|
/**
|
|
5058
5058
|
* Loads the User View Run Details record from the database
|
|
5059
|
-
* @param ID:
|
|
5059
|
+
* @param ID: number - primary key value to load the User View Run Details record.
|
|
5060
5060
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5061
5061
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5062
5062
|
* @public
|
|
@@ -5145,7 +5145,7 @@ exports.UserViewRunDetailEntity = UserViewRunDetailEntity = __decorate([
|
|
|
5145
5145
|
let WorkflowRunEntity = class WorkflowRunEntity extends core_1.BaseEntity {
|
|
5146
5146
|
/**
|
|
5147
5147
|
* Loads the Workflow Runs record from the database
|
|
5148
|
-
* @param ID:
|
|
5148
|
+
* @param ID: number - primary key value to load the Workflow Runs record.
|
|
5149
5149
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5150
5150
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5151
5151
|
* @public
|
|
@@ -5277,7 +5277,7 @@ exports.WorkflowRunEntity = WorkflowRunEntity = __decorate([
|
|
|
5277
5277
|
let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
5278
5278
|
/**
|
|
5279
5279
|
* Loads the Workflows record from the database
|
|
5280
|
-
* @param ID:
|
|
5280
|
+
* @param ID: number - primary key value to load the Workflows record.
|
|
5281
5281
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5282
5282
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5283
5283
|
* @public
|
|
@@ -5400,7 +5400,7 @@ exports.WorkflowEntity = WorkflowEntity = __decorate([
|
|
|
5400
5400
|
let WorkflowEngineEntity = class WorkflowEngineEntity extends core_1.BaseEntity {
|
|
5401
5401
|
/**
|
|
5402
5402
|
* Loads the Workflow Engines record from the database
|
|
5403
|
-
* @param ID:
|
|
5403
|
+
* @param ID: number - primary key value to load the Workflow Engines record.
|
|
5404
5404
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5405
5405
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5406
5406
|
* @public
|
|
@@ -5510,7 +5510,7 @@ exports.WorkflowEngineEntity = WorkflowEngineEntity = __decorate([
|
|
|
5510
5510
|
let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
5511
5511
|
/**
|
|
5512
5512
|
* Loads the Record Changes record from the database
|
|
5513
|
-
* @param ID:
|
|
5513
|
+
* @param ID: number - primary key value to load the Record Changes record.
|
|
5514
5514
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5515
5515
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5516
5516
|
* @public
|
|
@@ -5677,7 +5677,7 @@ exports.RecordChangeEntity = RecordChangeEntity = __decorate([
|
|
|
5677
5677
|
let UserRoleEntity = class UserRoleEntity extends core_1.BaseEntity {
|
|
5678
5678
|
/**
|
|
5679
5679
|
* Loads the User Roles record from the database
|
|
5680
|
-
* @param ID:
|
|
5680
|
+
* @param ID: number - primary key value to load the User Roles record.
|
|
5681
5681
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5682
5682
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5683
5683
|
* @public
|
|
@@ -5778,7 +5778,7 @@ exports.UserRoleEntity = UserRoleEntity = __decorate([
|
|
|
5778
5778
|
let RowLevelSecurityFilterEntity = class RowLevelSecurityFilterEntity extends core_1.BaseEntity {
|
|
5779
5779
|
/**
|
|
5780
5780
|
* Loads the Row Level Security Filters record from the database
|
|
5781
|
-
* @param ID:
|
|
5781
|
+
* @param ID: number - primary key value to load the Row Level Security Filters record.
|
|
5782
5782
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5783
5783
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5784
5784
|
* @public
|
|
@@ -5891,7 +5891,7 @@ exports.RowLevelSecurityFilterEntity = RowLevelSecurityFilterEntity = __decorate
|
|
|
5891
5891
|
let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
5892
5892
|
/**
|
|
5893
5893
|
* Loads the Audit Logs record from the database
|
|
5894
|
-
* @param ID:
|
|
5894
|
+
* @param ID: number - primary key value to load the Audit Logs record.
|
|
5895
5895
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
5896
5896
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
5897
5897
|
* @public
|
|
@@ -6060,7 +6060,7 @@ exports.AuditLogEntity = AuditLogEntity = __decorate([
|
|
|
6060
6060
|
let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
|
|
6061
6061
|
/**
|
|
6062
6062
|
* Loads the Authorizations record from the database
|
|
6063
|
-
* @param ID:
|
|
6063
|
+
* @param ID: number - primary key value to load the Authorizations record.
|
|
6064
6064
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6065
6065
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6066
6066
|
* @public
|
|
@@ -6198,7 +6198,7 @@ exports.AuthorizationEntity = AuthorizationEntity = __decorate([
|
|
|
6198
6198
|
let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseEntity {
|
|
6199
6199
|
/**
|
|
6200
6200
|
* Loads the Authorization Roles record from the database
|
|
6201
|
-
* @param ID:
|
|
6201
|
+
* @param ID: number - primary key value to load the Authorization Roles record.
|
|
6202
6202
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6203
6203
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6204
6204
|
* @public
|
|
@@ -6328,7 +6328,7 @@ exports.AuthorizationRoleEntity = AuthorizationRoleEntity = __decorate([
|
|
|
6328
6328
|
let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
|
|
6329
6329
|
/**
|
|
6330
6330
|
* Loads the Audit Log Types record from the database
|
|
6331
|
-
* @param ID:
|
|
6331
|
+
* @param ID: number - primary key value to load the Audit Log Types record.
|
|
6332
6332
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6333
6333
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6334
6334
|
* @public
|
|
@@ -6462,7 +6462,7 @@ exports.AuditLogTypeEntity = AuditLogTypeEntity = __decorate([
|
|
|
6462
6462
|
let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEntity {
|
|
6463
6463
|
/**
|
|
6464
6464
|
* Loads the Entity Field Values record from the database
|
|
6465
|
-
* @param ID:
|
|
6465
|
+
* @param ID: number - primary key value to load the Entity Field Values record.
|
|
6466
6466
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6467
6467
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6468
6468
|
* @public
|
|
@@ -6618,7 +6618,7 @@ exports.EntityFieldValueEntity = EntityFieldValueEntity = __decorate([
|
|
|
6618
6618
|
let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
|
|
6619
6619
|
/**
|
|
6620
6620
|
* Loads the AI Models record from the database
|
|
6621
|
-
* @param ID:
|
|
6621
|
+
* @param ID: number - primary key value to load the AI Models record.
|
|
6622
6622
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6623
6623
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6624
6624
|
* @public
|
|
@@ -6766,7 +6766,7 @@ exports.AIModelEntity = AIModelEntity = __decorate([
|
|
|
6766
6766
|
let AIActionEntity = class AIActionEntity extends core_1.BaseEntity {
|
|
6767
6767
|
/**
|
|
6768
6768
|
* Loads the AI Actions record from the database
|
|
6769
|
-
* @param ID:
|
|
6769
|
+
* @param ID: number - primary key value to load the AI Actions record.
|
|
6770
6770
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6771
6771
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6772
6772
|
* @public
|
|
@@ -6900,7 +6900,7 @@ exports.AIActionEntity = AIActionEntity = __decorate([
|
|
|
6900
6900
|
let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
|
|
6901
6901
|
/**
|
|
6902
6902
|
* Loads the AI Model Actions record from the database
|
|
6903
|
-
* @param ID:
|
|
6903
|
+
* @param ID: number - primary key value to load the AI Model Actions record.
|
|
6904
6904
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6905
6905
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6906
6906
|
* @public
|
|
@@ -7021,7 +7021,7 @@ exports.AIModelActionEntity = AIModelActionEntity = __decorate([
|
|
|
7021
7021
|
let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity {
|
|
7022
7022
|
/**
|
|
7023
7023
|
* Loads the Entity AI Actions record from the database
|
|
7024
|
-
* @param ID:
|
|
7024
|
+
* @param ID: number - primary key value to load the Entity AI Actions record.
|
|
7025
7025
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
7026
7026
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
7027
7027
|
* @public
|
|
@@ -7243,7 +7243,7 @@ exports.EntityAIActionEntity = EntityAIActionEntity = __decorate([
|
|
|
7243
7243
|
let AIModelTypeEntity = class AIModelTypeEntity extends core_1.BaseEntity {
|
|
7244
7244
|
/**
|
|
7245
7245
|
* Loads the AI Model Types record from the database
|
|
7246
|
-
* @param ID:
|
|
7246
|
+
* @param ID: number - primary key value to load the AI Model Types record.
|
|
7247
7247
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
7248
7248
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
7249
7249
|
* @public
|
|
@@ -7316,7 +7316,7 @@ exports.AIModelTypeEntity = AIModelTypeEntity = __decorate([
|
|
|
7316
7316
|
let QueueTypeEntity = class QueueTypeEntity extends core_1.BaseEntity {
|
|
7317
7317
|
/**
|
|
7318
7318
|
* Loads the Queue Types record from the database
|
|
7319
|
-
* @param ID:
|
|
7319
|
+
* @param ID: number - primary key value to load the Queue Types record.
|
|
7320
7320
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
7321
7321
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
7322
7322
|
* @public
|
|
@@ -7434,7 +7434,7 @@ exports.QueueTypeEntity = QueueTypeEntity = __decorate([
|
|
|
7434
7434
|
let QueueEntity = class QueueEntity extends core_1.BaseEntity {
|
|
7435
7435
|
/**
|
|
7436
7436
|
* Loads the Queues record from the database
|
|
7437
|
-
* @param ID:
|
|
7437
|
+
* @param ID: number - primary key value to load the Queues record.
|
|
7438
7438
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
7439
7439
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
7440
7440
|
* @public
|
|
@@ -7690,7 +7690,7 @@ exports.QueueEntity = QueueEntity = __decorate([
|
|
|
7690
7690
|
let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
|
|
7691
7691
|
/**
|
|
7692
7692
|
* Loads the Queue Tasks record from the database
|
|
7693
|
-
* @param ID:
|
|
7693
|
+
* @param ID: number - primary key value to load the Queue Tasks record.
|
|
7694
7694
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
7695
7695
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
7696
7696
|
* @public
|
|
@@ -7842,7 +7842,7 @@ exports.QueueTaskEntity = QueueTaskEntity = __decorate([
|
|
|
7842
7842
|
let DashboardEntity = class DashboardEntity extends core_1.BaseEntity {
|
|
7843
7843
|
/**
|
|
7844
7844
|
* Loads the Dashboards record from the database
|
|
7845
|
-
* @param ID:
|
|
7845
|
+
* @param ID: number - primary key value to load the Dashboards record.
|
|
7846
7846
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
7847
7847
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
7848
7848
|
* @public
|
|
@@ -7955,7 +7955,7 @@ exports.DashboardEntity = DashboardEntity = __decorate([
|
|
|
7955
7955
|
let OutputTriggerTypeEntity = class OutputTriggerTypeEntity extends core_1.BaseEntity {
|
|
7956
7956
|
/**
|
|
7957
7957
|
* Loads the Output Trigger Types record from the database
|
|
7958
|
-
* @param ID:
|
|
7958
|
+
* @param ID: number - primary key value to load the Output Trigger Types record.
|
|
7959
7959
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
7960
7960
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
7961
7961
|
* @public
|
|
@@ -8039,7 +8039,7 @@ exports.OutputTriggerTypeEntity = OutputTriggerTypeEntity = __decorate([
|
|
|
8039
8039
|
let OutputFormatTypeEntity = class OutputFormatTypeEntity extends core_1.BaseEntity {
|
|
8040
8040
|
/**
|
|
8041
8041
|
* Loads the Output Format Types record from the database
|
|
8042
|
-
* @param ID:
|
|
8042
|
+
* @param ID: number - primary key value to load the Output Format Types record.
|
|
8043
8043
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8044
8044
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8045
8045
|
* @public
|
|
@@ -8134,7 +8134,7 @@ exports.OutputFormatTypeEntity = OutputFormatTypeEntity = __decorate([
|
|
|
8134
8134
|
let OutputDeliveryTypeEntity = class OutputDeliveryTypeEntity extends core_1.BaseEntity {
|
|
8135
8135
|
/**
|
|
8136
8136
|
* Loads the Output Delivery Types record from the database
|
|
8137
|
-
* @param ID:
|
|
8137
|
+
* @param ID: number - primary key value to load the Output Delivery Types record.
|
|
8138
8138
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8139
8139
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8140
8140
|
* @public
|
|
@@ -8218,7 +8218,7 @@ exports.OutputDeliveryTypeEntity = OutputDeliveryTypeEntity = __decorate([
|
|
|
8218
8218
|
let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
8219
8219
|
/**
|
|
8220
8220
|
* Loads the Reports record from the database
|
|
8221
|
-
* @param ID:
|
|
8221
|
+
* @param ID: number - primary key value to load the Reports record.
|
|
8222
8222
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8223
8223
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8224
8224
|
* @public
|
|
@@ -8527,7 +8527,7 @@ exports.ReportEntity = ReportEntity = __decorate([
|
|
|
8527
8527
|
let ReportSnapshotEntity = class ReportSnapshotEntity extends core_1.BaseEntity {
|
|
8528
8528
|
/**
|
|
8529
8529
|
* Loads the Report Snapshots record from the database
|
|
8530
|
-
* @param ID:
|
|
8530
|
+
* @param ID: number - primary key value to load the Report Snapshots record.
|
|
8531
8531
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8532
8532
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8533
8533
|
* @public
|
|
@@ -8627,7 +8627,7 @@ exports.ReportSnapshotEntity = ReportSnapshotEntity = __decorate([
|
|
|
8627
8627
|
let ResourceTypeEntity = class ResourceTypeEntity extends core_1.BaseEntity {
|
|
8628
8628
|
/**
|
|
8629
8629
|
* Loads the Resource Types record from the database
|
|
8630
|
-
* @param ID:
|
|
8630
|
+
* @param ID: number - primary key value to load the Resource Types record.
|
|
8631
8631
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8632
8632
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8633
8633
|
* @public
|
|
@@ -8771,7 +8771,7 @@ exports.ResourceTypeEntity = ResourceTypeEntity = __decorate([
|
|
|
8771
8771
|
let TagEntity = class TagEntity extends core_1.BaseEntity {
|
|
8772
8772
|
/**
|
|
8773
8773
|
* Loads the Tags record from the database
|
|
8774
|
-
* @param ID:
|
|
8774
|
+
* @param ID: number - primary key value to load the Tags record.
|
|
8775
8775
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8776
8776
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8777
8777
|
* @public
|
|
@@ -8886,7 +8886,7 @@ exports.TagEntity = TagEntity = __decorate([
|
|
|
8886
8886
|
let TaggedItemEntity = class TaggedItemEntity extends core_1.BaseEntity {
|
|
8887
8887
|
/**
|
|
8888
8888
|
* Loads the Tagged Items record from the database
|
|
8889
|
-
* @param ID:
|
|
8889
|
+
* @param ID: number - primary key value to load the Tagged Items record.
|
|
8890
8890
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8891
8891
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8892
8892
|
* @public
|
|
@@ -8990,7 +8990,7 @@ exports.TaggedItemEntity = TaggedItemEntity = __decorate([
|
|
|
8990
8990
|
let WorkspaceEntity = class WorkspaceEntity extends core_1.BaseEntity {
|
|
8991
8991
|
/**
|
|
8992
8992
|
* Loads the Workspaces record from the database
|
|
8993
|
-
* @param ID:
|
|
8993
|
+
* @param ID: number - primary key value to load the Workspaces record.
|
|
8994
8994
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8995
8995
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8996
8996
|
* @public
|
|
@@ -9072,7 +9072,7 @@ exports.WorkspaceEntity = WorkspaceEntity = __decorate([
|
|
|
9072
9072
|
let WorkspaceItemEntity = class WorkspaceItemEntity extends core_1.BaseEntity {
|
|
9073
9073
|
/**
|
|
9074
9074
|
* Loads the Workspace Items record from the database
|
|
9075
|
-
* @param ID:
|
|
9075
|
+
* @param ID: number - primary key value to load the Workspace Items record.
|
|
9076
9076
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
9077
9077
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
9078
9078
|
* @public
|
|
@@ -9207,7 +9207,7 @@ exports.WorkspaceItemEntity = WorkspaceItemEntity = __decorate([
|
|
|
9207
9207
|
let DatasetEntity = class DatasetEntity extends core_1.BaseEntity {
|
|
9208
9208
|
/**
|
|
9209
9209
|
* Loads the Datasets record from the database
|
|
9210
|
-
* @param ID:
|
|
9210
|
+
* @param ID: number - primary key value to load the Datasets record.
|
|
9211
9211
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
9212
9212
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
9213
9213
|
* @public
|
|
@@ -9309,7 +9309,7 @@ exports.DatasetEntity = DatasetEntity = __decorate([
|
|
|
9309
9309
|
let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
|
|
9310
9310
|
/**
|
|
9311
9311
|
* Loads the Dataset Items record from the database
|
|
9312
|
-
* @param ID:
|
|
9312
|
+
* @param ID: number - primary key value to load the Dataset Items record.
|
|
9313
9313
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
9314
9314
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
9315
9315
|
* @public
|
|
@@ -9477,7 +9477,7 @@ exports.DatasetItemEntity = DatasetItemEntity = __decorate([
|
|
|
9477
9477
|
let ConversationDetailEntity = class ConversationDetailEntity extends core_1.BaseEntity {
|
|
9478
9478
|
/**
|
|
9479
9479
|
* Loads the Conversation Details record from the database
|
|
9480
|
-
* @param ID:
|
|
9480
|
+
* @param ID: number - primary key value to load the Conversation Details record.
|
|
9481
9481
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
9482
9482
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
9483
9483
|
* @public
|
|
@@ -9612,7 +9612,7 @@ exports.ConversationDetailEntity = ConversationDetailEntity = __decorate([
|
|
|
9612
9612
|
let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
|
|
9613
9613
|
/**
|
|
9614
9614
|
* Loads the Conversations record from the database
|
|
9615
|
-
* @param ID:
|
|
9615
|
+
* @param ID: number - primary key value to load the Conversations record.
|
|
9616
9616
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
9617
9617
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
9618
9618
|
* @public
|
|
@@ -9789,7 +9789,7 @@ exports.ConversationEntity = ConversationEntity = __decorate([
|
|
|
9789
9789
|
let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEntity {
|
|
9790
9790
|
/**
|
|
9791
9791
|
* Loads the User Notifications record from the database
|
|
9792
|
-
* @param ID:
|
|
9792
|
+
* @param ID: number - primary key value to load the User Notifications record.
|
|
9793
9793
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
9794
9794
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
9795
9795
|
* @public
|
|
@@ -9956,7 +9956,7 @@ exports.UserNotificationEntity = UserNotificationEntity = __decorate([
|
|
|
9956
9956
|
let SchemaInfoEntity = class SchemaInfoEntity extends core_1.BaseEntity {
|
|
9957
9957
|
/**
|
|
9958
9958
|
* Loads the Schema Info record from the database
|
|
9959
|
-
* @param ID:
|
|
9959
|
+
* @param ID: number - primary key value to load the Schema Info record.
|
|
9960
9960
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
9961
9961
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
9962
9962
|
* @public
|
|
@@ -10069,7 +10069,7 @@ exports.SchemaInfoEntity = SchemaInfoEntity = __decorate([
|
|
|
10069
10069
|
let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity extends core_1.BaseEntity {
|
|
10070
10070
|
/**
|
|
10071
10071
|
* Loads the Company Integration Record Maps record from the database
|
|
10072
|
-
* @param ID:
|
|
10072
|
+
* @param ID: number - primary key value to load the Company Integration Record Maps record.
|
|
10073
10073
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10074
10074
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10075
10075
|
* @public
|
|
@@ -10183,7 +10183,7 @@ exports.CompanyIntegrationRecordMapEntity = CompanyIntegrationRecordMapEntity =
|
|
|
10183
10183
|
let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity {
|
|
10184
10184
|
/**
|
|
10185
10185
|
* Loads the Record Merge Logs record from the database
|
|
10186
|
-
* @param ID:
|
|
10186
|
+
* @param ID: number - primary key value to load the Record Merge Logs record.
|
|
10187
10187
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10188
10188
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10189
10189
|
* @public
|
|
@@ -10383,7 +10383,7 @@ exports.RecordMergeLogEntity = RecordMergeLogEntity = __decorate([
|
|
|
10383
10383
|
let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends core_1.BaseEntity {
|
|
10384
10384
|
/**
|
|
10385
10385
|
* Loads the Record Merge Deletion Logs record from the database
|
|
10386
|
-
* @param ID:
|
|
10386
|
+
* @param ID: number - primary key value to load the Record Merge Deletion Logs record.
|
|
10387
10387
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10388
10388
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10389
10389
|
* @public
|
|
@@ -10498,7 +10498,7 @@ exports.RecordMergeDeletionLogEntity = RecordMergeDeletionLogEntity = __decorate
|
|
|
10498
10498
|
let QueryFieldEntity = class QueryFieldEntity extends core_1.BaseEntity {
|
|
10499
10499
|
/**
|
|
10500
10500
|
* Loads the Query Fields record from the database
|
|
10501
|
-
* @param ID:
|
|
10501
|
+
* @param ID: number - primary key value to load the Query Fields record.
|
|
10502
10502
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10503
10503
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10504
10504
|
* @public
|
|
@@ -10712,7 +10712,7 @@ exports.QueryFieldEntity = QueryFieldEntity = __decorate([
|
|
|
10712
10712
|
let QueryCategoryEntity = class QueryCategoryEntity extends core_1.BaseEntity {
|
|
10713
10713
|
/**
|
|
10714
10714
|
* Loads the Query Categories record from the database
|
|
10715
|
-
* @param ID:
|
|
10715
|
+
* @param ID: number - primary key value to load the Query Categories record.
|
|
10716
10716
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10717
10717
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10718
10718
|
* @public
|
|
@@ -10823,7 +10823,7 @@ exports.QueryCategoryEntity = QueryCategoryEntity = __decorate([
|
|
|
10823
10823
|
let QueryEntity = class QueryEntity extends core_1.BaseEntity {
|
|
10824
10824
|
/**
|
|
10825
10825
|
* Loads the Queries record from the database
|
|
10826
|
-
* @param ID:
|
|
10826
|
+
* @param ID: number - primary key value to load the Queries record.
|
|
10827
10827
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10828
10828
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10829
10829
|
* @public
|
|
@@ -10991,7 +10991,7 @@ exports.QueryEntity = QueryEntity = __decorate([
|
|
|
10991
10991
|
let QueryPermissionEntity = class QueryPermissionEntity extends core_1.BaseEntity {
|
|
10992
10992
|
/**
|
|
10993
10993
|
* Loads the Query Permissions record from the database
|
|
10994
|
-
* @param ID:
|
|
10994
|
+
* @param ID: number - primary key value to load the Query Permissions record.
|
|
10995
10995
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10996
10996
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10997
10997
|
* @public
|
|
@@ -11084,7 +11084,7 @@ exports.QueryPermissionEntity = QueryPermissionEntity = __decorate([
|
|
|
11084
11084
|
let VectorIndexEntity = class VectorIndexEntity extends core_1.BaseEntity {
|
|
11085
11085
|
/**
|
|
11086
11086
|
* Loads the Vector Indexes record from the database
|
|
11087
|
-
* @param ID:
|
|
11087
|
+
* @param ID: number - primary key value to load the Vector Indexes record.
|
|
11088
11088
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11089
11089
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11090
11090
|
* @public
|
|
@@ -11215,7 +11215,7 @@ exports.VectorIndexEntity = VectorIndexEntity = __decorate([
|
|
|
11215
11215
|
let EntityDocumentTypeEntity = class EntityDocumentTypeEntity extends core_1.BaseEntity {
|
|
11216
11216
|
/**
|
|
11217
11217
|
* Loads the Entity Document Types record from the database
|
|
11218
|
-
* @param ID:
|
|
11218
|
+
* @param ID: number - primary key value to load the Entity Document Types record.
|
|
11219
11219
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11220
11220
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11221
11221
|
* @public
|
|
@@ -11306,7 +11306,7 @@ exports.EntityDocumentTypeEntity = EntityDocumentTypeEntity = __decorate([
|
|
|
11306
11306
|
let EntityDocumentRunEntity = class EntityDocumentRunEntity extends core_1.BaseEntity {
|
|
11307
11307
|
/**
|
|
11308
11308
|
* Loads the Entity Document Runs record from the database
|
|
11309
|
-
* @param ID:
|
|
11309
|
+
* @param ID: number - primary key value to load the Entity Document Runs record.
|
|
11310
11310
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11311
11311
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11312
11312
|
* @public
|
|
@@ -11430,7 +11430,7 @@ exports.EntityDocumentRunEntity = EntityDocumentRunEntity = __decorate([
|
|
|
11430
11430
|
let VectorDatabaseEntity = class VectorDatabaseEntity extends core_1.BaseEntity {
|
|
11431
11431
|
/**
|
|
11432
11432
|
* Loads the Vector Databases record from the database
|
|
11433
|
-
* @param ID:
|
|
11433
|
+
* @param ID: number - primary key value to load the Vector Databases record.
|
|
11434
11434
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11435
11435
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11436
11436
|
* @public
|
|
@@ -11543,7 +11543,7 @@ exports.VectorDatabaseEntity = VectorDatabaseEntity = __decorate([
|
|
|
11543
11543
|
let EntityRecordDocumentEntity = class EntityRecordDocumentEntity extends core_1.BaseEntity {
|
|
11544
11544
|
/**
|
|
11545
11545
|
* Loads the Entity Record Documents record from the database
|
|
11546
|
-
* @param ID:
|
|
11546
|
+
* @param ID: number - primary key value to load the Entity Record Documents record.
|
|
11547
11547
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11548
11548
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11549
11549
|
* @public
|
|
@@ -11689,7 +11689,7 @@ exports.EntityRecordDocumentEntity = EntityRecordDocumentEntity = __decorate([
|
|
|
11689
11689
|
let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity {
|
|
11690
11690
|
/**
|
|
11691
11691
|
* Loads the Entity Documents record from the database
|
|
11692
|
-
* @param ID:
|
|
11692
|
+
* @param ID: number - primary key value to load the Entity Documents record.
|
|
11693
11693
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11694
11694
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11695
11695
|
* @public
|
|
@@ -11824,7 +11824,7 @@ exports.EntityDocumentEntity = EntityDocumentEntity = __decorate([
|
|
|
11824
11824
|
let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntity {
|
|
11825
11825
|
/**
|
|
11826
11826
|
* Loads the Data Context Items record from the database
|
|
11827
|
-
* @param ID:
|
|
11827
|
+
* @param ID: number - primary key value to load the Data Context Items record.
|
|
11828
11828
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11829
11829
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11830
11830
|
* @public
|
|
@@ -12029,7 +12029,7 @@ exports.DataContextItemEntity = DataContextItemEntity = __decorate([
|
|
|
12029
12029
|
let DataContextEntity = class DataContextEntity extends core_1.BaseEntity {
|
|
12030
12030
|
/**
|
|
12031
12031
|
* Loads the Data Contexts record from the database
|
|
12032
|
-
* @param ID:
|
|
12032
|
+
* @param ID: number - primary key value to load the Data Contexts record.
|
|
12033
12033
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12034
12034
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12035
12035
|
* @public
|
|
@@ -12151,7 +12151,7 @@ exports.DataContextEntity = DataContextEntity = __decorate([
|
|
|
12151
12151
|
let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEntity {
|
|
12152
12152
|
/**
|
|
12153
12153
|
* Loads the User View Categories record from the database
|
|
12154
|
-
* @param ID:
|
|
12154
|
+
* @param ID: number - primary key value to load the User View Categories record.
|
|
12155
12155
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12156
12156
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12157
12157
|
* @public
|
|
@@ -12262,7 +12262,7 @@ exports.UserViewCategoryEntity = UserViewCategoryEntity = __decorate([
|
|
|
12262
12262
|
let DashboardCategoryEntity = class DashboardCategoryEntity extends core_1.BaseEntity {
|
|
12263
12263
|
/**
|
|
12264
12264
|
* Loads the Dashboard Categories record from the database
|
|
12265
|
-
* @param ID:
|
|
12265
|
+
* @param ID: number - primary key value to load the Dashboard Categories record.
|
|
12266
12266
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12267
12267
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12268
12268
|
* @public
|
|
@@ -12373,7 +12373,7 @@ exports.DashboardCategoryEntity = DashboardCategoryEntity = __decorate([
|
|
|
12373
12373
|
let ReportCategoryEntity = class ReportCategoryEntity extends core_1.BaseEntity {
|
|
12374
12374
|
/**
|
|
12375
12375
|
* Loads the Report Categories record from the database
|
|
12376
|
-
* @param ID:
|
|
12376
|
+
* @param ID: number - primary key value to load the Report Categories record.
|
|
12377
12377
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12378
12378
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12379
12379
|
* @public
|