@memberjunction/core-entities 1.8.0 → 1.8.1
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.
|
@@ -384,26 +384,25 @@ let UserFavoriteEntity = class UserFavoriteEntity extends core_1.BaseEntity {
|
|
|
384
384
|
this.Set('RecordID', value);
|
|
385
385
|
}
|
|
386
386
|
/**
|
|
387
|
-
* * Field Name:
|
|
387
|
+
* * Field Name: __mj_CreatedAt
|
|
388
388
|
* * Display Name: Created At
|
|
389
|
-
* * SQL Data Type:
|
|
390
|
-
* * Default Value: getdate()
|
|
389
|
+
* * SQL Data Type: datetimeoffset
|
|
391
390
|
*/
|
|
392
|
-
get
|
|
393
|
-
return this.Get('
|
|
391
|
+
get __mj_CreatedAt() {
|
|
392
|
+
return this.Get('__mj_CreatedAt');
|
|
394
393
|
}
|
|
395
394
|
/**
|
|
396
|
-
* * Field Name:
|
|
395
|
+
* * Field Name: __mj_UpdatedAt
|
|
397
396
|
* * Display Name: Updated At
|
|
398
|
-
* * SQL Data Type:
|
|
399
|
-
* * Default Value: getdate()
|
|
397
|
+
* * SQL Data Type: datetimeoffset
|
|
400
398
|
*/
|
|
401
|
-
get
|
|
402
|
-
return this.Get('
|
|
399
|
+
get __mj_UpdatedAt() {
|
|
400
|
+
return this.Get('__mj_UpdatedAt');
|
|
403
401
|
}
|
|
404
402
|
/**
|
|
405
403
|
* * Field Name: Entity
|
|
406
404
|
* * SQL Data Type: nvarchar(255)
|
|
405
|
+
* * Default Value: getutcdate()
|
|
407
406
|
*/
|
|
408
407
|
get Entity() {
|
|
409
408
|
return this.Get('Entity');
|
|
@@ -412,6 +411,7 @@ let UserFavoriteEntity = class UserFavoriteEntity extends core_1.BaseEntity {
|
|
|
412
411
|
* * Field Name: EntityBaseTable
|
|
413
412
|
* * Display Name: Entity Base Table
|
|
414
413
|
* * SQL Data Type: nvarchar(255)
|
|
414
|
+
* * Default Value: getutcdate()
|
|
415
415
|
*/
|
|
416
416
|
get EntityBaseTable() {
|
|
417
417
|
return this.Get('EntityBaseTable');
|
|
@@ -522,22 +522,20 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
|
|
|
522
522
|
this.Set('IsActive', value);
|
|
523
523
|
}
|
|
524
524
|
/**
|
|
525
|
-
* * Field Name:
|
|
525
|
+
* * Field Name: __mj_CreatedAt
|
|
526
526
|
* * Display Name: Created At
|
|
527
|
-
* * SQL Data Type:
|
|
528
|
-
* * Default Value: getdate()
|
|
527
|
+
* * SQL Data Type: datetimeoffset
|
|
529
528
|
*/
|
|
530
|
-
get
|
|
531
|
-
return this.Get('
|
|
529
|
+
get __mj_CreatedAt() {
|
|
530
|
+
return this.Get('__mj_CreatedAt');
|
|
532
531
|
}
|
|
533
532
|
/**
|
|
534
|
-
* * Field Name:
|
|
533
|
+
* * Field Name: __mj_UpdatedAt
|
|
535
534
|
* * Display Name: Updated At
|
|
536
|
-
* * SQL Data Type:
|
|
537
|
-
* * Default Value: getdate()
|
|
535
|
+
* * SQL Data Type: datetimeoffset
|
|
538
536
|
*/
|
|
539
|
-
get
|
|
540
|
-
return this.Get('
|
|
537
|
+
get __mj_UpdatedAt() {
|
|
538
|
+
return this.Get('__mj_UpdatedAt');
|
|
541
539
|
}
|
|
542
540
|
};
|
|
543
541
|
exports.EmployeeCompanyIntegrationEntity = EmployeeCompanyIntegrationEntity;
|
|
@@ -924,27 +922,26 @@ let SkillEntity = class SkillEntity extends core_1.BaseEntity {
|
|
|
924
922
|
this.Set('ParentID', value);
|
|
925
923
|
}
|
|
926
924
|
/**
|
|
927
|
-
* * Field Name:
|
|
925
|
+
* * Field Name: __mj_CreatedAt
|
|
928
926
|
* * Display Name: Created At
|
|
929
|
-
* * SQL Data Type:
|
|
930
|
-
* * Default Value: getdate()
|
|
927
|
+
* * SQL Data Type: datetimeoffset
|
|
931
928
|
*/
|
|
932
|
-
get
|
|
933
|
-
return this.Get('
|
|
929
|
+
get __mj_CreatedAt() {
|
|
930
|
+
return this.Get('__mj_CreatedAt');
|
|
934
931
|
}
|
|
935
932
|
/**
|
|
936
|
-
* * Field Name:
|
|
933
|
+
* * Field Name: __mj_UpdatedAt
|
|
937
934
|
* * Display Name: Updated At
|
|
938
|
-
* * SQL Data Type:
|
|
939
|
-
* * Default Value: getdate()
|
|
935
|
+
* * SQL Data Type: datetimeoffset
|
|
940
936
|
*/
|
|
941
|
-
get
|
|
942
|
-
return this.Get('
|
|
937
|
+
get __mj_UpdatedAt() {
|
|
938
|
+
return this.Get('__mj_UpdatedAt');
|
|
943
939
|
}
|
|
944
940
|
/**
|
|
945
941
|
* * Field Name: Parent
|
|
946
942
|
* * Display Name: Parent
|
|
947
943
|
* * SQL Data Type: nvarchar(50)
|
|
944
|
+
* * Default Value: getutcdate()
|
|
948
945
|
*/
|
|
949
946
|
get Parent() {
|
|
950
947
|
return this.Get('Parent');
|
|
@@ -1035,6 +1032,24 @@ let IntegrationURLFormatEntity = class IntegrationURLFormatEntity extends core_1
|
|
|
1035
1032
|
this.Set('URLFormat', value);
|
|
1036
1033
|
}
|
|
1037
1034
|
/**
|
|
1035
|
+
* * Field Name: __mj_CreatedAt
|
|
1036
|
+
* * Display Name: Created At
|
|
1037
|
+
* * SQL Data Type: datetimeoffset
|
|
1038
|
+
* * Default Value: getutcdate()
|
|
1039
|
+
*/
|
|
1040
|
+
get __mj_CreatedAt() {
|
|
1041
|
+
return this.Get('__mj_CreatedAt');
|
|
1042
|
+
}
|
|
1043
|
+
/**
|
|
1044
|
+
* * Field Name: __mj_UpdatedAt
|
|
1045
|
+
* * Display Name: Updated At
|
|
1046
|
+
* * SQL Data Type: datetimeoffset
|
|
1047
|
+
* * Default Value: getutcdate()
|
|
1048
|
+
*/
|
|
1049
|
+
get __mj_UpdatedAt() {
|
|
1050
|
+
return this.Get('__mj_UpdatedAt');
|
|
1051
|
+
}
|
|
1052
|
+
/**
|
|
1038
1053
|
* * Field Name: IntegrationID
|
|
1039
1054
|
* * Display Name: Integration ID
|
|
1040
1055
|
* * SQL Data Type: int
|
|
@@ -1195,22 +1210,20 @@ let IntegrationEntity = class IntegrationEntity extends core_1.BaseEntity {
|
|
|
1195
1210
|
this.Set('BatchRequestWaitTime', value);
|
|
1196
1211
|
}
|
|
1197
1212
|
/**
|
|
1198
|
-
* * Field Name:
|
|
1213
|
+
* * Field Name: __mj_CreatedAt
|
|
1199
1214
|
* * Display Name: Created At
|
|
1200
|
-
* * SQL Data Type:
|
|
1201
|
-
* * Default Value: getdate()
|
|
1215
|
+
* * SQL Data Type: datetimeoffset
|
|
1202
1216
|
*/
|
|
1203
|
-
get
|
|
1204
|
-
return this.Get('
|
|
1217
|
+
get __mj_CreatedAt() {
|
|
1218
|
+
return this.Get('__mj_CreatedAt');
|
|
1205
1219
|
}
|
|
1206
1220
|
/**
|
|
1207
|
-
* * Field Name:
|
|
1221
|
+
* * Field Name: __mj_UpdatedAt
|
|
1208
1222
|
* * Display Name: Updated At
|
|
1209
|
-
* * SQL Data Type:
|
|
1210
|
-
* * Default Value: getdate()
|
|
1223
|
+
* * SQL Data Type: datetimeoffset
|
|
1211
1224
|
*/
|
|
1212
|
-
get
|
|
1213
|
-
return this.Get('
|
|
1225
|
+
get __mj_UpdatedAt() {
|
|
1226
|
+
return this.Get('__mj_UpdatedAt');
|
|
1214
1227
|
}
|
|
1215
1228
|
};
|
|
1216
1229
|
exports.IntegrationEntity = IntegrationEntity;
|
|
@@ -1342,24 +1355,6 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
1342
1355
|
this.Set('APIKey', value);
|
|
1343
1356
|
}
|
|
1344
1357
|
/**
|
|
1345
|
-
* * Field Name: CreatedAt
|
|
1346
|
-
* * Display Name: Created At
|
|
1347
|
-
* * SQL Data Type: datetime
|
|
1348
|
-
* * Default Value: getdate()
|
|
1349
|
-
*/
|
|
1350
|
-
get CreatedAt() {
|
|
1351
|
-
return this.Get('CreatedAt');
|
|
1352
|
-
}
|
|
1353
|
-
/**
|
|
1354
|
-
* * Field Name: UpdatedAt
|
|
1355
|
-
* * Display Name: Updated At
|
|
1356
|
-
* * SQL Data Type: datetime
|
|
1357
|
-
* * Default Value: getdate()
|
|
1358
|
-
*/
|
|
1359
|
-
get UpdatedAt() {
|
|
1360
|
-
return this.Get('UpdatedAt');
|
|
1361
|
-
}
|
|
1362
|
-
/**
|
|
1363
1358
|
* * Field Name: ExternalSystemID
|
|
1364
1359
|
* * Display Name: ExternalSystem
|
|
1365
1360
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -1374,7 +1369,6 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
1374
1369
|
* * Field Name: IsExternalSystemReadOnly
|
|
1375
1370
|
* * Display Name: Is External System Read Only
|
|
1376
1371
|
* * SQL Data Type: bit
|
|
1377
|
-
* * Default Value: 0
|
|
1378
1372
|
*/
|
|
1379
1373
|
get IsExternalSystemReadOnly() {
|
|
1380
1374
|
return this.Get('IsExternalSystemReadOnly');
|
|
@@ -1397,6 +1391,7 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
1397
1391
|
* * Field Name: ClientSecret
|
|
1398
1392
|
* * Display Name: Client Secret
|
|
1399
1393
|
* * SQL Data Type: nvarchar(255)
|
|
1394
|
+
* * Default Value: 0
|
|
1400
1395
|
*/
|
|
1401
1396
|
get ClientSecret() {
|
|
1402
1397
|
return this.Get('ClientSecret');
|
|
@@ -1416,9 +1411,26 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
1416
1411
|
this.Set('CustomAttribute1', value);
|
|
1417
1412
|
}
|
|
1418
1413
|
/**
|
|
1414
|
+
* * Field Name: __mj_CreatedAt
|
|
1415
|
+
* * Display Name: Created At
|
|
1416
|
+
* * SQL Data Type: datetimeoffset
|
|
1417
|
+
*/
|
|
1418
|
+
get __mj_CreatedAt() {
|
|
1419
|
+
return this.Get('__mj_CreatedAt');
|
|
1420
|
+
}
|
|
1421
|
+
/**
|
|
1422
|
+
* * Field Name: __mj_UpdatedAt
|
|
1423
|
+
* * Display Name: Updated At
|
|
1424
|
+
* * SQL Data Type: datetimeoffset
|
|
1425
|
+
*/
|
|
1426
|
+
get __mj_UpdatedAt() {
|
|
1427
|
+
return this.Get('__mj_UpdatedAt');
|
|
1428
|
+
}
|
|
1429
|
+
/**
|
|
1419
1430
|
* * Field Name: CompanyID
|
|
1420
1431
|
* * Display Name: Company ID
|
|
1421
1432
|
* * SQL Data Type: int
|
|
1433
|
+
* * Default Value: getutcdate()
|
|
1422
1434
|
*/
|
|
1423
1435
|
get CompanyID() {
|
|
1424
1436
|
return this.Get('CompanyID');
|
|
@@ -1427,6 +1439,7 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
1427
1439
|
* * Field Name: IntegrationID
|
|
1428
1440
|
* * Display Name: Integration ID
|
|
1429
1441
|
* * SQL Data Type: int
|
|
1442
|
+
* * Default Value: getutcdate()
|
|
1430
1443
|
*/
|
|
1431
1444
|
get IntegrationID() {
|
|
1432
1445
|
return this.Get('IntegrationID');
|
|
@@ -2622,6 +2635,23 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2622
2635
|
return this.Get('__mj_UpdatedAt');
|
|
2623
2636
|
}
|
|
2624
2637
|
/**
|
|
2638
|
+
* * Field Name: RelationshipDefaultDisplayType
|
|
2639
|
+
* * Display Name: Relationship Default Display Type
|
|
2640
|
+
* * SQL Data Type: nvarchar(20)
|
|
2641
|
+
* * Default Value: getutcdate()
|
|
2642
|
+
* * Value List Type: List
|
|
2643
|
+
* * Possible Values
|
|
2644
|
+
* * Search
|
|
2645
|
+
* * Dropdown
|
|
2646
|
+
* * Description: When another entity links to this entity with a foreign key, this is the default component type that will be used in the UI. CodeGen will populate the RelatedEntityDisplayType column in the Entity Fields entity with whatever is provided here whenever a new foreign key is detected by CodeGen. The selection can be overridden on a per-foreign-key basis in each row of the Entity Fields entity.
|
|
2647
|
+
*/
|
|
2648
|
+
get RelationshipDefaultDisplayType() {
|
|
2649
|
+
return this.Get('RelationshipDefaultDisplayType');
|
|
2650
|
+
}
|
|
2651
|
+
set RelationshipDefaultDisplayType(value) {
|
|
2652
|
+
this.Set('RelationshipDefaultDisplayType', value);
|
|
2653
|
+
}
|
|
2654
|
+
/**
|
|
2625
2655
|
* * Field Name: CodeName
|
|
2626
2656
|
* * Display Name: Code Name
|
|
2627
2657
|
* * SQL Data Type: nvarchar(MAX)
|
|
@@ -2634,7 +2664,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
2634
2664
|
* * Field Name: ClassName
|
|
2635
2665
|
* * Display Name: Class Name
|
|
2636
2666
|
* * SQL Data Type: nvarchar(MAX)
|
|
2637
|
-
* * Default Value:
|
|
2667
|
+
* * Default Value: Search
|
|
2638
2668
|
*/
|
|
2639
2669
|
get ClassName() {
|
|
2640
2670
|
return this.Get('ClassName');
|
|
@@ -3406,6 +3436,24 @@ let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
|
|
|
3406
3436
|
this.Set('TotalCount', value);
|
|
3407
3437
|
}
|
|
3408
3438
|
/**
|
|
3439
|
+
* * Field Name: __mj_CreatedAt
|
|
3440
|
+
* * Display Name: Created At
|
|
3441
|
+
* * SQL Data Type: datetimeoffset
|
|
3442
|
+
* * Default Value: getutcdate()
|
|
3443
|
+
*/
|
|
3444
|
+
get __mj_CreatedAt() {
|
|
3445
|
+
return this.Get('__mj_CreatedAt');
|
|
3446
|
+
}
|
|
3447
|
+
/**
|
|
3448
|
+
* * Field Name: __mj_UpdatedAt
|
|
3449
|
+
* * Display Name: Updated At
|
|
3450
|
+
* * SQL Data Type: datetimeoffset
|
|
3451
|
+
* * Default Value: getutcdate()
|
|
3452
|
+
*/
|
|
3453
|
+
get __mj_UpdatedAt() {
|
|
3454
|
+
return this.Get('__mj_UpdatedAt');
|
|
3455
|
+
}
|
|
3456
|
+
/**
|
|
3409
3457
|
* * Field Name: Entity
|
|
3410
3458
|
* * Display Name: Entity
|
|
3411
3459
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -3879,6 +3927,24 @@ let CompanyIntegrationRunEntity = class CompanyIntegrationRunEntity extends core
|
|
|
3879
3927
|
this.Set('Comments', value);
|
|
3880
3928
|
}
|
|
3881
3929
|
/**
|
|
3930
|
+
* * Field Name: __mj_CreatedAt
|
|
3931
|
+
* * Display Name: Created At
|
|
3932
|
+
* * SQL Data Type: datetimeoffset
|
|
3933
|
+
* * Default Value: getutcdate()
|
|
3934
|
+
*/
|
|
3935
|
+
get __mj_CreatedAt() {
|
|
3936
|
+
return this.Get('__mj_CreatedAt');
|
|
3937
|
+
}
|
|
3938
|
+
/**
|
|
3939
|
+
* * Field Name: __mj_UpdatedAt
|
|
3940
|
+
* * Display Name: Updated At
|
|
3941
|
+
* * SQL Data Type: datetimeoffset
|
|
3942
|
+
* * Default Value: getutcdate()
|
|
3943
|
+
*/
|
|
3944
|
+
get __mj_UpdatedAt() {
|
|
3945
|
+
return this.Get('__mj_UpdatedAt');
|
|
3946
|
+
}
|
|
3947
|
+
/**
|
|
3882
3948
|
* * Field Name: RunByUser
|
|
3883
3949
|
* * Display Name: Run By User
|
|
3884
3950
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -4006,6 +4072,24 @@ let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity
|
|
|
4006
4072
|
this.Set('IsSuccess', value);
|
|
4007
4073
|
}
|
|
4008
4074
|
/**
|
|
4075
|
+
* * Field Name: __mj_CreatedAt
|
|
4076
|
+
* * Display Name: Created At
|
|
4077
|
+
* * SQL Data Type: datetimeoffset
|
|
4078
|
+
* * Default Value: getutcdate()
|
|
4079
|
+
*/
|
|
4080
|
+
get __mj_CreatedAt() {
|
|
4081
|
+
return this.Get('__mj_CreatedAt');
|
|
4082
|
+
}
|
|
4083
|
+
/**
|
|
4084
|
+
* * Field Name: __mj_UpdatedAt
|
|
4085
|
+
* * Display Name: Updated At
|
|
4086
|
+
* * SQL Data Type: datetimeoffset
|
|
4087
|
+
* * Default Value: getutcdate()
|
|
4088
|
+
*/
|
|
4089
|
+
get __mj_UpdatedAt() {
|
|
4090
|
+
return this.Get('__mj_UpdatedAt');
|
|
4091
|
+
}
|
|
4092
|
+
/**
|
|
4009
4093
|
* * Field Name: Entity
|
|
4010
4094
|
* * SQL Data Type: nvarchar(255)
|
|
4011
4095
|
*/
|
|
@@ -4123,19 +4207,9 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
|
|
|
4123
4207
|
this.Set('Message', value);
|
|
4124
4208
|
}
|
|
4125
4209
|
/**
|
|
4126
|
-
* * Field Name: CreatedAt
|
|
4127
|
-
* * Display Name: Created At
|
|
4128
|
-
* * SQL Data Type: datetime
|
|
4129
|
-
* * Default Value: getdate()
|
|
4130
|
-
*/
|
|
4131
|
-
get CreatedAt() {
|
|
4132
|
-
return this.Get('CreatedAt');
|
|
4133
|
-
}
|
|
4134
|
-
/**
|
|
4135
4210
|
* * Field Name: CreatedBy
|
|
4136
4211
|
* * Display Name: Created By
|
|
4137
4212
|
* * SQL Data Type: nvarchar(50)
|
|
4138
|
-
* * Default Value: suser_name()
|
|
4139
4213
|
*/
|
|
4140
4214
|
get CreatedBy() {
|
|
4141
4215
|
return this.Get('CreatedBy');
|
|
@@ -4146,6 +4220,7 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
|
|
|
4146
4220
|
/**
|
|
4147
4221
|
* * Field Name: Status
|
|
4148
4222
|
* * SQL Data Type: nvarchar(10)
|
|
4223
|
+
* * Default Value: suser_name()
|
|
4149
4224
|
*/
|
|
4150
4225
|
get Status() {
|
|
4151
4226
|
return this.Get('Status');
|
|
@@ -4173,6 +4248,23 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
|
|
|
4173
4248
|
set Details(value) {
|
|
4174
4249
|
this.Set('Details', value);
|
|
4175
4250
|
}
|
|
4251
|
+
/**
|
|
4252
|
+
* * Field Name: __mj_CreatedAt
|
|
4253
|
+
* * Display Name: Created At
|
|
4254
|
+
* * SQL Data Type: datetimeoffset
|
|
4255
|
+
*/
|
|
4256
|
+
get __mj_CreatedAt() {
|
|
4257
|
+
return this.Get('__mj_CreatedAt');
|
|
4258
|
+
}
|
|
4259
|
+
/**
|
|
4260
|
+
* * Field Name: __mj_UpdatedAt
|
|
4261
|
+
* * Display Name: Updated At
|
|
4262
|
+
* * SQL Data Type: datetimeoffset
|
|
4263
|
+
* * Default Value: getutcdate()
|
|
4264
|
+
*/
|
|
4265
|
+
get __mj_UpdatedAt() {
|
|
4266
|
+
return this.Get('__mj_UpdatedAt');
|
|
4267
|
+
}
|
|
4176
4268
|
};
|
|
4177
4269
|
exports.ErrorLogEntity = ErrorLogEntity;
|
|
4178
4270
|
exports.ErrorLogEntity = ErrorLogEntity = __decorate([
|
|
@@ -4726,6 +4818,24 @@ let UserApplicationEntityEntity = class UserApplicationEntityEntity extends core
|
|
|
4726
4818
|
this.Set('Sequence', value);
|
|
4727
4819
|
}
|
|
4728
4820
|
/**
|
|
4821
|
+
* * Field Name: __mj_CreatedAt
|
|
4822
|
+
* * Display Name: Created At
|
|
4823
|
+
* * SQL Data Type: datetimeoffset
|
|
4824
|
+
* * Default Value: getutcdate()
|
|
4825
|
+
*/
|
|
4826
|
+
get __mj_CreatedAt() {
|
|
4827
|
+
return this.Get('__mj_CreatedAt');
|
|
4828
|
+
}
|
|
4829
|
+
/**
|
|
4830
|
+
* * Field Name: __mj_UpdatedAt
|
|
4831
|
+
* * Display Name: Updated At
|
|
4832
|
+
* * SQL Data Type: datetimeoffset
|
|
4833
|
+
* * Default Value: getutcdate()
|
|
4834
|
+
*/
|
|
4835
|
+
get __mj_UpdatedAt() {
|
|
4836
|
+
return this.Get('__mj_UpdatedAt');
|
|
4837
|
+
}
|
|
4838
|
+
/**
|
|
4729
4839
|
* * Field Name: Application
|
|
4730
4840
|
* * Display Name: Application
|
|
4731
4841
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -4836,18 +4946,36 @@ let UserApplicationEntity = class UserApplicationEntity extends core_1.BaseEntit
|
|
|
4836
4946
|
this.Set('IsActive', value);
|
|
4837
4947
|
}
|
|
4838
4948
|
/**
|
|
4839
|
-
* * Field Name:
|
|
4840
|
-
* * Display Name:
|
|
4841
|
-
* * SQL Data Type:
|
|
4949
|
+
* * Field Name: __mj_CreatedAt
|
|
4950
|
+
* * Display Name: Created At
|
|
4951
|
+
* * SQL Data Type: datetimeoffset
|
|
4952
|
+
* * Default Value: getutcdate()
|
|
4842
4953
|
*/
|
|
4843
|
-
get
|
|
4844
|
-
return this.Get('
|
|
4954
|
+
get __mj_CreatedAt() {
|
|
4955
|
+
return this.Get('__mj_CreatedAt');
|
|
4845
4956
|
}
|
|
4846
4957
|
/**
|
|
4847
|
-
* * Field Name:
|
|
4848
|
-
* * Display Name:
|
|
4849
|
-
* * SQL Data Type:
|
|
4850
|
-
|
|
4958
|
+
* * Field Name: __mj_UpdatedAt
|
|
4959
|
+
* * Display Name: Updated At
|
|
4960
|
+
* * SQL Data Type: datetimeoffset
|
|
4961
|
+
* * Default Value: getutcdate()
|
|
4962
|
+
*/
|
|
4963
|
+
get __mj_UpdatedAt() {
|
|
4964
|
+
return this.Get('__mj_UpdatedAt');
|
|
4965
|
+
}
|
|
4966
|
+
/**
|
|
4967
|
+
* * Field Name: User
|
|
4968
|
+
* * Display Name: User
|
|
4969
|
+
* * SQL Data Type: nvarchar(100)
|
|
4970
|
+
*/
|
|
4971
|
+
get User() {
|
|
4972
|
+
return this.Get('User');
|
|
4973
|
+
}
|
|
4974
|
+
/**
|
|
4975
|
+
* * Field Name: Application
|
|
4976
|
+
* * Display Name: Application
|
|
4977
|
+
* * SQL Data Type: nvarchar(50)
|
|
4978
|
+
*/
|
|
4851
4979
|
get Application() {
|
|
4852
4980
|
return this.Get('Application');
|
|
4853
4981
|
}
|
|
@@ -4977,6 +5105,24 @@ let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity
|
|
|
4977
5105
|
set Parameters(value) {
|
|
4978
5106
|
this.Set('Parameters', value);
|
|
4979
5107
|
}
|
|
5108
|
+
/**
|
|
5109
|
+
* * Field Name: __mj_CreatedAt
|
|
5110
|
+
* * Display Name: Created At
|
|
5111
|
+
* * SQL Data Type: datetimeoffset
|
|
5112
|
+
* * Default Value: getutcdate()
|
|
5113
|
+
*/
|
|
5114
|
+
get __mj_CreatedAt() {
|
|
5115
|
+
return this.Get('__mj_CreatedAt');
|
|
5116
|
+
}
|
|
5117
|
+
/**
|
|
5118
|
+
* * Field Name: __mj_UpdatedAt
|
|
5119
|
+
* * Display Name: Updated At
|
|
5120
|
+
* * SQL Data Type: datetimeoffset
|
|
5121
|
+
* * Default Value: getutcdate()
|
|
5122
|
+
*/
|
|
5123
|
+
get __mj_UpdatedAt() {
|
|
5124
|
+
return this.Get('__mj_UpdatedAt');
|
|
5125
|
+
}
|
|
4980
5126
|
};
|
|
4981
5127
|
exports.CompanyIntegrationRunAPILogEntity = CompanyIntegrationRunAPILogEntity;
|
|
4982
5128
|
exports.CompanyIntegrationRunAPILogEntity = CompanyIntegrationRunAPILogEntity = __decorate([
|
|
@@ -5085,24 +5231,6 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
|
|
|
5085
5231
|
this.Set('CompanyIntegrationID', value);
|
|
5086
5232
|
}
|
|
5087
5233
|
/**
|
|
5088
|
-
* * Field Name: CreatedAt
|
|
5089
|
-
* * Display Name: Created At
|
|
5090
|
-
* * SQL Data Type: datetime
|
|
5091
|
-
* * Default Value: getdate()
|
|
5092
|
-
*/
|
|
5093
|
-
get CreatedAt() {
|
|
5094
|
-
return this.Get('CreatedAt');
|
|
5095
|
-
}
|
|
5096
|
-
/**
|
|
5097
|
-
* * Field Name: UpdatedAt
|
|
5098
|
-
* * Display Name: Updated At
|
|
5099
|
-
* * SQL Data Type: datetime
|
|
5100
|
-
* * Default Value: getdate()
|
|
5101
|
-
*/
|
|
5102
|
-
get UpdatedAt() {
|
|
5103
|
-
return this.Get('UpdatedAt');
|
|
5104
|
-
}
|
|
5105
|
-
/**
|
|
5106
5234
|
* * Field Name: CategoryID
|
|
5107
5235
|
* * Display Name: Category ID
|
|
5108
5236
|
* * SQL Data Type: int
|
|
@@ -5114,9 +5242,26 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
|
|
|
5114
5242
|
this.Set('CategoryID', value);
|
|
5115
5243
|
}
|
|
5116
5244
|
/**
|
|
5245
|
+
* * Field Name: __mj_CreatedAt
|
|
5246
|
+
* * Display Name: Created At
|
|
5247
|
+
* * SQL Data Type: datetimeoffset
|
|
5248
|
+
*/
|
|
5249
|
+
get __mj_CreatedAt() {
|
|
5250
|
+
return this.Get('__mj_CreatedAt');
|
|
5251
|
+
}
|
|
5252
|
+
/**
|
|
5253
|
+
* * Field Name: __mj_UpdatedAt
|
|
5254
|
+
* * Display Name: Updated At
|
|
5255
|
+
* * SQL Data Type: datetimeoffset
|
|
5256
|
+
*/
|
|
5257
|
+
get __mj_UpdatedAt() {
|
|
5258
|
+
return this.Get('__mj_UpdatedAt');
|
|
5259
|
+
}
|
|
5260
|
+
/**
|
|
5117
5261
|
* * Field Name: Entity
|
|
5118
5262
|
* * Display Name: Entity
|
|
5119
5263
|
* * SQL Data Type: nvarchar(255)
|
|
5264
|
+
* * Default Value: getutcdate()
|
|
5120
5265
|
*/
|
|
5121
5266
|
get Entity() {
|
|
5122
5267
|
return this.Get('Entity');
|
|
@@ -5125,6 +5270,7 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
|
|
|
5125
5270
|
* * Field Name: User
|
|
5126
5271
|
* * Display Name: User
|
|
5127
5272
|
* * SQL Data Type: nvarchar(100)
|
|
5273
|
+
* * Default Value: getutcdate()
|
|
5128
5274
|
*/
|
|
5129
5275
|
get User() {
|
|
5130
5276
|
return this.Get('User');
|
|
@@ -5204,6 +5350,24 @@ let ListDetailEntity = class ListDetailEntity extends core_1.BaseEntity {
|
|
|
5204
5350
|
this.Set('Sequence', value);
|
|
5205
5351
|
}
|
|
5206
5352
|
/**
|
|
5353
|
+
* * Field Name: __mj_CreatedAt
|
|
5354
|
+
* * Display Name: Created At
|
|
5355
|
+
* * SQL Data Type: datetimeoffset
|
|
5356
|
+
* * Default Value: getutcdate()
|
|
5357
|
+
*/
|
|
5358
|
+
get __mj_CreatedAt() {
|
|
5359
|
+
return this.Get('__mj_CreatedAt');
|
|
5360
|
+
}
|
|
5361
|
+
/**
|
|
5362
|
+
* * Field Name: __mj_UpdatedAt
|
|
5363
|
+
* * Display Name: Updated At
|
|
5364
|
+
* * SQL Data Type: datetimeoffset
|
|
5365
|
+
* * Default Value: getutcdate()
|
|
5366
|
+
*/
|
|
5367
|
+
get __mj_UpdatedAt() {
|
|
5368
|
+
return this.Get('__mj_UpdatedAt');
|
|
5369
|
+
}
|
|
5370
|
+
/**
|
|
5207
5371
|
* * Field Name: List
|
|
5208
5372
|
* * Display Name: List
|
|
5209
5373
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -5298,6 +5462,24 @@ let UserViewRunEntity = class UserViewRunEntity extends core_1.BaseEntity {
|
|
|
5298
5462
|
this.Set('RunByUserID', value);
|
|
5299
5463
|
}
|
|
5300
5464
|
/**
|
|
5465
|
+
* * Field Name: __mj_CreatedAt
|
|
5466
|
+
* * Display Name: Created At
|
|
5467
|
+
* * SQL Data Type: datetimeoffset
|
|
5468
|
+
* * Default Value: getutcdate()
|
|
5469
|
+
*/
|
|
5470
|
+
get __mj_CreatedAt() {
|
|
5471
|
+
return this.Get('__mj_CreatedAt');
|
|
5472
|
+
}
|
|
5473
|
+
/**
|
|
5474
|
+
* * Field Name: __mj_UpdatedAt
|
|
5475
|
+
* * Display Name: Updated At
|
|
5476
|
+
* * SQL Data Type: datetimeoffset
|
|
5477
|
+
* * Default Value: getutcdate()
|
|
5478
|
+
*/
|
|
5479
|
+
get __mj_UpdatedAt() {
|
|
5480
|
+
return this.Get('__mj_UpdatedAt');
|
|
5481
|
+
}
|
|
5482
|
+
/**
|
|
5301
5483
|
* * Field Name: UserView
|
|
5302
5484
|
* * Display Name: User View
|
|
5303
5485
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -5388,6 +5570,24 @@ let UserViewRunDetailEntity = class UserViewRunDetailEntity extends core_1.BaseE
|
|
|
5388
5570
|
this.Set('RecordID', value);
|
|
5389
5571
|
}
|
|
5390
5572
|
/**
|
|
5573
|
+
* * Field Name: __mj_CreatedAt
|
|
5574
|
+
* * Display Name: Created At
|
|
5575
|
+
* * SQL Data Type: datetimeoffset
|
|
5576
|
+
* * Default Value: getutcdate()
|
|
5577
|
+
*/
|
|
5578
|
+
get __mj_CreatedAt() {
|
|
5579
|
+
return this.Get('__mj_CreatedAt');
|
|
5580
|
+
}
|
|
5581
|
+
/**
|
|
5582
|
+
* * Field Name: __mj_UpdatedAt
|
|
5583
|
+
* * Display Name: Updated At
|
|
5584
|
+
* * SQL Data Type: datetimeoffset
|
|
5585
|
+
* * Default Value: getutcdate()
|
|
5586
|
+
*/
|
|
5587
|
+
get __mj_UpdatedAt() {
|
|
5588
|
+
return this.Get('__mj_UpdatedAt');
|
|
5589
|
+
}
|
|
5590
|
+
/**
|
|
5391
5591
|
* * Field Name: UserViewID
|
|
5392
5592
|
* * Display Name: User View
|
|
5393
5593
|
* * SQL Data Type: int
|
|
@@ -5526,6 +5726,24 @@ let WorkflowRunEntity = class WorkflowRunEntity extends core_1.BaseEntity {
|
|
|
5526
5726
|
this.Set('Results', value);
|
|
5527
5727
|
}
|
|
5528
5728
|
/**
|
|
5729
|
+
* * Field Name: __mj_CreatedAt
|
|
5730
|
+
* * Display Name: Created At
|
|
5731
|
+
* * SQL Data Type: datetimeoffset
|
|
5732
|
+
* * Default Value: getutcdate()
|
|
5733
|
+
*/
|
|
5734
|
+
get __mj_CreatedAt() {
|
|
5735
|
+
return this.Get('__mj_CreatedAt');
|
|
5736
|
+
}
|
|
5737
|
+
/**
|
|
5738
|
+
* * Field Name: __mj_UpdatedAt
|
|
5739
|
+
* * Display Name: Updated At
|
|
5740
|
+
* * SQL Data Type: datetimeoffset
|
|
5741
|
+
* * Default Value: getutcdate()
|
|
5742
|
+
*/
|
|
5743
|
+
get __mj_UpdatedAt() {
|
|
5744
|
+
return this.Get('__mj_UpdatedAt');
|
|
5745
|
+
}
|
|
5746
|
+
/**
|
|
5529
5747
|
* * Field Name: Workflow
|
|
5530
5748
|
* * Display Name: Workflow
|
|
5531
5749
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -5647,28 +5865,9 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
|
5647
5865
|
this.Set('ExternalSystemRecordID', value);
|
|
5648
5866
|
}
|
|
5649
5867
|
/**
|
|
5650
|
-
* * Field Name: CreatedAt
|
|
5651
|
-
* * Display Name: Created At
|
|
5652
|
-
* * SQL Data Type: datetime
|
|
5653
|
-
* * Default Value: getdate()
|
|
5654
|
-
*/
|
|
5655
|
-
get CreatedAt() {
|
|
5656
|
-
return this.Get('CreatedAt');
|
|
5657
|
-
}
|
|
5658
|
-
/**
|
|
5659
|
-
* * Field Name: UpdatedAt
|
|
5660
|
-
* * Display Name: Updated At
|
|
5661
|
-
* * SQL Data Type: datetime
|
|
5662
|
-
* * Default Value: getdate()
|
|
5663
|
-
*/
|
|
5664
|
-
get UpdatedAt() {
|
|
5665
|
-
return this.Get('UpdatedAt');
|
|
5666
|
-
}
|
|
5667
|
-
/**
|
|
5668
5868
|
* * Field Name: AutoRunEnabled
|
|
5669
5869
|
* * Display Name: Auto Run Enabled
|
|
5670
5870
|
* * SQL Data Type: bit
|
|
5671
|
-
* * Default Value: 0
|
|
5672
5871
|
* * Description: If set to 1, the workflow will be run automatically on the interval specified by the AutoRunIntervalType and AutoRunInterval fields
|
|
5673
5872
|
*/
|
|
5674
5873
|
get AutoRunEnabled() {
|
|
@@ -5701,6 +5900,7 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
|
5701
5900
|
* * Field Name: AutoRunInterval
|
|
5702
5901
|
* * Display Name: Auto Run Interval
|
|
5703
5902
|
* * SQL Data Type: int
|
|
5903
|
+
* * Default Value: 0
|
|
5704
5904
|
* * Description: The interval, denominated in the units specified in the AutoRunIntervalUnits column, between auto runs of this workflow.
|
|
5705
5905
|
*/
|
|
5706
5906
|
get AutoRunInterval() {
|
|
@@ -5722,9 +5922,26 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
|
5722
5922
|
this.Set('SubclassName', value);
|
|
5723
5923
|
}
|
|
5724
5924
|
/**
|
|
5925
|
+
* * Field Name: __mj_CreatedAt
|
|
5926
|
+
* * Display Name: Created At
|
|
5927
|
+
* * SQL Data Type: datetimeoffset
|
|
5928
|
+
*/
|
|
5929
|
+
get __mj_CreatedAt() {
|
|
5930
|
+
return this.Get('__mj_CreatedAt');
|
|
5931
|
+
}
|
|
5932
|
+
/**
|
|
5933
|
+
* * Field Name: __mj_UpdatedAt
|
|
5934
|
+
* * Display Name: Updated At
|
|
5935
|
+
* * SQL Data Type: datetimeoffset
|
|
5936
|
+
*/
|
|
5937
|
+
get __mj_UpdatedAt() {
|
|
5938
|
+
return this.Get('__mj_UpdatedAt');
|
|
5939
|
+
}
|
|
5940
|
+
/**
|
|
5725
5941
|
* * Field Name: AutoRunIntervalMinutes
|
|
5726
5942
|
* * Display Name: Auto Run Interval Minutes
|
|
5727
5943
|
* * SQL Data Type: int
|
|
5944
|
+
* * Default Value: getutcdate()
|
|
5728
5945
|
*/
|
|
5729
5946
|
get AutoRunIntervalMinutes() {
|
|
5730
5947
|
return this.Get('AutoRunIntervalMinutes');
|
|
@@ -5822,22 +6039,20 @@ let WorkflowEngineEntity = class WorkflowEngineEntity extends core_1.BaseEntity
|
|
|
5822
6039
|
this.Set('DriverClass', value);
|
|
5823
6040
|
}
|
|
5824
6041
|
/**
|
|
5825
|
-
* * Field Name:
|
|
6042
|
+
* * Field Name: __mj_CreatedAt
|
|
5826
6043
|
* * Display Name: Created At
|
|
5827
|
-
* * SQL Data Type:
|
|
5828
|
-
* * Default Value: getdate()
|
|
6044
|
+
* * SQL Data Type: datetimeoffset
|
|
5829
6045
|
*/
|
|
5830
|
-
get
|
|
5831
|
-
return this.Get('
|
|
6046
|
+
get __mj_CreatedAt() {
|
|
6047
|
+
return this.Get('__mj_CreatedAt');
|
|
5832
6048
|
}
|
|
5833
6049
|
/**
|
|
5834
|
-
* * Field Name:
|
|
6050
|
+
* * Field Name: __mj_UpdatedAt
|
|
5835
6051
|
* * Display Name: Updated At
|
|
5836
|
-
* * SQL Data Type:
|
|
5837
|
-
* * Default Value: getdate()
|
|
6052
|
+
* * SQL Data Type: datetimeoffset
|
|
5838
6053
|
*/
|
|
5839
|
-
get
|
|
5840
|
-
return this.Get('
|
|
6054
|
+
get __mj_UpdatedAt() {
|
|
6055
|
+
return this.Get('__mj_UpdatedAt');
|
|
5841
6056
|
}
|
|
5842
6057
|
};
|
|
5843
6058
|
exports.WorkflowEngineEntity = WorkflowEngineEntity;
|
|
@@ -6465,27 +6680,26 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
|
6465
6680
|
this.Set('RecordID', value);
|
|
6466
6681
|
}
|
|
6467
6682
|
/**
|
|
6468
|
-
* * Field Name:
|
|
6683
|
+
* * Field Name: __mj_CreatedAt
|
|
6469
6684
|
* * Display Name: Created At
|
|
6470
|
-
* * SQL Data Type:
|
|
6471
|
-
* * Default Value: getdate()
|
|
6685
|
+
* * SQL Data Type: datetimeoffset
|
|
6472
6686
|
*/
|
|
6473
|
-
get
|
|
6474
|
-
return this.Get('
|
|
6687
|
+
get __mj_CreatedAt() {
|
|
6688
|
+
return this.Get('__mj_CreatedAt');
|
|
6475
6689
|
}
|
|
6476
6690
|
/**
|
|
6477
|
-
* * Field Name:
|
|
6691
|
+
* * Field Name: __mj_UpdatedAt
|
|
6478
6692
|
* * Display Name: Updated At
|
|
6479
|
-
* * SQL Data Type:
|
|
6480
|
-
* * Default Value: getdate()
|
|
6693
|
+
* * SQL Data Type: datetimeoffset
|
|
6481
6694
|
*/
|
|
6482
|
-
get
|
|
6483
|
-
return this.Get('
|
|
6695
|
+
get __mj_UpdatedAt() {
|
|
6696
|
+
return this.Get('__mj_UpdatedAt');
|
|
6484
6697
|
}
|
|
6485
6698
|
/**
|
|
6486
6699
|
* * Field Name: User
|
|
6487
6700
|
* * Display Name: User
|
|
6488
6701
|
* * SQL Data Type: nvarchar(100)
|
|
6702
|
+
* * Default Value: getutcdate()
|
|
6489
6703
|
*/
|
|
6490
6704
|
get User() {
|
|
6491
6705
|
return this.Get('User');
|
|
@@ -6494,6 +6708,7 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
|
6494
6708
|
* * Field Name: Entity
|
|
6495
6709
|
* * Display Name: Entity
|
|
6496
6710
|
* * SQL Data Type: nvarchar(255)
|
|
6711
|
+
* * Default Value: getutcdate()
|
|
6497
6712
|
*/
|
|
6498
6713
|
get Entity() {
|
|
6499
6714
|
return this.Get('Entity');
|
|
@@ -6746,22 +6961,20 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
|
|
|
6746
6961
|
this.Set('Type', value);
|
|
6747
6962
|
}
|
|
6748
6963
|
/**
|
|
6749
|
-
* * Field Name:
|
|
6964
|
+
* * Field Name: __mj_CreatedAt
|
|
6750
6965
|
* * Display Name: Created At
|
|
6751
|
-
* * SQL Data Type:
|
|
6752
|
-
* * Default Value: getdate()
|
|
6966
|
+
* * SQL Data Type: datetimeoffset
|
|
6753
6967
|
*/
|
|
6754
|
-
get
|
|
6755
|
-
return this.Get('
|
|
6968
|
+
get __mj_CreatedAt() {
|
|
6969
|
+
return this.Get('__mj_CreatedAt');
|
|
6756
6970
|
}
|
|
6757
6971
|
/**
|
|
6758
|
-
* * Field Name:
|
|
6972
|
+
* * Field Name: __mj_UpdatedAt
|
|
6759
6973
|
* * Display Name: Updated At
|
|
6760
|
-
* * SQL Data Type:
|
|
6761
|
-
* * Default Value: getdate()
|
|
6974
|
+
* * SQL Data Type: datetimeoffset
|
|
6762
6975
|
*/
|
|
6763
|
-
get
|
|
6764
|
-
return this.Get('
|
|
6976
|
+
get __mj_UpdatedAt() {
|
|
6977
|
+
return this.Get('__mj_UpdatedAt');
|
|
6765
6978
|
}
|
|
6766
6979
|
};
|
|
6767
6980
|
exports.AuthorizationRoleEntity = AuthorizationRoleEntity;
|
|
@@ -7194,27 +7407,26 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
|
|
|
7194
7407
|
this.Set('PowerRank', value);
|
|
7195
7408
|
}
|
|
7196
7409
|
/**
|
|
7197
|
-
* * Field Name:
|
|
7410
|
+
* * Field Name: __mj_CreatedAt
|
|
7198
7411
|
* * Display Name: Created At
|
|
7199
|
-
* * SQL Data Type:
|
|
7200
|
-
* * Default Value: getdate()
|
|
7412
|
+
* * SQL Data Type: datetimeoffset
|
|
7201
7413
|
*/
|
|
7202
|
-
get
|
|
7203
|
-
return this.Get('
|
|
7414
|
+
get __mj_CreatedAt() {
|
|
7415
|
+
return this.Get('__mj_CreatedAt');
|
|
7204
7416
|
}
|
|
7205
7417
|
/**
|
|
7206
|
-
* * Field Name:
|
|
7418
|
+
* * Field Name: __mj_UpdatedAt
|
|
7207
7419
|
* * Display Name: Updated At
|
|
7208
|
-
* * SQL Data Type:
|
|
7209
|
-
* * Default Value: getdate()
|
|
7420
|
+
* * SQL Data Type: datetimeoffset
|
|
7210
7421
|
*/
|
|
7211
|
-
get
|
|
7212
|
-
return this.Get('
|
|
7422
|
+
get __mj_UpdatedAt() {
|
|
7423
|
+
return this.Get('__mj_UpdatedAt');
|
|
7213
7424
|
}
|
|
7214
7425
|
/**
|
|
7215
7426
|
* * Field Name: AIModelType
|
|
7216
7427
|
* * Display Name: AIModel Type
|
|
7217
7428
|
* * SQL Data Type: nvarchar(50)
|
|
7429
|
+
* * Default Value: getutcdate()
|
|
7218
7430
|
*/
|
|
7219
7431
|
get AIModelType() {
|
|
7220
7432
|
return this.Get('AIModelType');
|
|
@@ -7318,27 +7530,26 @@ let AIActionEntity = class AIActionEntity extends core_1.BaseEntity {
|
|
|
7318
7530
|
this.Set('IsActive', value);
|
|
7319
7531
|
}
|
|
7320
7532
|
/**
|
|
7321
|
-
* * Field Name:
|
|
7533
|
+
* * Field Name: __mj_CreatedAt
|
|
7322
7534
|
* * Display Name: Created At
|
|
7323
|
-
* * SQL Data Type:
|
|
7324
|
-
* * Default Value: getdate()
|
|
7535
|
+
* * SQL Data Type: datetimeoffset
|
|
7325
7536
|
*/
|
|
7326
|
-
get
|
|
7327
|
-
return this.Get('
|
|
7537
|
+
get __mj_CreatedAt() {
|
|
7538
|
+
return this.Get('__mj_CreatedAt');
|
|
7328
7539
|
}
|
|
7329
7540
|
/**
|
|
7330
|
-
* * Field Name:
|
|
7541
|
+
* * Field Name: __mj_UpdatedAt
|
|
7331
7542
|
* * Display Name: Updated At
|
|
7332
|
-
* * SQL Data Type:
|
|
7333
|
-
* * Default Value: getdate()
|
|
7543
|
+
* * SQL Data Type: datetimeoffset
|
|
7334
7544
|
*/
|
|
7335
|
-
get
|
|
7336
|
-
return this.Get('
|
|
7545
|
+
get __mj_UpdatedAt() {
|
|
7546
|
+
return this.Get('__mj_UpdatedAt');
|
|
7337
7547
|
}
|
|
7338
7548
|
/**
|
|
7339
7549
|
* * Field Name: DefaultModel
|
|
7340
7550
|
* * Display Name: Default Model
|
|
7341
7551
|
* * SQL Data Type: nvarchar(50)
|
|
7552
|
+
* * Default Value: getutcdate()
|
|
7342
7553
|
*/
|
|
7343
7554
|
get DefaultModel() {
|
|
7344
7555
|
return this.Get('DefaultModel');
|
|
@@ -7421,27 +7632,26 @@ let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
|
|
|
7421
7632
|
this.Set('IsActive', value);
|
|
7422
7633
|
}
|
|
7423
7634
|
/**
|
|
7424
|
-
* * Field Name:
|
|
7635
|
+
* * Field Name: __mj_CreatedAt
|
|
7425
7636
|
* * Display Name: Created At
|
|
7426
|
-
* * SQL Data Type:
|
|
7427
|
-
* * Default Value: getdate()
|
|
7637
|
+
* * SQL Data Type: datetimeoffset
|
|
7428
7638
|
*/
|
|
7429
|
-
get
|
|
7430
|
-
return this.Get('
|
|
7639
|
+
get __mj_CreatedAt() {
|
|
7640
|
+
return this.Get('__mj_CreatedAt');
|
|
7431
7641
|
}
|
|
7432
7642
|
/**
|
|
7433
|
-
* * Field Name:
|
|
7643
|
+
* * Field Name: __mj_UpdatedAt
|
|
7434
7644
|
* * Display Name: Updated At
|
|
7435
|
-
* * SQL Data Type:
|
|
7436
|
-
* * Default Value: getdate()
|
|
7645
|
+
* * SQL Data Type: datetimeoffset
|
|
7437
7646
|
*/
|
|
7438
|
-
get
|
|
7439
|
-
return this.Get('
|
|
7647
|
+
get __mj_UpdatedAt() {
|
|
7648
|
+
return this.Get('__mj_UpdatedAt');
|
|
7440
7649
|
}
|
|
7441
7650
|
/**
|
|
7442
7651
|
* * Field Name: AIModel
|
|
7443
7652
|
* * Display Name: AIModel
|
|
7444
7653
|
* * SQL Data Type: nvarchar(50)
|
|
7654
|
+
* * Default Value: getutcdate()
|
|
7445
7655
|
*/
|
|
7446
7656
|
get AIModel() {
|
|
7447
7657
|
return this.Get('AIModel');
|
|
@@ -7450,6 +7660,7 @@ let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
|
|
|
7450
7660
|
* * Field Name: AIAction
|
|
7451
7661
|
* * Display Name: AIAction
|
|
7452
7662
|
* * SQL Data Type: nvarchar(50)
|
|
7663
|
+
* * Default Value: getutcdate()
|
|
7453
7664
|
*/
|
|
7454
7665
|
get AIAction() {
|
|
7455
7666
|
return this.Get('AIAction');
|
|
@@ -7755,6 +7966,24 @@ let AIModelTypeEntity = class AIModelTypeEntity extends core_1.BaseEntity {
|
|
|
7755
7966
|
set Description(value) {
|
|
7756
7967
|
this.Set('Description', value);
|
|
7757
7968
|
}
|
|
7969
|
+
/**
|
|
7970
|
+
* * Field Name: __mj_CreatedAt
|
|
7971
|
+
* * Display Name: Created At
|
|
7972
|
+
* * SQL Data Type: datetimeoffset
|
|
7973
|
+
* * Default Value: getutcdate()
|
|
7974
|
+
*/
|
|
7975
|
+
get __mj_CreatedAt() {
|
|
7976
|
+
return this.Get('__mj_CreatedAt');
|
|
7977
|
+
}
|
|
7978
|
+
/**
|
|
7979
|
+
* * Field Name: __mj_UpdatedAt
|
|
7980
|
+
* * Display Name: Updated At
|
|
7981
|
+
* * SQL Data Type: datetimeoffset
|
|
7982
|
+
* * Default Value: getutcdate()
|
|
7983
|
+
*/
|
|
7984
|
+
get __mj_UpdatedAt() {
|
|
7985
|
+
return this.Get('__mj_UpdatedAt');
|
|
7986
|
+
}
|
|
7758
7987
|
};
|
|
7759
7988
|
exports.AIModelTypeEntity = AIModelTypeEntity;
|
|
7760
7989
|
exports.AIModelTypeEntity = AIModelTypeEntity = __decorate([
|
|
@@ -7873,6 +8102,24 @@ let QueueTypeEntity = class QueueTypeEntity extends core_1.BaseEntity {
|
|
|
7873
8102
|
set IsActive(value) {
|
|
7874
8103
|
this.Set('IsActive', value);
|
|
7875
8104
|
}
|
|
8105
|
+
/**
|
|
8106
|
+
* * Field Name: __mj_CreatedAt
|
|
8107
|
+
* * Display Name: Created At
|
|
8108
|
+
* * SQL Data Type: datetimeoffset
|
|
8109
|
+
* * Default Value: getutcdate()
|
|
8110
|
+
*/
|
|
8111
|
+
get __mj_CreatedAt() {
|
|
8112
|
+
return this.Get('__mj_CreatedAt');
|
|
8113
|
+
}
|
|
8114
|
+
/**
|
|
8115
|
+
* * Field Name: __mj_UpdatedAt
|
|
8116
|
+
* * Display Name: Updated At
|
|
8117
|
+
* * SQL Data Type: datetimeoffset
|
|
8118
|
+
* * Default Value: getutcdate()
|
|
8119
|
+
*/
|
|
8120
|
+
get __mj_UpdatedAt() {
|
|
8121
|
+
return this.Get('__mj_UpdatedAt');
|
|
8122
|
+
}
|
|
7876
8123
|
};
|
|
7877
8124
|
exports.QueueTypeEntity = QueueTypeEntity;
|
|
7878
8125
|
exports.QueueTypeEntity = QueueTypeEntity = __decorate([
|
|
@@ -8105,27 +8352,26 @@ let QueueEntity = class QueueEntity extends core_1.BaseEntity {
|
|
|
8105
8352
|
this.Set('LastHeartbeat', value);
|
|
8106
8353
|
}
|
|
8107
8354
|
/**
|
|
8108
|
-
* * Field Name:
|
|
8355
|
+
* * Field Name: __mj_CreatedAt
|
|
8109
8356
|
* * Display Name: Created At
|
|
8110
|
-
* * SQL Data Type:
|
|
8111
|
-
* * Default Value: getdate()
|
|
8357
|
+
* * SQL Data Type: datetimeoffset
|
|
8112
8358
|
*/
|
|
8113
|
-
get
|
|
8114
|
-
return this.Get('
|
|
8359
|
+
get __mj_CreatedAt() {
|
|
8360
|
+
return this.Get('__mj_CreatedAt');
|
|
8115
8361
|
}
|
|
8116
8362
|
/**
|
|
8117
|
-
* * Field Name:
|
|
8363
|
+
* * Field Name: __mj_UpdatedAt
|
|
8118
8364
|
* * Display Name: Updated At
|
|
8119
|
-
* * SQL Data Type:
|
|
8120
|
-
* * Default Value: getdate()
|
|
8365
|
+
* * SQL Data Type: datetimeoffset
|
|
8121
8366
|
*/
|
|
8122
|
-
get
|
|
8123
|
-
return this.Get('
|
|
8367
|
+
get __mj_UpdatedAt() {
|
|
8368
|
+
return this.Get('__mj_UpdatedAt');
|
|
8124
8369
|
}
|
|
8125
8370
|
/**
|
|
8126
8371
|
* * Field Name: QueueType
|
|
8127
8372
|
* * Display Name: Queue Type
|
|
8128
8373
|
* * SQL Data Type: nvarchar(50)
|
|
8374
|
+
* * Default Value: getutcdate()
|
|
8129
8375
|
*/
|
|
8130
8376
|
get QueueType() {
|
|
8131
8377
|
return this.Get('QueueType');
|
|
@@ -8288,6 +8534,24 @@ let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
|
|
|
8288
8534
|
this.Set('Comments', value);
|
|
8289
8535
|
}
|
|
8290
8536
|
/**
|
|
8537
|
+
* * Field Name: __mj_CreatedAt
|
|
8538
|
+
* * Display Name: Created At
|
|
8539
|
+
* * SQL Data Type: datetimeoffset
|
|
8540
|
+
* * Default Value: getutcdate()
|
|
8541
|
+
*/
|
|
8542
|
+
get __mj_CreatedAt() {
|
|
8543
|
+
return this.Get('__mj_CreatedAt');
|
|
8544
|
+
}
|
|
8545
|
+
/**
|
|
8546
|
+
* * Field Name: __mj_UpdatedAt
|
|
8547
|
+
* * Display Name: Updated At
|
|
8548
|
+
* * SQL Data Type: datetimeoffset
|
|
8549
|
+
* * Default Value: getutcdate()
|
|
8550
|
+
*/
|
|
8551
|
+
get __mj_UpdatedAt() {
|
|
8552
|
+
return this.Get('__mj_UpdatedAt');
|
|
8553
|
+
}
|
|
8554
|
+
/**
|
|
8291
8555
|
* * Field Name: Queue
|
|
8292
8556
|
* * Display Name: Queue
|
|
8293
8557
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -8394,6 +8658,24 @@ let DashboardEntity = class DashboardEntity extends core_1.BaseEntity {
|
|
|
8394
8658
|
this.Set('UserID', value);
|
|
8395
8659
|
}
|
|
8396
8660
|
/**
|
|
8661
|
+
* * Field Name: __mj_CreatedAt
|
|
8662
|
+
* * Display Name: Created At
|
|
8663
|
+
* * SQL Data Type: datetimeoffset
|
|
8664
|
+
* * Default Value: getutcdate()
|
|
8665
|
+
*/
|
|
8666
|
+
get __mj_CreatedAt() {
|
|
8667
|
+
return this.Get('__mj_CreatedAt');
|
|
8668
|
+
}
|
|
8669
|
+
/**
|
|
8670
|
+
* * Field Name: __mj_UpdatedAt
|
|
8671
|
+
* * Display Name: Updated At
|
|
8672
|
+
* * SQL Data Type: datetimeoffset
|
|
8673
|
+
* * Default Value: getutcdate()
|
|
8674
|
+
*/
|
|
8675
|
+
get __mj_UpdatedAt() {
|
|
8676
|
+
return this.Get('__mj_UpdatedAt');
|
|
8677
|
+
}
|
|
8678
|
+
/**
|
|
8397
8679
|
* * Field Name: Category
|
|
8398
8680
|
* * Display Name: Category
|
|
8399
8681
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -8493,6 +8775,24 @@ let OutputTriggerTypeEntity = class OutputTriggerTypeEntity extends core_1.BaseE
|
|
|
8493
8775
|
set Description(value) {
|
|
8494
8776
|
this.Set('Description', value);
|
|
8495
8777
|
}
|
|
8778
|
+
/**
|
|
8779
|
+
* * Field Name: __mj_CreatedAt
|
|
8780
|
+
* * Display Name: Created At
|
|
8781
|
+
* * SQL Data Type: datetimeoffset
|
|
8782
|
+
* * Default Value: getutcdate()
|
|
8783
|
+
*/
|
|
8784
|
+
get __mj_CreatedAt() {
|
|
8785
|
+
return this.Get('__mj_CreatedAt');
|
|
8786
|
+
}
|
|
8787
|
+
/**
|
|
8788
|
+
* * Field Name: __mj_UpdatedAt
|
|
8789
|
+
* * Display Name: Updated At
|
|
8790
|
+
* * SQL Data Type: datetimeoffset
|
|
8791
|
+
* * Default Value: getutcdate()
|
|
8792
|
+
*/
|
|
8793
|
+
get __mj_UpdatedAt() {
|
|
8794
|
+
return this.Get('__mj_UpdatedAt');
|
|
8795
|
+
}
|
|
8496
8796
|
};
|
|
8497
8797
|
exports.OutputTriggerTypeEntity = OutputTriggerTypeEntity;
|
|
8498
8798
|
exports.OutputTriggerTypeEntity = OutputTriggerTypeEntity = __decorate([
|
|
@@ -8588,6 +8888,24 @@ let OutputFormatTypeEntity = class OutputFormatTypeEntity extends core_1.BaseEnt
|
|
|
8588
8888
|
set DisplayFormat(value) {
|
|
8589
8889
|
this.Set('DisplayFormat', value);
|
|
8590
8890
|
}
|
|
8891
|
+
/**
|
|
8892
|
+
* * Field Name: __mj_CreatedAt
|
|
8893
|
+
* * Display Name: Created At
|
|
8894
|
+
* * SQL Data Type: datetimeoffset
|
|
8895
|
+
* * Default Value: getutcdate()
|
|
8896
|
+
*/
|
|
8897
|
+
get __mj_CreatedAt() {
|
|
8898
|
+
return this.Get('__mj_CreatedAt');
|
|
8899
|
+
}
|
|
8900
|
+
/**
|
|
8901
|
+
* * Field Name: __mj_UpdatedAt
|
|
8902
|
+
* * Display Name: Updated At
|
|
8903
|
+
* * SQL Data Type: datetimeoffset
|
|
8904
|
+
* * Default Value: getutcdate()
|
|
8905
|
+
*/
|
|
8906
|
+
get __mj_UpdatedAt() {
|
|
8907
|
+
return this.Get('__mj_UpdatedAt');
|
|
8908
|
+
}
|
|
8591
8909
|
};
|
|
8592
8910
|
exports.OutputFormatTypeEntity = OutputFormatTypeEntity;
|
|
8593
8911
|
exports.OutputFormatTypeEntity = OutputFormatTypeEntity = __decorate([
|
|
@@ -8672,6 +8990,24 @@ let OutputDeliveryTypeEntity = class OutputDeliveryTypeEntity extends core_1.Bas
|
|
|
8672
8990
|
set Description(value) {
|
|
8673
8991
|
this.Set('Description', value);
|
|
8674
8992
|
}
|
|
8993
|
+
/**
|
|
8994
|
+
* * Field Name: __mj_CreatedAt
|
|
8995
|
+
* * Display Name: Created At
|
|
8996
|
+
* * SQL Data Type: datetimeoffset
|
|
8997
|
+
* * Default Value: getutcdate()
|
|
8998
|
+
*/
|
|
8999
|
+
get __mj_CreatedAt() {
|
|
9000
|
+
return this.Get('__mj_CreatedAt');
|
|
9001
|
+
}
|
|
9002
|
+
/**
|
|
9003
|
+
* * Field Name: __mj_UpdatedAt
|
|
9004
|
+
* * Display Name: Updated At
|
|
9005
|
+
* * SQL Data Type: datetimeoffset
|
|
9006
|
+
* * Default Value: getutcdate()
|
|
9007
|
+
*/
|
|
9008
|
+
get __mj_UpdatedAt() {
|
|
9009
|
+
return this.Get('__mj_UpdatedAt');
|
|
9010
|
+
}
|
|
8675
9011
|
};
|
|
8676
9012
|
exports.OutputDeliveryTypeEntity = OutputDeliveryTypeEntity;
|
|
8677
9013
|
exports.OutputDeliveryTypeEntity = OutputDeliveryTypeEntity = __decorate([
|
|
@@ -8905,27 +9241,26 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8905
9241
|
this.Set('OutputWorkflowID', value);
|
|
8906
9242
|
}
|
|
8907
9243
|
/**
|
|
8908
|
-
* * Field Name:
|
|
9244
|
+
* * Field Name: __mj_CreatedAt
|
|
8909
9245
|
* * Display Name: Created At
|
|
8910
|
-
* * SQL Data Type:
|
|
8911
|
-
* * Default Value: getdate()
|
|
9246
|
+
* * SQL Data Type: datetimeoffset
|
|
8912
9247
|
*/
|
|
8913
|
-
get
|
|
8914
|
-
return this.Get('
|
|
9248
|
+
get __mj_CreatedAt() {
|
|
9249
|
+
return this.Get('__mj_CreatedAt');
|
|
8915
9250
|
}
|
|
8916
9251
|
/**
|
|
8917
|
-
* * Field Name:
|
|
9252
|
+
* * Field Name: __mj_UpdatedAt
|
|
8918
9253
|
* * Display Name: Updated At
|
|
8919
|
-
* * SQL Data Type:
|
|
8920
|
-
* * Default Value: getdate()
|
|
9254
|
+
* * SQL Data Type: datetimeoffset
|
|
8921
9255
|
*/
|
|
8922
|
-
get
|
|
8923
|
-
return this.Get('
|
|
9256
|
+
get __mj_UpdatedAt() {
|
|
9257
|
+
return this.Get('__mj_UpdatedAt');
|
|
8924
9258
|
}
|
|
8925
9259
|
/**
|
|
8926
9260
|
* * Field Name: Category
|
|
8927
9261
|
* * Display Name: Category
|
|
8928
9262
|
* * SQL Data Type: nvarchar(100)
|
|
9263
|
+
* * Default Value: getutcdate()
|
|
8929
9264
|
*/
|
|
8930
9265
|
get Category() {
|
|
8931
9266
|
return this.Get('Category');
|
|
@@ -8934,6 +9269,7 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
8934
9269
|
* * Field Name: User
|
|
8935
9270
|
* * Display Name: User
|
|
8936
9271
|
* * SQL Data Type: nvarchar(100)
|
|
9272
|
+
* * Default Value: getutcdate()
|
|
8937
9273
|
*/
|
|
8938
9274
|
get User() {
|
|
8939
9275
|
return this.Get('User');
|
|
@@ -9058,15 +9394,6 @@ let ReportSnapshotEntity = class ReportSnapshotEntity extends core_1.BaseEntity
|
|
|
9058
9394
|
this.Set('ResultSet', value);
|
|
9059
9395
|
}
|
|
9060
9396
|
/**
|
|
9061
|
-
* * Field Name: CreatedAt
|
|
9062
|
-
* * Display Name: Created At
|
|
9063
|
-
* * SQL Data Type: datetime
|
|
9064
|
-
* * Default Value: getdate()
|
|
9065
|
-
*/
|
|
9066
|
-
get CreatedAt() {
|
|
9067
|
-
return this.Get('CreatedAt');
|
|
9068
|
-
}
|
|
9069
|
-
/**
|
|
9070
9397
|
* * Field Name: UserID
|
|
9071
9398
|
* * Display Name: User ID
|
|
9072
9399
|
* * SQL Data Type: int
|
|
@@ -9079,9 +9406,27 @@ let ReportSnapshotEntity = class ReportSnapshotEntity extends core_1.BaseEntity
|
|
|
9079
9406
|
this.Set('UserID', value);
|
|
9080
9407
|
}
|
|
9081
9408
|
/**
|
|
9409
|
+
* * Field Name: __mj_CreatedAt
|
|
9410
|
+
* * Display Name: Created At
|
|
9411
|
+
* * SQL Data Type: datetimeoffset
|
|
9412
|
+
*/
|
|
9413
|
+
get __mj_CreatedAt() {
|
|
9414
|
+
return this.Get('__mj_CreatedAt');
|
|
9415
|
+
}
|
|
9416
|
+
/**
|
|
9417
|
+
* * Field Name: __mj_UpdatedAt
|
|
9418
|
+
* * Display Name: Updated At
|
|
9419
|
+
* * SQL Data Type: datetimeoffset
|
|
9420
|
+
* * Default Value: getutcdate()
|
|
9421
|
+
*/
|
|
9422
|
+
get __mj_UpdatedAt() {
|
|
9423
|
+
return this.Get('__mj_UpdatedAt');
|
|
9424
|
+
}
|
|
9425
|
+
/**
|
|
9082
9426
|
* * Field Name: Report
|
|
9083
9427
|
* * Display Name: Report
|
|
9084
9428
|
* * SQL Data Type: nvarchar(255)
|
|
9429
|
+
* * Default Value: getutcdate()
|
|
9085
9430
|
*/
|
|
9086
9431
|
get Report() {
|
|
9087
9432
|
return this.Get('Report');
|
|
@@ -9346,6 +9691,24 @@ let TagEntity = class TagEntity extends core_1.BaseEntity {
|
|
|
9346
9691
|
this.Set('ParentID', value);
|
|
9347
9692
|
}
|
|
9348
9693
|
/**
|
|
9694
|
+
* * Field Name: __mj_CreatedAt
|
|
9695
|
+
* * Display Name: Created At
|
|
9696
|
+
* * SQL Data Type: datetimeoffset
|
|
9697
|
+
* * Default Value: getutcdate()
|
|
9698
|
+
*/
|
|
9699
|
+
get __mj_CreatedAt() {
|
|
9700
|
+
return this.Get('__mj_CreatedAt');
|
|
9701
|
+
}
|
|
9702
|
+
/**
|
|
9703
|
+
* * Field Name: __mj_UpdatedAt
|
|
9704
|
+
* * Display Name: Updated At
|
|
9705
|
+
* * SQL Data Type: datetimeoffset
|
|
9706
|
+
* * Default Value: getutcdate()
|
|
9707
|
+
*/
|
|
9708
|
+
get __mj_UpdatedAt() {
|
|
9709
|
+
return this.Get('__mj_UpdatedAt');
|
|
9710
|
+
}
|
|
9711
|
+
/**
|
|
9349
9712
|
* * Field Name: Parent
|
|
9350
9713
|
* * Display Name: Parent
|
|
9351
9714
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -9441,10 +9804,28 @@ let TaggedItemEntity = class TaggedItemEntity extends core_1.BaseEntity {
|
|
|
9441
9804
|
this.Set('RecordID', value);
|
|
9442
9805
|
}
|
|
9443
9806
|
/**
|
|
9444
|
-
* * Field Name:
|
|
9445
|
-
* * Display Name:
|
|
9446
|
-
* * SQL Data Type:
|
|
9447
|
-
|
|
9807
|
+
* * Field Name: __mj_CreatedAt
|
|
9808
|
+
* * Display Name: Created At
|
|
9809
|
+
* * SQL Data Type: datetimeoffset
|
|
9810
|
+
* * Default Value: getutcdate()
|
|
9811
|
+
*/
|
|
9812
|
+
get __mj_CreatedAt() {
|
|
9813
|
+
return this.Get('__mj_CreatedAt');
|
|
9814
|
+
}
|
|
9815
|
+
/**
|
|
9816
|
+
* * Field Name: __mj_UpdatedAt
|
|
9817
|
+
* * Display Name: Updated At
|
|
9818
|
+
* * SQL Data Type: datetimeoffset
|
|
9819
|
+
* * Default Value: getutcdate()
|
|
9820
|
+
*/
|
|
9821
|
+
get __mj_UpdatedAt() {
|
|
9822
|
+
return this.Get('__mj_UpdatedAt');
|
|
9823
|
+
}
|
|
9824
|
+
/**
|
|
9825
|
+
* * Field Name: Tag
|
|
9826
|
+
* * Display Name: Tag
|
|
9827
|
+
* * SQL Data Type: nvarchar(255)
|
|
9828
|
+
*/
|
|
9448
9829
|
get Tag() {
|
|
9449
9830
|
return this.Get('Tag');
|
|
9450
9831
|
}
|
|
@@ -9532,27 +9913,26 @@ let WorkspaceEntity = class WorkspaceEntity extends core_1.BaseEntity {
|
|
|
9532
9913
|
this.Set('UserID', value);
|
|
9533
9914
|
}
|
|
9534
9915
|
/**
|
|
9535
|
-
* * Field Name:
|
|
9916
|
+
* * Field Name: __mj_CreatedAt
|
|
9536
9917
|
* * Display Name: Created At
|
|
9537
|
-
* * SQL Data Type:
|
|
9538
|
-
* * Default Value: getdate()
|
|
9918
|
+
* * SQL Data Type: datetimeoffset
|
|
9539
9919
|
*/
|
|
9540
|
-
get
|
|
9541
|
-
return this.Get('
|
|
9920
|
+
get __mj_CreatedAt() {
|
|
9921
|
+
return this.Get('__mj_CreatedAt');
|
|
9542
9922
|
}
|
|
9543
9923
|
/**
|
|
9544
|
-
* * Field Name:
|
|
9924
|
+
* * Field Name: __mj_UpdatedAt
|
|
9545
9925
|
* * Display Name: Updated At
|
|
9546
|
-
* * SQL Data Type:
|
|
9547
|
-
* * Default Value: getdate()
|
|
9926
|
+
* * SQL Data Type: datetimeoffset
|
|
9548
9927
|
*/
|
|
9549
|
-
get
|
|
9550
|
-
return this.Get('
|
|
9928
|
+
get __mj_UpdatedAt() {
|
|
9929
|
+
return this.Get('__mj_UpdatedAt');
|
|
9551
9930
|
}
|
|
9552
9931
|
/**
|
|
9553
9932
|
* * Field Name: User
|
|
9554
9933
|
* * Display Name: User
|
|
9555
9934
|
* * SQL Data Type: nvarchar(100)
|
|
9935
|
+
* * Default Value: getutcdate()
|
|
9556
9936
|
*/
|
|
9557
9937
|
get User() {
|
|
9558
9938
|
return this.Get('User');
|
|
@@ -9678,27 +10058,26 @@ let WorkspaceItemEntity = class WorkspaceItemEntity extends core_1.BaseEntity {
|
|
|
9678
10058
|
this.Set('Configuration', value);
|
|
9679
10059
|
}
|
|
9680
10060
|
/**
|
|
9681
|
-
* * Field Name:
|
|
10061
|
+
* * Field Name: __mj_CreatedAt
|
|
9682
10062
|
* * Display Name: Created At
|
|
9683
|
-
* * SQL Data Type:
|
|
9684
|
-
* * Default Value: getdate()
|
|
10063
|
+
* * SQL Data Type: datetimeoffset
|
|
9685
10064
|
*/
|
|
9686
|
-
get
|
|
9687
|
-
return this.Get('
|
|
10065
|
+
get __mj_CreatedAt() {
|
|
10066
|
+
return this.Get('__mj_CreatedAt');
|
|
9688
10067
|
}
|
|
9689
10068
|
/**
|
|
9690
|
-
* * Field Name:
|
|
10069
|
+
* * Field Name: __mj_UpdatedAt
|
|
9691
10070
|
* * Display Name: Updated At
|
|
9692
|
-
* * SQL Data Type:
|
|
9693
|
-
* * Default Value: getdate()
|
|
10071
|
+
* * SQL Data Type: datetimeoffset
|
|
9694
10072
|
*/
|
|
9695
|
-
get
|
|
9696
|
-
return this.Get('
|
|
10073
|
+
get __mj_UpdatedAt() {
|
|
10074
|
+
return this.Get('__mj_UpdatedAt');
|
|
9697
10075
|
}
|
|
9698
10076
|
/**
|
|
9699
10077
|
* * Field Name: WorkSpace
|
|
9700
10078
|
* * Display Name: Work Space
|
|
9701
10079
|
* * SQL Data Type: nvarchar(255)
|
|
10080
|
+
* * Default Value: getutcdate()
|
|
9702
10081
|
*/
|
|
9703
10082
|
get WorkSpace() {
|
|
9704
10083
|
return this.Get('WorkSpace');
|
|
@@ -9707,6 +10086,7 @@ let WorkspaceItemEntity = class WorkspaceItemEntity extends core_1.BaseEntity {
|
|
|
9707
10086
|
* * Field Name: ResourceType
|
|
9708
10087
|
* * Display Name: Resource Type
|
|
9709
10088
|
* * SQL Data Type: nvarchar(255)
|
|
10089
|
+
* * Default Value: getutcdate()
|
|
9710
10090
|
*/
|
|
9711
10091
|
get ResourceType() {
|
|
9712
10092
|
return this.Get('ResourceType');
|
|
@@ -9797,22 +10177,20 @@ let DatasetEntity = class DatasetEntity extends core_1.BaseEntity {
|
|
|
9797
10177
|
this.Set('Description', value);
|
|
9798
10178
|
}
|
|
9799
10179
|
/**
|
|
9800
|
-
* * Field Name:
|
|
10180
|
+
* * Field Name: __mj_CreatedAt
|
|
9801
10181
|
* * Display Name: Created At
|
|
9802
|
-
* * SQL Data Type:
|
|
9803
|
-
* * Default Value: getdate()
|
|
10182
|
+
* * SQL Data Type: datetimeoffset
|
|
9804
10183
|
*/
|
|
9805
|
-
get
|
|
9806
|
-
return this.Get('
|
|
10184
|
+
get __mj_CreatedAt() {
|
|
10185
|
+
return this.Get('__mj_CreatedAt');
|
|
9807
10186
|
}
|
|
9808
10187
|
/**
|
|
9809
|
-
* * Field Name:
|
|
10188
|
+
* * Field Name: __mj_UpdatedAt
|
|
9810
10189
|
* * Display Name: Updated At
|
|
9811
|
-
* * SQL Data Type:
|
|
9812
|
-
* * Default Value: getdate()
|
|
10190
|
+
* * SQL Data Type: datetimeoffset
|
|
9813
10191
|
*/
|
|
9814
|
-
get
|
|
9815
|
-
return this.Get('
|
|
10192
|
+
get __mj_UpdatedAt() {
|
|
10193
|
+
return this.Get('__mj_UpdatedAt');
|
|
9816
10194
|
}
|
|
9817
10195
|
};
|
|
9818
10196
|
exports.DatasetEntity = DatasetEntity;
|
|
@@ -9958,27 +10336,26 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
|
|
|
9958
10336
|
this.Set('Description', value);
|
|
9959
10337
|
}
|
|
9960
10338
|
/**
|
|
9961
|
-
* * Field Name:
|
|
10339
|
+
* * Field Name: __mj_CreatedAt
|
|
9962
10340
|
* * Display Name: Created At
|
|
9963
|
-
* * SQL Data Type:
|
|
9964
|
-
* * Default Value: getdate()
|
|
10341
|
+
* * SQL Data Type: datetimeoffset
|
|
9965
10342
|
*/
|
|
9966
|
-
get
|
|
9967
|
-
return this.Get('
|
|
10343
|
+
get __mj_CreatedAt() {
|
|
10344
|
+
return this.Get('__mj_CreatedAt');
|
|
9968
10345
|
}
|
|
9969
10346
|
/**
|
|
9970
|
-
* * Field Name:
|
|
10347
|
+
* * Field Name: __mj_UpdatedAt
|
|
9971
10348
|
* * Display Name: Updated At
|
|
9972
|
-
* * SQL Data Type:
|
|
9973
|
-
* * Default Value: getdate()
|
|
10349
|
+
* * SQL Data Type: datetimeoffset
|
|
9974
10350
|
*/
|
|
9975
|
-
get
|
|
9976
|
-
return this.Get('
|
|
10351
|
+
get __mj_UpdatedAt() {
|
|
10352
|
+
return this.Get('__mj_UpdatedAt');
|
|
9977
10353
|
}
|
|
9978
10354
|
/**
|
|
9979
10355
|
* * Field Name: Entity
|
|
9980
10356
|
* * Display Name: Entity
|
|
9981
10357
|
* * SQL Data Type: nvarchar(255)
|
|
10358
|
+
* * Default Value: getutcdate()
|
|
9982
10359
|
*/
|
|
9983
10360
|
get Entity() {
|
|
9984
10361
|
return this.Get('Entity');
|
|
@@ -10098,27 +10475,26 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
|
|
|
10098
10475
|
this.Set('HiddenToUser', value);
|
|
10099
10476
|
}
|
|
10100
10477
|
/**
|
|
10101
|
-
* * Field Name:
|
|
10478
|
+
* * Field Name: __mj_CreatedAt
|
|
10102
10479
|
* * Display Name: Created At
|
|
10103
|
-
* * SQL Data Type:
|
|
10104
|
-
* * Default Value: getdate()
|
|
10480
|
+
* * SQL Data Type: datetimeoffset
|
|
10105
10481
|
*/
|
|
10106
|
-
get
|
|
10107
|
-
return this.Get('
|
|
10482
|
+
get __mj_CreatedAt() {
|
|
10483
|
+
return this.Get('__mj_CreatedAt');
|
|
10108
10484
|
}
|
|
10109
10485
|
/**
|
|
10110
|
-
* * Field Name:
|
|
10486
|
+
* * Field Name: __mj_UpdatedAt
|
|
10111
10487
|
* * Display Name: Updated At
|
|
10112
|
-
* * SQL Data Type:
|
|
10113
|
-
* * Default Value: getdate()
|
|
10488
|
+
* * SQL Data Type: datetimeoffset
|
|
10114
10489
|
*/
|
|
10115
|
-
get
|
|
10116
|
-
return this.Get('
|
|
10490
|
+
get __mj_UpdatedAt() {
|
|
10491
|
+
return this.Get('__mj_UpdatedAt');
|
|
10117
10492
|
}
|
|
10118
10493
|
/**
|
|
10119
10494
|
* * Field Name: Conversation
|
|
10120
10495
|
* * Display Name: Conversation
|
|
10121
10496
|
* * SQL Data Type: nvarchar(100)
|
|
10497
|
+
* * Default Value: getutcdate()
|
|
10122
10498
|
*/
|
|
10123
10499
|
get Conversation() {
|
|
10124
10500
|
return this.Get('Conversation');
|
|
@@ -10267,27 +10643,26 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
|
|
|
10267
10643
|
this.Set('DataContextID', value);
|
|
10268
10644
|
}
|
|
10269
10645
|
/**
|
|
10270
|
-
* * Field Name:
|
|
10646
|
+
* * Field Name: __mj_CreatedAt
|
|
10271
10647
|
* * Display Name: Created At
|
|
10272
|
-
* * SQL Data Type:
|
|
10273
|
-
* * Default Value: getdate()
|
|
10648
|
+
* * SQL Data Type: datetimeoffset
|
|
10274
10649
|
*/
|
|
10275
|
-
get
|
|
10276
|
-
return this.Get('
|
|
10650
|
+
get __mj_CreatedAt() {
|
|
10651
|
+
return this.Get('__mj_CreatedAt');
|
|
10277
10652
|
}
|
|
10278
10653
|
/**
|
|
10279
|
-
* * Field Name:
|
|
10654
|
+
* * Field Name: __mj_UpdatedAt
|
|
10280
10655
|
* * Display Name: Updated At
|
|
10281
|
-
* * SQL Data Type:
|
|
10282
|
-
* * Default Value: getdate()
|
|
10656
|
+
* * SQL Data Type: datetimeoffset
|
|
10283
10657
|
*/
|
|
10284
|
-
get
|
|
10285
|
-
return this.Get('
|
|
10658
|
+
get __mj_UpdatedAt() {
|
|
10659
|
+
return this.Get('__mj_UpdatedAt');
|
|
10286
10660
|
}
|
|
10287
10661
|
/**
|
|
10288
10662
|
* * Field Name: User
|
|
10289
10663
|
* * Display Name: User
|
|
10290
10664
|
* * SQL Data Type: nvarchar(100)
|
|
10665
|
+
* * Default Value: getutcdate()
|
|
10291
10666
|
*/
|
|
10292
10667
|
get User() {
|
|
10293
10668
|
return this.Get('User');
|
|
@@ -10296,6 +10671,7 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
|
|
|
10296
10671
|
* * Field Name: LinkedEntity
|
|
10297
10672
|
* * Display Name: Linked Entity
|
|
10298
10673
|
* * SQL Data Type: nvarchar(255)
|
|
10674
|
+
* * Default Value: getutcdate()
|
|
10299
10675
|
*/
|
|
10300
10676
|
get LinkedEntity() {
|
|
10301
10677
|
return this.Get('LinkedEntity');
|
|
@@ -10431,27 +10807,26 @@ let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEnt
|
|
|
10431
10807
|
this.Set('ReadAt', value);
|
|
10432
10808
|
}
|
|
10433
10809
|
/**
|
|
10434
|
-
* * Field Name:
|
|
10810
|
+
* * Field Name: __mj_CreatedAt
|
|
10435
10811
|
* * Display Name: Created At
|
|
10436
|
-
* * SQL Data Type:
|
|
10437
|
-
* * Default Value: getdate()
|
|
10812
|
+
* * SQL Data Type: datetimeoffset
|
|
10438
10813
|
*/
|
|
10439
|
-
get
|
|
10440
|
-
return this.Get('
|
|
10814
|
+
get __mj_CreatedAt() {
|
|
10815
|
+
return this.Get('__mj_CreatedAt');
|
|
10441
10816
|
}
|
|
10442
10817
|
/**
|
|
10443
|
-
* * Field Name:
|
|
10818
|
+
* * Field Name: __mj_UpdatedAt
|
|
10444
10819
|
* * Display Name: Updated At
|
|
10445
|
-
* * SQL Data Type:
|
|
10446
|
-
* * Default Value: getdate()
|
|
10820
|
+
* * SQL Data Type: datetimeoffset
|
|
10447
10821
|
*/
|
|
10448
|
-
get
|
|
10449
|
-
return this.Get('
|
|
10822
|
+
get __mj_UpdatedAt() {
|
|
10823
|
+
return this.Get('__mj_UpdatedAt');
|
|
10450
10824
|
}
|
|
10451
10825
|
/**
|
|
10452
10826
|
* * Field Name: User
|
|
10453
10827
|
* * Display Name: User
|
|
10454
10828
|
* * SQL Data Type: nvarchar(100)
|
|
10829
|
+
* * Default Value: getutcdate()
|
|
10455
10830
|
*/
|
|
10456
10831
|
get User() {
|
|
10457
10832
|
return this.Get('User');
|
|
@@ -10553,22 +10928,20 @@ let SchemaInfoEntity = class SchemaInfoEntity extends core_1.BaseEntity {
|
|
|
10553
10928
|
this.Set('Comments', value);
|
|
10554
10929
|
}
|
|
10555
10930
|
/**
|
|
10556
|
-
* * Field Name:
|
|
10931
|
+
* * Field Name: __mj_CreatedAt
|
|
10557
10932
|
* * Display Name: Created At
|
|
10558
|
-
* * SQL Data Type:
|
|
10559
|
-
* * Default Value: getdate()
|
|
10933
|
+
* * SQL Data Type: datetimeoffset
|
|
10560
10934
|
*/
|
|
10561
|
-
get
|
|
10562
|
-
return this.Get('
|
|
10935
|
+
get __mj_CreatedAt() {
|
|
10936
|
+
return this.Get('__mj_CreatedAt');
|
|
10563
10937
|
}
|
|
10564
10938
|
/**
|
|
10565
|
-
* * Field Name:
|
|
10939
|
+
* * Field Name: __mj_UpdatedAt
|
|
10566
10940
|
* * Display Name: Updated At
|
|
10567
|
-
* * SQL Data Type:
|
|
10568
|
-
* * Default Value: getdate()
|
|
10941
|
+
* * SQL Data Type: datetimeoffset
|
|
10569
10942
|
*/
|
|
10570
|
-
get
|
|
10571
|
-
return this.Get('
|
|
10943
|
+
get __mj_UpdatedAt() {
|
|
10944
|
+
return this.Get('__mj_UpdatedAt');
|
|
10572
10945
|
}
|
|
10573
10946
|
};
|
|
10574
10947
|
exports.SchemaInfoEntity = SchemaInfoEntity;
|
|
@@ -10668,27 +11041,26 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
|
|
|
10668
11041
|
this.Set('EntityRecordID', value);
|
|
10669
11042
|
}
|
|
10670
11043
|
/**
|
|
10671
|
-
* * Field Name:
|
|
11044
|
+
* * Field Name: __mj_CreatedAt
|
|
10672
11045
|
* * Display Name: Created At
|
|
10673
|
-
* * SQL Data Type:
|
|
10674
|
-
* * Default Value: getdate()
|
|
11046
|
+
* * SQL Data Type: datetimeoffset
|
|
10675
11047
|
*/
|
|
10676
|
-
get
|
|
10677
|
-
return this.Get('
|
|
11048
|
+
get __mj_CreatedAt() {
|
|
11049
|
+
return this.Get('__mj_CreatedAt');
|
|
10678
11050
|
}
|
|
10679
11051
|
/**
|
|
10680
|
-
* * Field Name:
|
|
11052
|
+
* * Field Name: __mj_UpdatedAt
|
|
10681
11053
|
* * Display Name: Updated At
|
|
10682
|
-
* * SQL Data Type:
|
|
10683
|
-
* * Default Value: getdate()
|
|
11054
|
+
* * SQL Data Type: datetimeoffset
|
|
10684
11055
|
*/
|
|
10685
|
-
get
|
|
10686
|
-
return this.Get('
|
|
11056
|
+
get __mj_UpdatedAt() {
|
|
11057
|
+
return this.Get('__mj_UpdatedAt');
|
|
10687
11058
|
}
|
|
10688
11059
|
/**
|
|
10689
11060
|
* * Field Name: Entity
|
|
10690
11061
|
* * Display Name: Entity
|
|
10691
11062
|
* * SQL Data Type: nvarchar(255)
|
|
11063
|
+
* * Default Value: getutcdate()
|
|
10692
11064
|
*/
|
|
10693
11065
|
get Entity() {
|
|
10694
11066
|
return this.Get('Entity');
|
|
@@ -10870,27 +11242,26 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
10870
11242
|
this.Set('Comments', value);
|
|
10871
11243
|
}
|
|
10872
11244
|
/**
|
|
10873
|
-
* * Field Name:
|
|
11245
|
+
* * Field Name: __mj_CreatedAt
|
|
10874
11246
|
* * Display Name: Created At
|
|
10875
|
-
* * SQL Data Type:
|
|
10876
|
-
* * Default Value: getdate()
|
|
11247
|
+
* * SQL Data Type: datetimeoffset
|
|
10877
11248
|
*/
|
|
10878
|
-
get
|
|
10879
|
-
return this.Get('
|
|
11249
|
+
get __mj_CreatedAt() {
|
|
11250
|
+
return this.Get('__mj_CreatedAt');
|
|
10880
11251
|
}
|
|
10881
11252
|
/**
|
|
10882
|
-
* * Field Name:
|
|
11253
|
+
* * Field Name: __mj_UpdatedAt
|
|
10883
11254
|
* * Display Name: Updated At
|
|
10884
|
-
* * SQL Data Type:
|
|
10885
|
-
* * Default Value: getdate()
|
|
11255
|
+
* * SQL Data Type: datetimeoffset
|
|
10886
11256
|
*/
|
|
10887
|
-
get
|
|
10888
|
-
return this.Get('
|
|
11257
|
+
get __mj_UpdatedAt() {
|
|
11258
|
+
return this.Get('__mj_UpdatedAt');
|
|
10889
11259
|
}
|
|
10890
11260
|
/**
|
|
10891
11261
|
* * Field Name: Entity
|
|
10892
11262
|
* * Display Name: Entity
|
|
10893
11263
|
* * SQL Data Type: nvarchar(255)
|
|
11264
|
+
* * Default Value: getutcdate()
|
|
10894
11265
|
*/
|
|
10895
11266
|
get Entity() {
|
|
10896
11267
|
return this.Get('Entity');
|
|
@@ -10899,6 +11270,7 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
10899
11270
|
* * Field Name: InitiatedByUser
|
|
10900
11271
|
* * Display Name: Initiated By User
|
|
10901
11272
|
* * SQL Data Type: nvarchar(100)
|
|
11273
|
+
* * Default Value: getutcdate()
|
|
10902
11274
|
*/
|
|
10903
11275
|
get InitiatedByUser() {
|
|
10904
11276
|
return this.Get('InitiatedByUser');
|
|
@@ -11006,22 +11378,20 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
|
|
|
11006
11378
|
this.Set('ProcessingLog', value);
|
|
11007
11379
|
}
|
|
11008
11380
|
/**
|
|
11009
|
-
* * Field Name:
|
|
11381
|
+
* * Field Name: __mj_CreatedAt
|
|
11010
11382
|
* * Display Name: Created At
|
|
11011
|
-
* * SQL Data Type:
|
|
11012
|
-
* * Default Value: getdate()
|
|
11383
|
+
* * SQL Data Type: datetimeoffset
|
|
11013
11384
|
*/
|
|
11014
|
-
get
|
|
11015
|
-
return this.Get('
|
|
11385
|
+
get __mj_CreatedAt() {
|
|
11386
|
+
return this.Get('__mj_CreatedAt');
|
|
11016
11387
|
}
|
|
11017
11388
|
/**
|
|
11018
|
-
* * Field Name:
|
|
11389
|
+
* * Field Name: __mj_UpdatedAt
|
|
11019
11390
|
* * Display Name: Updated At
|
|
11020
|
-
* * SQL Data Type:
|
|
11021
|
-
* * Default Value: getdate()
|
|
11391
|
+
* * SQL Data Type: datetimeoffset
|
|
11022
11392
|
*/
|
|
11023
|
-
get
|
|
11024
|
-
return this.Get('
|
|
11393
|
+
get __mj_UpdatedAt() {
|
|
11394
|
+
return this.Get('__mj_UpdatedAt');
|
|
11025
11395
|
}
|
|
11026
11396
|
};
|
|
11027
11397
|
exports.RecordMergeDeletionLogEntity = RecordMergeDeletionLogEntity;
|
|
@@ -11764,27 +12134,26 @@ let VectorIndexEntity = class VectorIndexEntity extends core_1.BaseEntity {
|
|
|
11764
12134
|
this.Set('EmbeddingModelID', value);
|
|
11765
12135
|
}
|
|
11766
12136
|
/**
|
|
11767
|
-
* * Field Name:
|
|
12137
|
+
* * Field Name: __mj_CreatedAt
|
|
11768
12138
|
* * Display Name: Created At
|
|
11769
|
-
* * SQL Data Type:
|
|
11770
|
-
* * Default Value: getdate()
|
|
12139
|
+
* * SQL Data Type: datetimeoffset
|
|
11771
12140
|
*/
|
|
11772
|
-
get
|
|
11773
|
-
return this.Get('
|
|
12141
|
+
get __mj_CreatedAt() {
|
|
12142
|
+
return this.Get('__mj_CreatedAt');
|
|
11774
12143
|
}
|
|
11775
12144
|
/**
|
|
11776
|
-
* * Field Name:
|
|
12145
|
+
* * Field Name: __mj_UpdatedAt
|
|
11777
12146
|
* * Display Name: Updated At
|
|
11778
|
-
* * SQL Data Type:
|
|
11779
|
-
* * Default Value: getdate()
|
|
12147
|
+
* * SQL Data Type: datetimeoffset
|
|
11780
12148
|
*/
|
|
11781
|
-
get
|
|
11782
|
-
return this.Get('
|
|
12149
|
+
get __mj_UpdatedAt() {
|
|
12150
|
+
return this.Get('__mj_UpdatedAt');
|
|
11783
12151
|
}
|
|
11784
12152
|
/**
|
|
11785
12153
|
* * Field Name: VectorDatabase
|
|
11786
12154
|
* * Display Name: Vector Database
|
|
11787
12155
|
* * SQL Data Type: nvarchar(100)
|
|
12156
|
+
* * Default Value: getutcdate()
|
|
11788
12157
|
*/
|
|
11789
12158
|
get VectorDatabase() {
|
|
11790
12159
|
return this.Get('VectorDatabase');
|
|
@@ -11793,6 +12162,7 @@ let VectorIndexEntity = class VectorIndexEntity extends core_1.BaseEntity {
|
|
|
11793
12162
|
* * Field Name: EmbeddingModel
|
|
11794
12163
|
* * Display Name: Embedding Model
|
|
11795
12164
|
* * SQL Data Type: nvarchar(50)
|
|
12165
|
+
* * Default Value: getutcdate()
|
|
11796
12166
|
*/
|
|
11797
12167
|
get EmbeddingModel() {
|
|
11798
12168
|
return this.Get('EmbeddingModel');
|
|
@@ -12110,22 +12480,20 @@ let VectorDatabaseEntity = class VectorDatabaseEntity extends core_1.BaseEntity
|
|
|
12110
12480
|
this.Set('ClassKey', value);
|
|
12111
12481
|
}
|
|
12112
12482
|
/**
|
|
12113
|
-
* * Field Name:
|
|
12483
|
+
* * Field Name: __mj_CreatedAt
|
|
12114
12484
|
* * Display Name: Created At
|
|
12115
|
-
* * SQL Data Type:
|
|
12116
|
-
* * Default Value: getdate()
|
|
12485
|
+
* * SQL Data Type: datetimeoffset
|
|
12117
12486
|
*/
|
|
12118
|
-
get
|
|
12119
|
-
return this.Get('
|
|
12487
|
+
get __mj_CreatedAt() {
|
|
12488
|
+
return this.Get('__mj_CreatedAt');
|
|
12120
12489
|
}
|
|
12121
12490
|
/**
|
|
12122
|
-
* * Field Name:
|
|
12491
|
+
* * Field Name: __mj_UpdatedAt
|
|
12123
12492
|
* * Display Name: Updated At
|
|
12124
|
-
* * SQL Data Type:
|
|
12125
|
-
* * Default Value: getdate()
|
|
12493
|
+
* * SQL Data Type: datetimeoffset
|
|
12126
12494
|
*/
|
|
12127
|
-
get
|
|
12128
|
-
return this.Get('
|
|
12495
|
+
get __mj_UpdatedAt() {
|
|
12496
|
+
return this.Get('__mj_UpdatedAt');
|
|
12129
12497
|
}
|
|
12130
12498
|
};
|
|
12131
12499
|
exports.VectorDatabaseEntity = VectorDatabaseEntity;
|
|
@@ -12641,27 +13009,26 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
|
|
|
12641
13009
|
this.Set('LastRefreshedAt', value);
|
|
12642
13010
|
}
|
|
12643
13011
|
/**
|
|
12644
|
-
* * Field Name:
|
|
13012
|
+
* * Field Name: __mj_CreatedAt
|
|
12645
13013
|
* * Display Name: Created At
|
|
12646
|
-
* * SQL Data Type:
|
|
12647
|
-
* * Default Value: getdate()
|
|
13014
|
+
* * SQL Data Type: datetimeoffset
|
|
12648
13015
|
*/
|
|
12649
|
-
get
|
|
12650
|
-
return this.Get('
|
|
13016
|
+
get __mj_CreatedAt() {
|
|
13017
|
+
return this.Get('__mj_CreatedAt');
|
|
12651
13018
|
}
|
|
12652
13019
|
/**
|
|
12653
|
-
* * Field Name:
|
|
13020
|
+
* * Field Name: __mj_UpdatedAt
|
|
12654
13021
|
* * Display Name: Updated At
|
|
12655
|
-
* * SQL Data Type:
|
|
12656
|
-
* * Default Value: getdate()
|
|
13022
|
+
* * SQL Data Type: datetimeoffset
|
|
12657
13023
|
*/
|
|
12658
|
-
get
|
|
12659
|
-
return this.Get('
|
|
13024
|
+
get __mj_UpdatedAt() {
|
|
13025
|
+
return this.Get('__mj_UpdatedAt');
|
|
12660
13026
|
}
|
|
12661
13027
|
/**
|
|
12662
13028
|
* * Field Name: DataContext
|
|
12663
13029
|
* * Display Name: Data Context
|
|
12664
13030
|
* * SQL Data Type: nvarchar(255)
|
|
13031
|
+
* * Default Value: getutcdate()
|
|
12665
13032
|
*/
|
|
12666
13033
|
get DataContext() {
|
|
12667
13034
|
return this.Get('DataContext');
|
|
@@ -12670,6 +13037,7 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
|
|
|
12670
13037
|
* * Field Name: View
|
|
12671
13038
|
* * Display Name: View
|
|
12672
13039
|
* * SQL Data Type: nvarchar(100)
|
|
13040
|
+
* * Default Value: getutcdate()
|
|
12673
13041
|
*/
|
|
12674
13042
|
get View() {
|
|
12675
13043
|
return this.Get('View');
|
|
@@ -12777,27 +13145,26 @@ let DataContextEntity = class DataContextEntity extends core_1.BaseEntity {
|
|
|
12777
13145
|
this.Set('LastRefreshedAt', value);
|
|
12778
13146
|
}
|
|
12779
13147
|
/**
|
|
12780
|
-
* * Field Name:
|
|
13148
|
+
* * Field Name: __mj_CreatedAt
|
|
12781
13149
|
* * Display Name: Created At
|
|
12782
|
-
* * SQL Data Type:
|
|
12783
|
-
* * Default Value: getdate()
|
|
13150
|
+
* * SQL Data Type: datetimeoffset
|
|
12784
13151
|
*/
|
|
12785
|
-
get
|
|
12786
|
-
return this.Get('
|
|
13152
|
+
get __mj_CreatedAt() {
|
|
13153
|
+
return this.Get('__mj_CreatedAt');
|
|
12787
13154
|
}
|
|
12788
13155
|
/**
|
|
12789
|
-
* * Field Name:
|
|
13156
|
+
* * Field Name: __mj_UpdatedAt
|
|
12790
13157
|
* * Display Name: Updated At
|
|
12791
|
-
* * SQL Data Type:
|
|
12792
|
-
* * Default Value: getdate()
|
|
13158
|
+
* * SQL Data Type: datetimeoffset
|
|
12793
13159
|
*/
|
|
12794
|
-
get
|
|
12795
|
-
return this.Get('
|
|
13160
|
+
get __mj_UpdatedAt() {
|
|
13161
|
+
return this.Get('__mj_UpdatedAt');
|
|
12796
13162
|
}
|
|
12797
13163
|
/**
|
|
12798
13164
|
* * Field Name: User
|
|
12799
13165
|
* * Display Name: User
|
|
12800
13166
|
* * SQL Data Type: nvarchar(100)
|
|
13167
|
+
* * Default Value: getutcdate()
|
|
12801
13168
|
*/
|
|
12802
13169
|
get User() {
|
|
12803
13170
|
return this.Get('User');
|
|
@@ -12877,24 +13244,6 @@ let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEnt
|
|
|
12877
13244
|
this.Set('ParentID', value);
|
|
12878
13245
|
}
|
|
12879
13246
|
/**
|
|
12880
|
-
* * Field Name: CreatedAt
|
|
12881
|
-
* * Display Name: Created At
|
|
12882
|
-
* * SQL Data Type: datetime
|
|
12883
|
-
* * Default Value: getdate()
|
|
12884
|
-
*/
|
|
12885
|
-
get CreatedAt() {
|
|
12886
|
-
return this.Get('CreatedAt');
|
|
12887
|
-
}
|
|
12888
|
-
/**
|
|
12889
|
-
* * Field Name: UpdatedAt
|
|
12890
|
-
* * Display Name: Updated At
|
|
12891
|
-
* * SQL Data Type: datetime
|
|
12892
|
-
* * Default Value: getdate()
|
|
12893
|
-
*/
|
|
12894
|
-
get UpdatedAt() {
|
|
12895
|
-
return this.Get('UpdatedAt');
|
|
12896
|
-
}
|
|
12897
|
-
/**
|
|
12898
13247
|
* * Field Name: EntityID
|
|
12899
13248
|
* * Display Name: Entity ID
|
|
12900
13249
|
* * SQL Data Type: int
|
|
@@ -12919,9 +13268,26 @@ let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEnt
|
|
|
12919
13268
|
this.Set('UserID', value);
|
|
12920
13269
|
}
|
|
12921
13270
|
/**
|
|
13271
|
+
* * Field Name: __mj_CreatedAt
|
|
13272
|
+
* * Display Name: Created At
|
|
13273
|
+
* * SQL Data Type: datetimeoffset
|
|
13274
|
+
*/
|
|
13275
|
+
get __mj_CreatedAt() {
|
|
13276
|
+
return this.Get('__mj_CreatedAt');
|
|
13277
|
+
}
|
|
13278
|
+
/**
|
|
13279
|
+
* * Field Name: __mj_UpdatedAt
|
|
13280
|
+
* * Display Name: Updated At
|
|
13281
|
+
* * SQL Data Type: datetimeoffset
|
|
13282
|
+
*/
|
|
13283
|
+
get __mj_UpdatedAt() {
|
|
13284
|
+
return this.Get('__mj_UpdatedAt');
|
|
13285
|
+
}
|
|
13286
|
+
/**
|
|
12922
13287
|
* * Field Name: Parent
|
|
12923
13288
|
* * Display Name: Parent
|
|
12924
13289
|
* * SQL Data Type: nvarchar(100)
|
|
13290
|
+
* * Default Value: getutcdate()
|
|
12925
13291
|
*/
|
|
12926
13292
|
get Parent() {
|
|
12927
13293
|
return this.Get('Parent');
|
|
@@ -12930,6 +13296,7 @@ let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEnt
|
|
|
12930
13296
|
* * Field Name: User
|
|
12931
13297
|
* * Display Name: User
|
|
12932
13298
|
* * SQL Data Type: nvarchar(100)
|
|
13299
|
+
* * Default Value: getutcdate()
|
|
12933
13300
|
*/
|
|
12934
13301
|
get User() {
|
|
12935
13302
|
return this.Get('User');
|
|
@@ -13009,24 +13376,6 @@ let DashboardCategoryEntity = class DashboardCategoryEntity extends core_1.BaseE
|
|
|
13009
13376
|
this.Set('ParentID', value);
|
|
13010
13377
|
}
|
|
13011
13378
|
/**
|
|
13012
|
-
* * Field Name: CreatedAt
|
|
13013
|
-
* * Display Name: Created At
|
|
13014
|
-
* * SQL Data Type: datetime
|
|
13015
|
-
* * Default Value: getdate()
|
|
13016
|
-
*/
|
|
13017
|
-
get CreatedAt() {
|
|
13018
|
-
return this.Get('CreatedAt');
|
|
13019
|
-
}
|
|
13020
|
-
/**
|
|
13021
|
-
* * Field Name: UpdatedAt
|
|
13022
|
-
* * Display Name: Updated At
|
|
13023
|
-
* * SQL Data Type: datetime
|
|
13024
|
-
* * Default Value: getdate()
|
|
13025
|
-
*/
|
|
13026
|
-
get UpdatedAt() {
|
|
13027
|
-
return this.Get('UpdatedAt');
|
|
13028
|
-
}
|
|
13029
|
-
/**
|
|
13030
13379
|
* * Field Name: UserID
|
|
13031
13380
|
* * Display Name: User ID
|
|
13032
13381
|
* * SQL Data Type: int
|
|
@@ -13039,9 +13388,26 @@ let DashboardCategoryEntity = class DashboardCategoryEntity extends core_1.BaseE
|
|
|
13039
13388
|
this.Set('UserID', value);
|
|
13040
13389
|
}
|
|
13041
13390
|
/**
|
|
13391
|
+
* * Field Name: __mj_CreatedAt
|
|
13392
|
+
* * Display Name: Created At
|
|
13393
|
+
* * SQL Data Type: datetimeoffset
|
|
13394
|
+
*/
|
|
13395
|
+
get __mj_CreatedAt() {
|
|
13396
|
+
return this.Get('__mj_CreatedAt');
|
|
13397
|
+
}
|
|
13398
|
+
/**
|
|
13399
|
+
* * Field Name: __mj_UpdatedAt
|
|
13400
|
+
* * Display Name: Updated At
|
|
13401
|
+
* * SQL Data Type: datetimeoffset
|
|
13402
|
+
*/
|
|
13403
|
+
get __mj_UpdatedAt() {
|
|
13404
|
+
return this.Get('__mj_UpdatedAt');
|
|
13405
|
+
}
|
|
13406
|
+
/**
|
|
13042
13407
|
* * Field Name: Parent
|
|
13043
13408
|
* * Display Name: Parent
|
|
13044
13409
|
* * SQL Data Type: nvarchar(100)
|
|
13410
|
+
* * Default Value: getutcdate()
|
|
13045
13411
|
*/
|
|
13046
13412
|
get Parent() {
|
|
13047
13413
|
return this.Get('Parent');
|
|
@@ -13050,6 +13416,7 @@ let DashboardCategoryEntity = class DashboardCategoryEntity extends core_1.BaseE
|
|
|
13050
13416
|
* * Field Name: User
|
|
13051
13417
|
* * Display Name: User
|
|
13052
13418
|
* * SQL Data Type: nvarchar(100)
|
|
13419
|
+
* * Default Value: getutcdate()
|
|
13053
13420
|
*/
|
|
13054
13421
|
get User() {
|
|
13055
13422
|
return this.Get('User');
|
|
@@ -13129,24 +13496,6 @@ let ReportCategoryEntity = class ReportCategoryEntity extends core_1.BaseEntity
|
|
|
13129
13496
|
this.Set('ParentID', value);
|
|
13130
13497
|
}
|
|
13131
13498
|
/**
|
|
13132
|
-
* * Field Name: CreatedAt
|
|
13133
|
-
* * Display Name: Created At
|
|
13134
|
-
* * SQL Data Type: datetime
|
|
13135
|
-
* * Default Value: getdate()
|
|
13136
|
-
*/
|
|
13137
|
-
get CreatedAt() {
|
|
13138
|
-
return this.Get('CreatedAt');
|
|
13139
|
-
}
|
|
13140
|
-
/**
|
|
13141
|
-
* * Field Name: UpdatedAt
|
|
13142
|
-
* * Display Name: Updated At
|
|
13143
|
-
* * SQL Data Type: datetime
|
|
13144
|
-
* * Default Value: getdate()
|
|
13145
|
-
*/
|
|
13146
|
-
get UpdatedAt() {
|
|
13147
|
-
return this.Get('UpdatedAt');
|
|
13148
|
-
}
|
|
13149
|
-
/**
|
|
13150
13499
|
* * Field Name: UserID
|
|
13151
13500
|
* * Display Name: User ID
|
|
13152
13501
|
* * SQL Data Type: int
|
|
@@ -13159,9 +13508,26 @@ let ReportCategoryEntity = class ReportCategoryEntity extends core_1.BaseEntity
|
|
|
13159
13508
|
this.Set('UserID', value);
|
|
13160
13509
|
}
|
|
13161
13510
|
/**
|
|
13511
|
+
* * Field Name: __mj_CreatedAt
|
|
13512
|
+
* * Display Name: Created At
|
|
13513
|
+
* * SQL Data Type: datetimeoffset
|
|
13514
|
+
*/
|
|
13515
|
+
get __mj_CreatedAt() {
|
|
13516
|
+
return this.Get('__mj_CreatedAt');
|
|
13517
|
+
}
|
|
13518
|
+
/**
|
|
13519
|
+
* * Field Name: __mj_UpdatedAt
|
|
13520
|
+
* * Display Name: Updated At
|
|
13521
|
+
* * SQL Data Type: datetimeoffset
|
|
13522
|
+
*/
|
|
13523
|
+
get __mj_UpdatedAt() {
|
|
13524
|
+
return this.Get('__mj_UpdatedAt');
|
|
13525
|
+
}
|
|
13526
|
+
/**
|
|
13162
13527
|
* * Field Name: Parent
|
|
13163
13528
|
* * Display Name: Parent
|
|
13164
13529
|
* * SQL Data Type: nvarchar(100)
|
|
13530
|
+
* * Default Value: getutcdate()
|
|
13165
13531
|
*/
|
|
13166
13532
|
get Parent() {
|
|
13167
13533
|
return this.Get('Parent');
|
|
@@ -13170,6 +13536,7 @@ let ReportCategoryEntity = class ReportCategoryEntity extends core_1.BaseEntity
|
|
|
13170
13536
|
* * Field Name: User
|
|
13171
13537
|
* * Display Name: User
|
|
13172
13538
|
* * SQL Data Type: nvarchar(100)
|
|
13539
|
+
* * Default Value: getutcdate()
|
|
13173
13540
|
*/
|
|
13174
13541
|
get User() {
|
|
13175
13542
|
return this.Get('User');
|
|
@@ -13294,22 +13661,20 @@ let FileStorageProviderEntity = class FileStorageProviderEntity extends core_1.B
|
|
|
13294
13661
|
this.Set('IsActive', value);
|
|
13295
13662
|
}
|
|
13296
13663
|
/**
|
|
13297
|
-
* * Field Name:
|
|
13664
|
+
* * Field Name: __mj_CreatedAt
|
|
13298
13665
|
* * Display Name: Created At
|
|
13299
|
-
* * SQL Data Type:
|
|
13300
|
-
* * Default Value: getdate()
|
|
13666
|
+
* * SQL Data Type: datetimeoffset
|
|
13301
13667
|
*/
|
|
13302
|
-
get
|
|
13303
|
-
return this.Get('
|
|
13668
|
+
get __mj_CreatedAt() {
|
|
13669
|
+
return this.Get('__mj_CreatedAt');
|
|
13304
13670
|
}
|
|
13305
13671
|
/**
|
|
13306
|
-
* * Field Name:
|
|
13672
|
+
* * Field Name: __mj_UpdatedAt
|
|
13307
13673
|
* * Display Name: Updated At
|
|
13308
|
-
* * SQL Data Type:
|
|
13309
|
-
* * Default Value: getdate()
|
|
13674
|
+
* * SQL Data Type: datetimeoffset
|
|
13310
13675
|
*/
|
|
13311
|
-
get
|
|
13312
|
-
return this.Get('
|
|
13676
|
+
get __mj_UpdatedAt() {
|
|
13677
|
+
return this.Get('__mj_UpdatedAt');
|
|
13313
13678
|
}
|
|
13314
13679
|
};
|
|
13315
13680
|
exports.FileStorageProviderEntity = FileStorageProviderEntity;
|
|
@@ -13433,27 +13798,26 @@ let FileEntity = class FileEntity extends core_1.BaseEntity {
|
|
|
13433
13798
|
this.Set('Status', value);
|
|
13434
13799
|
}
|
|
13435
13800
|
/**
|
|
13436
|
-
* * Field Name:
|
|
13801
|
+
* * Field Name: __mj_CreatedAt
|
|
13437
13802
|
* * Display Name: Created At
|
|
13438
|
-
* * SQL Data Type:
|
|
13439
|
-
* * Default Value: getdate()
|
|
13803
|
+
* * SQL Data Type: datetimeoffset
|
|
13440
13804
|
*/
|
|
13441
|
-
get
|
|
13442
|
-
return this.Get('
|
|
13805
|
+
get __mj_CreatedAt() {
|
|
13806
|
+
return this.Get('__mj_CreatedAt');
|
|
13443
13807
|
}
|
|
13444
13808
|
/**
|
|
13445
|
-
* * Field Name:
|
|
13809
|
+
* * Field Name: __mj_UpdatedAt
|
|
13446
13810
|
* * Display Name: Updated At
|
|
13447
|
-
* * SQL Data Type:
|
|
13448
|
-
* * Default Value: getdate()
|
|
13811
|
+
* * SQL Data Type: datetimeoffset
|
|
13449
13812
|
*/
|
|
13450
|
-
get
|
|
13451
|
-
return this.Get('
|
|
13813
|
+
get __mj_UpdatedAt() {
|
|
13814
|
+
return this.Get('__mj_UpdatedAt');
|
|
13452
13815
|
}
|
|
13453
13816
|
/**
|
|
13454
13817
|
* * Field Name: Provider
|
|
13455
13818
|
* * Display Name: Provider
|
|
13456
13819
|
* * SQL Data Type: nvarchar(50)
|
|
13820
|
+
* * Default Value: getutcdate()
|
|
13457
13821
|
*/
|
|
13458
13822
|
get Provider() {
|
|
13459
13823
|
return this.Get('Provider');
|
|
@@ -13462,6 +13826,7 @@ let FileEntity = class FileEntity extends core_1.BaseEntity {
|
|
|
13462
13826
|
* * Field Name: Category
|
|
13463
13827
|
* * Display Name: Category
|
|
13464
13828
|
* * SQL Data Type: nvarchar(255)
|
|
13829
|
+
* * Default Value: getutcdate()
|
|
13465
13830
|
*/
|
|
13466
13831
|
get Category() {
|
|
13467
13832
|
return this.Get('Category');
|
|
@@ -13541,27 +13906,26 @@ let FileCategoryEntity = class FileCategoryEntity extends core_1.BaseEntity {
|
|
|
13541
13906
|
this.Set('ParentID', value);
|
|
13542
13907
|
}
|
|
13543
13908
|
/**
|
|
13544
|
-
* * Field Name:
|
|
13909
|
+
* * Field Name: __mj_CreatedAt
|
|
13545
13910
|
* * Display Name: Created At
|
|
13546
|
-
* * SQL Data Type:
|
|
13547
|
-
* * Default Value: getdate()
|
|
13911
|
+
* * SQL Data Type: datetimeoffset
|
|
13548
13912
|
*/
|
|
13549
|
-
get
|
|
13550
|
-
return this.Get('
|
|
13913
|
+
get __mj_CreatedAt() {
|
|
13914
|
+
return this.Get('__mj_CreatedAt');
|
|
13551
13915
|
}
|
|
13552
13916
|
/**
|
|
13553
|
-
* * Field Name:
|
|
13917
|
+
* * Field Name: __mj_UpdatedAt
|
|
13554
13918
|
* * Display Name: Updated At
|
|
13555
|
-
* * SQL Data Type:
|
|
13556
|
-
* * Default Value: getdate()
|
|
13919
|
+
* * SQL Data Type: datetimeoffset
|
|
13557
13920
|
*/
|
|
13558
|
-
get
|
|
13559
|
-
return this.Get('
|
|
13921
|
+
get __mj_UpdatedAt() {
|
|
13922
|
+
return this.Get('__mj_UpdatedAt');
|
|
13560
13923
|
}
|
|
13561
13924
|
/**
|
|
13562
13925
|
* * Field Name: Parent
|
|
13563
13926
|
* * Display Name: Parent
|
|
13564
13927
|
* * SQL Data Type: nvarchar(255)
|
|
13928
|
+
* * Default Value: getutcdate()
|
|
13565
13929
|
*/
|
|
13566
13930
|
get Parent() {
|
|
13567
13931
|
return this.Get('Parent');
|
|
@@ -13653,27 +14017,26 @@ let FileEntityRecordLinkEntity = class FileEntityRecordLinkEntity extends core_1
|
|
|
13653
14017
|
this.Set('RecordID', value);
|
|
13654
14018
|
}
|
|
13655
14019
|
/**
|
|
13656
|
-
* * Field Name:
|
|
14020
|
+
* * Field Name: __mj_CreatedAt
|
|
13657
14021
|
* * Display Name: Created At
|
|
13658
|
-
* * SQL Data Type:
|
|
13659
|
-
* * Default Value: getdate()
|
|
14022
|
+
* * SQL Data Type: datetimeoffset
|
|
13660
14023
|
*/
|
|
13661
|
-
get
|
|
13662
|
-
return this.Get('
|
|
14024
|
+
get __mj_CreatedAt() {
|
|
14025
|
+
return this.Get('__mj_CreatedAt');
|
|
13663
14026
|
}
|
|
13664
14027
|
/**
|
|
13665
|
-
* * Field Name:
|
|
14028
|
+
* * Field Name: __mj_UpdatedAt
|
|
13666
14029
|
* * Display Name: Updated At
|
|
13667
|
-
* * SQL Data Type:
|
|
13668
|
-
* * Default Value: getdate()
|
|
14030
|
+
* * SQL Data Type: datetimeoffset
|
|
13669
14031
|
*/
|
|
13670
|
-
get
|
|
13671
|
-
return this.Get('
|
|
14032
|
+
get __mj_UpdatedAt() {
|
|
14033
|
+
return this.Get('__mj_UpdatedAt');
|
|
13672
14034
|
}
|
|
13673
14035
|
/**
|
|
13674
14036
|
* * Field Name: File
|
|
13675
14037
|
* * Display Name: File
|
|
13676
14038
|
* * SQL Data Type: nvarchar(500)
|
|
14039
|
+
* * Default Value: getutcdate()
|
|
13677
14040
|
*/
|
|
13678
14041
|
get File() {
|
|
13679
14042
|
return this.Get('File');
|
|
@@ -13682,6 +14045,7 @@ let FileEntityRecordLinkEntity = class FileEntityRecordLinkEntity extends core_1
|
|
|
13682
14045
|
* * Field Name: Entity
|
|
13683
14046
|
* * Display Name: Entity
|
|
13684
14047
|
* * SQL Data Type: nvarchar(255)
|
|
14048
|
+
* * Default Value: getutcdate()
|
|
13685
14049
|
*/
|
|
13686
14050
|
get Entity() {
|
|
13687
14051
|
return this.Get('Entity');
|
|
@@ -13842,27 +14206,26 @@ let VersionInstallationEntity = class VersionInstallationEntity extends core_1.B
|
|
|
13842
14206
|
this.Set('Comments', value);
|
|
13843
14207
|
}
|
|
13844
14208
|
/**
|
|
13845
|
-
* * Field Name:
|
|
14209
|
+
* * Field Name: __mj_CreatedAt
|
|
13846
14210
|
* * Display Name: Created At
|
|
13847
|
-
* * SQL Data Type:
|
|
13848
|
-
* * Default Value: getdate()
|
|
14211
|
+
* * SQL Data Type: datetimeoffset
|
|
13849
14212
|
*/
|
|
13850
|
-
get
|
|
13851
|
-
return this.Get('
|
|
14213
|
+
get __mj_CreatedAt() {
|
|
14214
|
+
return this.Get('__mj_CreatedAt');
|
|
13852
14215
|
}
|
|
13853
14216
|
/**
|
|
13854
|
-
* * Field Name:
|
|
14217
|
+
* * Field Name: __mj_UpdatedAt
|
|
13855
14218
|
* * Display Name: Updated At
|
|
13856
|
-
* * SQL Data Type:
|
|
13857
|
-
* * Default Value: getdate()
|
|
14219
|
+
* * SQL Data Type: datetimeoffset
|
|
13858
14220
|
*/
|
|
13859
|
-
get
|
|
13860
|
-
return this.Get('
|
|
14221
|
+
get __mj_UpdatedAt() {
|
|
14222
|
+
return this.Get('__mj_UpdatedAt');
|
|
13861
14223
|
}
|
|
13862
14224
|
/**
|
|
13863
14225
|
* * Field Name: CompleteVersion
|
|
13864
14226
|
* * Display Name: Complete Version
|
|
13865
14227
|
* * SQL Data Type: nvarchar(302)
|
|
14228
|
+
* * Default Value: getutcdate()
|
|
13866
14229
|
*/
|
|
13867
14230
|
get CompleteVersion() {
|
|
13868
14231
|
return this.Get('CompleteVersion');
|
|
@@ -14054,22 +14417,20 @@ let DuplicateRunDetailMatchEntity = class DuplicateRunDetailMatchEntity extends
|
|
|
14054
14417
|
this.Set('RecordMergeLogID', value);
|
|
14055
14418
|
}
|
|
14056
14419
|
/**
|
|
14057
|
-
* * Field Name:
|
|
14420
|
+
* * Field Name: __mj_CreatedAt
|
|
14058
14421
|
* * Display Name: Created At
|
|
14059
|
-
* * SQL Data Type:
|
|
14060
|
-
* * Default Value: getdate()
|
|
14422
|
+
* * SQL Data Type: datetimeoffset
|
|
14061
14423
|
*/
|
|
14062
|
-
get
|
|
14063
|
-
return this.Get('
|
|
14424
|
+
get __mj_CreatedAt() {
|
|
14425
|
+
return this.Get('__mj_CreatedAt');
|
|
14064
14426
|
}
|
|
14065
14427
|
/**
|
|
14066
|
-
* * Field Name:
|
|
14428
|
+
* * Field Name: __mj_UpdatedAt
|
|
14067
14429
|
* * Display Name: Updated At
|
|
14068
|
-
* * SQL Data Type:
|
|
14069
|
-
* * Default Value: getdate()
|
|
14430
|
+
* * SQL Data Type: datetimeoffset
|
|
14070
14431
|
*/
|
|
14071
|
-
get
|
|
14072
|
-
return this.Get('
|
|
14432
|
+
get __mj_UpdatedAt() {
|
|
14433
|
+
return this.Get('__mj_UpdatedAt');
|
|
14073
14434
|
}
|
|
14074
14435
|
};
|
|
14075
14436
|
exports.DuplicateRunDetailMatchEntity = DuplicateRunDetailMatchEntity;
|
|
@@ -14493,27 +14854,26 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
|
|
|
14493
14854
|
this.Set('SourceListID', value);
|
|
14494
14855
|
}
|
|
14495
14856
|
/**
|
|
14496
|
-
* * Field Name:
|
|
14857
|
+
* * Field Name: __mj_CreatedAt
|
|
14497
14858
|
* * Display Name: Created At
|
|
14498
|
-
* * SQL Data Type:
|
|
14499
|
-
* * Default Value: getdate()
|
|
14859
|
+
* * SQL Data Type: datetimeoffset
|
|
14500
14860
|
*/
|
|
14501
|
-
get
|
|
14502
|
-
return this.Get('
|
|
14861
|
+
get __mj_CreatedAt() {
|
|
14862
|
+
return this.Get('__mj_CreatedAt');
|
|
14503
14863
|
}
|
|
14504
14864
|
/**
|
|
14505
|
-
* * Field Name:
|
|
14865
|
+
* * Field Name: __mj_UpdatedAt
|
|
14506
14866
|
* * Display Name: Updated At
|
|
14507
|
-
* * SQL Data Type:
|
|
14508
|
-
* * Default Value: getdate()
|
|
14867
|
+
* * SQL Data Type: datetimeoffset
|
|
14509
14868
|
*/
|
|
14510
|
-
get
|
|
14511
|
-
return this.Get('
|
|
14869
|
+
get __mj_UpdatedAt() {
|
|
14870
|
+
return this.Get('__mj_UpdatedAt');
|
|
14512
14871
|
}
|
|
14513
14872
|
/**
|
|
14514
14873
|
* * Field Name: Entity
|
|
14515
14874
|
* * Display Name: Entity
|
|
14516
14875
|
* * SQL Data Type: nvarchar(255)
|
|
14876
|
+
* * Default Value: getutcdate()
|
|
14517
14877
|
*/
|
|
14518
14878
|
get Entity() {
|
|
14519
14879
|
return this.Get('Entity');
|
|
@@ -14522,6 +14882,7 @@ let DuplicateRunEntity = class DuplicateRunEntity extends core_1.BaseEntity {
|
|
|
14522
14882
|
* * Field Name: StartedByUser
|
|
14523
14883
|
* * Display Name: Started By User
|
|
14524
14884
|
* * SQL Data Type: nvarchar(100)
|
|
14885
|
+
* * Default Value: getutcdate()
|
|
14525
14886
|
*/
|
|
14526
14887
|
get StartedByUser() {
|
|
14527
14888
|
return this.Get('StartedByUser');
|
|
@@ -14688,22 +15049,20 @@ let DuplicateRunDetailEntity = class DuplicateRunDetailEntity extends core_1.Bas
|
|
|
14688
15049
|
this.Set('MergeErrorMessage', value);
|
|
14689
15050
|
}
|
|
14690
15051
|
/**
|
|
14691
|
-
* * Field Name:
|
|
15052
|
+
* * Field Name: __mj_CreatedAt
|
|
14692
15053
|
* * Display Name: Created At
|
|
14693
|
-
* * SQL Data Type:
|
|
14694
|
-
* * Default Value: getdate()
|
|
15054
|
+
* * SQL Data Type: datetimeoffset
|
|
14695
15055
|
*/
|
|
14696
|
-
get
|
|
14697
|
-
return this.Get('
|
|
15056
|
+
get __mj_CreatedAt() {
|
|
15057
|
+
return this.Get('__mj_CreatedAt');
|
|
14698
15058
|
}
|
|
14699
15059
|
/**
|
|
14700
|
-
* * Field Name:
|
|
15060
|
+
* * Field Name: __mj_UpdatedAt
|
|
14701
15061
|
* * Display Name: Updated At
|
|
14702
|
-
* * SQL Data Type:
|
|
14703
|
-
* * Default Value: getdate()
|
|
15062
|
+
* * SQL Data Type: datetimeoffset
|
|
14704
15063
|
*/
|
|
14705
|
-
get
|
|
14706
|
-
return this.Get('
|
|
15064
|
+
get __mj_UpdatedAt() {
|
|
15065
|
+
return this.Get('__mj_UpdatedAt');
|
|
14707
15066
|
}
|
|
14708
15067
|
};
|
|
14709
15068
|
exports.DuplicateRunDetailEntity = DuplicateRunDetailEntity;
|
|
@@ -15460,27 +15819,26 @@ let ActionAuthorizationEntity = class ActionAuthorizationEntity extends core_1.B
|
|
|
15460
15819
|
this.Set('Comments', value);
|
|
15461
15820
|
}
|
|
15462
15821
|
/**
|
|
15463
|
-
* * Field Name:
|
|
15822
|
+
* * Field Name: __mj_CreatedAt
|
|
15464
15823
|
* * Display Name: Created At
|
|
15465
|
-
* * SQL Data Type:
|
|
15466
|
-
* * Default Value: getdate()
|
|
15824
|
+
* * SQL Data Type: datetimeoffset
|
|
15467
15825
|
*/
|
|
15468
|
-
get
|
|
15469
|
-
return this.Get('
|
|
15826
|
+
get __mj_CreatedAt() {
|
|
15827
|
+
return this.Get('__mj_CreatedAt');
|
|
15470
15828
|
}
|
|
15471
15829
|
/**
|
|
15472
|
-
* * Field Name:
|
|
15830
|
+
* * Field Name: __mj_UpdatedAt
|
|
15473
15831
|
* * Display Name: Updated At
|
|
15474
|
-
* * SQL Data Type:
|
|
15475
|
-
* * Default Value: getdate()
|
|
15832
|
+
* * SQL Data Type: datetimeoffset
|
|
15476
15833
|
*/
|
|
15477
|
-
get
|
|
15478
|
-
return this.Get('
|
|
15834
|
+
get __mj_UpdatedAt() {
|
|
15835
|
+
return this.Get('__mj_UpdatedAt');
|
|
15479
15836
|
}
|
|
15480
15837
|
/**
|
|
15481
15838
|
* * Field Name: Action
|
|
15482
15839
|
* * Display Name: Action
|
|
15483
15840
|
* * SQL Data Type: nvarchar(425)
|
|
15841
|
+
* * Default Value: getutcdate()
|
|
15484
15842
|
*/
|
|
15485
15843
|
get Action() {
|
|
15486
15844
|
return this.Get('Action');
|
|
@@ -15632,15 +15990,43 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
15632
15990
|
this.Set('CategoryID', value);
|
|
15633
15991
|
}
|
|
15634
15992
|
/**
|
|
15635
|
-
* * Field Name: Name
|
|
15636
|
-
* * Display Name: Name
|
|
15637
|
-
* * SQL Data Type: nvarchar(425)
|
|
15993
|
+
* * Field Name: Name
|
|
15994
|
+
* * Display Name: Name
|
|
15995
|
+
* * SQL Data Type: nvarchar(425)
|
|
15996
|
+
*/
|
|
15997
|
+
get Name() {
|
|
15998
|
+
return this.Get('Name');
|
|
15999
|
+
}
|
|
16000
|
+
set Name(value) {
|
|
16001
|
+
this.Set('Name', value);
|
|
16002
|
+
}
|
|
16003
|
+
/**
|
|
16004
|
+
* * Field Name: Description
|
|
16005
|
+
* * Display Name: Description
|
|
16006
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
16007
|
+
*/
|
|
16008
|
+
get Description() {
|
|
16009
|
+
return this.Get('Description');
|
|
16010
|
+
}
|
|
16011
|
+
set Description(value) {
|
|
16012
|
+
this.Set('Description', value);
|
|
16013
|
+
}
|
|
16014
|
+
/**
|
|
16015
|
+
* * Field Name: Type
|
|
16016
|
+
* * Display Name: Type
|
|
16017
|
+
* * SQL Data Type: nvarchar(20)
|
|
16018
|
+
* * Default Value: Generated
|
|
16019
|
+
* * Value List Type: List
|
|
16020
|
+
* * Possible Values
|
|
16021
|
+
* * Generated
|
|
16022
|
+
* * Custom
|
|
16023
|
+
* * Description: Generated or Custom. Generated means the UserPrompt is used to prompt an AI model to automatically create the code for the Action. Custom means that a custom class has been implemented that subclasses the BaseAction class. The custom class needs to use the @RegisterClass decorator and be included in the MJAPI (or other runtime environment) to be available for execution.
|
|
15638
16024
|
*/
|
|
15639
|
-
get
|
|
15640
|
-
return this.Get('
|
|
16025
|
+
get Type() {
|
|
16026
|
+
return this.Get('Type');
|
|
15641
16027
|
}
|
|
15642
|
-
set
|
|
15643
|
-
this.Set('
|
|
16028
|
+
set Type(value) {
|
|
16029
|
+
this.Set('Type', value);
|
|
15644
16030
|
}
|
|
15645
16031
|
/**
|
|
15646
16032
|
* * Field Name: UserPrompt
|
|
@@ -15744,6 +16130,19 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
15744
16130
|
this.Set('CodeApprovedAt', value);
|
|
15745
16131
|
}
|
|
15746
16132
|
/**
|
|
16133
|
+
* * Field Name: CodeLocked
|
|
16134
|
+
* * Display Name: Code Locked
|
|
16135
|
+
* * SQL Data Type: bit
|
|
16136
|
+
* * Default Value: 0
|
|
16137
|
+
* * Description: If set to 1, Code will never be generated by the AI system. This overrides all other settings including the ForceCodeGeneration bit
|
|
16138
|
+
*/
|
|
16139
|
+
get CodeLocked() {
|
|
16140
|
+
return this.Get('CodeLocked');
|
|
16141
|
+
}
|
|
16142
|
+
set CodeLocked(value) {
|
|
16143
|
+
this.Set('CodeLocked', value);
|
|
16144
|
+
}
|
|
16145
|
+
/**
|
|
15747
16146
|
* * Field Name: ForceCodeGeneration
|
|
15748
16147
|
* * Display Name: Force Code Generation
|
|
15749
16148
|
* * SQL Data Type: bit
|
|
@@ -15790,6 +16189,7 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
15790
16189
|
* * Field Name: __mj_CreatedAt
|
|
15791
16190
|
* * Display Name: __mj _Created At
|
|
15792
16191
|
* * SQL Data Type: datetimeoffset
|
|
16192
|
+
* * Default Value: getutcdate()
|
|
15793
16193
|
*/
|
|
15794
16194
|
get __mj_CreatedAt() {
|
|
15795
16195
|
return this.Get('__mj_CreatedAt');
|
|
@@ -15798,6 +16198,7 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
15798
16198
|
* * Field Name: __mj_UpdatedAt
|
|
15799
16199
|
* * Display Name: __mj _Updated At
|
|
15800
16200
|
* * SQL Data Type: datetimeoffset
|
|
16201
|
+
* * Default Value: getutcdate()
|
|
15801
16202
|
*/
|
|
15802
16203
|
get __mj_UpdatedAt() {
|
|
15803
16204
|
return this.Get('__mj_UpdatedAt');
|
|
@@ -15806,7 +16207,6 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
15806
16207
|
* * Field Name: Category
|
|
15807
16208
|
* * Display Name: Category
|
|
15808
16209
|
* * SQL Data Type: nvarchar(255)
|
|
15809
|
-
* * Default Value: getutcdate()
|
|
15810
16210
|
*/
|
|
15811
16211
|
get Category() {
|
|
15812
16212
|
return this.Get('Category');
|
|
@@ -15815,7 +16215,6 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
15815
16215
|
* * Field Name: CodeApprovedByUser
|
|
15816
16216
|
* * Display Name: Code Approved By User
|
|
15817
16217
|
* * SQL Data Type: nvarchar(100)
|
|
15818
|
-
* * Default Value: getutcdate()
|
|
15819
16218
|
*/
|
|
15820
16219
|
get CodeApprovedByUser() {
|
|
15821
16220
|
return this.Get('CodeApprovedByUser');
|
|
@@ -16098,22 +16497,20 @@ let ActionContextTypeEntity = class ActionContextTypeEntity extends core_1.BaseE
|
|
|
16098
16497
|
this.Set('Description', value);
|
|
16099
16498
|
}
|
|
16100
16499
|
/**
|
|
16101
|
-
* * Field Name:
|
|
16500
|
+
* * Field Name: __mj_CreatedAt
|
|
16102
16501
|
* * Display Name: Created At
|
|
16103
|
-
* * SQL Data Type:
|
|
16104
|
-
* * Default Value: getdate()
|
|
16502
|
+
* * SQL Data Type: datetimeoffset
|
|
16105
16503
|
*/
|
|
16106
|
-
get
|
|
16107
|
-
return this.Get('
|
|
16504
|
+
get __mj_CreatedAt() {
|
|
16505
|
+
return this.Get('__mj_CreatedAt');
|
|
16108
16506
|
}
|
|
16109
16507
|
/**
|
|
16110
|
-
* * Field Name:
|
|
16508
|
+
* * Field Name: __mj_UpdatedAt
|
|
16111
16509
|
* * Display Name: Updated At
|
|
16112
|
-
* * SQL Data Type:
|
|
16113
|
-
* * Default Value: getdate()
|
|
16510
|
+
* * SQL Data Type: datetimeoffset
|
|
16114
16511
|
*/
|
|
16115
|
-
get
|
|
16116
|
-
return this.Get('
|
|
16512
|
+
get __mj_UpdatedAt() {
|
|
16513
|
+
return this.Get('__mj_UpdatedAt');
|
|
16117
16514
|
}
|
|
16118
16515
|
};
|
|
16119
16516
|
exports.ActionContextTypeEntity = ActionContextTypeEntity;
|
|
@@ -16180,6 +16577,19 @@ let ActionResultCodeEntity = class ActionResultCodeEntity extends core_1.BaseEnt
|
|
|
16180
16577
|
this.Set('ResultCode', value);
|
|
16181
16578
|
}
|
|
16182
16579
|
/**
|
|
16580
|
+
* * Field Name: IsSuccess
|
|
16581
|
+
* * Display Name: Is Success
|
|
16582
|
+
* * SQL Data Type: bit
|
|
16583
|
+
* * Default Value: 0
|
|
16584
|
+
* * Description: Indicates if the result code is a success or not. It is possible an action might have more than one failure condition/result code and same for success conditions.
|
|
16585
|
+
*/
|
|
16586
|
+
get IsSuccess() {
|
|
16587
|
+
return this.Get('IsSuccess');
|
|
16588
|
+
}
|
|
16589
|
+
set IsSuccess(value) {
|
|
16590
|
+
this.Set('IsSuccess', value);
|
|
16591
|
+
}
|
|
16592
|
+
/**
|
|
16183
16593
|
* * Field Name: Description
|
|
16184
16594
|
* * Display Name: Description
|
|
16185
16595
|
* * SQL Data Type: nvarchar(MAX)
|
|
@@ -16192,22 +16602,22 @@ let ActionResultCodeEntity = class ActionResultCodeEntity extends core_1.BaseEnt
|
|
|
16192
16602
|
this.Set('Description', value);
|
|
16193
16603
|
}
|
|
16194
16604
|
/**
|
|
16195
|
-
* * Field Name:
|
|
16605
|
+
* * Field Name: __mj_CreatedAt
|
|
16196
16606
|
* * Display Name: Created At
|
|
16197
|
-
* * SQL Data Type:
|
|
16198
|
-
* * Default Value:
|
|
16607
|
+
* * SQL Data Type: datetimeoffset
|
|
16608
|
+
* * Default Value: getutcdate()
|
|
16199
16609
|
*/
|
|
16200
|
-
get
|
|
16201
|
-
return this.Get('
|
|
16610
|
+
get __mj_CreatedAt() {
|
|
16611
|
+
return this.Get('__mj_CreatedAt');
|
|
16202
16612
|
}
|
|
16203
16613
|
/**
|
|
16204
|
-
* * Field Name:
|
|
16614
|
+
* * Field Name: __mj_UpdatedAt
|
|
16205
16615
|
* * Display Name: Updated At
|
|
16206
|
-
* * SQL Data Type:
|
|
16207
|
-
* * Default Value:
|
|
16616
|
+
* * SQL Data Type: datetimeoffset
|
|
16617
|
+
* * Default Value: getutcdate()
|
|
16208
16618
|
*/
|
|
16209
|
-
get
|
|
16210
|
-
return this.Get('
|
|
16619
|
+
get __mj_UpdatedAt() {
|
|
16620
|
+
return this.Get('__mj_UpdatedAt');
|
|
16211
16621
|
}
|
|
16212
16622
|
/**
|
|
16213
16623
|
* * Field Name: Action
|
|
@@ -16301,27 +16711,26 @@ let ActionContextEntity = class ActionContextEntity extends core_1.BaseEntity {
|
|
|
16301
16711
|
this.Set('Status', value);
|
|
16302
16712
|
}
|
|
16303
16713
|
/**
|
|
16304
|
-
* * Field Name:
|
|
16714
|
+
* * Field Name: __mj_CreatedAt
|
|
16305
16715
|
* * Display Name: Created At
|
|
16306
|
-
* * SQL Data Type:
|
|
16307
|
-
* * Default Value: getdate()
|
|
16716
|
+
* * SQL Data Type: datetimeoffset
|
|
16308
16717
|
*/
|
|
16309
|
-
get
|
|
16310
|
-
return this.Get('
|
|
16718
|
+
get __mj_CreatedAt() {
|
|
16719
|
+
return this.Get('__mj_CreatedAt');
|
|
16311
16720
|
}
|
|
16312
16721
|
/**
|
|
16313
|
-
* * Field Name:
|
|
16722
|
+
* * Field Name: __mj_UpdatedAt
|
|
16314
16723
|
* * Display Name: Updated At
|
|
16315
|
-
* * SQL Data Type:
|
|
16316
|
-
* * Default Value: getdate()
|
|
16724
|
+
* * SQL Data Type: datetimeoffset
|
|
16317
16725
|
*/
|
|
16318
|
-
get
|
|
16319
|
-
return this.Get('
|
|
16726
|
+
get __mj_UpdatedAt() {
|
|
16727
|
+
return this.Get('__mj_UpdatedAt');
|
|
16320
16728
|
}
|
|
16321
16729
|
/**
|
|
16322
16730
|
* * Field Name: Action
|
|
16323
16731
|
* * Display Name: Action
|
|
16324
16732
|
* * SQL Data Type: nvarchar(425)
|
|
16733
|
+
* * Default Value: getutcdate()
|
|
16325
16734
|
*/
|
|
16326
16735
|
get Action() {
|
|
16327
16736
|
return this.Get('Action');
|
|
@@ -16330,6 +16739,7 @@ let ActionContextEntity = class ActionContextEntity extends core_1.BaseEntity {
|
|
|
16330
16739
|
* * Field Name: ContextType
|
|
16331
16740
|
* * Display Name: Context Type
|
|
16332
16741
|
* * SQL Data Type: nvarchar(255)
|
|
16742
|
+
* * Default Value: getutcdate()
|
|
16333
16743
|
*/
|
|
16334
16744
|
get ContextType() {
|
|
16335
16745
|
return this.Get('ContextType');
|
|
@@ -16459,27 +16869,26 @@ let ActionExecutionLogEntity = class ActionExecutionLogEntity extends core_1.Bas
|
|
|
16459
16869
|
this.Set('RetentionPeriod', value);
|
|
16460
16870
|
}
|
|
16461
16871
|
/**
|
|
16462
|
-
* * Field Name:
|
|
16872
|
+
* * Field Name: __mj_CreatedAt
|
|
16463
16873
|
* * Display Name: Created At
|
|
16464
|
-
* * SQL Data Type:
|
|
16465
|
-
* * Default Value: getdate()
|
|
16874
|
+
* * SQL Data Type: datetimeoffset
|
|
16466
16875
|
*/
|
|
16467
|
-
get
|
|
16468
|
-
return this.Get('
|
|
16876
|
+
get __mj_CreatedAt() {
|
|
16877
|
+
return this.Get('__mj_CreatedAt');
|
|
16469
16878
|
}
|
|
16470
16879
|
/**
|
|
16471
|
-
* * Field Name:
|
|
16880
|
+
* * Field Name: __mj_UpdatedAt
|
|
16472
16881
|
* * Display Name: Updated At
|
|
16473
|
-
* * SQL Data Type:
|
|
16474
|
-
* * Default Value: getdate()
|
|
16882
|
+
* * SQL Data Type: datetimeoffset
|
|
16475
16883
|
*/
|
|
16476
|
-
get
|
|
16477
|
-
return this.Get('
|
|
16884
|
+
get __mj_UpdatedAt() {
|
|
16885
|
+
return this.Get('__mj_UpdatedAt');
|
|
16478
16886
|
}
|
|
16479
16887
|
/**
|
|
16480
16888
|
* * Field Name: Action
|
|
16481
16889
|
* * Display Name: Action
|
|
16482
16890
|
* * SQL Data Type: nvarchar(425)
|
|
16891
|
+
* * Default Value: getutcdate()
|
|
16483
16892
|
*/
|
|
16484
16893
|
get Action() {
|
|
16485
16894
|
return this.Get('Action');
|
|
@@ -16488,6 +16897,7 @@ let ActionExecutionLogEntity = class ActionExecutionLogEntity extends core_1.Bas
|
|
|
16488
16897
|
* * Field Name: User
|
|
16489
16898
|
* * Display Name: User
|
|
16490
16899
|
* * SQL Data Type: nvarchar(100)
|
|
16900
|
+
* * Default Value: getutcdate()
|
|
16491
16901
|
*/
|
|
16492
16902
|
get User() {
|
|
16493
16903
|
return this.Get('User');
|
|
@@ -16637,27 +17047,26 @@ let ActionParamEntity = class ActionParamEntity extends core_1.BaseEntity {
|
|
|
16637
17047
|
this.Set('IsRequired', value);
|
|
16638
17048
|
}
|
|
16639
17049
|
/**
|
|
16640
|
-
* * Field Name:
|
|
17050
|
+
* * Field Name: __mj_CreatedAt
|
|
16641
17051
|
* * Display Name: Created At
|
|
16642
|
-
* * SQL Data Type:
|
|
16643
|
-
* * Default Value: getdate()
|
|
17052
|
+
* * SQL Data Type: datetimeoffset
|
|
16644
17053
|
*/
|
|
16645
|
-
get
|
|
16646
|
-
return this.Get('
|
|
17054
|
+
get __mj_CreatedAt() {
|
|
17055
|
+
return this.Get('__mj_CreatedAt');
|
|
16647
17056
|
}
|
|
16648
17057
|
/**
|
|
16649
|
-
* * Field Name:
|
|
17058
|
+
* * Field Name: __mj_UpdatedAt
|
|
16650
17059
|
* * Display Name: Updated At
|
|
16651
|
-
* * SQL Data Type:
|
|
16652
|
-
* * Default Value: getdate()
|
|
17060
|
+
* * SQL Data Type: datetimeoffset
|
|
16653
17061
|
*/
|
|
16654
|
-
get
|
|
16655
|
-
return this.Get('
|
|
17062
|
+
get __mj_UpdatedAt() {
|
|
17063
|
+
return this.Get('__mj_UpdatedAt');
|
|
16656
17064
|
}
|
|
16657
17065
|
/**
|
|
16658
17066
|
* * Field Name: Action
|
|
16659
17067
|
* * Display Name: Action
|
|
16660
17068
|
* * SQL Data Type: nvarchar(425)
|
|
17069
|
+
* * Default Value: getutcdate()
|
|
16661
17070
|
*/
|
|
16662
17071
|
get Action() {
|
|
16663
17072
|
return this.Get('Action');
|
|
@@ -16740,27 +17149,26 @@ let ActionLibraryEntity = class ActionLibraryEntity extends core_1.BaseEntity {
|
|
|
16740
17149
|
this.Set('ItemsUsed', value);
|
|
16741
17150
|
}
|
|
16742
17151
|
/**
|
|
16743
|
-
* * Field Name:
|
|
17152
|
+
* * Field Name: __mj_CreatedAt
|
|
16744
17153
|
* * Display Name: Created At
|
|
16745
|
-
* * SQL Data Type:
|
|
16746
|
-
* * Default Value: getdate()
|
|
17154
|
+
* * SQL Data Type: datetimeoffset
|
|
16747
17155
|
*/
|
|
16748
|
-
get
|
|
16749
|
-
return this.Get('
|
|
17156
|
+
get __mj_CreatedAt() {
|
|
17157
|
+
return this.Get('__mj_CreatedAt');
|
|
16750
17158
|
}
|
|
16751
17159
|
/**
|
|
16752
|
-
* * Field Name:
|
|
17160
|
+
* * Field Name: __mj_UpdatedAt
|
|
16753
17161
|
* * Display Name: Updated At
|
|
16754
|
-
* * SQL Data Type:
|
|
16755
|
-
* * Default Value: getdate()
|
|
17162
|
+
* * SQL Data Type: datetimeoffset
|
|
16756
17163
|
*/
|
|
16757
|
-
get
|
|
16758
|
-
return this.Get('
|
|
17164
|
+
get __mj_UpdatedAt() {
|
|
17165
|
+
return this.Get('__mj_UpdatedAt');
|
|
16759
17166
|
}
|
|
16760
17167
|
/**
|
|
16761
17168
|
* * Field Name: Action
|
|
16762
17169
|
* * Display Name: Action
|
|
16763
17170
|
* * SQL Data Type: nvarchar(425)
|
|
17171
|
+
* * Default Value: getutcdate()
|
|
16764
17172
|
*/
|
|
16765
17173
|
get Action() {
|
|
16766
17174
|
return this.Get('Action');
|
|
@@ -16769,6 +17177,7 @@ let ActionLibraryEntity = class ActionLibraryEntity extends core_1.BaseEntity {
|
|
|
16769
17177
|
* * Field Name: Library
|
|
16770
17178
|
* * Display Name: Library
|
|
16771
17179
|
* * SQL Data Type: nvarchar(255)
|
|
17180
|
+
* * Default Value: getutcdate()
|
|
16772
17181
|
*/
|
|
16773
17182
|
get Library() {
|
|
16774
17183
|
return this.Get('Library');
|
|
@@ -16990,22 +17399,6 @@ let ListCategoryEntity = class ListCategoryEntity extends core_1.BaseEntity {
|
|
|
16990
17399
|
this.Set('ParentID', value);
|
|
16991
17400
|
}
|
|
16992
17401
|
/**
|
|
16993
|
-
* * Field Name: CreatedAt
|
|
16994
|
-
* * Display Name: Created At
|
|
16995
|
-
* * SQL Data Type: datetime
|
|
16996
|
-
*/
|
|
16997
|
-
get CreatedAt() {
|
|
16998
|
-
return this.Get('CreatedAt');
|
|
16999
|
-
}
|
|
17000
|
-
/**
|
|
17001
|
-
* * Field Name: UpdatedAt
|
|
17002
|
-
* * Display Name: Updated At
|
|
17003
|
-
* * SQL Data Type: datetime
|
|
17004
|
-
*/
|
|
17005
|
-
get UpdatedAt() {
|
|
17006
|
-
return this.Get('UpdatedAt');
|
|
17007
|
-
}
|
|
17008
|
-
/**
|
|
17009
17402
|
* * Field Name: UserID
|
|
17010
17403
|
* * Display Name: User ID
|
|
17011
17404
|
* * SQL Data Type: int
|
|
@@ -17016,6 +17409,22 @@ let ListCategoryEntity = class ListCategoryEntity extends core_1.BaseEntity {
|
|
|
17016
17409
|
set UserID(value) {
|
|
17017
17410
|
this.Set('UserID', value);
|
|
17018
17411
|
}
|
|
17412
|
+
/**
|
|
17413
|
+
* * Field Name: __mj_CreatedAt
|
|
17414
|
+
* * Display Name: Created At
|
|
17415
|
+
* * SQL Data Type: datetimeoffset
|
|
17416
|
+
*/
|
|
17417
|
+
get __mj_CreatedAt() {
|
|
17418
|
+
return this.Get('__mj_CreatedAt');
|
|
17419
|
+
}
|
|
17420
|
+
/**
|
|
17421
|
+
* * Field Name: __mj_UpdatedAt
|
|
17422
|
+
* * Display Name: Updated At
|
|
17423
|
+
* * SQL Data Type: datetimeoffset
|
|
17424
|
+
*/
|
|
17425
|
+
get __mj_UpdatedAt() {
|
|
17426
|
+
return this.Get('__mj_UpdatedAt');
|
|
17427
|
+
}
|
|
17019
17428
|
};
|
|
17020
17429
|
exports.ListCategoryEntity = ListCategoryEntity;
|
|
17021
17430
|
exports.ListCategoryEntity = ListCategoryEntity = __decorate([
|
|
@@ -17134,22 +17543,20 @@ let CommunicationProviderEntity = class CommunicationProviderEntity extends core
|
|
|
17134
17543
|
this.Set('SupportsReceiving', value);
|
|
17135
17544
|
}
|
|
17136
17545
|
/**
|
|
17137
|
-
* * Field Name:
|
|
17546
|
+
* * Field Name: __mj_CreatedAt
|
|
17138
17547
|
* * Display Name: Created At
|
|
17139
|
-
* * SQL Data Type:
|
|
17140
|
-
* * Default Value: getdate()
|
|
17548
|
+
* * SQL Data Type: datetimeoffset
|
|
17141
17549
|
*/
|
|
17142
|
-
get
|
|
17143
|
-
return this.Get('
|
|
17550
|
+
get __mj_CreatedAt() {
|
|
17551
|
+
return this.Get('__mj_CreatedAt');
|
|
17144
17552
|
}
|
|
17145
17553
|
/**
|
|
17146
|
-
* * Field Name:
|
|
17554
|
+
* * Field Name: __mj_UpdatedAt
|
|
17147
17555
|
* * Display Name: Updated At
|
|
17148
|
-
* * SQL Data Type:
|
|
17149
|
-
* * Default Value: getdate()
|
|
17556
|
+
* * SQL Data Type: datetimeoffset
|
|
17150
17557
|
*/
|
|
17151
|
-
get
|
|
17152
|
-
return this.Get('
|
|
17558
|
+
get __mj_UpdatedAt() {
|
|
17559
|
+
return this.Get('__mj_UpdatedAt');
|
|
17153
17560
|
}
|
|
17154
17561
|
};
|
|
17155
17562
|
exports.CommunicationProviderEntity = CommunicationProviderEntity;
|
|
@@ -17295,27 +17702,26 @@ let CommunicationRunEntity = class CommunicationRunEntity extends core_1.BaseEnt
|
|
|
17295
17702
|
this.Set('ErrorMessage', value);
|
|
17296
17703
|
}
|
|
17297
17704
|
/**
|
|
17298
|
-
* * Field Name:
|
|
17705
|
+
* * Field Name: __mj_CreatedAt
|
|
17299
17706
|
* * Display Name: Created At
|
|
17300
|
-
* * SQL Data Type:
|
|
17301
|
-
* * Default Value: getdate()
|
|
17707
|
+
* * SQL Data Type: datetimeoffset
|
|
17302
17708
|
*/
|
|
17303
|
-
get
|
|
17304
|
-
return this.Get('
|
|
17709
|
+
get __mj_CreatedAt() {
|
|
17710
|
+
return this.Get('__mj_CreatedAt');
|
|
17305
17711
|
}
|
|
17306
17712
|
/**
|
|
17307
|
-
* * Field Name:
|
|
17713
|
+
* * Field Name: __mj_UpdatedAt
|
|
17308
17714
|
* * Display Name: Updated At
|
|
17309
|
-
* * SQL Data Type:
|
|
17310
|
-
* * Default Value: getdate()
|
|
17715
|
+
* * SQL Data Type: datetimeoffset
|
|
17311
17716
|
*/
|
|
17312
|
-
get
|
|
17313
|
-
return this.Get('
|
|
17717
|
+
get __mj_UpdatedAt() {
|
|
17718
|
+
return this.Get('__mj_UpdatedAt');
|
|
17314
17719
|
}
|
|
17315
17720
|
/**
|
|
17316
17721
|
* * Field Name: User
|
|
17317
17722
|
* * Display Name: User
|
|
17318
17723
|
* * SQL Data Type: nvarchar(100)
|
|
17724
|
+
* * Default Value: getutcdate()
|
|
17319
17725
|
*/
|
|
17320
17726
|
get User() {
|
|
17321
17727
|
return this.Get('User');
|
|
@@ -17426,27 +17832,26 @@ let CommunicationProviderMessageTypeEntity = class CommunicationProviderMessageT
|
|
|
17426
17832
|
this.Set('AdditionalAttributes', value);
|
|
17427
17833
|
}
|
|
17428
17834
|
/**
|
|
17429
|
-
* * Field Name:
|
|
17835
|
+
* * Field Name: __mj_CreatedAt
|
|
17430
17836
|
* * Display Name: Created At
|
|
17431
|
-
* * SQL Data Type:
|
|
17432
|
-
* * Default Value: getdate()
|
|
17837
|
+
* * SQL Data Type: datetimeoffset
|
|
17433
17838
|
*/
|
|
17434
|
-
get
|
|
17435
|
-
return this.Get('
|
|
17839
|
+
get __mj_CreatedAt() {
|
|
17840
|
+
return this.Get('__mj_CreatedAt');
|
|
17436
17841
|
}
|
|
17437
17842
|
/**
|
|
17438
|
-
* * Field Name:
|
|
17843
|
+
* * Field Name: __mj_UpdatedAt
|
|
17439
17844
|
* * Display Name: Updated At
|
|
17440
|
-
* * SQL Data Type:
|
|
17441
|
-
* * Default Value: getdate()
|
|
17845
|
+
* * SQL Data Type: datetimeoffset
|
|
17442
17846
|
*/
|
|
17443
|
-
get
|
|
17444
|
-
return this.Get('
|
|
17847
|
+
get __mj_UpdatedAt() {
|
|
17848
|
+
return this.Get('__mj_UpdatedAt');
|
|
17445
17849
|
}
|
|
17446
17850
|
/**
|
|
17447
17851
|
* * Field Name: CommunicationProvider
|
|
17448
17852
|
* * Display Name: Communication Provider
|
|
17449
17853
|
* * SQL Data Type: nvarchar(255)
|
|
17854
|
+
* * Default Value: getutcdate()
|
|
17450
17855
|
*/
|
|
17451
17856
|
get CommunicationProvider() {
|
|
17452
17857
|
return this.Get('CommunicationProvider');
|
|
@@ -17455,6 +17860,7 @@ let CommunicationProviderMessageTypeEntity = class CommunicationProviderMessageT
|
|
|
17455
17860
|
* * Field Name: CommunicationBaseMessageType
|
|
17456
17861
|
* * Display Name: Communication Base Message Type
|
|
17457
17862
|
* * SQL Data Type: nvarchar(100)
|
|
17863
|
+
* * Default Value: getutcdate()
|
|
17458
17864
|
*/
|
|
17459
17865
|
get CommunicationBaseMessageType() {
|
|
17460
17866
|
return this.Get('CommunicationBaseMessageType');
|
|
@@ -17618,27 +18024,26 @@ let CommunicationLogEntity = class CommunicationLogEntity extends core_1.BaseEnt
|
|
|
17618
18024
|
this.Set('ErrorMessage', value);
|
|
17619
18025
|
}
|
|
17620
18026
|
/**
|
|
17621
|
-
* * Field Name:
|
|
18027
|
+
* * Field Name: __mj_CreatedAt
|
|
17622
18028
|
* * Display Name: Created At
|
|
17623
|
-
* * SQL Data Type:
|
|
17624
|
-
|
|
17625
|
-
|
|
17626
|
-
|
|
17627
|
-
return this.Get('CreatedAt');
|
|
18029
|
+
* * SQL Data Type: datetimeoffset
|
|
18030
|
+
*/
|
|
18031
|
+
get __mj_CreatedAt() {
|
|
18032
|
+
return this.Get('__mj_CreatedAt');
|
|
17628
18033
|
}
|
|
17629
18034
|
/**
|
|
17630
|
-
* * Field Name:
|
|
18035
|
+
* * Field Name: __mj_UpdatedAt
|
|
17631
18036
|
* * Display Name: Updated At
|
|
17632
|
-
* * SQL Data Type:
|
|
17633
|
-
* * Default Value: getdate()
|
|
18037
|
+
* * SQL Data Type: datetimeoffset
|
|
17634
18038
|
*/
|
|
17635
|
-
get
|
|
17636
|
-
return this.Get('
|
|
18039
|
+
get __mj_UpdatedAt() {
|
|
18040
|
+
return this.Get('__mj_UpdatedAt');
|
|
17637
18041
|
}
|
|
17638
18042
|
/**
|
|
17639
18043
|
* * Field Name: CommunicationProvider
|
|
17640
18044
|
* * Display Name: Communication Provider
|
|
17641
18045
|
* * SQL Data Type: nvarchar(255)
|
|
18046
|
+
* * Default Value: getutcdate()
|
|
17642
18047
|
*/
|
|
17643
18048
|
get CommunicationProvider() {
|
|
17644
18049
|
return this.Get('CommunicationProvider');
|
|
@@ -17647,6 +18052,7 @@ let CommunicationLogEntity = class CommunicationLogEntity extends core_1.BaseEnt
|
|
|
17647
18052
|
* * Field Name: CommunicationProviderMessageType
|
|
17648
18053
|
* * Display Name: Communication Provider Message Type
|
|
17649
18054
|
* * SQL Data Type: nvarchar(255)
|
|
18055
|
+
* * Default Value: getutcdate()
|
|
17650
18056
|
*/
|
|
17651
18057
|
get CommunicationProviderMessageType() {
|
|
17652
18058
|
return this.Get('CommunicationProviderMessageType');
|
|
@@ -17766,22 +18172,20 @@ let CommunicationBaseMessageTypeEntity = class CommunicationBaseMessageTypeEntit
|
|
|
17766
18172
|
this.Set('MaxBytes', value);
|
|
17767
18173
|
}
|
|
17768
18174
|
/**
|
|
17769
|
-
* * Field Name:
|
|
18175
|
+
* * Field Name: __mj_CreatedAt
|
|
17770
18176
|
* * Display Name: Created At
|
|
17771
|
-
* * SQL Data Type:
|
|
17772
|
-
* * Default Value: getdate()
|
|
18177
|
+
* * SQL Data Type: datetimeoffset
|
|
17773
18178
|
*/
|
|
17774
|
-
get
|
|
17775
|
-
return this.Get('
|
|
18179
|
+
get __mj_CreatedAt() {
|
|
18180
|
+
return this.Get('__mj_CreatedAt');
|
|
17776
18181
|
}
|
|
17777
18182
|
/**
|
|
17778
|
-
* * Field Name:
|
|
18183
|
+
* * Field Name: __mj_UpdatedAt
|
|
17779
18184
|
* * Display Name: Updated At
|
|
17780
|
-
* * SQL Data Type:
|
|
17781
|
-
* * Default Value: getdate()
|
|
18185
|
+
* * SQL Data Type: datetimeoffset
|
|
17782
18186
|
*/
|
|
17783
|
-
get
|
|
17784
|
-
return this.Get('
|
|
18187
|
+
get __mj_UpdatedAt() {
|
|
18188
|
+
return this.Get('__mj_UpdatedAt');
|
|
17785
18189
|
}
|
|
17786
18190
|
};
|
|
17787
18191
|
exports.CommunicationBaseMessageTypeEntity = CommunicationBaseMessageTypeEntity;
|
|
@@ -17934,27 +18338,26 @@ let TemplateEntity = class TemplateEntity extends core_1.BaseEntity {
|
|
|
17934
18338
|
this.Set('IsActive', value);
|
|
17935
18339
|
}
|
|
17936
18340
|
/**
|
|
17937
|
-
* * Field Name:
|
|
18341
|
+
* * Field Name: __mj_CreatedAt
|
|
17938
18342
|
* * Display Name: Created At
|
|
17939
|
-
* * SQL Data Type:
|
|
17940
|
-
* * Default Value: getdate()
|
|
18343
|
+
* * SQL Data Type: datetimeoffset
|
|
17941
18344
|
*/
|
|
17942
|
-
get
|
|
17943
|
-
return this.Get('
|
|
18345
|
+
get __mj_CreatedAt() {
|
|
18346
|
+
return this.Get('__mj_CreatedAt');
|
|
17944
18347
|
}
|
|
17945
18348
|
/**
|
|
17946
|
-
* * Field Name:
|
|
18349
|
+
* * Field Name: __mj_UpdatedAt
|
|
17947
18350
|
* * Display Name: Updated At
|
|
17948
|
-
* * SQL Data Type:
|
|
17949
|
-
* * Default Value: getdate()
|
|
18351
|
+
* * SQL Data Type: datetimeoffset
|
|
17950
18352
|
*/
|
|
17951
|
-
get
|
|
17952
|
-
return this.Get('
|
|
18353
|
+
get __mj_UpdatedAt() {
|
|
18354
|
+
return this.Get('__mj_UpdatedAt');
|
|
17953
18355
|
}
|
|
17954
18356
|
/**
|
|
17955
18357
|
* * Field Name: Category
|
|
17956
18358
|
* * Display Name: Category
|
|
17957
18359
|
* * SQL Data Type: nvarchar(255)
|
|
18360
|
+
* * Default Value: getutcdate()
|
|
17958
18361
|
*/
|
|
17959
18362
|
get Category() {
|
|
17960
18363
|
return this.Get('Category');
|
|
@@ -17963,6 +18366,7 @@ let TemplateEntity = class TemplateEntity extends core_1.BaseEntity {
|
|
|
17963
18366
|
* * Field Name: User
|
|
17964
18367
|
* * Display Name: User
|
|
17965
18368
|
* * SQL Data Type: nvarchar(100)
|
|
18369
|
+
* * Default Value: getutcdate()
|
|
17966
18370
|
*/
|
|
17967
18371
|
get User() {
|
|
17968
18372
|
return this.Get('User');
|
|
@@ -18068,27 +18472,26 @@ let TemplateCategoryEntity = class TemplateCategoryEntity extends core_1.BaseEnt
|
|
|
18068
18472
|
this.Set('UserID', value);
|
|
18069
18473
|
}
|
|
18070
18474
|
/**
|
|
18071
|
-
* * Field Name:
|
|
18475
|
+
* * Field Name: __mj_CreatedAt
|
|
18072
18476
|
* * Display Name: Created At
|
|
18073
|
-
* * SQL Data Type:
|
|
18074
|
-
* * Default Value: getdate()
|
|
18477
|
+
* * SQL Data Type: datetimeoffset
|
|
18075
18478
|
*/
|
|
18076
|
-
get
|
|
18077
|
-
return this.Get('
|
|
18479
|
+
get __mj_CreatedAt() {
|
|
18480
|
+
return this.Get('__mj_CreatedAt');
|
|
18078
18481
|
}
|
|
18079
18482
|
/**
|
|
18080
|
-
* * Field Name:
|
|
18483
|
+
* * Field Name: __mj_UpdatedAt
|
|
18081
18484
|
* * Display Name: Updated At
|
|
18082
|
-
* * SQL Data Type:
|
|
18083
|
-
* * Default Value: getdate()
|
|
18485
|
+
* * SQL Data Type: datetimeoffset
|
|
18084
18486
|
*/
|
|
18085
|
-
get
|
|
18086
|
-
return this.Get('
|
|
18487
|
+
get __mj_UpdatedAt() {
|
|
18488
|
+
return this.Get('__mj_UpdatedAt');
|
|
18087
18489
|
}
|
|
18088
18490
|
/**
|
|
18089
18491
|
* * Field Name: Parent
|
|
18090
18492
|
* * Display Name: Parent
|
|
18091
18493
|
* * SQL Data Type: nvarchar(255)
|
|
18494
|
+
* * Default Value: getutcdate()
|
|
18092
18495
|
*/
|
|
18093
18496
|
get Parent() {
|
|
18094
18497
|
return this.Get('Parent');
|
|
@@ -18097,6 +18500,7 @@ let TemplateCategoryEntity = class TemplateCategoryEntity extends core_1.BaseEnt
|
|
|
18097
18500
|
* * Field Name: User
|
|
18098
18501
|
* * Display Name: User
|
|
18099
18502
|
* * SQL Data Type: nvarchar(100)
|
|
18503
|
+
* * Default Value: getutcdate()
|
|
18100
18504
|
*/
|
|
18101
18505
|
get User() {
|
|
18102
18506
|
return this.Get('User');
|
|
@@ -18215,27 +18619,26 @@ let TemplateContentEntity = class TemplateContentEntity extends core_1.BaseEntit
|
|
|
18215
18619
|
this.Set('IsActive', value);
|
|
18216
18620
|
}
|
|
18217
18621
|
/**
|
|
18218
|
-
* * Field Name:
|
|
18622
|
+
* * Field Name: __mj_CreatedAt
|
|
18219
18623
|
* * Display Name: Created At
|
|
18220
|
-
* * SQL Data Type:
|
|
18221
|
-
* * Default Value: getdate()
|
|
18624
|
+
* * SQL Data Type: datetimeoffset
|
|
18222
18625
|
*/
|
|
18223
|
-
get
|
|
18224
|
-
return this.Get('
|
|
18626
|
+
get __mj_CreatedAt() {
|
|
18627
|
+
return this.Get('__mj_CreatedAt');
|
|
18225
18628
|
}
|
|
18226
18629
|
/**
|
|
18227
|
-
* * Field Name:
|
|
18630
|
+
* * Field Name: __mj_UpdatedAt
|
|
18228
18631
|
* * Display Name: Updated At
|
|
18229
|
-
* * SQL Data Type:
|
|
18230
|
-
* * Default Value: getdate()
|
|
18632
|
+
* * SQL Data Type: datetimeoffset
|
|
18231
18633
|
*/
|
|
18232
|
-
get
|
|
18233
|
-
return this.Get('
|
|
18634
|
+
get __mj_UpdatedAt() {
|
|
18635
|
+
return this.Get('__mj_UpdatedAt');
|
|
18234
18636
|
}
|
|
18235
18637
|
/**
|
|
18236
18638
|
* * Field Name: Template
|
|
18237
18639
|
* * Display Name: Template
|
|
18238
18640
|
* * SQL Data Type: nvarchar(255)
|
|
18641
|
+
* * Default Value: getutcdate()
|
|
18239
18642
|
*/
|
|
18240
18643
|
get Template() {
|
|
18241
18644
|
return this.Get('Template');
|
|
@@ -18244,6 +18647,7 @@ let TemplateContentEntity = class TemplateContentEntity extends core_1.BaseEntit
|
|
|
18244
18647
|
* * Field Name: Type
|
|
18245
18648
|
* * Display Name: Type
|
|
18246
18649
|
* * SQL Data Type: nvarchar(255)
|
|
18650
|
+
* * Default Value: getutcdate()
|
|
18247
18651
|
*/
|
|
18248
18652
|
get Type() {
|
|
18249
18653
|
return this.Get('Type');
|
|
@@ -18406,27 +18810,26 @@ let TemplateParamEntity = class TemplateParamEntity extends core_1.BaseEntity {
|
|
|
18406
18810
|
this.Set('RecordID', value);
|
|
18407
18811
|
}
|
|
18408
18812
|
/**
|
|
18409
|
-
* * Field Name:
|
|
18813
|
+
* * Field Name: __mj_CreatedAt
|
|
18410
18814
|
* * Display Name: Created At
|
|
18411
|
-
* * SQL Data Type:
|
|
18412
|
-
* * Default Value: getdate()
|
|
18815
|
+
* * SQL Data Type: datetimeoffset
|
|
18413
18816
|
*/
|
|
18414
|
-
get
|
|
18415
|
-
return this.Get('
|
|
18817
|
+
get __mj_CreatedAt() {
|
|
18818
|
+
return this.Get('__mj_CreatedAt');
|
|
18416
18819
|
}
|
|
18417
18820
|
/**
|
|
18418
|
-
* * Field Name:
|
|
18821
|
+
* * Field Name: __mj_UpdatedAt
|
|
18419
18822
|
* * Display Name: Updated At
|
|
18420
|
-
* * SQL Data Type:
|
|
18421
|
-
* * Default Value: getdate()
|
|
18823
|
+
* * SQL Data Type: datetimeoffset
|
|
18422
18824
|
*/
|
|
18423
|
-
get
|
|
18424
|
-
return this.Get('
|
|
18825
|
+
get __mj_UpdatedAt() {
|
|
18826
|
+
return this.Get('__mj_UpdatedAt');
|
|
18425
18827
|
}
|
|
18426
18828
|
/**
|
|
18427
18829
|
* * Field Name: Template
|
|
18428
18830
|
* * Display Name: Template
|
|
18429
18831
|
* * SQL Data Type: nvarchar(255)
|
|
18832
|
+
* * Default Value: getutcdate()
|
|
18430
18833
|
*/
|
|
18431
18834
|
get Template() {
|
|
18432
18835
|
return this.Get('Template');
|
|
@@ -18435,6 +18838,7 @@ let TemplateParamEntity = class TemplateParamEntity extends core_1.BaseEntity {
|
|
|
18435
18838
|
* * Field Name: Entity
|
|
18436
18839
|
* * Display Name: Entity
|
|
18437
18840
|
* * SQL Data Type: nvarchar(255)
|
|
18841
|
+
* * Default Value: getutcdate()
|
|
18438
18842
|
*/
|
|
18439
18843
|
get Entity() {
|
|
18440
18844
|
return this.Get('Entity');
|
|
@@ -18516,22 +18920,20 @@ let TemplateContentTypeEntity = class TemplateContentTypeEntity extends core_1.B
|
|
|
18516
18920
|
this.Set('Description', value);
|
|
18517
18921
|
}
|
|
18518
18922
|
/**
|
|
18519
|
-
* * Field Name:
|
|
18923
|
+
* * Field Name: __mj_CreatedAt
|
|
18520
18924
|
* * Display Name: Created At
|
|
18521
|
-
* * SQL Data Type:
|
|
18522
|
-
* * Default Value: getdate()
|
|
18925
|
+
* * SQL Data Type: datetimeoffset
|
|
18523
18926
|
*/
|
|
18524
|
-
get
|
|
18525
|
-
return this.Get('
|
|
18927
|
+
get __mj_CreatedAt() {
|
|
18928
|
+
return this.Get('__mj_CreatedAt');
|
|
18526
18929
|
}
|
|
18527
18930
|
/**
|
|
18528
|
-
* * Field Name:
|
|
18931
|
+
* * Field Name: __mj_UpdatedAt
|
|
18529
18932
|
* * Display Name: Updated At
|
|
18530
|
-
* * SQL Data Type:
|
|
18531
|
-
* * Default Value: getdate()
|
|
18933
|
+
* * SQL Data Type: datetimeoffset
|
|
18532
18934
|
*/
|
|
18533
|
-
get
|
|
18534
|
-
return this.Get('
|
|
18935
|
+
get __mj_UpdatedAt() {
|
|
18936
|
+
return this.Get('__mj_UpdatedAt');
|
|
18535
18937
|
}
|
|
18536
18938
|
};
|
|
18537
18939
|
exports.TemplateContentTypeEntity = TemplateContentTypeEntity;
|
|
@@ -18622,27 +19024,26 @@ let RecommendationEntity = class RecommendationEntity extends core_1.BaseEntity
|
|
|
18622
19024
|
this.Set('SourceEntityRecordID', value);
|
|
18623
19025
|
}
|
|
18624
19026
|
/**
|
|
18625
|
-
* * Field Name:
|
|
19027
|
+
* * Field Name: __mj_CreatedAt
|
|
18626
19028
|
* * Display Name: Created At
|
|
18627
|
-
* * SQL Data Type:
|
|
18628
|
-
* * Default Value: getdate()
|
|
19029
|
+
* * SQL Data Type: datetimeoffset
|
|
18629
19030
|
*/
|
|
18630
|
-
get
|
|
18631
|
-
return this.Get('
|
|
19031
|
+
get __mj_CreatedAt() {
|
|
19032
|
+
return this.Get('__mj_CreatedAt');
|
|
18632
19033
|
}
|
|
18633
19034
|
/**
|
|
18634
|
-
* * Field Name:
|
|
19035
|
+
* * Field Name: __mj_UpdatedAt
|
|
18635
19036
|
* * Display Name: Updated At
|
|
18636
|
-
* * SQL Data Type:
|
|
18637
|
-
* * Default Value: getdate()
|
|
19037
|
+
* * SQL Data Type: datetimeoffset
|
|
18638
19038
|
*/
|
|
18639
|
-
get
|
|
18640
|
-
return this.Get('
|
|
19039
|
+
get __mj_UpdatedAt() {
|
|
19040
|
+
return this.Get('__mj_UpdatedAt');
|
|
18641
19041
|
}
|
|
18642
19042
|
/**
|
|
18643
19043
|
* * Field Name: SourceEntity
|
|
18644
19044
|
* * Display Name: Source Entity
|
|
18645
19045
|
* * SQL Data Type: nvarchar(255)
|
|
19046
|
+
* * Default Value: getutcdate()
|
|
18646
19047
|
*/
|
|
18647
19048
|
get SourceEntity() {
|
|
18648
19049
|
return this.Get('SourceEntity');
|
|
@@ -18722,22 +19123,20 @@ let RecommendationProviderEntity = class RecommendationProviderEntity extends co
|
|
|
18722
19123
|
this.Set('Description', value);
|
|
18723
19124
|
}
|
|
18724
19125
|
/**
|
|
18725
|
-
* * Field Name:
|
|
19126
|
+
* * Field Name: __mj_CreatedAt
|
|
18726
19127
|
* * Display Name: Created At
|
|
18727
|
-
* * SQL Data Type:
|
|
18728
|
-
* * Default Value: getdate()
|
|
19128
|
+
* * SQL Data Type: datetimeoffset
|
|
18729
19129
|
*/
|
|
18730
|
-
get
|
|
18731
|
-
return this.Get('
|
|
19130
|
+
get __mj_CreatedAt() {
|
|
19131
|
+
return this.Get('__mj_CreatedAt');
|
|
18732
19132
|
}
|
|
18733
19133
|
/**
|
|
18734
|
-
* * Field Name:
|
|
19134
|
+
* * Field Name: __mj_UpdatedAt
|
|
18735
19135
|
* * Display Name: Updated At
|
|
18736
|
-
* * SQL Data Type:
|
|
18737
|
-
* * Default Value: getdate()
|
|
19136
|
+
* * SQL Data Type: datetimeoffset
|
|
18738
19137
|
*/
|
|
18739
|
-
get
|
|
18740
|
-
return this.Get('
|
|
19138
|
+
get __mj_UpdatedAt() {
|
|
19139
|
+
return this.Get('__mj_UpdatedAt');
|
|
18741
19140
|
}
|
|
18742
19141
|
};
|
|
18743
19142
|
exports.RecommendationProviderEntity = RecommendationProviderEntity;
|
|
@@ -18870,27 +19269,26 @@ let RecommendationRunEntity = class RecommendationRunEntity extends core_1.BaseE
|
|
|
18870
19269
|
this.Set('RunByUserID', value);
|
|
18871
19270
|
}
|
|
18872
19271
|
/**
|
|
18873
|
-
* * Field Name:
|
|
19272
|
+
* * Field Name: __mj_CreatedAt
|
|
18874
19273
|
* * Display Name: Created At
|
|
18875
|
-
* * SQL Data Type:
|
|
18876
|
-
* * Default Value: getdate()
|
|
19274
|
+
* * SQL Data Type: datetimeoffset
|
|
18877
19275
|
*/
|
|
18878
|
-
get
|
|
18879
|
-
return this.Get('
|
|
19276
|
+
get __mj_CreatedAt() {
|
|
19277
|
+
return this.Get('__mj_CreatedAt');
|
|
18880
19278
|
}
|
|
18881
19279
|
/**
|
|
18882
|
-
* * Field Name:
|
|
19280
|
+
* * Field Name: __mj_UpdatedAt
|
|
18883
19281
|
* * Display Name: Updated At
|
|
18884
|
-
* * SQL Data Type:
|
|
18885
|
-
* * Default Value: getdate()
|
|
19282
|
+
* * SQL Data Type: datetimeoffset
|
|
18886
19283
|
*/
|
|
18887
|
-
get
|
|
18888
|
-
return this.Get('
|
|
19284
|
+
get __mj_UpdatedAt() {
|
|
19285
|
+
return this.Get('__mj_UpdatedAt');
|
|
18889
19286
|
}
|
|
18890
19287
|
/**
|
|
18891
19288
|
* * Field Name: RecommendationProvider
|
|
18892
19289
|
* * Display Name: Recommendation Provider
|
|
18893
19290
|
* * SQL Data Type: nvarchar(255)
|
|
19291
|
+
* * Default Value: getutcdate()
|
|
18894
19292
|
*/
|
|
18895
19293
|
get RecommendationProvider() {
|
|
18896
19294
|
return this.Get('RecommendationProvider');
|
|
@@ -18899,6 +19297,7 @@ let RecommendationRunEntity = class RecommendationRunEntity extends core_1.BaseE
|
|
|
18899
19297
|
* * Field Name: RunByUser
|
|
18900
19298
|
* * Display Name: Run By User
|
|
18901
19299
|
* * SQL Data Type: nvarchar(100)
|
|
19300
|
+
* * Default Value: getutcdate()
|
|
18902
19301
|
*/
|
|
18903
19302
|
get RunByUser() {
|
|
18904
19303
|
return this.Get('RunByUser');
|
|
@@ -19005,27 +19404,26 @@ let RecommendationItemEntity = class RecommendationItemEntity extends core_1.Bas
|
|
|
19005
19404
|
this.Set('MatchProbability', value);
|
|
19006
19405
|
}
|
|
19007
19406
|
/**
|
|
19008
|
-
* * Field Name:
|
|
19407
|
+
* * Field Name: __mj_CreatedAt
|
|
19009
19408
|
* * Display Name: Created At
|
|
19010
|
-
* * SQL Data Type:
|
|
19011
|
-
* * Default Value: getdate()
|
|
19409
|
+
* * SQL Data Type: datetimeoffset
|
|
19012
19410
|
*/
|
|
19013
|
-
get
|
|
19014
|
-
return this.Get('
|
|
19411
|
+
get __mj_CreatedAt() {
|
|
19412
|
+
return this.Get('__mj_CreatedAt');
|
|
19015
19413
|
}
|
|
19016
19414
|
/**
|
|
19017
|
-
* * Field Name:
|
|
19415
|
+
* * Field Name: __mj_UpdatedAt
|
|
19018
19416
|
* * Display Name: Updated At
|
|
19019
|
-
* * SQL Data Type:
|
|
19020
|
-
* * Default Value: getdate()
|
|
19417
|
+
* * SQL Data Type: datetimeoffset
|
|
19021
19418
|
*/
|
|
19022
|
-
get
|
|
19023
|
-
return this.Get('
|
|
19419
|
+
get __mj_UpdatedAt() {
|
|
19420
|
+
return this.Get('__mj_UpdatedAt');
|
|
19024
19421
|
}
|
|
19025
19422
|
/**
|
|
19026
19423
|
* * Field Name: DestinationEntity
|
|
19027
19424
|
* * Display Name: Destination Entity
|
|
19028
19425
|
* * SQL Data Type: nvarchar(255)
|
|
19426
|
+
* * Default Value: getutcdate()
|
|
19029
19427
|
*/
|
|
19030
19428
|
get DestinationEntity() {
|
|
19031
19429
|
return this.Get('DestinationEntity');
|
|
@@ -19366,27 +19764,26 @@ let RecordChangeReplayRunEntity = class RecordChangeReplayRunEntity extends core
|
|
|
19366
19764
|
this.Set('UserID', value);
|
|
19367
19765
|
}
|
|
19368
19766
|
/**
|
|
19369
|
-
* * Field Name:
|
|
19767
|
+
* * Field Name: __mj_CreatedAt
|
|
19370
19768
|
* * Display Name: Created At
|
|
19371
|
-
* * SQL Data Type:
|
|
19372
|
-
* * Default Value: getdate()
|
|
19769
|
+
* * SQL Data Type: datetimeoffset
|
|
19373
19770
|
*/
|
|
19374
|
-
get
|
|
19375
|
-
return this.Get('
|
|
19771
|
+
get __mj_CreatedAt() {
|
|
19772
|
+
return this.Get('__mj_CreatedAt');
|
|
19376
19773
|
}
|
|
19377
19774
|
/**
|
|
19378
|
-
* * Field Name:
|
|
19775
|
+
* * Field Name: __mj_UpdatedAt
|
|
19379
19776
|
* * Display Name: Updated At
|
|
19380
|
-
* * SQL Data Type:
|
|
19381
|
-
* * Default Value: getdate()
|
|
19777
|
+
* * SQL Data Type: datetimeoffset
|
|
19382
19778
|
*/
|
|
19383
|
-
get
|
|
19384
|
-
return this.Get('
|
|
19779
|
+
get __mj_UpdatedAt() {
|
|
19780
|
+
return this.Get('__mj_UpdatedAt');
|
|
19385
19781
|
}
|
|
19386
19782
|
/**
|
|
19387
19783
|
* * Field Name: User
|
|
19388
19784
|
* * Display Name: User
|
|
19389
19785
|
* * SQL Data Type: nvarchar(100)
|
|
19786
|
+
* * Default Value: getutcdate()
|
|
19390
19787
|
*/
|
|
19391
19788
|
get User() {
|
|
19392
19789
|
return this.Get('User');
|
|
@@ -19488,27 +19885,26 @@ let LibraryItemEntity = class LibraryItemEntity extends core_1.BaseEntity {
|
|
|
19488
19885
|
this.Set('Type', value);
|
|
19489
19886
|
}
|
|
19490
19887
|
/**
|
|
19491
|
-
* * Field Name:
|
|
19888
|
+
* * Field Name: __mj_CreatedAt
|
|
19492
19889
|
* * Display Name: Created At
|
|
19493
|
-
* * SQL Data Type:
|
|
19494
|
-
* * Default Value: getdate()
|
|
19890
|
+
* * SQL Data Type: datetimeoffset
|
|
19495
19891
|
*/
|
|
19496
|
-
get
|
|
19497
|
-
return this.Get('
|
|
19892
|
+
get __mj_CreatedAt() {
|
|
19893
|
+
return this.Get('__mj_CreatedAt');
|
|
19498
19894
|
}
|
|
19499
19895
|
/**
|
|
19500
|
-
* * Field Name:
|
|
19896
|
+
* * Field Name: __mj_UpdatedAt
|
|
19501
19897
|
* * Display Name: Updated At
|
|
19502
|
-
* * SQL Data Type:
|
|
19503
|
-
* * Default Value: getdate()
|
|
19898
|
+
* * SQL Data Type: datetimeoffset
|
|
19504
19899
|
*/
|
|
19505
|
-
get
|
|
19506
|
-
return this.Get('
|
|
19900
|
+
get __mj_UpdatedAt() {
|
|
19901
|
+
return this.Get('__mj_UpdatedAt');
|
|
19507
19902
|
}
|
|
19508
19903
|
/**
|
|
19509
19904
|
* * Field Name: Library
|
|
19510
19905
|
* * Display Name: Library
|
|
19511
19906
|
* * SQL Data Type: nvarchar(255)
|
|
19907
|
+
* * Default Value: getutcdate()
|
|
19512
19908
|
*/
|
|
19513
19909
|
get Library() {
|
|
19514
19910
|
return this.Get('Library');
|
|
@@ -19664,6 +20060,18 @@ let EntityActionParamEntity = class EntityActionParamEntity extends core_1.BaseE
|
|
|
19664
20060
|
return this.Get('ID');
|
|
19665
20061
|
}
|
|
19666
20062
|
/**
|
|
20063
|
+
* * Field Name: EntityActionID
|
|
20064
|
+
* * Display Name: Entity Action ID
|
|
20065
|
+
* * SQL Data Type: int
|
|
20066
|
+
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
|
|
20067
|
+
*/
|
|
20068
|
+
get EntityActionID() {
|
|
20069
|
+
return this.Get('EntityActionID');
|
|
20070
|
+
}
|
|
20071
|
+
set EntityActionID(value) {
|
|
20072
|
+
this.Set('EntityActionID', value);
|
|
20073
|
+
}
|
|
20074
|
+
/**
|
|
19667
20075
|
* * Field Name: ActionParamID
|
|
19668
20076
|
* * Display Name: Action Param ID
|
|
19669
20077
|
* * SQL Data Type: int
|
|
@@ -19738,7 +20146,6 @@ let EntityActionParamEntity = class EntityActionParamEntity extends core_1.BaseE
|
|
|
19738
20146
|
* * Field Name: ActionParam
|
|
19739
20147
|
* * Display Name: Action Param
|
|
19740
20148
|
* * SQL Data Type: nvarchar(255)
|
|
19741
|
-
* * Default Value: null
|
|
19742
20149
|
*/
|
|
19743
20150
|
get ActionParam() {
|
|
19744
20151
|
return this.Get('ActionParam');
|