@memberjunction/core-entities 1.7.1 → 1.8.0
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.
- package/dist/custom/TypeTablesCache.d.ts +12 -0
- package/dist/custom/TypeTablesCache.d.ts.map +1 -0
- package/dist/custom/TypeTablesCache.js +31 -0
- package/dist/custom/TypeTablesCache.js.map +1 -0
- package/dist/generated/entity_subclasses.d.ts +854 -464
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +1099 -561
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -8,7 +8,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
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
10
|
exports.EntityActionInvocationEntity = exports.EntityActionEntity = exports.ActionCategoryEntity = exports.ApplicationSettingEntity = exports.EntityBehaviorTypeEntity = exports.EntityBehaviorEntity = exports.DuplicateRunDetailEntity = exports.DuplicateRunEntity = exports.EntitySettingEntity = exports.EntityDocumentSettingEntity = exports.DuplicateRunDetailMatchEntity = exports.VersionInstallationEntity = exports.FileEntityRecordLinkEntity = exports.FileCategoryEntity = exports.FileEntity = exports.FileStorageProviderEntity = 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
|
-
exports.EntityCommunicationFieldEntity = exports.EntityCommunicationMessageTypeEntity = exports.RecommendationItemEntity = exports.RecommendationRunEntity = exports.RecommendationProviderEntity = exports.RecommendationEntity = exports.TemplateContentTypeEntity = exports.TemplateParamEntity = exports.TemplateContentEntity = exports.TemplateCategoryEntity = exports.TemplateEntity = exports.CommunicationBaseMessageTypeEntity = exports.CommunicationLogEntity = exports.CommunicationProviderMessageTypeEntity = exports.CommunicationRunEntity = exports.CommunicationProviderEntity = exports.ListCategoryEntity = exports.LibraryEntity = exports.ActionLibraryEntity = exports.ActionParamEntity = exports.ActionExecutionLogEntity = exports.ActionContextEntity = exports.ActionResultCodeEntity = exports.ActionContextTypeEntity = exports.ActionFilterEntity = exports.EntityActionFilterEntity = exports.ActionEntity = exports.EntityActionInvocationTypeEntity = exports.ActionAuthorizationEntity = void 0;
|
|
11
|
+
exports.EntityActionParamEntity = exports.EntityRelationshipDisplayComponentEntity = exports.LibraryItemEntity = exports.RecordChangeReplayRunEntity = exports.EntityCommunicationFieldEntity = exports.EntityCommunicationMessageTypeEntity = exports.RecommendationItemEntity = exports.RecommendationRunEntity = exports.RecommendationProviderEntity = exports.RecommendationEntity = exports.TemplateContentTypeEntity = exports.TemplateParamEntity = exports.TemplateContentEntity = exports.TemplateCategoryEntity = exports.TemplateEntity = exports.CommunicationBaseMessageTypeEntity = exports.CommunicationLogEntity = exports.CommunicationProviderMessageTypeEntity = exports.CommunicationRunEntity = exports.CommunicationProviderEntity = exports.ListCategoryEntity = exports.LibraryEntity = exports.ActionLibraryEntity = exports.ActionParamEntity = exports.ActionExecutionLogEntity = exports.ActionContextEntity = exports.ActionResultCodeEntity = exports.ActionContextTypeEntity = exports.ActionFilterEntity = exports.EntityActionFilterEntity = exports.ActionEntity = exports.EntityActionInvocationTypeEntity = exports.ActionAuthorizationEntity = void 0;
|
|
12
12
|
const core_1 = require("@memberjunction/core");
|
|
13
13
|
const global_1 = require("@memberjunction/global");
|
|
14
14
|
/**
|
|
@@ -88,24 +88,6 @@ let CompanyEntity = class CompanyEntity extends core_1.BaseEntity {
|
|
|
88
88
|
this.Set('LogoURL', value);
|
|
89
89
|
}
|
|
90
90
|
/**
|
|
91
|
-
* * Field Name: CreatedAt
|
|
92
|
-
* * Display Name: Created At
|
|
93
|
-
* * SQL Data Type: datetime
|
|
94
|
-
* * Default Value: getdate()
|
|
95
|
-
*/
|
|
96
|
-
get CreatedAt() {
|
|
97
|
-
return this.Get('CreatedAt');
|
|
98
|
-
}
|
|
99
|
-
/**
|
|
100
|
-
* * Field Name: UpdatedAt
|
|
101
|
-
* * Display Name: Updated At
|
|
102
|
-
* * SQL Data Type: datetime
|
|
103
|
-
* * Default Value: getdate()
|
|
104
|
-
*/
|
|
105
|
-
get UpdatedAt() {
|
|
106
|
-
return this.Get('UpdatedAt');
|
|
107
|
-
}
|
|
108
|
-
/**
|
|
109
91
|
* * Field Name: Domain
|
|
110
92
|
* * Display Name: Domain
|
|
111
93
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -116,6 +98,22 @@ let CompanyEntity = class CompanyEntity extends core_1.BaseEntity {
|
|
|
116
98
|
set Domain(value) {
|
|
117
99
|
this.Set('Domain', value);
|
|
118
100
|
}
|
|
101
|
+
/**
|
|
102
|
+
* * Field Name: __mj_CreatedAt
|
|
103
|
+
* * Display Name: __mj _Created At
|
|
104
|
+
* * SQL Data Type: datetimeoffset
|
|
105
|
+
*/
|
|
106
|
+
get __mj_CreatedAt() {
|
|
107
|
+
return this.Get('__mj_CreatedAt');
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* * Field Name: __mj_UpdatedAt
|
|
111
|
+
* * Display Name: __mj _Updated At
|
|
112
|
+
* * SQL Data Type: datetimeoffset
|
|
113
|
+
*/
|
|
114
|
+
get __mj_UpdatedAt() {
|
|
115
|
+
return this.Get('__mj_UpdatedAt');
|
|
116
|
+
}
|
|
119
117
|
};
|
|
120
118
|
exports.CompanyEntity = CompanyEntity;
|
|
121
119
|
exports.CompanyEntity = CompanyEntity = __decorate([
|
|
@@ -253,27 +251,26 @@ let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
|
|
|
253
251
|
this.Set('SupervisorID', value);
|
|
254
252
|
}
|
|
255
253
|
/**
|
|
256
|
-
* * Field Name:
|
|
257
|
-
* * Display Name:
|
|
258
|
-
* * SQL Data Type:
|
|
259
|
-
* * Default Value: getdate()
|
|
254
|
+
* * Field Name: __mj_CreatedAt
|
|
255
|
+
* * Display Name: __mj _Created At
|
|
256
|
+
* * SQL Data Type: datetimeoffset
|
|
260
257
|
*/
|
|
261
|
-
get
|
|
262
|
-
return this.Get('
|
|
258
|
+
get __mj_CreatedAt() {
|
|
259
|
+
return this.Get('__mj_CreatedAt');
|
|
263
260
|
}
|
|
264
261
|
/**
|
|
265
|
-
* * Field Name:
|
|
266
|
-
* * Display Name:
|
|
267
|
-
* * SQL Data Type:
|
|
268
|
-
* * Default Value: getdate()
|
|
262
|
+
* * Field Name: __mj_UpdatedAt
|
|
263
|
+
* * Display Name: __mj _Updated At
|
|
264
|
+
* * SQL Data Type: datetimeoffset
|
|
269
265
|
*/
|
|
270
|
-
get
|
|
271
|
-
return this.Get('
|
|
266
|
+
get __mj_UpdatedAt() {
|
|
267
|
+
return this.Get('__mj_UpdatedAt');
|
|
272
268
|
}
|
|
273
269
|
/**
|
|
274
270
|
* * Field Name: FirstLast
|
|
275
271
|
* * Display Name: First Last
|
|
276
272
|
* * SQL Data Type: nvarchar(81)
|
|
273
|
+
* * Default Value: getutcdate()
|
|
277
274
|
*/
|
|
278
275
|
get FirstLast() {
|
|
279
276
|
return this.Get('FirstLast');
|
|
@@ -282,6 +279,7 @@ let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
|
|
|
282
279
|
* * Field Name: Supervisor
|
|
283
280
|
* * Display Name: Supervisor
|
|
284
281
|
* * SQL Data Type: nvarchar(81)
|
|
282
|
+
* * Default Value: getutcdate()
|
|
285
283
|
*/
|
|
286
284
|
get Supervisor() {
|
|
287
285
|
return this.Get('Supervisor');
|
|
@@ -617,27 +615,26 @@ let EmployeeRoleEntity = class EmployeeRoleEntity extends core_1.BaseEntity {
|
|
|
617
615
|
this.Set('RoleID', value);
|
|
618
616
|
}
|
|
619
617
|
/**
|
|
620
|
-
* * Field Name:
|
|
621
|
-
* * Display Name:
|
|
622
|
-
* * SQL Data Type:
|
|
623
|
-
* * Default Value: getdate()
|
|
618
|
+
* * Field Name: __mj_CreatedAt
|
|
619
|
+
* * Display Name: __mj _Created At
|
|
620
|
+
* * SQL Data Type: datetimeoffset
|
|
624
621
|
*/
|
|
625
|
-
get
|
|
626
|
-
return this.Get('
|
|
622
|
+
get __mj_CreatedAt() {
|
|
623
|
+
return this.Get('__mj_CreatedAt');
|
|
627
624
|
}
|
|
628
625
|
/**
|
|
629
|
-
* * Field Name:
|
|
630
|
-
* * Display Name:
|
|
631
|
-
* * SQL Data Type:
|
|
632
|
-
* * Default Value: getdate()
|
|
626
|
+
* * Field Name: __mj_UpdatedAt
|
|
627
|
+
* * Display Name: __mj _Updated At
|
|
628
|
+
* * SQL Data Type: datetimeoffset
|
|
633
629
|
*/
|
|
634
|
-
get
|
|
635
|
-
return this.Get('
|
|
630
|
+
get __mj_UpdatedAt() {
|
|
631
|
+
return this.Get('__mj_UpdatedAt');
|
|
636
632
|
}
|
|
637
633
|
/**
|
|
638
634
|
* * Field Name: Role
|
|
639
635
|
* * Display Name: Role
|
|
640
636
|
* * SQL Data Type: nvarchar(50)
|
|
637
|
+
* * Default Value: getutcdate()
|
|
641
638
|
*/
|
|
642
639
|
get Role() {
|
|
643
640
|
return this.Get('Role');
|
|
@@ -718,27 +715,26 @@ let EmployeeSkillEntity = class EmployeeSkillEntity extends core_1.BaseEntity {
|
|
|
718
715
|
this.Set('SkillID', value);
|
|
719
716
|
}
|
|
720
717
|
/**
|
|
721
|
-
* * Field Name:
|
|
722
|
-
* * Display Name:
|
|
723
|
-
* * SQL Data Type:
|
|
724
|
-
* * Default Value: getdate()
|
|
718
|
+
* * Field Name: __mj_CreatedAt
|
|
719
|
+
* * Display Name: __mj _Created At
|
|
720
|
+
* * SQL Data Type: datetimeoffset
|
|
725
721
|
*/
|
|
726
|
-
get
|
|
727
|
-
return this.Get('
|
|
722
|
+
get __mj_CreatedAt() {
|
|
723
|
+
return this.Get('__mj_CreatedAt');
|
|
728
724
|
}
|
|
729
725
|
/**
|
|
730
|
-
* * Field Name:
|
|
731
|
-
* * Display Name:
|
|
732
|
-
* * SQL Data Type:
|
|
733
|
-
* * Default Value: getdate()
|
|
726
|
+
* * Field Name: __mj_UpdatedAt
|
|
727
|
+
* * Display Name: __mj _Updated At
|
|
728
|
+
* * SQL Data Type: datetimeoffset
|
|
734
729
|
*/
|
|
735
|
-
get
|
|
736
|
-
return this.Get('
|
|
730
|
+
get __mj_UpdatedAt() {
|
|
731
|
+
return this.Get('__mj_UpdatedAt');
|
|
737
732
|
}
|
|
738
733
|
/**
|
|
739
734
|
* * Field Name: Skill
|
|
740
735
|
* * Display Name: Skill
|
|
741
736
|
* * SQL Data Type: nvarchar(50)
|
|
737
|
+
* * Default Value: getutcdate()
|
|
742
738
|
*/
|
|
743
739
|
get Skill() {
|
|
744
740
|
return this.Get('Skill');
|
|
@@ -828,22 +824,20 @@ let RoleEntity = class RoleEntity extends core_1.BaseEntity {
|
|
|
828
824
|
this.Set('SQLName', value);
|
|
829
825
|
}
|
|
830
826
|
/**
|
|
831
|
-
* * Field Name:
|
|
832
|
-
* * Display Name:
|
|
833
|
-
* * SQL Data Type:
|
|
834
|
-
* * Default Value: getdate()
|
|
827
|
+
* * Field Name: __mj_CreatedAt
|
|
828
|
+
* * Display Name: __mj _Created At
|
|
829
|
+
* * SQL Data Type: datetimeoffset
|
|
835
830
|
*/
|
|
836
|
-
get
|
|
837
|
-
return this.Get('
|
|
831
|
+
get __mj_CreatedAt() {
|
|
832
|
+
return this.Get('__mj_CreatedAt');
|
|
838
833
|
}
|
|
839
834
|
/**
|
|
840
|
-
* * Field Name:
|
|
841
|
-
* * Display Name:
|
|
842
|
-
* * SQL Data Type:
|
|
843
|
-
* * Default Value: getdate()
|
|
835
|
+
* * Field Name: __mj_UpdatedAt
|
|
836
|
+
* * Display Name: __mj _Updated At
|
|
837
|
+
* * SQL Data Type: datetimeoffset
|
|
844
838
|
*/
|
|
845
|
-
get
|
|
846
|
-
return this.Get('
|
|
839
|
+
get __mj_UpdatedAt() {
|
|
840
|
+
return this.Get('__mj_UpdatedAt');
|
|
847
841
|
}
|
|
848
842
|
};
|
|
849
843
|
exports.RoleEntity = RoleEntity;
|
|
@@ -1962,22 +1956,35 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1962
1956
|
this.Set('RelatedEntityNameFieldMap', value);
|
|
1963
1957
|
}
|
|
1964
1958
|
/**
|
|
1965
|
-
* * Field Name:
|
|
1966
|
-
* * Display Name:
|
|
1967
|
-
* * SQL Data Type:
|
|
1968
|
-
* * Default Value:
|
|
1959
|
+
* * Field Name: RelatedEntityDisplayType
|
|
1960
|
+
* * Display Name: Related Entity Display Type
|
|
1961
|
+
* * SQL Data Type: nvarchar(20)
|
|
1962
|
+
* * Default Value: Search
|
|
1963
|
+
* * Description: Controls the generated form in the MJ Explorer UI - defaults to a search box, other option is a drop down. Possible values are Search and Dropdown
|
|
1969
1964
|
*/
|
|
1970
|
-
get
|
|
1971
|
-
return this.Get('
|
|
1965
|
+
get RelatedEntityDisplayType() {
|
|
1966
|
+
return this.Get('RelatedEntityDisplayType');
|
|
1967
|
+
}
|
|
1968
|
+
set RelatedEntityDisplayType(value) {
|
|
1969
|
+
this.Set('RelatedEntityDisplayType', value);
|
|
1972
1970
|
}
|
|
1973
1971
|
/**
|
|
1974
|
-
* * Field Name:
|
|
1975
|
-
* * Display Name:
|
|
1976
|
-
* * SQL Data Type:
|
|
1977
|
-
* * Default Value:
|
|
1972
|
+
* * Field Name: __mj_CreatedAt
|
|
1973
|
+
* * Display Name: __mj _Created At
|
|
1974
|
+
* * SQL Data Type: datetimeoffset
|
|
1975
|
+
* * Default Value: getutcdate()
|
|
1978
1976
|
*/
|
|
1979
|
-
get
|
|
1980
|
-
return this.Get('
|
|
1977
|
+
get __mj_CreatedAt() {
|
|
1978
|
+
return this.Get('__mj_CreatedAt');
|
|
1979
|
+
}
|
|
1980
|
+
/**
|
|
1981
|
+
* * Field Name: __mj_UpdatedAt
|
|
1982
|
+
* * Display Name: __mj _Updated At
|
|
1983
|
+
* * SQL Data Type: datetimeoffset
|
|
1984
|
+
* * Default Value: getutcdate()
|
|
1985
|
+
*/
|
|
1986
|
+
get __mj_UpdatedAt() {
|
|
1987
|
+
return this.Get('__mj_UpdatedAt');
|
|
1981
1988
|
}
|
|
1982
1989
|
/**
|
|
1983
1990
|
* * Field Name: Entity
|
|
@@ -2228,7 +2235,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2228
2235
|
* * Display Name: Track Record Changes
|
|
2229
2236
|
* * SQL Data Type: bit
|
|
2230
2237
|
* * Default Value: 1
|
|
2231
|
-
* * Description: When set to 1, changes made via the MemberJunction architecture will result in tracking records being created in the RecordChange table
|
|
2238
|
+
* * Description: When set to 1, changes made via the MemberJunction architecture will result in tracking records being created in the RecordChange table. In addition, when turned on CodeGen will ensure that your table has two fields: __mj_CreatedAt and __mj_UpdatedAt which are special fields used in conjunction with the RecordChange table to track changes to rows in your entity.
|
|
2232
2239
|
*/
|
|
2233
2240
|
get TrackRecordChanges() {
|
|
2234
2241
|
return this.Get('TrackRecordChanges');
|
|
@@ -2575,24 +2582,6 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2575
2582
|
this.Set('EntityObjectSubclassImport', value);
|
|
2576
2583
|
}
|
|
2577
2584
|
/**
|
|
2578
|
-
* * Field Name: CreatedAt
|
|
2579
|
-
* * Display Name: Created At
|
|
2580
|
-
* * SQL Data Type: datetime
|
|
2581
|
-
* * Default Value: getdate()
|
|
2582
|
-
*/
|
|
2583
|
-
get CreatedAt() {
|
|
2584
|
-
return this.Get('CreatedAt');
|
|
2585
|
-
}
|
|
2586
|
-
/**
|
|
2587
|
-
* * Field Name: UpdatedAt
|
|
2588
|
-
* * Display Name: Updated At
|
|
2589
|
-
* * SQL Data Type: datetime
|
|
2590
|
-
* * Default Value: getdate()
|
|
2591
|
-
*/
|
|
2592
|
-
get UpdatedAt() {
|
|
2593
|
-
return this.Get('UpdatedAt');
|
|
2594
|
-
}
|
|
2595
|
-
/**
|
|
2596
2585
|
* * Field Name: PreferredCommunicationField
|
|
2597
2586
|
* * Display Name: Preferred Communication Field
|
|
2598
2587
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -2617,9 +2606,26 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2617
2606
|
this.Set('Icon', value);
|
|
2618
2607
|
}
|
|
2619
2608
|
/**
|
|
2609
|
+
* * Field Name: __mj_CreatedAt
|
|
2610
|
+
* * Display Name: __mj _Created At
|
|
2611
|
+
* * SQL Data Type: datetimeoffset
|
|
2612
|
+
*/
|
|
2613
|
+
get __mj_CreatedAt() {
|
|
2614
|
+
return this.Get('__mj_CreatedAt');
|
|
2615
|
+
}
|
|
2616
|
+
/**
|
|
2617
|
+
* * Field Name: __mj_UpdatedAt
|
|
2618
|
+
* * Display Name: __mj _Updated At
|
|
2619
|
+
* * SQL Data Type: datetimeoffset
|
|
2620
|
+
*/
|
|
2621
|
+
get __mj_UpdatedAt() {
|
|
2622
|
+
return this.Get('__mj_UpdatedAt');
|
|
2623
|
+
}
|
|
2624
|
+
/**
|
|
2620
2625
|
* * Field Name: CodeName
|
|
2621
2626
|
* * Display Name: Code Name
|
|
2622
2627
|
* * SQL Data Type: nvarchar(MAX)
|
|
2628
|
+
* * Default Value: getutcdate()
|
|
2623
2629
|
*/
|
|
2624
2630
|
get CodeName() {
|
|
2625
2631
|
return this.Get('CodeName');
|
|
@@ -2628,6 +2634,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2628
2634
|
* * Field Name: ClassName
|
|
2629
2635
|
* * Display Name: Class Name
|
|
2630
2636
|
* * SQL Data Type: nvarchar(MAX)
|
|
2637
|
+
* * Default Value: getutcdate()
|
|
2631
2638
|
*/
|
|
2632
2639
|
get ClassName() {
|
|
2633
2640
|
return this.Get('ClassName');
|
|
@@ -2831,27 +2838,26 @@ let UserEntity = class UserEntity extends core_1.BaseEntity {
|
|
|
2831
2838
|
this.Set('LinkedEntityRecordID', value);
|
|
2832
2839
|
}
|
|
2833
2840
|
/**
|
|
2834
|
-
* * Field Name:
|
|
2835
|
-
* * Display Name:
|
|
2836
|
-
* * SQL Data Type:
|
|
2837
|
-
* * Default Value: getdate()
|
|
2841
|
+
* * Field Name: __mj_CreatedAt
|
|
2842
|
+
* * Display Name: __mj _Created At
|
|
2843
|
+
* * SQL Data Type: datetimeoffset
|
|
2838
2844
|
*/
|
|
2839
|
-
get
|
|
2840
|
-
return this.Get('
|
|
2845
|
+
get __mj_CreatedAt() {
|
|
2846
|
+
return this.Get('__mj_CreatedAt');
|
|
2841
2847
|
}
|
|
2842
2848
|
/**
|
|
2843
|
-
* * Field Name:
|
|
2844
|
-
* * Display Name:
|
|
2845
|
-
* * SQL Data Type:
|
|
2846
|
-
* * Default Value: getdate()
|
|
2849
|
+
* * Field Name: __mj_UpdatedAt
|
|
2850
|
+
* * Display Name: __mj _Updated At
|
|
2851
|
+
* * SQL Data Type: datetimeoffset
|
|
2847
2852
|
*/
|
|
2848
|
-
get
|
|
2849
|
-
return this.Get('
|
|
2853
|
+
get __mj_UpdatedAt() {
|
|
2854
|
+
return this.Get('__mj_UpdatedAt');
|
|
2850
2855
|
}
|
|
2851
2856
|
/**
|
|
2852
2857
|
* * Field Name: FirstLast
|
|
2853
2858
|
* * Display Name: First Last
|
|
2854
2859
|
* * SQL Data Type: nvarchar(101)
|
|
2860
|
+
* * Default Value: getutcdate()
|
|
2855
2861
|
*/
|
|
2856
2862
|
get FirstLast() {
|
|
2857
2863
|
return this.Get('FirstLast');
|
|
@@ -2860,6 +2866,7 @@ let UserEntity = class UserEntity extends core_1.BaseEntity {
|
|
|
2860
2866
|
* * Field Name: EmployeeFirstLast
|
|
2861
2867
|
* * Display Name: Employee First Last
|
|
2862
2868
|
* * SQL Data Type: nvarchar(81)
|
|
2869
|
+
* * Default Value: getutcdate()
|
|
2863
2870
|
*/
|
|
2864
2871
|
get EmployeeFirstLast() {
|
|
2865
2872
|
return this.Get('EmployeeFirstLast');
|
|
@@ -3072,6 +3079,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
3072
3079
|
* * Display Name: Display In Form
|
|
3073
3080
|
* * SQL Data Type: bit
|
|
3074
3081
|
* * Default Value: 1
|
|
3082
|
+
* * Description: When unchecked the relationship will NOT be displayed on the generated form
|
|
3075
3083
|
*/
|
|
3076
3084
|
get DisplayInForm() {
|
|
3077
3085
|
return this.Get('DisplayInForm');
|
|
@@ -3080,9 +3088,26 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
3080
3088
|
this.Set('DisplayInForm', value);
|
|
3081
3089
|
}
|
|
3082
3090
|
/**
|
|
3091
|
+
* * Field Name: DisplayLocation
|
|
3092
|
+
* * Display Name: Display Location
|
|
3093
|
+
* * SQL Data Type: nvarchar(50)
|
|
3094
|
+
* * Default Value: After Field Tabs
|
|
3095
|
+
* * Value List Type: List
|
|
3096
|
+
* * Possible Values
|
|
3097
|
+
* * After Field Tabs
|
|
3098
|
+
* * Before Field Tabs
|
|
3099
|
+
*/
|
|
3100
|
+
get DisplayLocation() {
|
|
3101
|
+
return this.Get('DisplayLocation');
|
|
3102
|
+
}
|
|
3103
|
+
set DisplayLocation(value) {
|
|
3104
|
+
this.Set('DisplayLocation', value);
|
|
3105
|
+
}
|
|
3106
|
+
/**
|
|
3083
3107
|
* * Field Name: DisplayName
|
|
3084
3108
|
* * Display Name: Display Name
|
|
3085
3109
|
* * SQL Data Type: nvarchar(255)
|
|
3110
|
+
* * Description: Optional, when specified this value overrides the related entity name for the label on the tab
|
|
3086
3111
|
*/
|
|
3087
3112
|
get DisplayName() {
|
|
3088
3113
|
return this.Get('DisplayName');
|
|
@@ -3091,6 +3116,36 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
3091
3116
|
this.Set('DisplayName', value);
|
|
3092
3117
|
}
|
|
3093
3118
|
/**
|
|
3119
|
+
* * Field Name: DisplayIconType
|
|
3120
|
+
* * Display Name: Display Icon Type
|
|
3121
|
+
* * SQL Data Type: nvarchar(50)
|
|
3122
|
+
* * Default Value: Related Entity Icon
|
|
3123
|
+
* * Value List Type: List
|
|
3124
|
+
* * Possible Values
|
|
3125
|
+
* * Related Entity Icon
|
|
3126
|
+
* * Custom
|
|
3127
|
+
* * None
|
|
3128
|
+
* * Description: When Related Entity Icon - uses the icon from the related entity, if one exists. When Custom, uses the value in the DisplayIcon field in this record, and when None, no icon is displayed
|
|
3129
|
+
*/
|
|
3130
|
+
get DisplayIconType() {
|
|
3131
|
+
return this.Get('DisplayIconType');
|
|
3132
|
+
}
|
|
3133
|
+
set DisplayIconType(value) {
|
|
3134
|
+
this.Set('DisplayIconType', value);
|
|
3135
|
+
}
|
|
3136
|
+
/**
|
|
3137
|
+
* * Field Name: DisplayIcon
|
|
3138
|
+
* * Display Name: Display Icon
|
|
3139
|
+
* * SQL Data Type: nvarchar(255)
|
|
3140
|
+
* * Description: If specified, the icon
|
|
3141
|
+
*/
|
|
3142
|
+
get DisplayIcon() {
|
|
3143
|
+
return this.Get('DisplayIcon');
|
|
3144
|
+
}
|
|
3145
|
+
set DisplayIcon(value) {
|
|
3146
|
+
this.Set('DisplayIcon', value);
|
|
3147
|
+
}
|
|
3148
|
+
/**
|
|
3094
3149
|
* * Field Name: DisplayUserViewGUID
|
|
3095
3150
|
* * Display Name: Display User View GUID
|
|
3096
3151
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -3100,22 +3155,47 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
3100
3155
|
return this.Get('DisplayUserViewGUID');
|
|
3101
3156
|
}
|
|
3102
3157
|
/**
|
|
3103
|
-
* * Field Name:
|
|
3104
|
-
* * Display Name:
|
|
3105
|
-
* * SQL Data Type:
|
|
3106
|
-
* *
|
|
3158
|
+
* * Field Name: DisplayComponentID
|
|
3159
|
+
* * Display Name: Display Component ID
|
|
3160
|
+
* * SQL Data Type: int
|
|
3161
|
+
* * Related Entity/Foreign Key: Entity Relationship Display Components (vwEntityRelationshipDisplayComponents.ID)
|
|
3162
|
+
* * Description: If specified, this component will be used for displaying the relationship within the parent entity's form
|
|
3107
3163
|
*/
|
|
3108
|
-
get
|
|
3109
|
-
return this.Get('
|
|
3164
|
+
get DisplayComponentID() {
|
|
3165
|
+
return this.Get('DisplayComponentID');
|
|
3166
|
+
}
|
|
3167
|
+
set DisplayComponentID(value) {
|
|
3168
|
+
this.Set('DisplayComponentID', value);
|
|
3110
3169
|
}
|
|
3111
3170
|
/**
|
|
3112
|
-
* * Field Name:
|
|
3113
|
-
* * Display Name:
|
|
3114
|
-
* * SQL Data Type:
|
|
3115
|
-
* *
|
|
3171
|
+
* * Field Name: DisplayComponentConfiguration
|
|
3172
|
+
* * Display Name: Display Component Configuration
|
|
3173
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
3174
|
+
* * Description: If DisplayComponentID is specified, this field can optionally be used to track component-specific and relationship-specific configuration details that will be used by CodeGen to provide to the display component selected.
|
|
3116
3175
|
*/
|
|
3117
|
-
get
|
|
3118
|
-
return this.Get('
|
|
3176
|
+
get DisplayComponentConfiguration() {
|
|
3177
|
+
return this.Get('DisplayComponentConfiguration');
|
|
3178
|
+
}
|
|
3179
|
+
set DisplayComponentConfiguration(value) {
|
|
3180
|
+
this.Set('DisplayComponentConfiguration', value);
|
|
3181
|
+
}
|
|
3182
|
+
/**
|
|
3183
|
+
* * Field Name: __mj_CreatedAt
|
|
3184
|
+
* * Display Name: __mj _Created At
|
|
3185
|
+
* * SQL Data Type: datetimeoffset
|
|
3186
|
+
* * Default Value: getutcdate()
|
|
3187
|
+
*/
|
|
3188
|
+
get __mj_CreatedAt() {
|
|
3189
|
+
return this.Get('__mj_CreatedAt');
|
|
3190
|
+
}
|
|
3191
|
+
/**
|
|
3192
|
+
* * Field Name: __mj_UpdatedAt
|
|
3193
|
+
* * Display Name: __mj _Updated At
|
|
3194
|
+
* * SQL Data Type: datetimeoffset
|
|
3195
|
+
* * Default Value: getutcdate()
|
|
3196
|
+
*/
|
|
3197
|
+
get __mj_UpdatedAt() {
|
|
3198
|
+
return this.Get('__mj_UpdatedAt');
|
|
3119
3199
|
}
|
|
3120
3200
|
/**
|
|
3121
3201
|
* * Field Name: Entity
|
|
@@ -3616,27 +3696,26 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
3616
3696
|
this.Set('SortState', value);
|
|
3617
3697
|
}
|
|
3618
3698
|
/**
|
|
3619
|
-
* * Field Name:
|
|
3620
|
-
* * Display Name:
|
|
3621
|
-
* * SQL Data Type:
|
|
3622
|
-
* * Default Value: getdate()
|
|
3699
|
+
* * Field Name: __mj_CreatedAt
|
|
3700
|
+
* * Display Name: __mj _Created At
|
|
3701
|
+
* * SQL Data Type: datetimeoffset
|
|
3623
3702
|
*/
|
|
3624
|
-
get
|
|
3625
|
-
return this.Get('
|
|
3703
|
+
get __mj_CreatedAt() {
|
|
3704
|
+
return this.Get('__mj_CreatedAt');
|
|
3626
3705
|
}
|
|
3627
3706
|
/**
|
|
3628
|
-
* * Field Name:
|
|
3629
|
-
* * Display Name:
|
|
3630
|
-
* * SQL Data Type:
|
|
3631
|
-
* * Default Value: getdate()
|
|
3707
|
+
* * Field Name: __mj_UpdatedAt
|
|
3708
|
+
* * Display Name: __mj _Updated At
|
|
3709
|
+
* * SQL Data Type: datetimeoffset
|
|
3632
3710
|
*/
|
|
3633
|
-
get
|
|
3634
|
-
return this.Get('
|
|
3711
|
+
get __mj_UpdatedAt() {
|
|
3712
|
+
return this.Get('__mj_UpdatedAt');
|
|
3635
3713
|
}
|
|
3636
3714
|
/**
|
|
3637
3715
|
* * Field Name: UserName
|
|
3638
3716
|
* * Display Name: User Name
|
|
3639
3717
|
* * SQL Data Type: nvarchar(100)
|
|
3718
|
+
* * Default Value: getutcdate()
|
|
3640
3719
|
*/
|
|
3641
3720
|
get UserName() {
|
|
3642
3721
|
return this.Get('UserName');
|
|
@@ -3645,6 +3724,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
3645
3724
|
* * Field Name: UserFirstLast
|
|
3646
3725
|
* * Display Name: User First Last
|
|
3647
3726
|
* * SQL Data Type: nvarchar(101)
|
|
3727
|
+
* * Default Value: getutcdate()
|
|
3648
3728
|
*/
|
|
3649
3729
|
get UserFirstLast() {
|
|
3650
3730
|
return this.Get('UserFirstLast');
|
|
@@ -4179,22 +4259,20 @@ let ApplicationEntity = class ApplicationEntity extends core_1.BaseEntity {
|
|
|
4179
4259
|
this.Set('DefaultForNewUser', value);
|
|
4180
4260
|
}
|
|
4181
4261
|
/**
|
|
4182
|
-
* * Field Name:
|
|
4183
|
-
* * Display Name:
|
|
4184
|
-
* * SQL Data Type:
|
|
4185
|
-
* * Default Value: getdate()
|
|
4262
|
+
* * Field Name: __mj_CreatedAt
|
|
4263
|
+
* * Display Name: __mj _Created At
|
|
4264
|
+
* * SQL Data Type: datetimeoffset
|
|
4186
4265
|
*/
|
|
4187
|
-
get
|
|
4188
|
-
return this.Get('
|
|
4266
|
+
get __mj_CreatedAt() {
|
|
4267
|
+
return this.Get('__mj_CreatedAt');
|
|
4189
4268
|
}
|
|
4190
4269
|
/**
|
|
4191
|
-
* * Field Name:
|
|
4192
|
-
* * Display Name:
|
|
4193
|
-
* * SQL Data Type:
|
|
4194
|
-
* * Default Value: getdate()
|
|
4270
|
+
* * Field Name: __mj_UpdatedAt
|
|
4271
|
+
* * Display Name: __mj _Updated At
|
|
4272
|
+
* * SQL Data Type: datetimeoffset
|
|
4195
4273
|
*/
|
|
4196
|
-
get
|
|
4197
|
-
return this.Get('
|
|
4274
|
+
get __mj_UpdatedAt() {
|
|
4275
|
+
return this.Get('__mj_UpdatedAt');
|
|
4198
4276
|
}
|
|
4199
4277
|
};
|
|
4200
4278
|
exports.ApplicationEntity = ApplicationEntity;
|
|
@@ -4284,26 +4362,25 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
|
|
|
4284
4362
|
this.Set('DefaultForNewUser', value);
|
|
4285
4363
|
}
|
|
4286
4364
|
/**
|
|
4287
|
-
* * Field Name:
|
|
4288
|
-
* * Display Name:
|
|
4289
|
-
* * SQL Data Type:
|
|
4290
|
-
* * Default Value: getdate()
|
|
4365
|
+
* * Field Name: __mj_CreatedAt
|
|
4366
|
+
* * Display Name: __mj _Created At
|
|
4367
|
+
* * SQL Data Type: datetimeoffset
|
|
4291
4368
|
*/
|
|
4292
|
-
get
|
|
4293
|
-
return this.Get('
|
|
4369
|
+
get __mj_CreatedAt() {
|
|
4370
|
+
return this.Get('__mj_CreatedAt');
|
|
4294
4371
|
}
|
|
4295
4372
|
/**
|
|
4296
|
-
* * Field Name:
|
|
4297
|
-
* * Display Name:
|
|
4298
|
-
* * SQL Data Type:
|
|
4299
|
-
* * Default Value: getdate()
|
|
4373
|
+
* * Field Name: __mj_UpdatedAt
|
|
4374
|
+
* * Display Name: __mj _Updated At
|
|
4375
|
+
* * SQL Data Type: datetimeoffset
|
|
4300
4376
|
*/
|
|
4301
|
-
get
|
|
4302
|
-
return this.Get('
|
|
4377
|
+
get __mj_UpdatedAt() {
|
|
4378
|
+
return this.Get('__mj_UpdatedAt');
|
|
4303
4379
|
}
|
|
4304
4380
|
/**
|
|
4305
4381
|
* * Field Name: Application
|
|
4306
4382
|
* * SQL Data Type: nvarchar(50)
|
|
4383
|
+
* * Default Value: getutcdate()
|
|
4307
4384
|
*/
|
|
4308
4385
|
get Application() {
|
|
4309
4386
|
return this.Get('Application');
|
|
@@ -4311,6 +4388,7 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
|
|
|
4311
4388
|
/**
|
|
4312
4389
|
* * Field Name: Entity
|
|
4313
4390
|
* * SQL Data Type: nvarchar(255)
|
|
4391
|
+
* * Default Value: getutcdate()
|
|
4314
4392
|
*/
|
|
4315
4393
|
get Entity() {
|
|
4316
4394
|
return this.Get('Entity');
|
|
@@ -4508,26 +4586,26 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
4508
4586
|
this.Set('DeleteRLSFilterID', value);
|
|
4509
4587
|
}
|
|
4510
4588
|
/**
|
|
4511
|
-
* * Field Name:
|
|
4512
|
-
* * Display Name:
|
|
4513
|
-
* * SQL Data Type:
|
|
4514
|
-
* * Default Value: getdate()
|
|
4589
|
+
* * Field Name: __mj_CreatedAt
|
|
4590
|
+
* * Display Name: __mj _Created At
|
|
4591
|
+
* * SQL Data Type: datetimeoffset
|
|
4515
4592
|
*/
|
|
4516
|
-
get
|
|
4517
|
-
return this.Get('
|
|
4593
|
+
get __mj_CreatedAt() {
|
|
4594
|
+
return this.Get('__mj_CreatedAt');
|
|
4518
4595
|
}
|
|
4519
4596
|
/**
|
|
4520
|
-
* * Field Name:
|
|
4521
|
-
* * Display Name:
|
|
4522
|
-
* * SQL Data Type:
|
|
4523
|
-
* * Default Value: getdate()
|
|
4597
|
+
* * Field Name: __mj_UpdatedAt
|
|
4598
|
+
* * Display Name: __mj _Updated At
|
|
4599
|
+
* * SQL Data Type: datetimeoffset
|
|
4524
4600
|
*/
|
|
4525
|
-
get
|
|
4526
|
-
return this.Get('
|
|
4601
|
+
get __mj_UpdatedAt() {
|
|
4602
|
+
return this.Get('__mj_UpdatedAt');
|
|
4527
4603
|
}
|
|
4528
4604
|
/**
|
|
4529
4605
|
* * Field Name: Entity
|
|
4606
|
+
* * Display Name: Entity
|
|
4530
4607
|
* * SQL Data Type: nvarchar(255)
|
|
4608
|
+
* * Default Value: getutcdate()
|
|
4531
4609
|
*/
|
|
4532
4610
|
get Entity() {
|
|
4533
4611
|
return this.Get('Entity');
|
|
@@ -4536,6 +4614,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
4536
4614
|
* * Field Name: RoleSQLName
|
|
4537
4615
|
* * Display Name: Role SQLName
|
|
4538
4616
|
* * SQL Data Type: nvarchar(250)
|
|
4617
|
+
* * Default Value: getutcdate()
|
|
4539
4618
|
*/
|
|
4540
4619
|
get RoleSQLName() {
|
|
4541
4620
|
return this.Get('RoleSQLName');
|
|
@@ -5852,6 +5931,11 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
5852
5931
|
* * Display Name: Type
|
|
5853
5932
|
* * SQL Data Type: nvarchar(20)
|
|
5854
5933
|
* * Default Value: Create
|
|
5934
|
+
* * Value List Type: List
|
|
5935
|
+
* * Possible Values
|
|
5936
|
+
* * Create
|
|
5937
|
+
* * Update
|
|
5938
|
+
* * Delete
|
|
5855
5939
|
* * Description: Create, Update, or Delete
|
|
5856
5940
|
*/
|
|
5857
5941
|
get Type() {
|
|
@@ -5864,6 +5948,11 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
5864
5948
|
* * Field Name: Source
|
|
5865
5949
|
* * Display Name: Source
|
|
5866
5950
|
* * SQL Data Type: nvarchar(20)
|
|
5951
|
+
* * Default Value: Internal
|
|
5952
|
+
* * Value List Type: List
|
|
5953
|
+
* * Possible Values
|
|
5954
|
+
* * Internal
|
|
5955
|
+
* * External
|
|
5867
5956
|
* * Description: Internal or External
|
|
5868
5957
|
*/
|
|
5869
5958
|
get Source() {
|
|
@@ -5888,8 +5977,8 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
5888
5977
|
/**
|
|
5889
5978
|
* * Field Name: ChangedAt
|
|
5890
5979
|
* * Display Name: Changed At
|
|
5891
|
-
* * SQL Data Type:
|
|
5892
|
-
* * Default Value:
|
|
5980
|
+
* * SQL Data Type: datetimeoffset
|
|
5981
|
+
* * Default Value: getutcdate()
|
|
5893
5982
|
* * Description: The date/time that the change occured.
|
|
5894
5983
|
*/
|
|
5895
5984
|
get ChangedAt() {
|
|
@@ -5942,6 +6031,7 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
5942
6031
|
* * Possible Values
|
|
5943
6032
|
* * Pending
|
|
5944
6033
|
* * Complete
|
|
6034
|
+
* * Error
|
|
5945
6035
|
* * Description: For internal record changes generated within MJ, the status is immediately Complete. For external changes that are detected, the workflow starts off as Pending, then In Progress and finally either Complete or Error
|
|
5946
6036
|
*/
|
|
5947
6037
|
get Status() {
|
|
@@ -5951,6 +6041,19 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
5951
6041
|
this.Set('Status', value);
|
|
5952
6042
|
}
|
|
5953
6043
|
/**
|
|
6044
|
+
* * Field Name: ReplayRunID
|
|
6045
|
+
* * Display Name: Replay Run ID
|
|
6046
|
+
* * SQL Data Type: int
|
|
6047
|
+
* * Related Entity/Foreign Key: Record Change Replay Runs (vwRecordChangeReplayRuns.ID)
|
|
6048
|
+
* * Description: For external changes only, this run ID is the link to the replay run that the change record was part of
|
|
6049
|
+
*/
|
|
6050
|
+
get ReplayRunID() {
|
|
6051
|
+
return this.Get('ReplayRunID');
|
|
6052
|
+
}
|
|
6053
|
+
set ReplayRunID(value) {
|
|
6054
|
+
this.Set('ReplayRunID', value);
|
|
6055
|
+
}
|
|
6056
|
+
/**
|
|
5954
6057
|
* * Field Name: ErrorLog
|
|
5955
6058
|
* * Display Name: Error Log
|
|
5956
6059
|
* * SQL Data Type: nvarchar(MAX)
|
|
@@ -5974,8 +6077,8 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
5974
6077
|
/**
|
|
5975
6078
|
* * Field Name: CreatedAt
|
|
5976
6079
|
* * Display Name: Created At
|
|
5977
|
-
* * SQL Data Type:
|
|
5978
|
-
* * Default Value:
|
|
6080
|
+
* * SQL Data Type: datetimeoffset
|
|
6081
|
+
* * Default Value: getutcdate()
|
|
5979
6082
|
*/
|
|
5980
6083
|
get CreatedAt() {
|
|
5981
6084
|
return this.Get('CreatedAt');
|
|
@@ -5983,8 +6086,8 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
5983
6086
|
/**
|
|
5984
6087
|
* * Field Name: UpdatedAt
|
|
5985
6088
|
* * Display Name: Updated At
|
|
5986
|
-
* * SQL Data Type:
|
|
5987
|
-
* * Default Value:
|
|
6089
|
+
* * SQL Data Type: datetimeoffset
|
|
6090
|
+
* * Default Value: getutcdate()
|
|
5988
6091
|
*/
|
|
5989
6092
|
get UpdatedAt() {
|
|
5990
6093
|
return this.Get('UpdatedAt');
|
|
@@ -6078,27 +6181,26 @@ let UserRoleEntity = class UserRoleEntity extends core_1.BaseEntity {
|
|
|
6078
6181
|
this.Set('RoleName', value);
|
|
6079
6182
|
}
|
|
6080
6183
|
/**
|
|
6081
|
-
* * Field Name:
|
|
6082
|
-
* * Display Name:
|
|
6083
|
-
* * SQL Data Type:
|
|
6084
|
-
* * Default Value: getdate()
|
|
6184
|
+
* * Field Name: __mj_CreatedAt
|
|
6185
|
+
* * Display Name: __mj _Created At
|
|
6186
|
+
* * SQL Data Type: datetimeoffset
|
|
6085
6187
|
*/
|
|
6086
|
-
get
|
|
6087
|
-
return this.Get('
|
|
6188
|
+
get __mj_CreatedAt() {
|
|
6189
|
+
return this.Get('__mj_CreatedAt');
|
|
6088
6190
|
}
|
|
6089
6191
|
/**
|
|
6090
|
-
* * Field Name:
|
|
6091
|
-
* * Display Name:
|
|
6092
|
-
* * SQL Data Type:
|
|
6093
|
-
* * Default Value: getdate()
|
|
6192
|
+
* * Field Name: __mj_UpdatedAt
|
|
6193
|
+
* * Display Name: __mj _Updated At
|
|
6194
|
+
* * SQL Data Type: datetimeoffset
|
|
6094
6195
|
*/
|
|
6095
|
-
get
|
|
6096
|
-
return this.Get('
|
|
6196
|
+
get __mj_UpdatedAt() {
|
|
6197
|
+
return this.Get('__mj_UpdatedAt');
|
|
6097
6198
|
}
|
|
6098
6199
|
/**
|
|
6099
6200
|
* * Field Name: User
|
|
6100
6201
|
* * Display Name: User
|
|
6101
6202
|
* * SQL Data Type: nvarchar(100)
|
|
6203
|
+
* * Default Value: getutcdate()
|
|
6102
6204
|
*/
|
|
6103
6205
|
get User() {
|
|
6104
6206
|
return this.Get('User');
|
|
@@ -6199,22 +6301,20 @@ let RowLevelSecurityFilterEntity = class RowLevelSecurityFilterEntity extends co
|
|
|
6199
6301
|
this.Set('FilterText', value);
|
|
6200
6302
|
}
|
|
6201
6303
|
/**
|
|
6202
|
-
* * Field Name:
|
|
6203
|
-
* * Display Name:
|
|
6204
|
-
* * SQL Data Type:
|
|
6205
|
-
* * Default Value: getdate()
|
|
6304
|
+
* * Field Name: __mj_CreatedAt
|
|
6305
|
+
* * Display Name: __mj _Created At
|
|
6306
|
+
* * SQL Data Type: datetimeoffset
|
|
6206
6307
|
*/
|
|
6207
|
-
get
|
|
6208
|
-
return this.Get('
|
|
6308
|
+
get __mj_CreatedAt() {
|
|
6309
|
+
return this.Get('__mj_CreatedAt');
|
|
6209
6310
|
}
|
|
6210
6311
|
/**
|
|
6211
|
-
* * Field Name:
|
|
6212
|
-
* * Display Name:
|
|
6213
|
-
* * SQL Data Type:
|
|
6214
|
-
* * Default Value: getdate()
|
|
6312
|
+
* * Field Name: __mj_UpdatedAt
|
|
6313
|
+
* * Display Name: __mj _Updated At
|
|
6314
|
+
* * SQL Data Type: datetimeoffset
|
|
6215
6315
|
*/
|
|
6216
|
-
get
|
|
6217
|
-
return this.Get('
|
|
6316
|
+
get __mj_UpdatedAt() {
|
|
6317
|
+
return this.Get('__mj_UpdatedAt');
|
|
6218
6318
|
}
|
|
6219
6319
|
};
|
|
6220
6320
|
exports.RowLevelSecurityFilterEntity = RowLevelSecurityFilterEntity;
|
|
@@ -6519,27 +6619,26 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
|
|
|
6519
6619
|
this.Set('Description', value);
|
|
6520
6620
|
}
|
|
6521
6621
|
/**
|
|
6522
|
-
* * Field Name:
|
|
6523
|
-
* * Display Name:
|
|
6524
|
-
* * SQL Data Type:
|
|
6525
|
-
* * Default Value: getdate()
|
|
6622
|
+
* * Field Name: __mj_CreatedAt
|
|
6623
|
+
* * Display Name: __mj _Created At
|
|
6624
|
+
* * SQL Data Type: datetimeoffset
|
|
6526
6625
|
*/
|
|
6527
|
-
get
|
|
6528
|
-
return this.Get('
|
|
6626
|
+
get __mj_CreatedAt() {
|
|
6627
|
+
return this.Get('__mj_CreatedAt');
|
|
6529
6628
|
}
|
|
6530
6629
|
/**
|
|
6531
|
-
* * Field Name:
|
|
6532
|
-
* * Display Name:
|
|
6533
|
-
* * SQL Data Type:
|
|
6534
|
-
* * Default Value: getdate()
|
|
6630
|
+
* * Field Name: __mj_UpdatedAt
|
|
6631
|
+
* * Display Name: __mj _Updated At
|
|
6632
|
+
* * SQL Data Type: datetimeoffset
|
|
6535
6633
|
*/
|
|
6536
|
-
get
|
|
6537
|
-
return this.Get('
|
|
6634
|
+
get __mj_UpdatedAt() {
|
|
6635
|
+
return this.Get('__mj_UpdatedAt');
|
|
6538
6636
|
}
|
|
6539
6637
|
/**
|
|
6540
6638
|
* * Field Name: Parent
|
|
6541
6639
|
* * Display Name: Parent
|
|
6542
6640
|
* * SQL Data Type: nvarchar(100)
|
|
6641
|
+
* * Default Value: getutcdate()
|
|
6543
6642
|
*/
|
|
6544
6643
|
get Parent() {
|
|
6545
6644
|
return this.Get('Parent');
|
|
@@ -6773,27 +6872,26 @@ let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
|
|
|
6773
6872
|
this.Set('AuthorizationName', value);
|
|
6774
6873
|
}
|
|
6775
6874
|
/**
|
|
6776
|
-
* * Field Name:
|
|
6777
|
-
* * Display Name:
|
|
6778
|
-
* * SQL Data Type:
|
|
6779
|
-
* * Default Value: getdate()
|
|
6875
|
+
* * Field Name: __mj_CreatedAt
|
|
6876
|
+
* * Display Name: __mj _Created At
|
|
6877
|
+
* * SQL Data Type: datetimeoffset
|
|
6780
6878
|
*/
|
|
6781
|
-
get
|
|
6782
|
-
return this.Get('
|
|
6879
|
+
get __mj_CreatedAt() {
|
|
6880
|
+
return this.Get('__mj_CreatedAt');
|
|
6783
6881
|
}
|
|
6784
6882
|
/**
|
|
6785
|
-
* * Field Name:
|
|
6786
|
-
* * Display Name:
|
|
6787
|
-
* * SQL Data Type:
|
|
6788
|
-
* * Default Value: getdate()
|
|
6883
|
+
* * Field Name: __mj_UpdatedAt
|
|
6884
|
+
* * Display Name: __mj _Updated At
|
|
6885
|
+
* * SQL Data Type: datetimeoffset
|
|
6789
6886
|
*/
|
|
6790
|
-
get
|
|
6791
|
-
return this.Get('
|
|
6887
|
+
get __mj_UpdatedAt() {
|
|
6888
|
+
return this.Get('__mj_UpdatedAt');
|
|
6792
6889
|
}
|
|
6793
6890
|
/**
|
|
6794
6891
|
* * Field Name: Parent
|
|
6795
6892
|
* * Display Name: Parent
|
|
6796
6893
|
* * SQL Data Type: nvarchar(50)
|
|
6894
|
+
* * Default Value: getutcdate()
|
|
6797
6895
|
*/
|
|
6798
6896
|
get Parent() {
|
|
6799
6897
|
return this.Get('Parent');
|
|
@@ -6831,17 +6929,6 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
|
|
|
6831
6929
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
6832
6930
|
}
|
|
6833
6931
|
/**
|
|
6834
|
-
* Entity Field Values - AllowCreateAPI and AllowUpdateAPI are both set to 0 in the database. Save is not allowed, so this method is generated to override the base class method and throw an error. To enable save for this entity, set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
6835
|
-
* @public
|
|
6836
|
-
* @method
|
|
6837
|
-
* @override
|
|
6838
|
-
* @memberof EntityFieldValueEntity
|
|
6839
|
-
* @throws {Error} - Save is not allowed for Entity Field Values, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.
|
|
6840
|
-
*/
|
|
6841
|
-
async Save(options) {
|
|
6842
|
-
throw new Error('Save is not allowed for Entity Field Values, to enable it set AllowCreateAPI and/or AllowUpdateAPI to 1 in the database.');
|
|
6843
|
-
}
|
|
6844
|
-
/**
|
|
6845
6932
|
* Entity Field Values - 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.
|
|
6846
6933
|
* @public
|
|
6847
6934
|
* @method
|
|
@@ -6929,27 +7016,26 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
|
|
|
6929
7016
|
this.Set('Description', value);
|
|
6930
7017
|
}
|
|
6931
7018
|
/**
|
|
6932
|
-
* * Field Name:
|
|
6933
|
-
* * Display Name:
|
|
6934
|
-
* * SQL Data Type:
|
|
6935
|
-
* * Default Value: getdate()
|
|
7019
|
+
* * Field Name: __mj_CreatedAt
|
|
7020
|
+
* * Display Name: __mj _Created At
|
|
7021
|
+
* * SQL Data Type: datetimeoffset
|
|
6936
7022
|
*/
|
|
6937
|
-
get
|
|
6938
|
-
return this.Get('
|
|
7023
|
+
get __mj_CreatedAt() {
|
|
7024
|
+
return this.Get('__mj_CreatedAt');
|
|
6939
7025
|
}
|
|
6940
7026
|
/**
|
|
6941
|
-
* * Field Name:
|
|
6942
|
-
* * Display Name:
|
|
6943
|
-
* * SQL Data Type:
|
|
6944
|
-
* * Default Value: getdate()
|
|
7027
|
+
* * Field Name: __mj_UpdatedAt
|
|
7028
|
+
* * Display Name: __mj _Updated At
|
|
7029
|
+
* * SQL Data Type: datetimeoffset
|
|
6945
7030
|
*/
|
|
6946
|
-
get
|
|
6947
|
-
return this.Get('
|
|
7031
|
+
get __mj_UpdatedAt() {
|
|
7032
|
+
return this.Get('__mj_UpdatedAt');
|
|
6948
7033
|
}
|
|
6949
7034
|
/**
|
|
6950
7035
|
* * Field Name: EntityField
|
|
6951
7036
|
* * Display Name: Entity Field
|
|
6952
7037
|
* * SQL Data Type: nvarchar(255)
|
|
7038
|
+
* * Default Value: getutcdate()
|
|
6953
7039
|
*/
|
|
6954
7040
|
get EntityField() {
|
|
6955
7041
|
return this.Get('EntityField');
|
|
@@ -6958,6 +7044,7 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
|
|
|
6958
7044
|
* * Field Name: Entity
|
|
6959
7045
|
* * Display Name: Entity
|
|
6960
7046
|
* * SQL Data Type: nvarchar(255)
|
|
7047
|
+
* * Default Value: getutcdate()
|
|
6961
7048
|
*/
|
|
6962
7049
|
get Entity() {
|
|
6963
7050
|
return this.Get('Entity');
|
|
@@ -7556,6 +7643,24 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
|
|
|
7556
7643
|
this.Set('Comments', value);
|
|
7557
7644
|
}
|
|
7558
7645
|
/**
|
|
7646
|
+
* * Field Name: __mj_CreatedAt
|
|
7647
|
+
* * Display Name: __mj _Created At
|
|
7648
|
+
* * SQL Data Type: datetimeoffset
|
|
7649
|
+
* * Default Value: getutcdate()
|
|
7650
|
+
*/
|
|
7651
|
+
get __mj_CreatedAt() {
|
|
7652
|
+
return this.Get('__mj_CreatedAt');
|
|
7653
|
+
}
|
|
7654
|
+
/**
|
|
7655
|
+
* * Field Name: __mj_UpdatedAt
|
|
7656
|
+
* * Display Name: __mj _Updated At
|
|
7657
|
+
* * SQL Data Type: datetimeoffset
|
|
7658
|
+
* * Default Value: getutcdate()
|
|
7659
|
+
*/
|
|
7660
|
+
get __mj_UpdatedAt() {
|
|
7661
|
+
return this.Get('__mj_UpdatedAt');
|
|
7662
|
+
}
|
|
7663
|
+
/**
|
|
7559
7664
|
* * Field Name: Entity
|
|
7560
7665
|
* * Display Name: Entity
|
|
7561
7666
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -9108,27 +9213,26 @@ let ResourceTypeEntity = class ResourceTypeEntity extends core_1.BaseEntity {
|
|
|
9108
9213
|
this.Set('EntityID', value);
|
|
9109
9214
|
}
|
|
9110
9215
|
/**
|
|
9111
|
-
* * Field Name:
|
|
9112
|
-
* * Display Name:
|
|
9113
|
-
* * SQL Data Type:
|
|
9114
|
-
* * Default Value: getdate()
|
|
9216
|
+
* * Field Name: __mj_CreatedAt
|
|
9217
|
+
* * Display Name: __mj _Created At
|
|
9218
|
+
* * SQL Data Type: datetimeoffset
|
|
9115
9219
|
*/
|
|
9116
|
-
get
|
|
9117
|
-
return this.Get('
|
|
9220
|
+
get __mj_CreatedAt() {
|
|
9221
|
+
return this.Get('__mj_CreatedAt');
|
|
9118
9222
|
}
|
|
9119
9223
|
/**
|
|
9120
|
-
* * Field Name:
|
|
9121
|
-
* * Display Name:
|
|
9122
|
-
* * SQL Data Type:
|
|
9123
|
-
* * Default Value: getdate()
|
|
9224
|
+
* * Field Name: __mj_UpdatedAt
|
|
9225
|
+
* * Display Name: __mj _Updated At
|
|
9226
|
+
* * SQL Data Type: datetimeoffset
|
|
9124
9227
|
*/
|
|
9125
|
-
get
|
|
9126
|
-
return this.Get('
|
|
9228
|
+
get __mj_UpdatedAt() {
|
|
9229
|
+
return this.Get('__mj_UpdatedAt');
|
|
9127
9230
|
}
|
|
9128
9231
|
/**
|
|
9129
9232
|
* * Field Name: Entity
|
|
9130
9233
|
* * Display Name: Entity
|
|
9131
9234
|
* * SQL Data Type: nvarchar(255)
|
|
9235
|
+
* * Default Value: getutcdate()
|
|
9132
9236
|
*/
|
|
9133
9237
|
get Entity() {
|
|
9134
9238
|
return this.Get('Entity');
|
|
@@ -11109,27 +11213,26 @@ let QueryFieldEntity = class QueryFieldEntity extends core_1.BaseEntity {
|
|
|
11109
11213
|
this.Set('SummaryDescription', value);
|
|
11110
11214
|
}
|
|
11111
11215
|
/**
|
|
11112
|
-
* * Field Name:
|
|
11113
|
-
* * Display Name:
|
|
11114
|
-
* * SQL Data Type:
|
|
11115
|
-
* * Default Value: getdate()
|
|
11216
|
+
* * Field Name: __mj_CreatedAt
|
|
11217
|
+
* * Display Name: __mj _Created At
|
|
11218
|
+
* * SQL Data Type: datetimeoffset
|
|
11116
11219
|
*/
|
|
11117
|
-
get
|
|
11118
|
-
return this.Get('
|
|
11220
|
+
get __mj_CreatedAt() {
|
|
11221
|
+
return this.Get('__mj_CreatedAt');
|
|
11119
11222
|
}
|
|
11120
11223
|
/**
|
|
11121
|
-
* * Field Name:
|
|
11122
|
-
* * Display Name:
|
|
11123
|
-
* * SQL Data Type:
|
|
11124
|
-
* * Default Value: getdate()
|
|
11224
|
+
* * Field Name: __mj_UpdatedAt
|
|
11225
|
+
* * Display Name: __mj _Updated At
|
|
11226
|
+
* * SQL Data Type: datetimeoffset
|
|
11125
11227
|
*/
|
|
11126
|
-
get
|
|
11127
|
-
return this.Get('
|
|
11228
|
+
get __mj_UpdatedAt() {
|
|
11229
|
+
return this.Get('__mj_UpdatedAt');
|
|
11128
11230
|
}
|
|
11129
11231
|
/**
|
|
11130
11232
|
* * Field Name: Query
|
|
11131
11233
|
* * Display Name: Query
|
|
11132
11234
|
* * SQL Data Type: nvarchar(255)
|
|
11235
|
+
* * Default Value: getutcdate()
|
|
11133
11236
|
*/
|
|
11134
11237
|
get Query() {
|
|
11135
11238
|
return this.Get('Query');
|
|
@@ -11138,6 +11241,7 @@ let QueryFieldEntity = class QueryFieldEntity extends core_1.BaseEntity {
|
|
|
11138
11241
|
* * Field Name: SourceEntity
|
|
11139
11242
|
* * Display Name: Source Entity
|
|
11140
11243
|
* * SQL Data Type: nvarchar(255)
|
|
11244
|
+
* * Default Value: getutcdate()
|
|
11141
11245
|
*/
|
|
11142
11246
|
get SourceEntity() {
|
|
11143
11247
|
return this.Get('SourceEntity');
|
|
@@ -11217,24 +11321,6 @@ let QueryCategoryEntity = class QueryCategoryEntity extends core_1.BaseEntity {
|
|
|
11217
11321
|
this.Set('Description', value);
|
|
11218
11322
|
}
|
|
11219
11323
|
/**
|
|
11220
|
-
* * Field Name: CreatedAt
|
|
11221
|
-
* * Display Name: Created At
|
|
11222
|
-
* * SQL Data Type: datetime
|
|
11223
|
-
* * Default Value: getdate()
|
|
11224
|
-
*/
|
|
11225
|
-
get CreatedAt() {
|
|
11226
|
-
return this.Get('CreatedAt');
|
|
11227
|
-
}
|
|
11228
|
-
/**
|
|
11229
|
-
* * Field Name: UpdatedAt
|
|
11230
|
-
* * Display Name: Updated At
|
|
11231
|
-
* * SQL Data Type: datetime
|
|
11232
|
-
* * Default Value: getdate()
|
|
11233
|
-
*/
|
|
11234
|
-
get UpdatedAt() {
|
|
11235
|
-
return this.Get('UpdatedAt');
|
|
11236
|
-
}
|
|
11237
|
-
/**
|
|
11238
11324
|
* * Field Name: UserID
|
|
11239
11325
|
* * Display Name: User ID
|
|
11240
11326
|
* * SQL Data Type: int
|
|
@@ -11247,9 +11333,26 @@ let QueryCategoryEntity = class QueryCategoryEntity extends core_1.BaseEntity {
|
|
|
11247
11333
|
this.Set('UserID', value);
|
|
11248
11334
|
}
|
|
11249
11335
|
/**
|
|
11336
|
+
* * Field Name: __mj_CreatedAt
|
|
11337
|
+
* * Display Name: __mj _Created At
|
|
11338
|
+
* * SQL Data Type: datetimeoffset
|
|
11339
|
+
*/
|
|
11340
|
+
get __mj_CreatedAt() {
|
|
11341
|
+
return this.Get('__mj_CreatedAt');
|
|
11342
|
+
}
|
|
11343
|
+
/**
|
|
11344
|
+
* * Field Name: __mj_UpdatedAt
|
|
11345
|
+
* * Display Name: __mj _Updated At
|
|
11346
|
+
* * SQL Data Type: datetimeoffset
|
|
11347
|
+
*/
|
|
11348
|
+
get __mj_UpdatedAt() {
|
|
11349
|
+
return this.Get('__mj_UpdatedAt');
|
|
11350
|
+
}
|
|
11351
|
+
/**
|
|
11250
11352
|
* * Field Name: Parent
|
|
11251
11353
|
* * Display Name: Parent
|
|
11252
11354
|
* * SQL Data Type: nvarchar(50)
|
|
11355
|
+
* * Default Value: getutcdate()
|
|
11253
11356
|
*/
|
|
11254
11357
|
get Parent() {
|
|
11255
11358
|
return this.Get('Parent');
|
|
@@ -11258,6 +11361,7 @@ let QueryCategoryEntity = class QueryCategoryEntity extends core_1.BaseEntity {
|
|
|
11258
11361
|
* * Field Name: User
|
|
11259
11362
|
* * Display Name: User
|
|
11260
11363
|
* * SQL Data Type: nvarchar(100)
|
|
11364
|
+
* * Default Value: getutcdate()
|
|
11261
11365
|
*/
|
|
11262
11366
|
get User() {
|
|
11263
11367
|
return this.Get('User');
|
|
@@ -11447,27 +11551,26 @@ let QueryEntity = class QueryEntity extends core_1.BaseEntity {
|
|
|
11447
11551
|
this.Set('ExecutionCostRank', value);
|
|
11448
11552
|
}
|
|
11449
11553
|
/**
|
|
11450
|
-
* * Field Name:
|
|
11451
|
-
* * Display Name:
|
|
11452
|
-
* * SQL Data Type:
|
|
11453
|
-
* * Default Value: getdate()
|
|
11554
|
+
* * Field Name: __mj_CreatedAt
|
|
11555
|
+
* * Display Name: __mj _Created At
|
|
11556
|
+
* * SQL Data Type: datetimeoffset
|
|
11454
11557
|
*/
|
|
11455
|
-
get
|
|
11456
|
-
return this.Get('
|
|
11558
|
+
get __mj_CreatedAt() {
|
|
11559
|
+
return this.Get('__mj_CreatedAt');
|
|
11457
11560
|
}
|
|
11458
11561
|
/**
|
|
11459
|
-
* * Field Name:
|
|
11460
|
-
* * Display Name:
|
|
11461
|
-
* * SQL Data Type:
|
|
11462
|
-
* * Default Value: getdate()
|
|
11562
|
+
* * Field Name: __mj_UpdatedAt
|
|
11563
|
+
* * Display Name: __mj _Updated At
|
|
11564
|
+
* * SQL Data Type: datetimeoffset
|
|
11463
11565
|
*/
|
|
11464
|
-
get
|
|
11465
|
-
return this.Get('
|
|
11566
|
+
get __mj_UpdatedAt() {
|
|
11567
|
+
return this.Get('__mj_UpdatedAt');
|
|
11466
11568
|
}
|
|
11467
11569
|
/**
|
|
11468
11570
|
* * Field Name: Category
|
|
11469
11571
|
* * Display Name: Category
|
|
11470
11572
|
* * SQL Data Type: nvarchar(50)
|
|
11573
|
+
* * Default Value: getutcdate()
|
|
11471
11574
|
*/
|
|
11472
11575
|
get Category() {
|
|
11473
11576
|
return this.Get('Category');
|
|
@@ -11548,22 +11651,20 @@ let QueryPermissionEntity = class QueryPermissionEntity extends core_1.BaseEntit
|
|
|
11548
11651
|
this.Set('RoleName', value);
|
|
11549
11652
|
}
|
|
11550
11653
|
/**
|
|
11551
|
-
* * Field Name:
|
|
11552
|
-
* * Display Name:
|
|
11553
|
-
* * SQL Data Type:
|
|
11554
|
-
* * Default Value: getdate()
|
|
11654
|
+
* * Field Name: __mj_CreatedAt
|
|
11655
|
+
* * Display Name: __mj _Created At
|
|
11656
|
+
* * SQL Data Type: datetimeoffset
|
|
11555
11657
|
*/
|
|
11556
|
-
get
|
|
11557
|
-
return this.Get('
|
|
11658
|
+
get __mj_CreatedAt() {
|
|
11659
|
+
return this.Get('__mj_CreatedAt');
|
|
11558
11660
|
}
|
|
11559
11661
|
/**
|
|
11560
|
-
* * Field Name:
|
|
11561
|
-
* * Display Name:
|
|
11562
|
-
* * SQL Data Type:
|
|
11563
|
-
* * Default Value: getdate()
|
|
11662
|
+
* * Field Name: __mj_UpdatedAt
|
|
11663
|
+
* * Display Name: __mj _Updated At
|
|
11664
|
+
* * SQL Data Type: datetimeoffset
|
|
11564
11665
|
*/
|
|
11565
|
-
get
|
|
11566
|
-
return this.Get('
|
|
11666
|
+
get __mj_UpdatedAt() {
|
|
11667
|
+
return this.Get('__mj_UpdatedAt');
|
|
11567
11668
|
}
|
|
11568
11669
|
};
|
|
11569
11670
|
exports.QueryPermissionEntity = QueryPermissionEntity;
|
|
@@ -11770,22 +11871,20 @@ let EntityDocumentTypeEntity = class EntityDocumentTypeEntity extends core_1.Bas
|
|
|
11770
11871
|
this.Set('Description', value);
|
|
11771
11872
|
}
|
|
11772
11873
|
/**
|
|
11773
|
-
* * Field Name:
|
|
11774
|
-
* * Display Name:
|
|
11775
|
-
* * SQL Data Type:
|
|
11776
|
-
* * Default Value: getdate()
|
|
11874
|
+
* * Field Name: __mj_CreatedAt
|
|
11875
|
+
* * Display Name: __mj _Created At
|
|
11876
|
+
* * SQL Data Type: datetimeoffset
|
|
11777
11877
|
*/
|
|
11778
|
-
get
|
|
11779
|
-
return this.Get('
|
|
11878
|
+
get __mj_CreatedAt() {
|
|
11879
|
+
return this.Get('__mj_CreatedAt');
|
|
11780
11880
|
}
|
|
11781
11881
|
/**
|
|
11782
|
-
* * Field Name:
|
|
11783
|
-
* * Display Name:
|
|
11784
|
-
* * SQL Data Type:
|
|
11785
|
-
* * Default Value: getdate()
|
|
11882
|
+
* * Field Name: __mj_UpdatedAt
|
|
11883
|
+
* * Display Name: __mj _Updated At
|
|
11884
|
+
* * SQL Data Type: datetimeoffset
|
|
11786
11885
|
*/
|
|
11787
|
-
get
|
|
11788
|
-
return this.Get('
|
|
11886
|
+
get __mj_UpdatedAt() {
|
|
11887
|
+
return this.Get('__mj_UpdatedAt');
|
|
11789
11888
|
}
|
|
11790
11889
|
};
|
|
11791
11890
|
exports.EntityDocumentTypeEntity = EntityDocumentTypeEntity;
|
|
@@ -11891,27 +11990,26 @@ let EntityDocumentRunEntity = class EntityDocumentRunEntity extends core_1.BaseE
|
|
|
11891
11990
|
this.Set('Status', value);
|
|
11892
11991
|
}
|
|
11893
11992
|
/**
|
|
11894
|
-
* * Field Name:
|
|
11895
|
-
* * Display Name:
|
|
11896
|
-
* * SQL Data Type:
|
|
11897
|
-
* * Default Value: getdate()
|
|
11993
|
+
* * Field Name: __mj_CreatedAt
|
|
11994
|
+
* * Display Name: __mj _Created At
|
|
11995
|
+
* * SQL Data Type: datetimeoffset
|
|
11898
11996
|
*/
|
|
11899
|
-
get
|
|
11900
|
-
return this.Get('
|
|
11997
|
+
get __mj_CreatedAt() {
|
|
11998
|
+
return this.Get('__mj_CreatedAt');
|
|
11901
11999
|
}
|
|
11902
12000
|
/**
|
|
11903
|
-
* * Field Name:
|
|
11904
|
-
* * Display Name:
|
|
11905
|
-
* * SQL Data Type:
|
|
11906
|
-
* * Default Value: getdate()
|
|
12001
|
+
* * Field Name: __mj_UpdatedAt
|
|
12002
|
+
* * Display Name: __mj _Updated At
|
|
12003
|
+
* * SQL Data Type: datetimeoffset
|
|
11907
12004
|
*/
|
|
11908
|
-
get
|
|
11909
|
-
return this.Get('
|
|
12005
|
+
get __mj_UpdatedAt() {
|
|
12006
|
+
return this.Get('__mj_UpdatedAt');
|
|
11910
12007
|
}
|
|
11911
12008
|
/**
|
|
11912
12009
|
* * Field Name: EntityDocument
|
|
11913
12010
|
* * Display Name: Entity Document
|
|
11914
12011
|
* * SQL Data Type: nvarchar(250)
|
|
12012
|
+
* * Default Value: getutcdate()
|
|
11915
12013
|
*/
|
|
11916
12014
|
get EntityDocument() {
|
|
11917
12015
|
return this.Get('EntityDocument');
|
|
@@ -12159,24 +12257,6 @@ let EntityRecordDocumentEntity = class EntityRecordDocumentEntity extends core_1
|
|
|
12159
12257
|
this.Set('EntityRecordUpdatedAt', value);
|
|
12160
12258
|
}
|
|
12161
12259
|
/**
|
|
12162
|
-
* * Field Name: CreatedAt
|
|
12163
|
-
* * Display Name: Created At
|
|
12164
|
-
* * SQL Data Type: datetime
|
|
12165
|
-
* * Default Value: getdate()
|
|
12166
|
-
*/
|
|
12167
|
-
get CreatedAt() {
|
|
12168
|
-
return this.Get('CreatedAt');
|
|
12169
|
-
}
|
|
12170
|
-
/**
|
|
12171
|
-
* * Field Name: UpdatedAt
|
|
12172
|
-
* * Display Name: Updated At
|
|
12173
|
-
* * SQL Data Type: datetime
|
|
12174
|
-
* * Default Value: getdate()
|
|
12175
|
-
*/
|
|
12176
|
-
get UpdatedAt() {
|
|
12177
|
-
return this.Get('UpdatedAt');
|
|
12178
|
-
}
|
|
12179
|
-
/**
|
|
12180
12260
|
* * Field Name: EntityDocumentID
|
|
12181
12261
|
* * Display Name: Entity Document ID
|
|
12182
12262
|
* * SQL Data Type: int
|
|
@@ -12187,6 +12267,22 @@ let EntityRecordDocumentEntity = class EntityRecordDocumentEntity extends core_1
|
|
|
12187
12267
|
set EntityDocumentID(value) {
|
|
12188
12268
|
this.Set('EntityDocumentID', value);
|
|
12189
12269
|
}
|
|
12270
|
+
/**
|
|
12271
|
+
* * Field Name: __mj_CreatedAt
|
|
12272
|
+
* * Display Name: __mj _Created At
|
|
12273
|
+
* * SQL Data Type: datetimeoffset
|
|
12274
|
+
*/
|
|
12275
|
+
get __mj_CreatedAt() {
|
|
12276
|
+
return this.Get('__mj_CreatedAt');
|
|
12277
|
+
}
|
|
12278
|
+
/**
|
|
12279
|
+
* * Field Name: __mj_UpdatedAt
|
|
12280
|
+
* * Display Name: __mj _Updated At
|
|
12281
|
+
* * SQL Data Type: datetimeoffset
|
|
12282
|
+
*/
|
|
12283
|
+
get __mj_UpdatedAt() {
|
|
12284
|
+
return this.Get('__mj_UpdatedAt');
|
|
12285
|
+
}
|
|
12190
12286
|
};
|
|
12191
12287
|
exports.EntityRecordDocumentEntity = EntityRecordDocumentEntity;
|
|
12192
12288
|
exports.EntityRecordDocumentEntity = EntityRecordDocumentEntity = __decorate([
|
|
@@ -12351,27 +12447,26 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
|
|
|
12351
12447
|
this.Set('AbsoluteMatchThreshold', value);
|
|
12352
12448
|
}
|
|
12353
12449
|
/**
|
|
12354
|
-
* * Field Name:
|
|
12355
|
-
* * Display Name:
|
|
12356
|
-
* * SQL Data Type:
|
|
12357
|
-
* * Default Value: getdate()
|
|
12450
|
+
* * Field Name: __mj_CreatedAt
|
|
12451
|
+
* * Display Name: __mj _Created At
|
|
12452
|
+
* * SQL Data Type: datetimeoffset
|
|
12358
12453
|
*/
|
|
12359
|
-
get
|
|
12360
|
-
return this.Get('
|
|
12454
|
+
get __mj_CreatedAt() {
|
|
12455
|
+
return this.Get('__mj_CreatedAt');
|
|
12361
12456
|
}
|
|
12362
12457
|
/**
|
|
12363
|
-
* * Field Name:
|
|
12364
|
-
* * Display Name:
|
|
12365
|
-
* * SQL Data Type:
|
|
12366
|
-
* * Default Value: getdate()
|
|
12458
|
+
* * Field Name: __mj_UpdatedAt
|
|
12459
|
+
* * Display Name: __mj _Updated At
|
|
12460
|
+
* * SQL Data Type: datetimeoffset
|
|
12367
12461
|
*/
|
|
12368
|
-
get
|
|
12369
|
-
return this.Get('
|
|
12462
|
+
get __mj_UpdatedAt() {
|
|
12463
|
+
return this.Get('__mj_UpdatedAt');
|
|
12370
12464
|
}
|
|
12371
12465
|
/**
|
|
12372
12466
|
* * Field Name: Entity
|
|
12373
12467
|
* * Display Name: Entity
|
|
12374
12468
|
* * SQL Data Type: nvarchar(255)
|
|
12469
|
+
* * Default Value: getutcdate()
|
|
12375
12470
|
*/
|
|
12376
12471
|
get Entity() {
|
|
12377
12472
|
return this.Get('Entity');
|
|
@@ -12380,6 +12475,7 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
|
|
|
12380
12475
|
* * Field Name: Type
|
|
12381
12476
|
* * Display Name: Type
|
|
12382
12477
|
* * SQL Data Type: nvarchar(100)
|
|
12478
|
+
* * Default Value: getutcdate()
|
|
12383
12479
|
*/
|
|
12384
12480
|
get Type() {
|
|
12385
12481
|
return this.Get('Type');
|
|
@@ -14072,27 +14168,26 @@ let EntityDocumentSettingEntity = class EntityDocumentSettingEntity extends core
|
|
|
14072
14168
|
this.Set('Comments', value);
|
|
14073
14169
|
}
|
|
14074
14170
|
/**
|
|
14075
|
-
* * Field Name:
|
|
14076
|
-
* * Display Name:
|
|
14077
|
-
* * SQL Data Type:
|
|
14078
|
-
* * Default Value: getdate()
|
|
14171
|
+
* * Field Name: __mj_CreatedAt
|
|
14172
|
+
* * Display Name: __mj _Created At
|
|
14173
|
+
* * SQL Data Type: datetimeoffset
|
|
14079
14174
|
*/
|
|
14080
|
-
get
|
|
14081
|
-
return this.Get('
|
|
14175
|
+
get __mj_CreatedAt() {
|
|
14176
|
+
return this.Get('__mj_CreatedAt');
|
|
14082
14177
|
}
|
|
14083
14178
|
/**
|
|
14084
|
-
* * Field Name:
|
|
14085
|
-
* * Display Name:
|
|
14086
|
-
* * SQL Data Type:
|
|
14087
|
-
* * Default Value: getdate()
|
|
14179
|
+
* * Field Name: __mj_UpdatedAt
|
|
14180
|
+
* * Display Name: __mj _Updated At
|
|
14181
|
+
* * SQL Data Type: datetimeoffset
|
|
14088
14182
|
*/
|
|
14089
|
-
get
|
|
14090
|
-
return this.Get('
|
|
14183
|
+
get __mj_UpdatedAt() {
|
|
14184
|
+
return this.Get('__mj_UpdatedAt');
|
|
14091
14185
|
}
|
|
14092
14186
|
/**
|
|
14093
14187
|
* * Field Name: EntityDocument
|
|
14094
14188
|
* * Display Name: Entity Document
|
|
14095
14189
|
* * SQL Data Type: nvarchar(250)
|
|
14190
|
+
* * Default Value: getutcdate()
|
|
14096
14191
|
*/
|
|
14097
14192
|
get EntityDocument() {
|
|
14098
14193
|
return this.Get('EntityDocument');
|
|
@@ -14194,27 +14289,26 @@ let EntitySettingEntity = class EntitySettingEntity extends core_1.BaseEntity {
|
|
|
14194
14289
|
this.Set('Comments', value);
|
|
14195
14290
|
}
|
|
14196
14291
|
/**
|
|
14197
|
-
* * Field Name:
|
|
14198
|
-
* * Display Name:
|
|
14199
|
-
* * SQL Data Type:
|
|
14200
|
-
* * Default Value: getdate()
|
|
14292
|
+
* * Field Name: __mj_CreatedAt
|
|
14293
|
+
* * Display Name: __mj _Created At
|
|
14294
|
+
* * SQL Data Type: datetimeoffset
|
|
14201
14295
|
*/
|
|
14202
|
-
get
|
|
14203
|
-
return this.Get('
|
|
14296
|
+
get __mj_CreatedAt() {
|
|
14297
|
+
return this.Get('__mj_CreatedAt');
|
|
14204
14298
|
}
|
|
14205
14299
|
/**
|
|
14206
|
-
* * Field Name:
|
|
14207
|
-
* * Display Name:
|
|
14208
|
-
* * SQL Data Type:
|
|
14209
|
-
* * Default Value: getdate()
|
|
14300
|
+
* * Field Name: __mj_UpdatedAt
|
|
14301
|
+
* * Display Name: __mj _Updated At
|
|
14302
|
+
* * SQL Data Type: datetimeoffset
|
|
14210
14303
|
*/
|
|
14211
|
-
get
|
|
14212
|
-
return this.Get('
|
|
14304
|
+
get __mj_UpdatedAt() {
|
|
14305
|
+
return this.Get('__mj_UpdatedAt');
|
|
14213
14306
|
}
|
|
14214
14307
|
/**
|
|
14215
14308
|
* * Field Name: Entity
|
|
14216
14309
|
* * Display Name: Entity
|
|
14217
14310
|
* * SQL Data Type: nvarchar(255)
|
|
14311
|
+
* * Default Value: getutcdate()
|
|
14218
14312
|
*/
|
|
14219
14313
|
get Entity() {
|
|
14220
14314
|
return this.Get('Entity');
|
|
@@ -14738,27 +14832,26 @@ let EntityBehaviorEntity = class EntityBehaviorEntity extends core_1.BaseEntity
|
|
|
14738
14832
|
this.Set('CodeGenerated', value);
|
|
14739
14833
|
}
|
|
14740
14834
|
/**
|
|
14741
|
-
* * Field Name:
|
|
14742
|
-
* * Display Name:
|
|
14743
|
-
* * SQL Data Type:
|
|
14744
|
-
* * Default Value: getdate()
|
|
14835
|
+
* * Field Name: __mj_CreatedAt
|
|
14836
|
+
* * Display Name: __mj _Created At
|
|
14837
|
+
* * SQL Data Type: datetimeoffset
|
|
14745
14838
|
*/
|
|
14746
|
-
get
|
|
14747
|
-
return this.Get('
|
|
14839
|
+
get __mj_CreatedAt() {
|
|
14840
|
+
return this.Get('__mj_CreatedAt');
|
|
14748
14841
|
}
|
|
14749
14842
|
/**
|
|
14750
|
-
* * Field Name:
|
|
14751
|
-
* * Display Name:
|
|
14752
|
-
* * SQL Data Type:
|
|
14753
|
-
* * Default Value: getdate()
|
|
14843
|
+
* * Field Name: __mj_UpdatedAt
|
|
14844
|
+
* * Display Name: __mj _Updated At
|
|
14845
|
+
* * SQL Data Type: datetimeoffset
|
|
14754
14846
|
*/
|
|
14755
|
-
get
|
|
14756
|
-
return this.Get('
|
|
14847
|
+
get __mj_UpdatedAt() {
|
|
14848
|
+
return this.Get('__mj_UpdatedAt');
|
|
14757
14849
|
}
|
|
14758
14850
|
/**
|
|
14759
14851
|
* * Field Name: Entity
|
|
14760
14852
|
* * Display Name: Entity
|
|
14761
14853
|
* * SQL Data Type: nvarchar(255)
|
|
14854
|
+
* * Default Value: getutcdate()
|
|
14762
14855
|
*/
|
|
14763
14856
|
get Entity() {
|
|
14764
14857
|
return this.Get('Entity');
|
|
@@ -14828,21 +14921,20 @@ let EntityBehaviorTypeEntity = class EntityBehaviorTypeEntity extends core_1.Bas
|
|
|
14828
14921
|
this.Set('Description', value);
|
|
14829
14922
|
}
|
|
14830
14923
|
/**
|
|
14831
|
-
* * Field Name:
|
|
14832
|
-
* * Display Name:
|
|
14833
|
-
* * SQL Data Type:
|
|
14924
|
+
* * Field Name: __mj_CreatedAt
|
|
14925
|
+
* * Display Name: __mj _Created At
|
|
14926
|
+
* * SQL Data Type: datetimeoffset
|
|
14834
14927
|
*/
|
|
14835
|
-
get
|
|
14836
|
-
return this.Get('
|
|
14928
|
+
get __mj_CreatedAt() {
|
|
14929
|
+
return this.Get('__mj_CreatedAt');
|
|
14837
14930
|
}
|
|
14838
14931
|
/**
|
|
14839
|
-
* * Field Name:
|
|
14840
|
-
* * Display Name:
|
|
14841
|
-
* * SQL Data Type:
|
|
14842
|
-
* * Default Value: getdate()
|
|
14932
|
+
* * Field Name: __mj_UpdatedAt
|
|
14933
|
+
* * Display Name: __mj _Updated At
|
|
14934
|
+
* * SQL Data Type: datetimeoffset
|
|
14843
14935
|
*/
|
|
14844
|
-
get
|
|
14845
|
-
return this.Get('
|
|
14936
|
+
get __mj_UpdatedAt() {
|
|
14937
|
+
return this.Get('__mj_UpdatedAt');
|
|
14846
14938
|
}
|
|
14847
14939
|
};
|
|
14848
14940
|
exports.EntityBehaviorTypeEntity = EntityBehaviorTypeEntity;
|
|
@@ -14930,22 +15022,20 @@ let ApplicationSettingEntity = class ApplicationSettingEntity extends core_1.Bas
|
|
|
14930
15022
|
this.Set('Comments', value);
|
|
14931
15023
|
}
|
|
14932
15024
|
/**
|
|
14933
|
-
* * Field Name:
|
|
14934
|
-
* * Display Name:
|
|
14935
|
-
* * SQL Data Type:
|
|
14936
|
-
* * Default Value: getdate()
|
|
15025
|
+
* * Field Name: __mj_CreatedAt
|
|
15026
|
+
* * Display Name: __mj _Created At
|
|
15027
|
+
* * SQL Data Type: datetimeoffset
|
|
14937
15028
|
*/
|
|
14938
|
-
get
|
|
14939
|
-
return this.Get('
|
|
15029
|
+
get __mj_CreatedAt() {
|
|
15030
|
+
return this.Get('__mj_CreatedAt');
|
|
14940
15031
|
}
|
|
14941
15032
|
/**
|
|
14942
|
-
* * Field Name:
|
|
14943
|
-
* * Display Name:
|
|
14944
|
-
* * SQL Data Type:
|
|
14945
|
-
* * Default Value: getdate()
|
|
15033
|
+
* * Field Name: __mj_UpdatedAt
|
|
15034
|
+
* * Display Name: __mj _Updated At
|
|
15035
|
+
* * SQL Data Type: datetimeoffset
|
|
14946
15036
|
*/
|
|
14947
|
-
get
|
|
14948
|
-
return this.Get('
|
|
15037
|
+
get __mj_UpdatedAt() {
|
|
15038
|
+
return this.Get('__mj_UpdatedAt');
|
|
14949
15039
|
}
|
|
14950
15040
|
};
|
|
14951
15041
|
exports.ApplicationSettingEntity = ApplicationSettingEntity;
|
|
@@ -15044,27 +15134,26 @@ let ActionCategoryEntity = class ActionCategoryEntity extends core_1.BaseEntity
|
|
|
15044
15134
|
this.Set('Status', value);
|
|
15045
15135
|
}
|
|
15046
15136
|
/**
|
|
15047
|
-
* * Field Name:
|
|
15048
|
-
* * Display Name:
|
|
15049
|
-
* * SQL Data Type:
|
|
15050
|
-
* * Default Value: getdate()
|
|
15137
|
+
* * Field Name: __mj_CreatedAt
|
|
15138
|
+
* * Display Name: __mj _Created At
|
|
15139
|
+
* * SQL Data Type: datetimeoffset
|
|
15051
15140
|
*/
|
|
15052
|
-
get
|
|
15053
|
-
return this.Get('
|
|
15141
|
+
get __mj_CreatedAt() {
|
|
15142
|
+
return this.Get('__mj_CreatedAt');
|
|
15054
15143
|
}
|
|
15055
15144
|
/**
|
|
15056
|
-
* * Field Name:
|
|
15057
|
-
* * Display Name:
|
|
15058
|
-
* * SQL Data Type:
|
|
15059
|
-
* * Default Value: getdate()
|
|
15145
|
+
* * Field Name: __mj_UpdatedAt
|
|
15146
|
+
* * Display Name: __mj _Updated At
|
|
15147
|
+
* * SQL Data Type: datetimeoffset
|
|
15060
15148
|
*/
|
|
15061
|
-
get
|
|
15062
|
-
return this.Get('
|
|
15149
|
+
get __mj_UpdatedAt() {
|
|
15150
|
+
return this.Get('__mj_UpdatedAt');
|
|
15063
15151
|
}
|
|
15064
15152
|
/**
|
|
15065
15153
|
* * Field Name: Parent
|
|
15066
15154
|
* * Display Name: Parent
|
|
15067
15155
|
* * SQL Data Type: nvarchar(255)
|
|
15156
|
+
* * Default Value: getutcdate()
|
|
15068
15157
|
*/
|
|
15069
15158
|
get Parent() {
|
|
15070
15159
|
return this.Get('Parent');
|
|
@@ -15153,27 +15242,26 @@ let EntityActionEntity = class EntityActionEntity extends core_1.BaseEntity {
|
|
|
15153
15242
|
this.Set('Status', value);
|
|
15154
15243
|
}
|
|
15155
15244
|
/**
|
|
15156
|
-
* * Field Name:
|
|
15157
|
-
* * Display Name:
|
|
15158
|
-
* * SQL Data Type:
|
|
15159
|
-
* * Default Value: getdate()
|
|
15245
|
+
* * Field Name: __mj_CreatedAt
|
|
15246
|
+
* * Display Name: __mj _Created At
|
|
15247
|
+
* * SQL Data Type: datetimeoffset
|
|
15160
15248
|
*/
|
|
15161
|
-
get
|
|
15162
|
-
return this.Get('
|
|
15249
|
+
get __mj_CreatedAt() {
|
|
15250
|
+
return this.Get('__mj_CreatedAt');
|
|
15163
15251
|
}
|
|
15164
15252
|
/**
|
|
15165
|
-
* * Field Name:
|
|
15166
|
-
* * Display Name:
|
|
15167
|
-
* * SQL Data Type:
|
|
15168
|
-
* * Default Value: getdate()
|
|
15253
|
+
* * Field Name: __mj_UpdatedAt
|
|
15254
|
+
* * Display Name: __mj _Updated At
|
|
15255
|
+
* * SQL Data Type: datetimeoffset
|
|
15169
15256
|
*/
|
|
15170
|
-
get
|
|
15171
|
-
return this.Get('
|
|
15257
|
+
get __mj_UpdatedAt() {
|
|
15258
|
+
return this.Get('__mj_UpdatedAt');
|
|
15172
15259
|
}
|
|
15173
15260
|
/**
|
|
15174
15261
|
* * Field Name: Entity
|
|
15175
15262
|
* * Display Name: Entity
|
|
15176
15263
|
* * SQL Data Type: nvarchar(255)
|
|
15264
|
+
* * Default Value: getutcdate()
|
|
15177
15265
|
*/
|
|
15178
15266
|
get Entity() {
|
|
15179
15267
|
return this.Get('Entity');
|
|
@@ -15182,6 +15270,7 @@ let EntityActionEntity = class EntityActionEntity extends core_1.BaseEntity {
|
|
|
15182
15270
|
* * Field Name: Action
|
|
15183
15271
|
* * Display Name: Action
|
|
15184
15272
|
* * SQL Data Type: nvarchar(425)
|
|
15273
|
+
* * Default Value: getutcdate()
|
|
15185
15274
|
*/
|
|
15186
15275
|
get Action() {
|
|
15187
15276
|
return this.Get('Action');
|
|
@@ -15270,27 +15359,26 @@ let EntityActionInvocationEntity = class EntityActionInvocationEntity extends co
|
|
|
15270
15359
|
this.Set('Status', value);
|
|
15271
15360
|
}
|
|
15272
15361
|
/**
|
|
15273
|
-
* * Field Name:
|
|
15274
|
-
* * Display Name:
|
|
15275
|
-
* * SQL Data Type:
|
|
15276
|
-
* * Default Value: getdate()
|
|
15362
|
+
* * Field Name: __mj_CreatedAt
|
|
15363
|
+
* * Display Name: __mj _Created At
|
|
15364
|
+
* * SQL Data Type: datetimeoffset
|
|
15277
15365
|
*/
|
|
15278
|
-
get
|
|
15279
|
-
return this.Get('
|
|
15366
|
+
get __mj_CreatedAt() {
|
|
15367
|
+
return this.Get('__mj_CreatedAt');
|
|
15280
15368
|
}
|
|
15281
15369
|
/**
|
|
15282
|
-
* * Field Name:
|
|
15283
|
-
* * Display Name:
|
|
15284
|
-
* * SQL Data Type:
|
|
15285
|
-
* * Default Value: getdate()
|
|
15370
|
+
* * Field Name: __mj_UpdatedAt
|
|
15371
|
+
* * Display Name: __mj _Updated At
|
|
15372
|
+
* * SQL Data Type: datetimeoffset
|
|
15286
15373
|
*/
|
|
15287
|
-
get
|
|
15288
|
-
return this.Get('
|
|
15374
|
+
get __mj_UpdatedAt() {
|
|
15375
|
+
return this.Get('__mj_UpdatedAt');
|
|
15289
15376
|
}
|
|
15290
15377
|
/**
|
|
15291
15378
|
* * Field Name: InvocationType
|
|
15292
15379
|
* * Display Name: Invocation Type
|
|
15293
15380
|
* * SQL Data Type: nvarchar(255)
|
|
15381
|
+
* * Default Value: getutcdate()
|
|
15294
15382
|
*/
|
|
15295
15383
|
get InvocationType() {
|
|
15296
15384
|
return this.Get('InvocationType');
|
|
@@ -15475,22 +15563,20 @@ let EntityActionInvocationTypeEntity = class EntityActionInvocationTypeEntity ex
|
|
|
15475
15563
|
this.Set('DisplaySequence', value);
|
|
15476
15564
|
}
|
|
15477
15565
|
/**
|
|
15478
|
-
* * Field Name:
|
|
15479
|
-
* * Display Name:
|
|
15480
|
-
* * SQL Data Type:
|
|
15481
|
-
* * Default Value: getdate()
|
|
15566
|
+
* * Field Name: __mj_CreatedAt
|
|
15567
|
+
* * Display Name: __mj _Created At
|
|
15568
|
+
* * SQL Data Type: datetimeoffset
|
|
15482
15569
|
*/
|
|
15483
|
-
get
|
|
15484
|
-
return this.Get('
|
|
15570
|
+
get __mj_CreatedAt() {
|
|
15571
|
+
return this.Get('__mj_CreatedAt');
|
|
15485
15572
|
}
|
|
15486
15573
|
/**
|
|
15487
|
-
* * Field Name:
|
|
15488
|
-
* * Display Name:
|
|
15489
|
-
* * SQL Data Type:
|
|
15490
|
-
* * Default Value: getdate()
|
|
15574
|
+
* * Field Name: __mj_UpdatedAt
|
|
15575
|
+
* * Display Name: __mj _Updated At
|
|
15576
|
+
* * SQL Data Type: datetimeoffset
|
|
15491
15577
|
*/
|
|
15492
|
-
get
|
|
15493
|
-
return this.Get('
|
|
15578
|
+
get __mj_UpdatedAt() {
|
|
15579
|
+
return this.Get('__mj_UpdatedAt');
|
|
15494
15580
|
}
|
|
15495
15581
|
};
|
|
15496
15582
|
exports.EntityActionInvocationTypeEntity = EntityActionInvocationTypeEntity;
|
|
@@ -15701,27 +15787,26 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
15701
15787
|
this.Set('Status', value);
|
|
15702
15788
|
}
|
|
15703
15789
|
/**
|
|
15704
|
-
* * Field Name:
|
|
15705
|
-
* * Display Name:
|
|
15706
|
-
* * SQL Data Type:
|
|
15707
|
-
* * Default Value: getdate()
|
|
15790
|
+
* * Field Name: __mj_CreatedAt
|
|
15791
|
+
* * Display Name: __mj _Created At
|
|
15792
|
+
* * SQL Data Type: datetimeoffset
|
|
15708
15793
|
*/
|
|
15709
|
-
get
|
|
15710
|
-
return this.Get('
|
|
15794
|
+
get __mj_CreatedAt() {
|
|
15795
|
+
return this.Get('__mj_CreatedAt');
|
|
15711
15796
|
}
|
|
15712
15797
|
/**
|
|
15713
|
-
* * Field Name:
|
|
15714
|
-
* * Display Name:
|
|
15715
|
-
* * SQL Data Type:
|
|
15716
|
-
* * Default Value: getdate()
|
|
15798
|
+
* * Field Name: __mj_UpdatedAt
|
|
15799
|
+
* * Display Name: __mj _Updated At
|
|
15800
|
+
* * SQL Data Type: datetimeoffset
|
|
15717
15801
|
*/
|
|
15718
|
-
get
|
|
15719
|
-
return this.Get('
|
|
15802
|
+
get __mj_UpdatedAt() {
|
|
15803
|
+
return this.Get('__mj_UpdatedAt');
|
|
15720
15804
|
}
|
|
15721
15805
|
/**
|
|
15722
15806
|
* * Field Name: Category
|
|
15723
15807
|
* * Display Name: Category
|
|
15724
15808
|
* * SQL Data Type: nvarchar(255)
|
|
15809
|
+
* * Default Value: getutcdate()
|
|
15725
15810
|
*/
|
|
15726
15811
|
get Category() {
|
|
15727
15812
|
return this.Get('Category');
|
|
@@ -15730,6 +15815,7 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
15730
15815
|
* * Field Name: CodeApprovedByUser
|
|
15731
15816
|
* * Display Name: Code Approved By User
|
|
15732
15817
|
* * SQL Data Type: nvarchar(100)
|
|
15818
|
+
* * Default Value: getutcdate()
|
|
15733
15819
|
*/
|
|
15734
15820
|
get CodeApprovedByUser() {
|
|
15735
15821
|
return this.Get('CodeApprovedByUser');
|
|
@@ -15830,22 +15916,20 @@ let EntityActionFilterEntity = class EntityActionFilterEntity extends core_1.Bas
|
|
|
15830
15916
|
this.Set('Status', value);
|
|
15831
15917
|
}
|
|
15832
15918
|
/**
|
|
15833
|
-
* * Field Name:
|
|
15834
|
-
* * Display Name:
|
|
15835
|
-
* * SQL Data Type:
|
|
15836
|
-
* * Default Value: getdate()
|
|
15919
|
+
* * Field Name: __mj_CreatedAt
|
|
15920
|
+
* * Display Name: __mj _Created At
|
|
15921
|
+
* * SQL Data Type: datetimeoffset
|
|
15837
15922
|
*/
|
|
15838
|
-
get
|
|
15839
|
-
return this.Get('
|
|
15923
|
+
get __mj_CreatedAt() {
|
|
15924
|
+
return this.Get('__mj_CreatedAt');
|
|
15840
15925
|
}
|
|
15841
15926
|
/**
|
|
15842
|
-
* * Field Name:
|
|
15843
|
-
* * Display Name:
|
|
15844
|
-
* * SQL Data Type:
|
|
15845
|
-
* * Default Value: getdate()
|
|
15927
|
+
* * Field Name: __mj_UpdatedAt
|
|
15928
|
+
* * Display Name: __mj _Updated At
|
|
15929
|
+
* * SQL Data Type: datetimeoffset
|
|
15846
15930
|
*/
|
|
15847
|
-
get
|
|
15848
|
-
return this.Get('
|
|
15931
|
+
get __mj_UpdatedAt() {
|
|
15932
|
+
return this.Get('__mj_UpdatedAt');
|
|
15849
15933
|
}
|
|
15850
15934
|
};
|
|
15851
15935
|
exports.EntityActionFilterEntity = EntityActionFilterEntity;
|
|
@@ -15933,22 +16017,20 @@ let ActionFilterEntity = class ActionFilterEntity extends core_1.BaseEntity {
|
|
|
15933
16017
|
this.Set('CodeExplanation', value);
|
|
15934
16018
|
}
|
|
15935
16019
|
/**
|
|
15936
|
-
* * Field Name:
|
|
15937
|
-
* * Display Name:
|
|
15938
|
-
* * SQL Data Type:
|
|
15939
|
-
* * Default Value: getdate()
|
|
16020
|
+
* * Field Name: __mj_CreatedAt
|
|
16021
|
+
* * Display Name: __mj _Created At
|
|
16022
|
+
* * SQL Data Type: datetimeoffset
|
|
15940
16023
|
*/
|
|
15941
|
-
get
|
|
15942
|
-
return this.Get('
|
|
16024
|
+
get __mj_CreatedAt() {
|
|
16025
|
+
return this.Get('__mj_CreatedAt');
|
|
15943
16026
|
}
|
|
15944
16027
|
/**
|
|
15945
|
-
* * Field Name:
|
|
15946
|
-
* * Display Name:
|
|
15947
|
-
* * SQL Data Type:
|
|
15948
|
-
* * Default Value: getdate()
|
|
16028
|
+
* * Field Name: __mj_UpdatedAt
|
|
16029
|
+
* * Display Name: __mj _Updated At
|
|
16030
|
+
* * SQL Data Type: datetimeoffset
|
|
15949
16031
|
*/
|
|
15950
|
-
get
|
|
15951
|
-
return this.Get('
|
|
16032
|
+
get __mj_UpdatedAt() {
|
|
16033
|
+
return this.Get('__mj_UpdatedAt');
|
|
15952
16034
|
}
|
|
15953
16035
|
};
|
|
15954
16036
|
exports.ActionFilterEntity = ActionFilterEntity;
|
|
@@ -16784,18 +16866,6 @@ let LibraryEntity = class LibraryEntity extends core_1.BaseEntity {
|
|
|
16784
16866
|
this.Set('Status', value);
|
|
16785
16867
|
}
|
|
16786
16868
|
/**
|
|
16787
|
-
* * Field Name: ExportedItems
|
|
16788
|
-
* * Display Name: Exported Items
|
|
16789
|
-
* * SQL Data Type: nvarchar(MAX)
|
|
16790
|
-
* * Description: List of classes and functions exported by the library.
|
|
16791
|
-
*/
|
|
16792
|
-
get ExportedItems() {
|
|
16793
|
-
return this.Get('ExportedItems');
|
|
16794
|
-
}
|
|
16795
|
-
set ExportedItems(value) {
|
|
16796
|
-
this.Set('ExportedItems', value);
|
|
16797
|
-
}
|
|
16798
|
-
/**
|
|
16799
16869
|
* * Field Name: TypeDefinitions
|
|
16800
16870
|
* * Display Name: Type Definitions
|
|
16801
16871
|
* * SQL Data Type: nvarchar(MAX)
|
|
@@ -16820,22 +16890,20 @@ let LibraryEntity = class LibraryEntity extends core_1.BaseEntity {
|
|
|
16820
16890
|
this.Set('SampleCode', value);
|
|
16821
16891
|
}
|
|
16822
16892
|
/**
|
|
16823
|
-
* * Field Name:
|
|
16824
|
-
* * Display Name:
|
|
16825
|
-
* * SQL Data Type:
|
|
16826
|
-
* * Default Value: getdate()
|
|
16893
|
+
* * Field Name: __mj_CreatedAt
|
|
16894
|
+
* * Display Name: __mj _Created At
|
|
16895
|
+
* * SQL Data Type: datetimeoffset
|
|
16827
16896
|
*/
|
|
16828
|
-
get
|
|
16829
|
-
return this.Get('
|
|
16897
|
+
get __mj_CreatedAt() {
|
|
16898
|
+
return this.Get('__mj_CreatedAt');
|
|
16830
16899
|
}
|
|
16831
16900
|
/**
|
|
16832
|
-
* * Field Name:
|
|
16833
|
-
* * Display Name:
|
|
16834
|
-
* * SQL Data Type:
|
|
16835
|
-
* * Default Value: getdate()
|
|
16901
|
+
* * Field Name: __mj_UpdatedAt
|
|
16902
|
+
* * Display Name: __mj _Updated At
|
|
16903
|
+
* * SQL Data Type: datetimeoffset
|
|
16836
16904
|
*/
|
|
16837
|
-
get
|
|
16838
|
-
return this.Get('
|
|
16905
|
+
get __mj_UpdatedAt() {
|
|
16906
|
+
return this.Get('__mj_UpdatedAt');
|
|
16839
16907
|
}
|
|
16840
16908
|
};
|
|
16841
16909
|
exports.LibraryEntity = LibraryEntity;
|
|
@@ -17286,17 +17354,6 @@ let CommunicationProviderMessageTypeEntity = class CommunicationProviderMessageT
|
|
|
17286
17354
|
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
17287
17355
|
}
|
|
17288
17356
|
/**
|
|
17289
|
-
* Communication Provider Message Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
17290
|
-
* @public
|
|
17291
|
-
* @method
|
|
17292
|
-
* @override
|
|
17293
|
-
* @memberof CommunicationProviderMessageTypeEntity
|
|
17294
|
-
* @throws {Error} - Delete is not allowed for Communication Provider Message Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
17295
|
-
*/
|
|
17296
|
-
async Delete() {
|
|
17297
|
-
throw new Error('Delete is not allowed for Communication Provider Message Types, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
17298
|
-
}
|
|
17299
|
-
/**
|
|
17300
17357
|
* * Field Name: ID
|
|
17301
17358
|
* * Display Name: ID
|
|
17302
17359
|
* * SQL Data Type: int
|
|
@@ -19065,27 +19122,25 @@ let EntityCommunicationMessageTypeEntity = class EntityCommunicationMessageTypeE
|
|
|
19065
19122
|
this.Set('IsActive', value);
|
|
19066
19123
|
}
|
|
19067
19124
|
/**
|
|
19068
|
-
* * Field Name:
|
|
19069
|
-
* * Display Name:
|
|
19070
|
-
* * SQL Data Type:
|
|
19125
|
+
* * Field Name: __mj_CreatedAt
|
|
19126
|
+
* * Display Name: __mj _Created At
|
|
19127
|
+
* * SQL Data Type: datetimeoffset
|
|
19071
19128
|
*/
|
|
19072
|
-
get
|
|
19073
|
-
return this.Get('
|
|
19129
|
+
get __mj_CreatedAt() {
|
|
19130
|
+
return this.Get('__mj_CreatedAt');
|
|
19074
19131
|
}
|
|
19075
19132
|
/**
|
|
19076
|
-
* * Field Name:
|
|
19077
|
-
* * Display Name:
|
|
19078
|
-
* * SQL Data Type:
|
|
19079
|
-
* * Default Value: getdate()
|
|
19133
|
+
* * Field Name: __mj_UpdatedAt
|
|
19134
|
+
* * Display Name: __mj _Updated At
|
|
19135
|
+
* * SQL Data Type: datetimeoffset
|
|
19080
19136
|
*/
|
|
19081
|
-
get
|
|
19082
|
-
return this.Get('
|
|
19137
|
+
get __mj_UpdatedAt() {
|
|
19138
|
+
return this.Get('__mj_UpdatedAt');
|
|
19083
19139
|
}
|
|
19084
19140
|
/**
|
|
19085
19141
|
* * Field Name: Entity
|
|
19086
19142
|
* * Display Name: Entity
|
|
19087
19143
|
* * SQL Data Type: nvarchar(255)
|
|
19088
|
-
* * Default Value: getdate()
|
|
19089
19144
|
*/
|
|
19090
19145
|
get Entity() {
|
|
19091
19146
|
return this.Get('Entity');
|
|
@@ -19094,6 +19149,7 @@ let EntityCommunicationMessageTypeEntity = class EntityCommunicationMessageTypeE
|
|
|
19094
19149
|
* * Field Name: BaseMessageType
|
|
19095
19150
|
* * Display Name: Base Message Type
|
|
19096
19151
|
* * SQL Data Type: nvarchar(100)
|
|
19152
|
+
* * Default Value: getutcdate()
|
|
19097
19153
|
*/
|
|
19098
19154
|
get BaseMessageType() {
|
|
19099
19155
|
return this.Get('BaseMessageType');
|
|
@@ -19188,6 +19244,128 @@ let EntityCommunicationFieldEntity = class EntityCommunicationFieldEntity extend
|
|
|
19188
19244
|
this.Set('Priority', value);
|
|
19189
19245
|
}
|
|
19190
19246
|
/**
|
|
19247
|
+
* * Field Name: __mj_CreatedAt
|
|
19248
|
+
* * Display Name: __mj _Created At
|
|
19249
|
+
* * SQL Data Type: datetimeoffset
|
|
19250
|
+
*/
|
|
19251
|
+
get __mj_CreatedAt() {
|
|
19252
|
+
return this.Get('__mj_CreatedAt');
|
|
19253
|
+
}
|
|
19254
|
+
/**
|
|
19255
|
+
* * Field Name: __mj_UpdatedAt
|
|
19256
|
+
* * Display Name: __mj _Updated At
|
|
19257
|
+
* * SQL Data Type: datetimeoffset
|
|
19258
|
+
*/
|
|
19259
|
+
get __mj_UpdatedAt() {
|
|
19260
|
+
return this.Get('__mj_UpdatedAt');
|
|
19261
|
+
}
|
|
19262
|
+
};
|
|
19263
|
+
exports.EntityCommunicationFieldEntity = EntityCommunicationFieldEntity;
|
|
19264
|
+
exports.EntityCommunicationFieldEntity = EntityCommunicationFieldEntity = __decorate([
|
|
19265
|
+
(0, global_1.RegisterClass)(core_1.BaseEntity, 'Entity Communication Fields')
|
|
19266
|
+
], EntityCommunicationFieldEntity);
|
|
19267
|
+
/**
|
|
19268
|
+
* Record Change Replay Runs - strongly typed entity sub-class
|
|
19269
|
+
* * Schema: __mj
|
|
19270
|
+
* * Base Table: RecordChangeReplayRun
|
|
19271
|
+
* * Base View: vwRecordChangeReplayRuns
|
|
19272
|
+
* * @description Table to track the runs of replaying external record changes
|
|
19273
|
+
* * Primary Key: ID
|
|
19274
|
+
* @extends {BaseEntity}
|
|
19275
|
+
* @class
|
|
19276
|
+
* @public
|
|
19277
|
+
*/
|
|
19278
|
+
let RecordChangeReplayRunEntity = class RecordChangeReplayRunEntity extends core_1.BaseEntity {
|
|
19279
|
+
/**
|
|
19280
|
+
* Loads the Record Change Replay Runs record from the database
|
|
19281
|
+
* @param ID: number - primary key value to load the Record Change Replay Runs record.
|
|
19282
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
19283
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
19284
|
+
* @public
|
|
19285
|
+
* @async
|
|
19286
|
+
* @memberof RecordChangeReplayRunEntity
|
|
19287
|
+
* @method
|
|
19288
|
+
* @override
|
|
19289
|
+
*/
|
|
19290
|
+
async Load(ID, EntityRelationshipsToLoad = null) {
|
|
19291
|
+
const compositeKey = new core_1.CompositeKey();
|
|
19292
|
+
compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
|
|
19293
|
+
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
19294
|
+
}
|
|
19295
|
+
/**
|
|
19296
|
+
* Record Change Replay Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
19297
|
+
* @public
|
|
19298
|
+
* @method
|
|
19299
|
+
* @override
|
|
19300
|
+
* @memberof RecordChangeReplayRunEntity
|
|
19301
|
+
* @throws {Error} - Delete is not allowed for Record Change Replay Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
19302
|
+
*/
|
|
19303
|
+
async Delete() {
|
|
19304
|
+
throw new Error('Delete is not allowed for Record Change Replay Runs, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
19305
|
+
}
|
|
19306
|
+
/**
|
|
19307
|
+
* * Field Name: ID
|
|
19308
|
+
* * Display Name: ID
|
|
19309
|
+
* * SQL Data Type: int
|
|
19310
|
+
*/
|
|
19311
|
+
get ID() {
|
|
19312
|
+
return this.Get('ID');
|
|
19313
|
+
}
|
|
19314
|
+
/**
|
|
19315
|
+
* * Field Name: StartedAt
|
|
19316
|
+
* * Display Name: Started At
|
|
19317
|
+
* * SQL Data Type: datetime
|
|
19318
|
+
* * Description: Timestamp when the replay run started
|
|
19319
|
+
*/
|
|
19320
|
+
get StartedAt() {
|
|
19321
|
+
return this.Get('StartedAt');
|
|
19322
|
+
}
|
|
19323
|
+
set StartedAt(value) {
|
|
19324
|
+
this.Set('StartedAt', value);
|
|
19325
|
+
}
|
|
19326
|
+
/**
|
|
19327
|
+
* * Field Name: EndedAt
|
|
19328
|
+
* * Display Name: Ended At
|
|
19329
|
+
* * SQL Data Type: datetime
|
|
19330
|
+
* * Description: Timestamp when the replay run ended
|
|
19331
|
+
*/
|
|
19332
|
+
get EndedAt() {
|
|
19333
|
+
return this.Get('EndedAt');
|
|
19334
|
+
}
|
|
19335
|
+
set EndedAt(value) {
|
|
19336
|
+
this.Set('EndedAt', value);
|
|
19337
|
+
}
|
|
19338
|
+
/**
|
|
19339
|
+
* * Field Name: Status
|
|
19340
|
+
* * Display Name: Status
|
|
19341
|
+
* * SQL Data Type: nvarchar(50)
|
|
19342
|
+
* * Value List Type: List
|
|
19343
|
+
* * Possible Values
|
|
19344
|
+
* * Pending
|
|
19345
|
+
* * In Progress
|
|
19346
|
+
* * Complete
|
|
19347
|
+
* * Error
|
|
19348
|
+
* * Description: Status of the replay run (Pending, In Progress, Complete, Error)
|
|
19349
|
+
*/
|
|
19350
|
+
get Status() {
|
|
19351
|
+
return this.Get('Status');
|
|
19352
|
+
}
|
|
19353
|
+
set Status(value) {
|
|
19354
|
+
this.Set('Status', value);
|
|
19355
|
+
}
|
|
19356
|
+
/**
|
|
19357
|
+
* * Field Name: UserID
|
|
19358
|
+
* * Display Name: User ID
|
|
19359
|
+
* * SQL Data Type: int
|
|
19360
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
19361
|
+
*/
|
|
19362
|
+
get UserID() {
|
|
19363
|
+
return this.Get('UserID');
|
|
19364
|
+
}
|
|
19365
|
+
set UserID(value) {
|
|
19366
|
+
this.Set('UserID', value);
|
|
19367
|
+
}
|
|
19368
|
+
/**
|
|
19191
19369
|
* * Field Name: CreatedAt
|
|
19192
19370
|
* * Display Name: Created At
|
|
19193
19371
|
* * SQL Data Type: datetime
|
|
@@ -19205,9 +19383,369 @@ let EntityCommunicationFieldEntity = class EntityCommunicationFieldEntity extend
|
|
|
19205
19383
|
get UpdatedAt() {
|
|
19206
19384
|
return this.Get('UpdatedAt');
|
|
19207
19385
|
}
|
|
19386
|
+
/**
|
|
19387
|
+
* * Field Name: User
|
|
19388
|
+
* * Display Name: User
|
|
19389
|
+
* * SQL Data Type: nvarchar(100)
|
|
19390
|
+
*/
|
|
19391
|
+
get User() {
|
|
19392
|
+
return this.Get('User');
|
|
19393
|
+
}
|
|
19208
19394
|
};
|
|
19209
|
-
exports.
|
|
19210
|
-
exports.
|
|
19211
|
-
(0, global_1.RegisterClass)(core_1.BaseEntity, '
|
|
19212
|
-
],
|
|
19395
|
+
exports.RecordChangeReplayRunEntity = RecordChangeReplayRunEntity;
|
|
19396
|
+
exports.RecordChangeReplayRunEntity = RecordChangeReplayRunEntity = __decorate([
|
|
19397
|
+
(0, global_1.RegisterClass)(core_1.BaseEntity, 'Record Change Replay Runs')
|
|
19398
|
+
], RecordChangeReplayRunEntity);
|
|
19399
|
+
/**
|
|
19400
|
+
* Library Items - strongly typed entity sub-class
|
|
19401
|
+
* * Schema: __mj
|
|
19402
|
+
* * Base Table: LibraryItem
|
|
19403
|
+
* * Base View: vwLibraryItems
|
|
19404
|
+
* * @description Table to store individual library items
|
|
19405
|
+
* * Primary Key: ID
|
|
19406
|
+
* @extends {BaseEntity}
|
|
19407
|
+
* @class
|
|
19408
|
+
* @public
|
|
19409
|
+
*/
|
|
19410
|
+
let LibraryItemEntity = class LibraryItemEntity extends core_1.BaseEntity {
|
|
19411
|
+
/**
|
|
19412
|
+
* Loads the Library Items record from the database
|
|
19413
|
+
* @param ID: number - primary key value to load the Library Items record.
|
|
19414
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
19415
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
19416
|
+
* @public
|
|
19417
|
+
* @async
|
|
19418
|
+
* @memberof LibraryItemEntity
|
|
19419
|
+
* @method
|
|
19420
|
+
* @override
|
|
19421
|
+
*/
|
|
19422
|
+
async Load(ID, EntityRelationshipsToLoad = null) {
|
|
19423
|
+
const compositeKey = new core_1.CompositeKey();
|
|
19424
|
+
compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
|
|
19425
|
+
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
19426
|
+
}
|
|
19427
|
+
/**
|
|
19428
|
+
* Library Items - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
19429
|
+
* @public
|
|
19430
|
+
* @method
|
|
19431
|
+
* @override
|
|
19432
|
+
* @memberof LibraryItemEntity
|
|
19433
|
+
* @throws {Error} - Delete is not allowed for Library Items, to enable it set AllowDeleteAPI to 1 in the database.
|
|
19434
|
+
*/
|
|
19435
|
+
async Delete() {
|
|
19436
|
+
throw new Error('Delete is not allowed for Library Items, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
19437
|
+
}
|
|
19438
|
+
/**
|
|
19439
|
+
* * Field Name: ID
|
|
19440
|
+
* * Display Name: ID
|
|
19441
|
+
* * SQL Data Type: int
|
|
19442
|
+
* * Description: Primary key of the LibraryItem table.
|
|
19443
|
+
*/
|
|
19444
|
+
get ID() {
|
|
19445
|
+
return this.Get('ID');
|
|
19446
|
+
}
|
|
19447
|
+
/**
|
|
19448
|
+
* * Field Name: Name
|
|
19449
|
+
* * Display Name: Name
|
|
19450
|
+
* * SQL Data Type: nvarchar(255)
|
|
19451
|
+
*/
|
|
19452
|
+
get Name() {
|
|
19453
|
+
return this.Get('Name');
|
|
19454
|
+
}
|
|
19455
|
+
set Name(value) {
|
|
19456
|
+
this.Set('Name', value);
|
|
19457
|
+
}
|
|
19458
|
+
/**
|
|
19459
|
+
* * Field Name: LibraryID
|
|
19460
|
+
* * Display Name: Library ID
|
|
19461
|
+
* * SQL Data Type: int
|
|
19462
|
+
* * Related Entity/Foreign Key: Libraries (vwLibraries.ID)
|
|
19463
|
+
*/
|
|
19464
|
+
get LibraryID() {
|
|
19465
|
+
return this.Get('LibraryID');
|
|
19466
|
+
}
|
|
19467
|
+
set LibraryID(value) {
|
|
19468
|
+
this.Set('LibraryID', value);
|
|
19469
|
+
}
|
|
19470
|
+
/**
|
|
19471
|
+
* * Field Name: Type
|
|
19472
|
+
* * Display Name: Type
|
|
19473
|
+
* * SQL Data Type: nvarchar(50)
|
|
19474
|
+
* * Value List Type: List
|
|
19475
|
+
* * Possible Values
|
|
19476
|
+
* * Class
|
|
19477
|
+
* * Interface
|
|
19478
|
+
* * Variable
|
|
19479
|
+
* * Type
|
|
19480
|
+
* * Module
|
|
19481
|
+
* * Function
|
|
19482
|
+
* * Description: Type of the library item for example Class, Interface, etc.
|
|
19483
|
+
*/
|
|
19484
|
+
get Type() {
|
|
19485
|
+
return this.Get('Type');
|
|
19486
|
+
}
|
|
19487
|
+
set Type(value) {
|
|
19488
|
+
this.Set('Type', value);
|
|
19489
|
+
}
|
|
19490
|
+
/**
|
|
19491
|
+
* * Field Name: CreatedAt
|
|
19492
|
+
* * Display Name: Created At
|
|
19493
|
+
* * SQL Data Type: datetime
|
|
19494
|
+
* * Default Value: getdate()
|
|
19495
|
+
*/
|
|
19496
|
+
get CreatedAt() {
|
|
19497
|
+
return this.Get('CreatedAt');
|
|
19498
|
+
}
|
|
19499
|
+
/**
|
|
19500
|
+
* * Field Name: UpdatedAt
|
|
19501
|
+
* * Display Name: Updated At
|
|
19502
|
+
* * SQL Data Type: datetime
|
|
19503
|
+
* * Default Value: getdate()
|
|
19504
|
+
*/
|
|
19505
|
+
get UpdatedAt() {
|
|
19506
|
+
return this.Get('UpdatedAt');
|
|
19507
|
+
}
|
|
19508
|
+
/**
|
|
19509
|
+
* * Field Name: Library
|
|
19510
|
+
* * Display Name: Library
|
|
19511
|
+
* * SQL Data Type: nvarchar(255)
|
|
19512
|
+
*/
|
|
19513
|
+
get Library() {
|
|
19514
|
+
return this.Get('Library');
|
|
19515
|
+
}
|
|
19516
|
+
};
|
|
19517
|
+
exports.LibraryItemEntity = LibraryItemEntity;
|
|
19518
|
+
exports.LibraryItemEntity = LibraryItemEntity = __decorate([
|
|
19519
|
+
(0, global_1.RegisterClass)(core_1.BaseEntity, 'Library Items')
|
|
19520
|
+
], LibraryItemEntity);
|
|
19521
|
+
/**
|
|
19522
|
+
* Entity Relationship Display Components - strongly typed entity sub-class
|
|
19523
|
+
* * Schema: __mj
|
|
19524
|
+
* * Base Table: EntityRelationshipDisplayComponent
|
|
19525
|
+
* * Base View: vwEntityRelationshipDisplayComponents
|
|
19526
|
+
* * @description This table stores a list of components that are available for displaying relationships in the MJ Explorer UI
|
|
19527
|
+
* * Primary Key: ID
|
|
19528
|
+
* @extends {BaseEntity}
|
|
19529
|
+
* @class
|
|
19530
|
+
* @public
|
|
19531
|
+
*/
|
|
19532
|
+
let EntityRelationshipDisplayComponentEntity = class EntityRelationshipDisplayComponentEntity extends core_1.BaseEntity {
|
|
19533
|
+
/**
|
|
19534
|
+
* Loads the Entity Relationship Display Components record from the database
|
|
19535
|
+
* @param ID: number - primary key value to load the Entity Relationship Display Components record.
|
|
19536
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
19537
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
19538
|
+
* @public
|
|
19539
|
+
* @async
|
|
19540
|
+
* @memberof EntityRelationshipDisplayComponentEntity
|
|
19541
|
+
* @method
|
|
19542
|
+
* @override
|
|
19543
|
+
*/
|
|
19544
|
+
async Load(ID, EntityRelationshipsToLoad = null) {
|
|
19545
|
+
const compositeKey = new core_1.CompositeKey();
|
|
19546
|
+
compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
|
|
19547
|
+
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
19548
|
+
}
|
|
19549
|
+
/**
|
|
19550
|
+
* Entity Relationship Display Components - 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.
|
|
19551
|
+
* @public
|
|
19552
|
+
* @method
|
|
19553
|
+
* @override
|
|
19554
|
+
* @memberof EntityRelationshipDisplayComponentEntity
|
|
19555
|
+
* @throws {Error} - Delete is not allowed for Entity Relationship Display Components, to enable it set AllowDeleteAPI to 1 in the database.
|
|
19556
|
+
*/
|
|
19557
|
+
async Delete() {
|
|
19558
|
+
throw new Error('Delete is not allowed for Entity Relationship Display Components, to enable it set AllowDeleteAPI to 1 in the database.');
|
|
19559
|
+
}
|
|
19560
|
+
/**
|
|
19561
|
+
* * Field Name: ID
|
|
19562
|
+
* * Display Name: ID
|
|
19563
|
+
* * SQL Data Type: int
|
|
19564
|
+
*/
|
|
19565
|
+
get ID() {
|
|
19566
|
+
return this.Get('ID');
|
|
19567
|
+
}
|
|
19568
|
+
/**
|
|
19569
|
+
* * Field Name: Name
|
|
19570
|
+
* * Display Name: Name
|
|
19571
|
+
* * SQL Data Type: nvarchar(255)
|
|
19572
|
+
*/
|
|
19573
|
+
get Name() {
|
|
19574
|
+
return this.Get('Name');
|
|
19575
|
+
}
|
|
19576
|
+
set Name(value) {
|
|
19577
|
+
this.Set('Name', value);
|
|
19578
|
+
}
|
|
19579
|
+
/**
|
|
19580
|
+
* * Field Name: Description
|
|
19581
|
+
* * Display Name: Description
|
|
19582
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
19583
|
+
*/
|
|
19584
|
+
get Description() {
|
|
19585
|
+
return this.Get('Description');
|
|
19586
|
+
}
|
|
19587
|
+
set Description(value) {
|
|
19588
|
+
this.Set('Description', value);
|
|
19589
|
+
}
|
|
19590
|
+
/**
|
|
19591
|
+
* * Field Name: RelationshipType
|
|
19592
|
+
* * Display Name: Relationship Type
|
|
19593
|
+
* * SQL Data Type: nvarchar(20)
|
|
19594
|
+
* * Value List Type: List
|
|
19595
|
+
* * Possible Values
|
|
19596
|
+
* * One to Many
|
|
19597
|
+
* * Many to Many
|
|
19598
|
+
* * Both
|
|
19599
|
+
* * Description: The type of relationship the component displays. Valid values are "One to Many", "Many to Many", or "Both".
|
|
19600
|
+
*/
|
|
19601
|
+
get RelationshipType() {
|
|
19602
|
+
return this.Get('RelationshipType');
|
|
19603
|
+
}
|
|
19604
|
+
set RelationshipType(value) {
|
|
19605
|
+
this.Set('RelationshipType', value);
|
|
19606
|
+
}
|
|
19607
|
+
/**
|
|
19608
|
+
* * Field Name: __mj_CreatedAt
|
|
19609
|
+
* * Display Name: Created At
|
|
19610
|
+
* * SQL Data Type: datetimeoffset
|
|
19611
|
+
* * Default Value: getutcdate()
|
|
19612
|
+
*/
|
|
19613
|
+
get __mj_CreatedAt() {
|
|
19614
|
+
return this.Get('__mj_CreatedAt');
|
|
19615
|
+
}
|
|
19616
|
+
/**
|
|
19617
|
+
* * Field Name: __mj_UpdatedAt
|
|
19618
|
+
* * Display Name: Updated At
|
|
19619
|
+
* * SQL Data Type: datetimeoffset
|
|
19620
|
+
* * Default Value: getutcdate()
|
|
19621
|
+
*/
|
|
19622
|
+
get __mj_UpdatedAt() {
|
|
19623
|
+
return this.Get('__mj_UpdatedAt');
|
|
19624
|
+
}
|
|
19625
|
+
};
|
|
19626
|
+
exports.EntityRelationshipDisplayComponentEntity = EntityRelationshipDisplayComponentEntity;
|
|
19627
|
+
exports.EntityRelationshipDisplayComponentEntity = EntityRelationshipDisplayComponentEntity = __decorate([
|
|
19628
|
+
(0, global_1.RegisterClass)(core_1.BaseEntity, 'Entity Relationship Display Components')
|
|
19629
|
+
], EntityRelationshipDisplayComponentEntity);
|
|
19630
|
+
/**
|
|
19631
|
+
* Entity Action Params - strongly typed entity sub-class
|
|
19632
|
+
* * Schema: __mj
|
|
19633
|
+
* * Base Table: EntityActionParam
|
|
19634
|
+
* * Base View: vwEntityActionParams
|
|
19635
|
+
* * @description Stores paramater mappings to enable Entity Actions to automatically invoke Actions
|
|
19636
|
+
* * Primary Key: ID
|
|
19637
|
+
* @extends {BaseEntity}
|
|
19638
|
+
* @class
|
|
19639
|
+
* @public
|
|
19640
|
+
*/
|
|
19641
|
+
let EntityActionParamEntity = class EntityActionParamEntity extends core_1.BaseEntity {
|
|
19642
|
+
/**
|
|
19643
|
+
* Loads the Entity Action Params record from the database
|
|
19644
|
+
* @param ID: number - primary key value to load the Entity Action Params record.
|
|
19645
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
19646
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
19647
|
+
* @public
|
|
19648
|
+
* @async
|
|
19649
|
+
* @memberof EntityActionParamEntity
|
|
19650
|
+
* @method
|
|
19651
|
+
* @override
|
|
19652
|
+
*/
|
|
19653
|
+
async Load(ID, EntityRelationshipsToLoad = null) {
|
|
19654
|
+
const compositeKey = new core_1.CompositeKey();
|
|
19655
|
+
compositeKey.KeyValuePairs.push({ FieldName: 'ID', Value: ID });
|
|
19656
|
+
return await super.InnerLoad(compositeKey, EntityRelationshipsToLoad);
|
|
19657
|
+
}
|
|
19658
|
+
/**
|
|
19659
|
+
* * Field Name: ID
|
|
19660
|
+
* * Display Name: ID
|
|
19661
|
+
* * SQL Data Type: int
|
|
19662
|
+
*/
|
|
19663
|
+
get ID() {
|
|
19664
|
+
return this.Get('ID');
|
|
19665
|
+
}
|
|
19666
|
+
/**
|
|
19667
|
+
* * Field Name: ActionParamID
|
|
19668
|
+
* * Display Name: Action Param ID
|
|
19669
|
+
* * SQL Data Type: int
|
|
19670
|
+
* * Related Entity/Foreign Key: Action Params (vwActionParams.ID)
|
|
19671
|
+
*/
|
|
19672
|
+
get ActionParamID() {
|
|
19673
|
+
return this.Get('ActionParamID');
|
|
19674
|
+
}
|
|
19675
|
+
set ActionParamID(value) {
|
|
19676
|
+
this.Set('ActionParamID', value);
|
|
19677
|
+
}
|
|
19678
|
+
/**
|
|
19679
|
+
* * Field Name: ValueType
|
|
19680
|
+
* * Display Name: Value Type
|
|
19681
|
+
* * SQL Data Type: nvarchar(20)
|
|
19682
|
+
* * Value List Type: List
|
|
19683
|
+
* * Possible Values
|
|
19684
|
+
* * Static
|
|
19685
|
+
* * Entity Object
|
|
19686
|
+
* * Script
|
|
19687
|
+
* * Description: Type of the value, which can be Static, Entity Object, or Script.
|
|
19688
|
+
*/
|
|
19689
|
+
get ValueType() {
|
|
19690
|
+
return this.Get('ValueType');
|
|
19691
|
+
}
|
|
19692
|
+
set ValueType(value) {
|
|
19693
|
+
this.Set('ValueType', value);
|
|
19694
|
+
}
|
|
19695
|
+
/**
|
|
19696
|
+
* * Field Name: Value
|
|
19697
|
+
* * Display Name: Value
|
|
19698
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
19699
|
+
* * Description: Value of the parameter, used only when ValueType is Static or Script. When value is Script, any valid JavaScript code can be provided. The script will have access to an object called EntityActionContext. This object will have a property called EntityObject on it that will contain the BaseEntity derived sub-class with the current data for the entity object this action is operating against. The script must provide the parameter value to the EntityActionContext.result property. This scripting capabilty is designed for very small and simple code, for anything of meaningful complexity, create a sub-class instead.
|
|
19700
|
+
*/
|
|
19701
|
+
get Value() {
|
|
19702
|
+
return this.Get('Value');
|
|
19703
|
+
}
|
|
19704
|
+
set Value(value) {
|
|
19705
|
+
this.Set('Value', value);
|
|
19706
|
+
}
|
|
19707
|
+
/**
|
|
19708
|
+
* * Field Name: Comments
|
|
19709
|
+
* * Display Name: Comments
|
|
19710
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
19711
|
+
* * Description: Additional comments regarding the parameter.
|
|
19712
|
+
*/
|
|
19713
|
+
get Comments() {
|
|
19714
|
+
return this.Get('Comments');
|
|
19715
|
+
}
|
|
19716
|
+
set Comments(value) {
|
|
19717
|
+
this.Set('Comments', value);
|
|
19718
|
+
}
|
|
19719
|
+
/**
|
|
19720
|
+
* * Field Name: __mj_CreatedAt
|
|
19721
|
+
* * Display Name: Created At
|
|
19722
|
+
* * SQL Data Type: datetimeoffset
|
|
19723
|
+
* * Default Value: getutcdate()
|
|
19724
|
+
*/
|
|
19725
|
+
get __mj_CreatedAt() {
|
|
19726
|
+
return this.Get('__mj_CreatedAt');
|
|
19727
|
+
}
|
|
19728
|
+
/**
|
|
19729
|
+
* * Field Name: __mj_UpdatedAt
|
|
19730
|
+
* * Display Name: Updated At
|
|
19731
|
+
* * SQL Data Type: datetimeoffset
|
|
19732
|
+
* * Default Value: getutcdate()
|
|
19733
|
+
*/
|
|
19734
|
+
get __mj_UpdatedAt() {
|
|
19735
|
+
return this.Get('__mj_UpdatedAt');
|
|
19736
|
+
}
|
|
19737
|
+
/**
|
|
19738
|
+
* * Field Name: ActionParam
|
|
19739
|
+
* * Display Name: Action Param
|
|
19740
|
+
* * SQL Data Type: nvarchar(255)
|
|
19741
|
+
* * Default Value: null
|
|
19742
|
+
*/
|
|
19743
|
+
get ActionParam() {
|
|
19744
|
+
return this.Get('ActionParam');
|
|
19745
|
+
}
|
|
19746
|
+
};
|
|
19747
|
+
exports.EntityActionParamEntity = EntityActionParamEntity;
|
|
19748
|
+
exports.EntityActionParamEntity = EntityActionParamEntity = __decorate([
|
|
19749
|
+
(0, global_1.RegisterClass)(core_1.BaseEntity, 'Entity Action Params')
|
|
19750
|
+
], EntityActionParamEntity);
|
|
19213
19751
|
//# sourceMappingURL=entity_subclasses.js.map
|