@memberjunction/core-entities 0.9.37 → 0.9.39
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.
|
@@ -66,6 +66,7 @@ let CompanyEntity = class CompanyEntity extends core_1.BaseEntity {
|
|
|
66
66
|
* Field Name: CreatedAt
|
|
67
67
|
* Display Name: Created At
|
|
68
68
|
* SQL Data Type: datetime
|
|
69
|
+
* Default Value: getdate()
|
|
69
70
|
*/
|
|
70
71
|
get CreatedAt() {
|
|
71
72
|
return this.Get('CreatedAt');
|
|
@@ -74,6 +75,7 @@ let CompanyEntity = class CompanyEntity extends core_1.BaseEntity {
|
|
|
74
75
|
* Field Name: UpdatedAt
|
|
75
76
|
* Display Name: Updated At
|
|
76
77
|
* SQL Data Type: datetime
|
|
78
|
+
* Default Value: getdate()
|
|
77
79
|
*/
|
|
78
80
|
get UpdatedAt() {
|
|
79
81
|
return this.Get('UpdatedAt');
|
|
@@ -109,6 +111,7 @@ let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
|
|
|
109
111
|
* Field Name: BCMID
|
|
110
112
|
* Display Name: BCMID
|
|
111
113
|
* SQL Data Type: uniqueidentifier
|
|
114
|
+
* Default Value: newid()
|
|
112
115
|
*/
|
|
113
116
|
get BCMID() {
|
|
114
117
|
return this.Get('BCMID');
|
|
@@ -169,6 +172,7 @@ let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
|
|
|
169
172
|
/**
|
|
170
173
|
* Field Name: Active
|
|
171
174
|
* SQL Data Type: bit
|
|
175
|
+
* Default Value: 1
|
|
172
176
|
*/
|
|
173
177
|
get Active() {
|
|
174
178
|
return this.Get('Active');
|
|
@@ -204,6 +208,7 @@ let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
|
|
|
204
208
|
* Field Name: CreatedAt
|
|
205
209
|
* Display Name: Created At
|
|
206
210
|
* SQL Data Type: datetime
|
|
211
|
+
* Default Value: getdate()
|
|
207
212
|
*/
|
|
208
213
|
get CreatedAt() {
|
|
209
214
|
return this.Get('CreatedAt');
|
|
@@ -212,6 +217,7 @@ let EmployeeEntity = class EmployeeEntity extends core_1.BaseEntity {
|
|
|
212
217
|
* Field Name: UpdatedAt
|
|
213
218
|
* Display Name: Updated At
|
|
214
219
|
* SQL Data Type: datetime
|
|
220
|
+
* Default Value: getdate()
|
|
215
221
|
*/
|
|
216
222
|
get UpdatedAt() {
|
|
217
223
|
return this.Get('UpdatedAt');
|
|
@@ -310,6 +316,7 @@ let UserFavoriteEntity = class UserFavoriteEntity extends core_1.BaseEntity {
|
|
|
310
316
|
* Field Name: CreatedAt
|
|
311
317
|
* Display Name: Created At
|
|
312
318
|
* SQL Data Type: datetime
|
|
319
|
+
* Default Value: getdate()
|
|
313
320
|
*/
|
|
314
321
|
get CreatedAt() {
|
|
315
322
|
return this.Get('CreatedAt');
|
|
@@ -318,6 +325,7 @@ let UserFavoriteEntity = class UserFavoriteEntity extends core_1.BaseEntity {
|
|
|
318
325
|
* Field Name: UpdatedAt
|
|
319
326
|
* Display Name: Updated At
|
|
320
327
|
* SQL Data Type: datetime
|
|
328
|
+
* Default Value: getdate()
|
|
321
329
|
*/
|
|
322
330
|
get UpdatedAt() {
|
|
323
331
|
return this.Get('UpdatedAt');
|
|
@@ -396,25 +404,10 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
|
|
|
396
404
|
this.Set('ExternalSystemRecordID', value);
|
|
397
405
|
}
|
|
398
406
|
/**
|
|
399
|
-
* Field Name: CreatedAt
|
|
400
|
-
* Display Name: Created At
|
|
401
|
-
* SQL Data Type: datetime
|
|
402
|
-
*/
|
|
403
|
-
get CreatedAt() {
|
|
404
|
-
return this.Get('CreatedAt');
|
|
405
|
-
}
|
|
406
|
-
/**
|
|
407
|
-
* Field Name: UpdatedAt
|
|
408
|
-
* Display Name: Updated At
|
|
409
|
-
* SQL Data Type: datetime
|
|
410
|
-
*/
|
|
411
|
-
get UpdatedAt() {
|
|
412
|
-
return this.Get('UpdatedAt');
|
|
413
|
-
}
|
|
414
|
-
/**
|
|
415
407
|
* Field Name: IsActive
|
|
416
408
|
* Display Name: Is Active
|
|
417
409
|
* SQL Data Type: bit
|
|
410
|
+
* Default Value: 1
|
|
418
411
|
*/
|
|
419
412
|
get IsActive() {
|
|
420
413
|
return this.Get('IsActive');
|
|
@@ -423,26 +416,22 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
|
|
|
423
416
|
this.Set('IsActive', value);
|
|
424
417
|
}
|
|
425
418
|
/**
|
|
426
|
-
* Field Name:
|
|
427
|
-
* Display Name:
|
|
428
|
-
* SQL Data Type:
|
|
419
|
+
* Field Name: CreatedAt
|
|
420
|
+
* Display Name: Created At
|
|
421
|
+
* SQL Data Type: datetime
|
|
422
|
+
* Default Value: getdate()
|
|
429
423
|
*/
|
|
430
|
-
get
|
|
431
|
-
return this.Get('
|
|
432
|
-
}
|
|
433
|
-
set FTE(value) {
|
|
434
|
-
this.Set('FTE', value);
|
|
424
|
+
get CreatedAt() {
|
|
425
|
+
return this.Get('CreatedAt');
|
|
435
426
|
}
|
|
436
427
|
/**
|
|
437
|
-
* Field Name:
|
|
438
|
-
* Display Name:
|
|
439
|
-
* SQL Data Type:
|
|
428
|
+
* Field Name: UpdatedAt
|
|
429
|
+
* Display Name: Updated At
|
|
430
|
+
* SQL Data Type: datetime
|
|
431
|
+
* Default Value: getdate()
|
|
440
432
|
*/
|
|
441
|
-
get
|
|
442
|
-
return this.Get('
|
|
443
|
-
}
|
|
444
|
-
set BillableTarget(value) {
|
|
445
|
-
this.Set('BillableTarget', value);
|
|
433
|
+
get UpdatedAt() {
|
|
434
|
+
return this.Get('UpdatedAt');
|
|
446
435
|
}
|
|
447
436
|
};
|
|
448
437
|
exports.EmployeeCompanyIntegrationEntity = EmployeeCompanyIntegrationEntity;
|
|
@@ -487,6 +476,7 @@ let EmployeeRoleEntity = class EmployeeRoleEntity extends core_1.BaseEntity {
|
|
|
487
476
|
* Field Name: CreatedAt
|
|
488
477
|
* Display Name: Created At
|
|
489
478
|
* SQL Data Type: datetime
|
|
479
|
+
* Default Value: getdate()
|
|
490
480
|
*/
|
|
491
481
|
get CreatedAt() {
|
|
492
482
|
return this.Get('CreatedAt');
|
|
@@ -495,6 +485,7 @@ let EmployeeRoleEntity = class EmployeeRoleEntity extends core_1.BaseEntity {
|
|
|
495
485
|
* Field Name: UpdatedAt
|
|
496
486
|
* Display Name: Updated At
|
|
497
487
|
* SQL Data Type: datetime
|
|
488
|
+
* Default Value: getdate()
|
|
498
489
|
*/
|
|
499
490
|
get UpdatedAt() {
|
|
500
491
|
return this.Get('UpdatedAt');
|
|
@@ -550,6 +541,7 @@ let EmployeeSkillEntity = class EmployeeSkillEntity extends core_1.BaseEntity {
|
|
|
550
541
|
* Field Name: CreatedAt
|
|
551
542
|
* Display Name: Created At
|
|
552
543
|
* SQL Data Type: datetime
|
|
544
|
+
* Default Value: getdate()
|
|
553
545
|
*/
|
|
554
546
|
get CreatedAt() {
|
|
555
547
|
return this.Get('CreatedAt');
|
|
@@ -558,6 +550,7 @@ let EmployeeSkillEntity = class EmployeeSkillEntity extends core_1.BaseEntity {
|
|
|
558
550
|
* Field Name: UpdatedAt
|
|
559
551
|
* Display Name: Updated At
|
|
560
552
|
* SQL Data Type: datetime
|
|
553
|
+
* Default Value: getdate()
|
|
561
554
|
*/
|
|
562
555
|
get UpdatedAt() {
|
|
563
556
|
return this.Get('UpdatedAt');
|
|
@@ -630,6 +623,7 @@ let RoleEntity = class RoleEntity extends core_1.BaseEntity {
|
|
|
630
623
|
* Field Name: CreatedAt
|
|
631
624
|
* Display Name: Created At
|
|
632
625
|
* SQL Data Type: datetime
|
|
626
|
+
* Default Value: getdate()
|
|
633
627
|
*/
|
|
634
628
|
get CreatedAt() {
|
|
635
629
|
return this.Get('CreatedAt');
|
|
@@ -638,6 +632,7 @@ let RoleEntity = class RoleEntity extends core_1.BaseEntity {
|
|
|
638
632
|
* Field Name: UpdatedAt
|
|
639
633
|
* Display Name: Updated At
|
|
640
634
|
* SQL Data Type: datetime
|
|
635
|
+
* Default Value: getdate()
|
|
641
636
|
*/
|
|
642
637
|
get UpdatedAt() {
|
|
643
638
|
return this.Get('UpdatedAt');
|
|
@@ -682,6 +677,7 @@ let SkillEntity = class SkillEntity extends core_1.BaseEntity {
|
|
|
682
677
|
* Field Name: CreatedAt
|
|
683
678
|
* Display Name: Created At
|
|
684
679
|
* SQL Data Type: datetime
|
|
680
|
+
* Default Value: getdate()
|
|
685
681
|
*/
|
|
686
682
|
get CreatedAt() {
|
|
687
683
|
return this.Get('CreatedAt');
|
|
@@ -690,6 +686,7 @@ let SkillEntity = class SkillEntity extends core_1.BaseEntity {
|
|
|
690
686
|
* Field Name: UpdatedAt
|
|
691
687
|
* Display Name: Updated At
|
|
692
688
|
* SQL Data Type: datetime
|
|
689
|
+
* Default Value: getdate()
|
|
693
690
|
*/
|
|
694
691
|
get UpdatedAt() {
|
|
695
692
|
return this.Get('UpdatedAt');
|
|
@@ -851,6 +848,7 @@ let IntegrationEntity = class IntegrationEntity extends core_1.BaseEntity {
|
|
|
851
848
|
* Field Name: BatchMaxRequestCount
|
|
852
849
|
* Display Name: Batch Max Request Count
|
|
853
850
|
* SQL Data Type: int
|
|
851
|
+
* Default Value: -1
|
|
854
852
|
*/
|
|
855
853
|
get BatchMaxRequestCount() {
|
|
856
854
|
return this.Get('BatchMaxRequestCount');
|
|
@@ -862,6 +860,7 @@ let IntegrationEntity = class IntegrationEntity extends core_1.BaseEntity {
|
|
|
862
860
|
* Field Name: BatchRequestWaitTime
|
|
863
861
|
* Display Name: Batch Request Wait Time
|
|
864
862
|
* SQL Data Type: int
|
|
863
|
+
* Default Value: -1
|
|
865
864
|
*/
|
|
866
865
|
get BatchRequestWaitTime() {
|
|
867
866
|
return this.Get('BatchRequestWaitTime');
|
|
@@ -873,6 +872,7 @@ let IntegrationEntity = class IntegrationEntity extends core_1.BaseEntity {
|
|
|
873
872
|
* Field Name: CreatedAt
|
|
874
873
|
* Display Name: Created At
|
|
875
874
|
* SQL Data Type: datetime
|
|
875
|
+
* Default Value: getdate()
|
|
876
876
|
*/
|
|
877
877
|
get CreatedAt() {
|
|
878
878
|
return this.Get('CreatedAt');
|
|
@@ -881,6 +881,7 @@ let IntegrationEntity = class IntegrationEntity extends core_1.BaseEntity {
|
|
|
881
881
|
* Field Name: UpdatedAt
|
|
882
882
|
* Display Name: Updated At
|
|
883
883
|
* SQL Data Type: datetime
|
|
884
|
+
* Default Value: getdate()
|
|
884
885
|
*/
|
|
885
886
|
get UpdatedAt() {
|
|
886
887
|
return this.Get('UpdatedAt');
|
|
@@ -982,6 +983,7 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
982
983
|
* Field Name: CreatedAt
|
|
983
984
|
* Display Name: Created At
|
|
984
985
|
* SQL Data Type: datetime
|
|
986
|
+
* Default Value: getdate()
|
|
985
987
|
*/
|
|
986
988
|
get CreatedAt() {
|
|
987
989
|
return this.Get('CreatedAt');
|
|
@@ -990,6 +992,7 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
990
992
|
* Field Name: UpdatedAt
|
|
991
993
|
* Display Name: Updated At
|
|
992
994
|
* SQL Data Type: datetime
|
|
995
|
+
* Default Value: getdate()
|
|
993
996
|
*/
|
|
994
997
|
get UpdatedAt() {
|
|
995
998
|
return this.Get('UpdatedAt');
|
|
@@ -1009,6 +1012,7 @@ let CompanyIntegrationEntity = class CompanyIntegrationEntity extends core_1.Bas
|
|
|
1009
1012
|
* Field Name: IsExternalSystemReadOnly
|
|
1010
1013
|
* Display Name: Is External System Read Only
|
|
1011
1014
|
* SQL Data Type: bit
|
|
1015
|
+
* Default Value: 0
|
|
1012
1016
|
*/
|
|
1013
1017
|
get IsExternalSystemReadOnly() {
|
|
1014
1018
|
return this.Get('IsExternalSystemReadOnly');
|
|
@@ -1152,6 +1156,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1152
1156
|
/**
|
|
1153
1157
|
* Field Name: Sequence
|
|
1154
1158
|
* SQL Data Type: int
|
|
1159
|
+
* Default Value: 0
|
|
1155
1160
|
*/
|
|
1156
1161
|
get Sequence() {
|
|
1157
1162
|
return this.Get('Sequence');
|
|
@@ -1227,6 +1232,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1227
1232
|
* Field Name: AllowsNull
|
|
1228
1233
|
* Display Name: Allows Null
|
|
1229
1234
|
* SQL Data Type: bit
|
|
1235
|
+
* Default Value: 1
|
|
1230
1236
|
*/
|
|
1231
1237
|
get AllowsNull() {
|
|
1232
1238
|
return this.Get('AllowsNull');
|
|
@@ -1243,6 +1249,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1243
1249
|
* Field Name: AutoIncrement
|
|
1244
1250
|
* Display Name: Auto Increment
|
|
1245
1251
|
* SQL Data Type: bit
|
|
1252
|
+
* Default Value: 0
|
|
1246
1253
|
*/
|
|
1247
1254
|
get AutoIncrement() {
|
|
1248
1255
|
return this.Get('AutoIncrement');
|
|
@@ -1251,6 +1258,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1251
1258
|
* Field Name: ValueListType
|
|
1252
1259
|
* Display Name: Value List Type
|
|
1253
1260
|
* SQL Data Type: nvarchar(20)
|
|
1261
|
+
* Default Value: N'None'
|
|
1254
1262
|
*/
|
|
1255
1263
|
get ValueListType() {
|
|
1256
1264
|
return this.Get('ValueListType');
|
|
@@ -1273,6 +1281,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1273
1281
|
* Field Name: DefaultInView
|
|
1274
1282
|
* Display Name: Default In View
|
|
1275
1283
|
* SQL Data Type: bit
|
|
1284
|
+
* Default Value: 0
|
|
1276
1285
|
*/
|
|
1277
1286
|
get DefaultInView() {
|
|
1278
1287
|
return this.Get('DefaultInView');
|
|
@@ -1306,6 +1315,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1306
1315
|
* Field Name: AllowUpdateAPI
|
|
1307
1316
|
* Display Name: Allow Update API
|
|
1308
1317
|
* SQL Data Type: bit
|
|
1318
|
+
* Default Value: 1
|
|
1309
1319
|
*/
|
|
1310
1320
|
get AllowUpdateAPI() {
|
|
1311
1321
|
return this.Get('AllowUpdateAPI');
|
|
@@ -1317,6 +1327,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1317
1327
|
* Field Name: AllowUpdateInView
|
|
1318
1328
|
* Display Name: Allow Update In View
|
|
1319
1329
|
* SQL Data Type: bit
|
|
1330
|
+
* Default Value: 1
|
|
1320
1331
|
*/
|
|
1321
1332
|
get AllowUpdateInView() {
|
|
1322
1333
|
return this.Get('AllowUpdateInView');
|
|
@@ -1328,6 +1339,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1328
1339
|
* Field Name: IncludeInUserSearchAPI
|
|
1329
1340
|
* Display Name: Include In User Search API
|
|
1330
1341
|
* SQL Data Type: bit
|
|
1342
|
+
* Default Value: 0
|
|
1331
1343
|
*/
|
|
1332
1344
|
get IncludeInUserSearchAPI() {
|
|
1333
1345
|
return this.Get('IncludeInUserSearchAPI');
|
|
@@ -1339,6 +1351,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1339
1351
|
* Field Name: FullTextSearchEnabled
|
|
1340
1352
|
* Display Name: Full Text Search Enabled
|
|
1341
1353
|
* SQL Data Type: bit
|
|
1354
|
+
* Default Value: 0
|
|
1342
1355
|
*/
|
|
1343
1356
|
get FullTextSearchEnabled() {
|
|
1344
1357
|
return this.Get('FullTextSearchEnabled');
|
|
@@ -1361,6 +1374,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1361
1374
|
* Field Name: IncludeInGeneratedForm
|
|
1362
1375
|
* Display Name: Include In Generated Form
|
|
1363
1376
|
* SQL Data Type: bit
|
|
1377
|
+
* Default Value: 1
|
|
1364
1378
|
*/
|
|
1365
1379
|
get IncludeInGeneratedForm() {
|
|
1366
1380
|
return this.Get('IncludeInGeneratedForm');
|
|
@@ -1372,6 +1386,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1372
1386
|
* Field Name: GeneratedFormSection
|
|
1373
1387
|
* Display Name: Generated Form Section
|
|
1374
1388
|
* SQL Data Type: nvarchar(10)
|
|
1389
|
+
* Default Value: N'Details'
|
|
1375
1390
|
*/
|
|
1376
1391
|
get GeneratedFormSection() {
|
|
1377
1392
|
return this.Get('GeneratedFormSection');
|
|
@@ -1383,6 +1398,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1383
1398
|
* Field Name: IsVirtual
|
|
1384
1399
|
* Display Name: Is Virtual
|
|
1385
1400
|
* SQL Data Type: bit
|
|
1401
|
+
* Default Value: 0
|
|
1386
1402
|
*/
|
|
1387
1403
|
get IsVirtual() {
|
|
1388
1404
|
return this.Get('IsVirtual');
|
|
@@ -1391,6 +1407,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1391
1407
|
* Field Name: IsNameField
|
|
1392
1408
|
* Display Name: Is Name Field
|
|
1393
1409
|
* SQL Data Type: bit
|
|
1410
|
+
* Default Value: 0
|
|
1394
1411
|
*/
|
|
1395
1412
|
get IsNameField() {
|
|
1396
1413
|
return this.Get('IsNameField');
|
|
@@ -1425,6 +1442,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1425
1442
|
* Field Name: IncludeRelatedEntityNameFieldInBaseView
|
|
1426
1443
|
* Display Name: Include Related Entity Name Field In Base View
|
|
1427
1444
|
* SQL Data Type: bit
|
|
1445
|
+
* Default Value: 1
|
|
1428
1446
|
*/
|
|
1429
1447
|
get IncludeRelatedEntityNameFieldInBaseView() {
|
|
1430
1448
|
return this.Get('IncludeRelatedEntityNameFieldInBaseView');
|
|
@@ -1447,6 +1465,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1447
1465
|
* Field Name: CreatedAt
|
|
1448
1466
|
* Display Name: Created At
|
|
1449
1467
|
* SQL Data Type: datetime
|
|
1468
|
+
* Default Value: getdate()
|
|
1450
1469
|
*/
|
|
1451
1470
|
get CreatedAt() {
|
|
1452
1471
|
return this.Get('CreatedAt');
|
|
@@ -1455,6 +1474,7 @@ let EntityFieldEntity = class EntityFieldEntity extends core_1.BaseEntity {
|
|
|
1455
1474
|
* Field Name: UpdatedAt
|
|
1456
1475
|
* Display Name: Updated At
|
|
1457
1476
|
* SQL Data Type: datetime
|
|
1477
|
+
* Default Value: getdate()
|
|
1458
1478
|
*/
|
|
1459
1479
|
get UpdatedAt() {
|
|
1460
1480
|
return this.Get('UpdatedAt');
|
|
@@ -1637,6 +1657,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1637
1657
|
* Field Name: BaseViewGenerated
|
|
1638
1658
|
* Display Name: Base View Generated
|
|
1639
1659
|
* SQL Data Type: bit
|
|
1660
|
+
* Default Value: 1
|
|
1640
1661
|
*/
|
|
1641
1662
|
get BaseViewGenerated() {
|
|
1642
1663
|
return this.Get('BaseViewGenerated');
|
|
@@ -1648,6 +1669,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1648
1669
|
* Field Name: SchemaName
|
|
1649
1670
|
* Display Name: Schema Name
|
|
1650
1671
|
* SQL Data Type: nvarchar(25)
|
|
1672
|
+
* Default Value: N'dbo'
|
|
1651
1673
|
* Description: Database Schema Name
|
|
1652
1674
|
*/
|
|
1653
1675
|
get SchemaName() {
|
|
@@ -1657,6 +1679,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1657
1679
|
* Field Name: VirtualEntity
|
|
1658
1680
|
* Display Name: Virtual Entity
|
|
1659
1681
|
* SQL Data Type: bit
|
|
1682
|
+
* Default Value: 0
|
|
1660
1683
|
*/
|
|
1661
1684
|
get VirtualEntity() {
|
|
1662
1685
|
return this.Get('VirtualEntity');
|
|
@@ -1668,6 +1691,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1668
1691
|
* Field Name: TrackRecordChanges
|
|
1669
1692
|
* Display Name: Track Record Changes
|
|
1670
1693
|
* SQL Data Type: bit
|
|
1694
|
+
* Default Value: 1
|
|
1671
1695
|
*/
|
|
1672
1696
|
get TrackRecordChanges() {
|
|
1673
1697
|
return this.Get('TrackRecordChanges');
|
|
@@ -1679,6 +1703,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1679
1703
|
* Field Name: AuditRecordAccess
|
|
1680
1704
|
* Display Name: Audit Record Access
|
|
1681
1705
|
* SQL Data Type: bit
|
|
1706
|
+
* Default Value: 1
|
|
1682
1707
|
*/
|
|
1683
1708
|
get AuditRecordAccess() {
|
|
1684
1709
|
return this.Get('AuditRecordAccess');
|
|
@@ -1690,6 +1715,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1690
1715
|
* Field Name: AuditViewRuns
|
|
1691
1716
|
* Display Name: Audit View Runs
|
|
1692
1717
|
* SQL Data Type: bit
|
|
1718
|
+
* Default Value: 1
|
|
1693
1719
|
*/
|
|
1694
1720
|
get AuditViewRuns() {
|
|
1695
1721
|
return this.Get('AuditViewRuns');
|
|
@@ -1701,6 +1727,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1701
1727
|
* Field Name: IncludeInAPI
|
|
1702
1728
|
* Display Name: Include In API
|
|
1703
1729
|
* SQL Data Type: bit
|
|
1730
|
+
* Default Value: 0
|
|
1704
1731
|
* Description: Master switch to control if the field is included in the API or not
|
|
1705
1732
|
*/
|
|
1706
1733
|
get IncludeInAPI() {
|
|
@@ -1713,6 +1740,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1713
1740
|
* Field Name: AllowAllRowsAPI
|
|
1714
1741
|
* Display Name: Allow All Rows API
|
|
1715
1742
|
* SQL Data Type: bit
|
|
1743
|
+
* Default Value: 0
|
|
1716
1744
|
*/
|
|
1717
1745
|
get AllowAllRowsAPI() {
|
|
1718
1746
|
return this.Get('AllowAllRowsAPI');
|
|
@@ -1724,6 +1752,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1724
1752
|
* Field Name: AllowUpdateAPI
|
|
1725
1753
|
* Display Name: Allow Update API
|
|
1726
1754
|
* SQL Data Type: bit
|
|
1755
|
+
* Default Value: 0
|
|
1727
1756
|
* Description: If set to 1, allows updates to occur via API. Role based permissions are required in addition to turning this bit on.
|
|
1728
1757
|
*/
|
|
1729
1758
|
get AllowUpdateAPI() {
|
|
@@ -1736,6 +1765,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1736
1765
|
* Field Name: AllowCreateAPI
|
|
1737
1766
|
* Display Name: Allow Create API
|
|
1738
1767
|
* SQL Data Type: bit
|
|
1768
|
+
* Default Value: 0
|
|
1739
1769
|
*/
|
|
1740
1770
|
get AllowCreateAPI() {
|
|
1741
1771
|
return this.Get('AllowCreateAPI');
|
|
@@ -1747,6 +1777,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1747
1777
|
* Field Name: AllowDeleteAPI
|
|
1748
1778
|
* Display Name: Allow Delete API
|
|
1749
1779
|
* SQL Data Type: bit
|
|
1780
|
+
* Default Value: 0
|
|
1750
1781
|
*/
|
|
1751
1782
|
get AllowDeleteAPI() {
|
|
1752
1783
|
return this.Get('AllowDeleteAPI');
|
|
@@ -1758,6 +1789,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1758
1789
|
* Field Name: CustomResolverAPI
|
|
1759
1790
|
* Display Name: Custom Resolver API
|
|
1760
1791
|
* SQL Data Type: bit
|
|
1792
|
+
* Default Value: 0
|
|
1761
1793
|
*/
|
|
1762
1794
|
get CustomResolverAPI() {
|
|
1763
1795
|
return this.Get('CustomResolverAPI');
|
|
@@ -1769,6 +1801,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1769
1801
|
* Field Name: AllowUserSearchAPI
|
|
1770
1802
|
* Display Name: Allow User Search API
|
|
1771
1803
|
* SQL Data Type: bit
|
|
1804
|
+
* Default Value: 0
|
|
1772
1805
|
* Description: If set to 1, allows an end user to add their own search string when running a user view or searching without saving a view
|
|
1773
1806
|
*/
|
|
1774
1807
|
get AllowUserSearchAPI() {
|
|
@@ -1781,6 +1814,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1781
1814
|
* Field Name: FullTextSearchEnabled
|
|
1782
1815
|
* Display Name: Full Text Search Enabled
|
|
1783
1816
|
* SQL Data Type: bit
|
|
1817
|
+
* Default Value: 0
|
|
1784
1818
|
*/
|
|
1785
1819
|
get FullTextSearchEnabled() {
|
|
1786
1820
|
return this.Get('FullTextSearchEnabled');
|
|
@@ -1803,6 +1837,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1803
1837
|
* Field Name: FullTextCatalogGenerated
|
|
1804
1838
|
* Display Name: Full Text Catalog Generated
|
|
1805
1839
|
* SQL Data Type: bit
|
|
1840
|
+
* Default Value: 1
|
|
1806
1841
|
*/
|
|
1807
1842
|
get FullTextCatalogGenerated() {
|
|
1808
1843
|
return this.Get('FullTextCatalogGenerated');
|
|
@@ -1825,6 +1860,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1825
1860
|
* Field Name: FullTextIndexGenerated
|
|
1826
1861
|
* Display Name: Full Text Index Generated
|
|
1827
1862
|
* SQL Data Type: bit
|
|
1863
|
+
* Default Value: 1
|
|
1828
1864
|
*/
|
|
1829
1865
|
get FullTextIndexGenerated() {
|
|
1830
1866
|
return this.Get('FullTextIndexGenerated');
|
|
@@ -1847,6 +1883,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1847
1883
|
* Field Name: FullTextSearchFunctionGenerated
|
|
1848
1884
|
* Display Name: Full Text Search Function Generated
|
|
1849
1885
|
* SQL Data Type: bit
|
|
1886
|
+
* Default Value: 1
|
|
1850
1887
|
*/
|
|
1851
1888
|
get FullTextSearchFunctionGenerated() {
|
|
1852
1889
|
return this.Get('FullTextSearchFunctionGenerated');
|
|
@@ -1858,6 +1895,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1858
1895
|
* Field Name: UserViewMaxRows
|
|
1859
1896
|
* Display Name: User View Max Rows
|
|
1860
1897
|
* SQL Data Type: int
|
|
1898
|
+
* Default Value: 1000
|
|
1861
1899
|
*/
|
|
1862
1900
|
get UserViewMaxRows() {
|
|
1863
1901
|
return this.Get('UserViewMaxRows');
|
|
@@ -1902,6 +1940,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1902
1940
|
* Field Name: spCreateGenerated
|
|
1903
1941
|
* Display Name: sp CreateGenerated
|
|
1904
1942
|
* SQL Data Type: bit
|
|
1943
|
+
* Default Value: 1
|
|
1905
1944
|
*/
|
|
1906
1945
|
get spCreateGenerated() {
|
|
1907
1946
|
return this.Get('spCreateGenerated');
|
|
@@ -1913,6 +1952,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1913
1952
|
* Field Name: spUpdateGenerated
|
|
1914
1953
|
* Display Name: sp Update Generated
|
|
1915
1954
|
* SQL Data Type: bit
|
|
1955
|
+
* Default Value: 1
|
|
1916
1956
|
*/
|
|
1917
1957
|
get spUpdateGenerated() {
|
|
1918
1958
|
return this.Get('spUpdateGenerated');
|
|
@@ -1924,6 +1964,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1924
1964
|
* Field Name: spDeleteGenerated
|
|
1925
1965
|
* Display Name: sp Delete Generated
|
|
1926
1966
|
* SQL Data Type: bit
|
|
1967
|
+
* Default Value: 1
|
|
1927
1968
|
*/
|
|
1928
1969
|
get spDeleteGenerated() {
|
|
1929
1970
|
return this.Get('spDeleteGenerated');
|
|
@@ -1935,6 +1976,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1935
1976
|
* Field Name: CascadeDeletes
|
|
1936
1977
|
* Display Name: Cascade Deletes
|
|
1937
1978
|
* SQL Data Type: bit
|
|
1979
|
+
* Default Value: 0
|
|
1938
1980
|
*/
|
|
1939
1981
|
get CascadeDeletes() {
|
|
1940
1982
|
return this.Get('CascadeDeletes');
|
|
@@ -1946,6 +1988,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1946
1988
|
* Field Name: UserFormGenerated
|
|
1947
1989
|
* Display Name: User Form Generated
|
|
1948
1990
|
* SQL Data Type: bit
|
|
1991
|
+
* Default Value: 1
|
|
1949
1992
|
*/
|
|
1950
1993
|
get UserFormGenerated() {
|
|
1951
1994
|
return this.Get('UserFormGenerated');
|
|
@@ -1981,6 +2024,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1981
2024
|
* Field Name: CreatedAt
|
|
1982
2025
|
* Display Name: Created At
|
|
1983
2026
|
* SQL Data Type: datetime
|
|
2027
|
+
* Default Value: getdate()
|
|
1984
2028
|
*/
|
|
1985
2029
|
get CreatedAt() {
|
|
1986
2030
|
return this.Get('CreatedAt');
|
|
@@ -1989,6 +2033,7 @@ let EntityEntity = class EntityEntity extends core_1.BaseEntity {
|
|
|
1989
2033
|
* Field Name: UpdatedAt
|
|
1990
2034
|
* Display Name: Updated At
|
|
1991
2035
|
* SQL Data Type: datetime
|
|
2036
|
+
* Default Value: getdate()
|
|
1992
2037
|
*/
|
|
1993
2038
|
get UpdatedAt() {
|
|
1994
2039
|
return this.Get('UpdatedAt');
|
|
@@ -2123,6 +2168,7 @@ let UserEntity = class UserEntity extends core_1.BaseEntity {
|
|
|
2123
2168
|
* Field Name: IsActive
|
|
2124
2169
|
* Display Name: Is Active
|
|
2125
2170
|
* SQL Data Type: bit
|
|
2171
|
+
* Default Value: 0
|
|
2126
2172
|
*/
|
|
2127
2173
|
get IsActive() {
|
|
2128
2174
|
return this.Get('IsActive');
|
|
@@ -2134,6 +2180,7 @@ let UserEntity = class UserEntity extends core_1.BaseEntity {
|
|
|
2134
2180
|
* Field Name: LinkedRecordType
|
|
2135
2181
|
* Display Name: Linked Record Type
|
|
2136
2182
|
* SQL Data Type: nchar(10)
|
|
2183
|
+
* Default Value: N'None'
|
|
2137
2184
|
*/
|
|
2138
2185
|
get LinkedRecordType() {
|
|
2139
2186
|
return this.Get('LinkedRecordType');
|
|
@@ -2178,6 +2225,7 @@ let UserEntity = class UserEntity extends core_1.BaseEntity {
|
|
|
2178
2225
|
* Field Name: CreatedAt
|
|
2179
2226
|
* Display Name: Created At
|
|
2180
2227
|
* SQL Data Type: datetime
|
|
2228
|
+
* Default Value: getdate()
|
|
2181
2229
|
*/
|
|
2182
2230
|
get CreatedAt() {
|
|
2183
2231
|
return this.Get('CreatedAt');
|
|
@@ -2186,6 +2234,7 @@ let UserEntity = class UserEntity extends core_1.BaseEntity {
|
|
|
2186
2234
|
* Field Name: UpdatedAt
|
|
2187
2235
|
* Display Name: Updated At
|
|
2188
2236
|
* SQL Data Type: datetime
|
|
2237
|
+
* Default Value: getdate()
|
|
2189
2238
|
*/
|
|
2190
2239
|
get UpdatedAt() {
|
|
2191
2240
|
return this.Get('UpdatedAt');
|
|
@@ -2281,6 +2330,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
2281
2330
|
* Field Name: BundleInAPI
|
|
2282
2331
|
* Display Name: Bundle In API
|
|
2283
2332
|
* SQL Data Type: bit
|
|
2333
|
+
* Default Value: 1
|
|
2284
2334
|
*/
|
|
2285
2335
|
get BundleInAPI() {
|
|
2286
2336
|
return this.Get('BundleInAPI');
|
|
@@ -2292,6 +2342,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
2292
2342
|
* Field Name: IncludeInParentAllQuery
|
|
2293
2343
|
* Display Name: Include In Parent All Query
|
|
2294
2344
|
* SQL Data Type: bit
|
|
2345
|
+
* Default Value: 0
|
|
2295
2346
|
*/
|
|
2296
2347
|
get IncludeInParentAllQuery() {
|
|
2297
2348
|
return this.Get('IncludeInParentAllQuery');
|
|
@@ -2302,6 +2353,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
2302
2353
|
/**
|
|
2303
2354
|
* Field Name: Type
|
|
2304
2355
|
* SQL Data Type: nchar(20)
|
|
2356
|
+
* Default Value: N'One To Many'
|
|
2305
2357
|
*/
|
|
2306
2358
|
get Type() {
|
|
2307
2359
|
return this.Get('Type');
|
|
@@ -2368,6 +2420,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
2368
2420
|
* Field Name: DisplayInForm
|
|
2369
2421
|
* Display Name: Display In Form
|
|
2370
2422
|
* SQL Data Type: bit
|
|
2423
|
+
* Default Value: 1
|
|
2371
2424
|
*/
|
|
2372
2425
|
get DisplayInForm() {
|
|
2373
2426
|
return this.Get('DisplayInForm');
|
|
@@ -2399,6 +2452,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
2399
2452
|
* Field Name: CreatedAt
|
|
2400
2453
|
* Display Name: Created At
|
|
2401
2454
|
* SQL Data Type: datetime
|
|
2455
|
+
* Default Value: getdate()
|
|
2402
2456
|
*/
|
|
2403
2457
|
get CreatedAt() {
|
|
2404
2458
|
return this.Get('CreatedAt');
|
|
@@ -2407,6 +2461,7 @@ let EntityRelationshipEntity = class EntityRelationshipEntity extends core_1.Bas
|
|
|
2407
2461
|
* Field Name: UpdatedAt
|
|
2408
2462
|
* Display Name: Updated At
|
|
2409
2463
|
* SQL Data Type: datetime
|
|
2464
|
+
* Default Value: getdate()
|
|
2410
2465
|
*/
|
|
2411
2466
|
get UpdatedAt() {
|
|
2412
2467
|
return this.Get('UpdatedAt');
|
|
@@ -2553,6 +2608,7 @@ let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
|
|
|
2553
2608
|
* Field Name: EarliestAt
|
|
2554
2609
|
* Display Name: Earliest At
|
|
2555
2610
|
* SQL Data Type: datetime
|
|
2611
|
+
* Default Value: getdate()
|
|
2556
2612
|
*/
|
|
2557
2613
|
get EarliestAt() {
|
|
2558
2614
|
return this.Get('EarliestAt');
|
|
@@ -2564,6 +2620,7 @@ let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
|
|
|
2564
2620
|
* Field Name: LatestAt
|
|
2565
2621
|
* Display Name: Latest At
|
|
2566
2622
|
* SQL Data Type: datetime
|
|
2623
|
+
* Default Value: getdate()
|
|
2567
2624
|
*/
|
|
2568
2625
|
get LatestAt() {
|
|
2569
2626
|
return this.Get('LatestAt');
|
|
@@ -2575,6 +2632,7 @@ let UserRecordLogEntity = class UserRecordLogEntity extends core_1.BaseEntity {
|
|
|
2575
2632
|
* Field Name: TotalCount
|
|
2576
2633
|
* Display Name: Total Count
|
|
2577
2634
|
* SQL Data Type: int
|
|
2635
|
+
* Default Value: 0
|
|
2578
2636
|
*/
|
|
2579
2637
|
get TotalCount() {
|
|
2580
2638
|
return this.Get('TotalCount');
|
|
@@ -2684,6 +2742,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
2684
2742
|
* Field Name: GUID
|
|
2685
2743
|
* Display Name: GUID
|
|
2686
2744
|
* SQL Data Type: uniqueidentifier
|
|
2745
|
+
* Default Value: newid()
|
|
2687
2746
|
*/
|
|
2688
2747
|
get GUID() {
|
|
2689
2748
|
return this.Get('GUID');
|
|
@@ -2702,6 +2761,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
2702
2761
|
* Field Name: IsShared
|
|
2703
2762
|
* Display Name: Is Shared
|
|
2704
2763
|
* SQL Data Type: bit
|
|
2764
|
+
* Default Value: 0
|
|
2705
2765
|
*/
|
|
2706
2766
|
get IsShared() {
|
|
2707
2767
|
return this.Get('IsShared');
|
|
@@ -2713,6 +2773,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
2713
2773
|
* Field Name: IsDefault
|
|
2714
2774
|
* Display Name: Is Default
|
|
2715
2775
|
* SQL Data Type: bit
|
|
2776
|
+
* Default Value: 0
|
|
2716
2777
|
*/
|
|
2717
2778
|
get IsDefault() {
|
|
2718
2779
|
return this.Get('IsDefault');
|
|
@@ -2746,6 +2807,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
2746
2807
|
* Field Name: CustomFilterState
|
|
2747
2808
|
* Display Name: Custom Filter State
|
|
2748
2809
|
* SQL Data Type: bit
|
|
2810
|
+
* Default Value: 0
|
|
2749
2811
|
*/
|
|
2750
2812
|
get CustomFilterState() {
|
|
2751
2813
|
return this.Get('CustomFilterState');
|
|
@@ -2757,6 +2819,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
2757
2819
|
* Field Name: SmartFilterEnabled
|
|
2758
2820
|
* Display Name: Smart Filter Enabled
|
|
2759
2821
|
* SQL Data Type: bit
|
|
2822
|
+
* Default Value: 0
|
|
2760
2823
|
*/
|
|
2761
2824
|
get SmartFilterEnabled() {
|
|
2762
2825
|
return this.Get('SmartFilterEnabled');
|
|
@@ -2812,6 +2875,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
2812
2875
|
* Field Name: CustomWhereClause
|
|
2813
2876
|
* Display Name: Custom Where Clause
|
|
2814
2877
|
* SQL Data Type: bit
|
|
2878
|
+
* Default Value: 0
|
|
2815
2879
|
*/
|
|
2816
2880
|
get CustomWhereClause() {
|
|
2817
2881
|
return this.Get('CustomWhereClause');
|
|
@@ -2834,6 +2898,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
2834
2898
|
* Field Name: CreatedAt
|
|
2835
2899
|
* Display Name: Created At
|
|
2836
2900
|
* SQL Data Type: datetime
|
|
2901
|
+
* Default Value: getdate()
|
|
2837
2902
|
*/
|
|
2838
2903
|
get CreatedAt() {
|
|
2839
2904
|
return this.Get('CreatedAt');
|
|
@@ -2842,6 +2907,7 @@ let UserViewEntity = class UserViewEntity extends core_1.BaseEntity {
|
|
|
2842
2907
|
* Field Name: UpdatedAt
|
|
2843
2908
|
* Display Name: Updated At
|
|
2844
2909
|
* SQL Data Type: datetime
|
|
2910
|
+
* Default Value: getdate()
|
|
2845
2911
|
*/
|
|
2846
2912
|
get UpdatedAt() {
|
|
2847
2913
|
return this.Get('UpdatedAt');
|
|
@@ -3050,6 +3116,7 @@ let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity
|
|
|
3050
3116
|
* Field Name: ExecutedAt
|
|
3051
3117
|
* Display Name: Executed At
|
|
3052
3118
|
* SQL Data Type: datetime
|
|
3119
|
+
* Default Value: getdate()
|
|
3053
3120
|
*/
|
|
3054
3121
|
get ExecutedAt() {
|
|
3055
3122
|
return this.Get('ExecutedAt');
|
|
@@ -3061,6 +3128,7 @@ let CompanyIntegrationRunDetailEntity = class CompanyIntegrationRunDetailEntity
|
|
|
3061
3128
|
* Field Name: IsSuccess
|
|
3062
3129
|
* Display Name: Is Success
|
|
3063
3130
|
* SQL Data Type: bit
|
|
3131
|
+
* Default Value: 0
|
|
3064
3132
|
*/
|
|
3065
3133
|
get IsSuccess() {
|
|
3066
3134
|
return this.Get('IsSuccess');
|
|
@@ -3154,6 +3222,7 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
|
|
|
3154
3222
|
* Field Name: CreatedAt
|
|
3155
3223
|
* Display Name: Created At
|
|
3156
3224
|
* SQL Data Type: datetime
|
|
3225
|
+
* Default Value: getdate()
|
|
3157
3226
|
*/
|
|
3158
3227
|
get CreatedAt() {
|
|
3159
3228
|
return this.Get('CreatedAt');
|
|
@@ -3162,6 +3231,7 @@ let ErrorLogEntity = class ErrorLogEntity extends core_1.BaseEntity {
|
|
|
3162
3231
|
* Field Name: CreatedBy
|
|
3163
3232
|
* Display Name: Created By
|
|
3164
3233
|
* SQL Data Type: nvarchar(50)
|
|
3234
|
+
* Default Value: suser_name()
|
|
3165
3235
|
*/
|
|
3166
3236
|
get CreatedBy() {
|
|
3167
3237
|
return this.Get('CreatedBy');
|
|
@@ -3238,6 +3308,7 @@ let ApplicationEntity = class ApplicationEntity extends core_1.BaseEntity {
|
|
|
3238
3308
|
* Field Name: CreatedAt
|
|
3239
3309
|
* Display Name: Created At
|
|
3240
3310
|
* SQL Data Type: datetime
|
|
3311
|
+
* Default Value: getdate()
|
|
3241
3312
|
*/
|
|
3242
3313
|
get CreatedAt() {
|
|
3243
3314
|
return this.Get('CreatedAt');
|
|
@@ -3246,6 +3317,7 @@ let ApplicationEntity = class ApplicationEntity extends core_1.BaseEntity {
|
|
|
3246
3317
|
* Field Name: UpdatedAt
|
|
3247
3318
|
* Display Name: Updated At
|
|
3248
3319
|
* SQL Data Type: datetime
|
|
3320
|
+
* Default Value: getdate()
|
|
3249
3321
|
*/
|
|
3250
3322
|
get UpdatedAt() {
|
|
3251
3323
|
return this.Get('UpdatedAt');
|
|
@@ -3303,6 +3375,7 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
|
|
|
3303
3375
|
* Field Name: DefaultForNewUser
|
|
3304
3376
|
* Display Name: Default For New User
|
|
3305
3377
|
* SQL Data Type: bit
|
|
3378
|
+
* Default Value: 0
|
|
3306
3379
|
*/
|
|
3307
3380
|
get DefaultForNewUser() {
|
|
3308
3381
|
return this.Get('DefaultForNewUser');
|
|
@@ -3314,6 +3387,7 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
|
|
|
3314
3387
|
* Field Name: CreatedAt
|
|
3315
3388
|
* Display Name: Created At
|
|
3316
3389
|
* SQL Data Type: datetime
|
|
3390
|
+
* Default Value: getdate()
|
|
3317
3391
|
*/
|
|
3318
3392
|
get CreatedAt() {
|
|
3319
3393
|
return this.Get('CreatedAt');
|
|
@@ -3322,6 +3396,7 @@ let ApplicationEntityEntity = class ApplicationEntityEntity extends core_1.BaseE
|
|
|
3322
3396
|
* Field Name: UpdatedAt
|
|
3323
3397
|
* Display Name: Updated At
|
|
3324
3398
|
* SQL Data Type: datetime
|
|
3399
|
+
* Default Value: getdate()
|
|
3325
3400
|
*/
|
|
3326
3401
|
get UpdatedAt() {
|
|
3327
3402
|
return this.Get('UpdatedAt');
|
|
@@ -3415,6 +3490,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
3415
3490
|
* Field Name: CanCreate
|
|
3416
3491
|
* Display Name: Can Create
|
|
3417
3492
|
* SQL Data Type: bit
|
|
3493
|
+
* Default Value: 0
|
|
3418
3494
|
*/
|
|
3419
3495
|
get CanCreate() {
|
|
3420
3496
|
return this.Get('CanCreate');
|
|
@@ -3426,6 +3502,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
3426
3502
|
* Field Name: CanRead
|
|
3427
3503
|
* Display Name: Can Read
|
|
3428
3504
|
* SQL Data Type: bit
|
|
3505
|
+
* Default Value: 0
|
|
3429
3506
|
*/
|
|
3430
3507
|
get CanRead() {
|
|
3431
3508
|
return this.Get('CanRead');
|
|
@@ -3437,6 +3514,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
3437
3514
|
* Field Name: CanUpdate
|
|
3438
3515
|
* Display Name: Can Update
|
|
3439
3516
|
* SQL Data Type: bit
|
|
3517
|
+
* Default Value: 0
|
|
3440
3518
|
*/
|
|
3441
3519
|
get CanUpdate() {
|
|
3442
3520
|
return this.Get('CanUpdate');
|
|
@@ -3448,6 +3526,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
3448
3526
|
* Field Name: CanDelete
|
|
3449
3527
|
* Display Name: Can Delete
|
|
3450
3528
|
* SQL Data Type: bit
|
|
3529
|
+
* Default Value: 0
|
|
3451
3530
|
*/
|
|
3452
3531
|
get CanDelete() {
|
|
3453
3532
|
return this.Get('CanDelete');
|
|
@@ -3507,6 +3586,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
3507
3586
|
* Field Name: CreatedAt
|
|
3508
3587
|
* Display Name: Created At
|
|
3509
3588
|
* SQL Data Type: datetime
|
|
3589
|
+
* Default Value: getdate()
|
|
3510
3590
|
*/
|
|
3511
3591
|
get CreatedAt() {
|
|
3512
3592
|
return this.Get('CreatedAt');
|
|
@@ -3515,6 +3595,7 @@ let EntityPermissionEntity = class EntityPermissionEntity extends core_1.BaseEnt
|
|
|
3515
3595
|
* Field Name: UpdatedAt
|
|
3516
3596
|
* Display Name: Updated At
|
|
3517
3597
|
* SQL Data Type: datetime
|
|
3598
|
+
* Default Value: getdate()
|
|
3518
3599
|
*/
|
|
3519
3600
|
get UpdatedAt() {
|
|
3520
3601
|
return this.Get('UpdatedAt');
|
|
@@ -3608,6 +3689,7 @@ let UserApplicationEntityEntity = class UserApplicationEntityEntity extends core
|
|
|
3608
3689
|
/**
|
|
3609
3690
|
* Field Name: Sequence
|
|
3610
3691
|
* SQL Data Type: int
|
|
3692
|
+
* Default Value: 0
|
|
3611
3693
|
*/
|
|
3612
3694
|
get Sequence() {
|
|
3613
3695
|
return this.Get('Sequence');
|
|
@@ -3681,6 +3763,7 @@ let UserApplicationEntity = class UserApplicationEntity extends core_1.BaseEntit
|
|
|
3681
3763
|
/**
|
|
3682
3764
|
* Field Name: Sequence
|
|
3683
3765
|
* SQL Data Type: int
|
|
3766
|
+
* Default Value: 0
|
|
3684
3767
|
*/
|
|
3685
3768
|
get Sequence() {
|
|
3686
3769
|
return this.Get('Sequence');
|
|
@@ -3692,6 +3775,7 @@ let UserApplicationEntity = class UserApplicationEntity extends core_1.BaseEntit
|
|
|
3692
3775
|
* Field Name: IsActive
|
|
3693
3776
|
* Display Name: Is Active
|
|
3694
3777
|
* SQL Data Type: bit
|
|
3778
|
+
* Default Value: 1
|
|
3695
3779
|
*/
|
|
3696
3780
|
get IsActive() {
|
|
3697
3781
|
return this.Get('IsActive');
|
|
@@ -3746,6 +3830,7 @@ let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity
|
|
|
3746
3830
|
* Field Name: ExecutedAt
|
|
3747
3831
|
* Display Name: Executed At
|
|
3748
3832
|
* SQL Data Type: datetime
|
|
3833
|
+
* Default Value: getdate()
|
|
3749
3834
|
*/
|
|
3750
3835
|
get ExecutedAt() {
|
|
3751
3836
|
return this.Get('ExecutedAt');
|
|
@@ -3757,6 +3842,7 @@ let CompanyIntegrationRunAPILogEntity = class CompanyIntegrationRunAPILogEntity
|
|
|
3757
3842
|
* Field Name: IsSuccess
|
|
3758
3843
|
* Display Name: Is Success
|
|
3759
3844
|
* SQL Data Type: bit
|
|
3845
|
+
* Default Value: 0
|
|
3760
3846
|
*/
|
|
3761
3847
|
get IsSuccess() {
|
|
3762
3848
|
return this.Get('IsSuccess');
|
|
@@ -3881,6 +3967,7 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
|
|
|
3881
3967
|
* Field Name: CreatedAt
|
|
3882
3968
|
* Display Name: Created At
|
|
3883
3969
|
* SQL Data Type: datetime
|
|
3970
|
+
* Default Value: getdate()
|
|
3884
3971
|
*/
|
|
3885
3972
|
get CreatedAt() {
|
|
3886
3973
|
return this.Get('CreatedAt');
|
|
@@ -3889,6 +3976,7 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
|
|
|
3889
3976
|
* Field Name: UpdatedAt
|
|
3890
3977
|
* Display Name: Updated At
|
|
3891
3978
|
* SQL Data Type: datetime
|
|
3979
|
+
* Default Value: getdate()
|
|
3892
3980
|
*/
|
|
3893
3981
|
get UpdatedAt() {
|
|
3894
3982
|
return this.Get('UpdatedAt');
|
|
@@ -3950,6 +4038,7 @@ let ListDetailEntity = class ListDetailEntity extends core_1.BaseEntity {
|
|
|
3950
4038
|
/**
|
|
3951
4039
|
* Field Name: Sequence
|
|
3952
4040
|
* SQL Data Type: int
|
|
4041
|
+
* Default Value: 0
|
|
3953
4042
|
*/
|
|
3954
4043
|
get Sequence() {
|
|
3955
4044
|
return this.Get('Sequence');
|
|
@@ -4140,6 +4229,7 @@ let WorkflowRunEntity = class WorkflowRunEntity extends core_1.BaseEntity {
|
|
|
4140
4229
|
/**
|
|
4141
4230
|
* Field Name: Status
|
|
4142
4231
|
* SQL Data Type: nchar(10)
|
|
4232
|
+
* Default Value: N'Pending'
|
|
4143
4233
|
*/
|
|
4144
4234
|
get Status() {
|
|
4145
4235
|
return this.Get('Status');
|
|
@@ -4247,6 +4337,7 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
|
4247
4337
|
* Field Name: CreatedAt
|
|
4248
4338
|
* Display Name: Created At
|
|
4249
4339
|
* SQL Data Type: datetime
|
|
4340
|
+
* Default Value: getdate()
|
|
4250
4341
|
*/
|
|
4251
4342
|
get CreatedAt() {
|
|
4252
4343
|
return this.Get('CreatedAt');
|
|
@@ -4255,6 +4346,7 @@ let WorkflowEntity = class WorkflowEntity extends core_1.BaseEntity {
|
|
|
4255
4346
|
* Field Name: UpdatedAt
|
|
4256
4347
|
* Display Name: Updated At
|
|
4257
4348
|
* SQL Data Type: datetime
|
|
4349
|
+
* Default Value: getdate()
|
|
4258
4350
|
*/
|
|
4259
4351
|
get UpdatedAt() {
|
|
4260
4352
|
return this.Get('UpdatedAt');
|
|
@@ -4320,6 +4412,7 @@ let WorkflowEngineEntity = class WorkflowEngineEntity extends core_1.BaseEntity
|
|
|
4320
4412
|
* Field Name: CreatedAt
|
|
4321
4413
|
* Display Name: Created At
|
|
4322
4414
|
* SQL Data Type: datetime
|
|
4415
|
+
* Default Value: getdate()
|
|
4323
4416
|
*/
|
|
4324
4417
|
get CreatedAt() {
|
|
4325
4418
|
return this.Get('CreatedAt');
|
|
@@ -4328,6 +4421,7 @@ let WorkflowEngineEntity = class WorkflowEngineEntity extends core_1.BaseEntity
|
|
|
4328
4421
|
* Field Name: UpdatedAt
|
|
4329
4422
|
* Display Name: Updated At
|
|
4330
4423
|
* SQL Data Type: datetime
|
|
4424
|
+
* Default Value: getdate()
|
|
4331
4425
|
*/
|
|
4332
4426
|
get UpdatedAt() {
|
|
4333
4427
|
return this.Get('UpdatedAt');
|
|
@@ -4387,6 +4481,7 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
4387
4481
|
* Field Name: ChangedAt
|
|
4388
4482
|
* Display Name: Changed At
|
|
4389
4483
|
* SQL Data Type: datetime
|
|
4484
|
+
* Default Value: getdate()
|
|
4390
4485
|
*/
|
|
4391
4486
|
get ChangedAt() {
|
|
4392
4487
|
return this.Get('ChangedAt');
|
|
@@ -4430,6 +4525,7 @@ let RecordChangeEntity = class RecordChangeEntity extends core_1.BaseEntity {
|
|
|
4430
4525
|
/**
|
|
4431
4526
|
* Field Name: Status
|
|
4432
4527
|
* SQL Data Type: nchar(15)
|
|
4528
|
+
* Default Value: N'Complete'
|
|
4433
4529
|
*/
|
|
4434
4530
|
get Status() {
|
|
4435
4531
|
return this.Get('Status');
|
|
@@ -4506,6 +4602,7 @@ let UserRoleEntity = class UserRoleEntity extends core_1.BaseEntity {
|
|
|
4506
4602
|
* Field Name: CreatedAt
|
|
4507
4603
|
* Display Name: Created At
|
|
4508
4604
|
* SQL Data Type: datetime
|
|
4605
|
+
* Default Value: getdate()
|
|
4509
4606
|
*/
|
|
4510
4607
|
get CreatedAt() {
|
|
4511
4608
|
return this.Get('CreatedAt');
|
|
@@ -4514,6 +4611,7 @@ let UserRoleEntity = class UserRoleEntity extends core_1.BaseEntity {
|
|
|
4514
4611
|
* Field Name: UpdatedAt
|
|
4515
4612
|
* Display Name: Updated At
|
|
4516
4613
|
* SQL Data Type: datetime
|
|
4614
|
+
* Default Value: getdate()
|
|
4517
4615
|
*/
|
|
4518
4616
|
get UpdatedAt() {
|
|
4519
4617
|
return this.Get('UpdatedAt');
|
|
@@ -4578,6 +4676,7 @@ let RowLevelSecurityFilterEntity = class RowLevelSecurityFilterEntity extends co
|
|
|
4578
4676
|
* Field Name: CreatedAt
|
|
4579
4677
|
* Display Name: Created At
|
|
4580
4678
|
* SQL Data Type: datetime
|
|
4679
|
+
* Default Value: getdate()
|
|
4581
4680
|
*/
|
|
4582
4681
|
get CreatedAt() {
|
|
4583
4682
|
return this.Get('CreatedAt');
|
|
@@ -4586,6 +4685,7 @@ let RowLevelSecurityFilterEntity = class RowLevelSecurityFilterEntity extends co
|
|
|
4586
4685
|
* Field Name: UpdatedAt
|
|
4587
4686
|
* Display Name: Updated At
|
|
4588
4687
|
* SQL Data Type: datetime
|
|
4688
|
+
* Default Value: getdate()
|
|
4589
4689
|
*/
|
|
4590
4690
|
get UpdatedAt() {
|
|
4591
4691
|
return this.Get('UpdatedAt');
|
|
@@ -4645,6 +4745,7 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
|
4645
4745
|
* Field Name: Status
|
|
4646
4746
|
* Display Name: Status
|
|
4647
4747
|
* SQL Data Type: nvarchar(50)
|
|
4748
|
+
* Default Value: N'Allow'
|
|
4648
4749
|
*/
|
|
4649
4750
|
get Status() {
|
|
4650
4751
|
return this.Get('Status');
|
|
@@ -4701,6 +4802,7 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
|
4701
4802
|
* Field Name: CreatedAt
|
|
4702
4803
|
* Display Name: Created At
|
|
4703
4804
|
* SQL Data Type: datetime
|
|
4805
|
+
* Default Value: getdate()
|
|
4704
4806
|
*/
|
|
4705
4807
|
get CreatedAt() {
|
|
4706
4808
|
return this.Get('CreatedAt');
|
|
@@ -4709,6 +4811,7 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
|
|
|
4709
4811
|
* Field Name: UpdatedAt
|
|
4710
4812
|
* Display Name: Updated At
|
|
4711
4813
|
* SQL Data Type: datetime
|
|
4814
|
+
* Default Value: getdate()
|
|
4712
4815
|
*/
|
|
4713
4816
|
get UpdatedAt() {
|
|
4714
4817
|
return this.Get('UpdatedAt');
|
|
@@ -4771,6 +4874,7 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
|
|
|
4771
4874
|
* Field Name: IsActive
|
|
4772
4875
|
* Display Name: Is Active
|
|
4773
4876
|
* SQL Data Type: bit
|
|
4877
|
+
* Default Value: 1
|
|
4774
4878
|
*/
|
|
4775
4879
|
get IsActive() {
|
|
4776
4880
|
return this.Get('IsActive');
|
|
@@ -4782,6 +4886,7 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
|
|
|
4782
4886
|
* Field Name: UseAuditLog
|
|
4783
4887
|
* Display Name: Use Audit Log
|
|
4784
4888
|
* SQL Data Type: bit
|
|
4889
|
+
* Default Value: 1
|
|
4785
4890
|
*/
|
|
4786
4891
|
get UseAuditLog() {
|
|
4787
4892
|
return this.Get('UseAuditLog');
|
|
@@ -4804,6 +4909,7 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
|
|
|
4804
4909
|
* Field Name: CreatedAt
|
|
4805
4910
|
* Display Name: Created At
|
|
4806
4911
|
* SQL Data Type: datetime
|
|
4912
|
+
* Default Value: getdate()
|
|
4807
4913
|
*/
|
|
4808
4914
|
get CreatedAt() {
|
|
4809
4915
|
return this.Get('CreatedAt');
|
|
@@ -4812,6 +4918,7 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
|
|
|
4812
4918
|
* Field Name: UpdatedAt
|
|
4813
4919
|
* Display Name: Updated At
|
|
4814
4920
|
* SQL Data Type: datetime
|
|
4921
|
+
* Default Value: getdate()
|
|
4815
4922
|
*/
|
|
4816
4923
|
get UpdatedAt() {
|
|
4817
4924
|
return this.Get('UpdatedAt');
|
|
@@ -4859,6 +4966,7 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
|
|
|
4859
4966
|
* Field Name: Type
|
|
4860
4967
|
* Display Name: Type
|
|
4861
4968
|
* SQL Data Type: nchar(10)
|
|
4969
|
+
* Default Value: N'grant'
|
|
4862
4970
|
* Value List Type: List
|
|
4863
4971
|
* Possible Values
|
|
4864
4972
|
* Allow - User allowed to execute tasks linked to this authorization
|
|
@@ -4884,6 +4992,7 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
|
|
|
4884
4992
|
* Field Name: CreatedAt
|
|
4885
4993
|
* Display Name: Created At
|
|
4886
4994
|
* SQL Data Type: datetime
|
|
4995
|
+
* Default Value: getdate()
|
|
4887
4996
|
*/
|
|
4888
4997
|
get CreatedAt() {
|
|
4889
4998
|
return this.Get('CreatedAt');
|
|
@@ -4892,6 +5001,7 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
|
|
|
4892
5001
|
* Field Name: UpdatedAt
|
|
4893
5002
|
* Display Name: Updated At
|
|
4894
5003
|
* SQL Data Type: datetime
|
|
5004
|
+
* Default Value: getdate()
|
|
4895
5005
|
*/
|
|
4896
5006
|
get UpdatedAt() {
|
|
4897
5007
|
return this.Get('UpdatedAt');
|
|
@@ -4961,6 +5071,7 @@ let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
|
|
|
4961
5071
|
* Field Name: CreatedAt
|
|
4962
5072
|
* Display Name: Created At
|
|
4963
5073
|
* SQL Data Type: datetime
|
|
5074
|
+
* Default Value: getdate()
|
|
4964
5075
|
*/
|
|
4965
5076
|
get CreatedAt() {
|
|
4966
5077
|
return this.Get('CreatedAt');
|
|
@@ -4969,6 +5080,7 @@ let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
|
|
|
4969
5080
|
* Field Name: UpdatedAt
|
|
4970
5081
|
* Display Name: Updated At
|
|
4971
5082
|
* SQL Data Type: datetime
|
|
5083
|
+
* Default Value: getdate()
|
|
4972
5084
|
*/
|
|
4973
5085
|
get UpdatedAt() {
|
|
4974
5086
|
return this.Get('UpdatedAt');
|
|
@@ -5068,6 +5180,7 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
|
|
|
5068
5180
|
* Field Name: CreatedAt
|
|
5069
5181
|
* Display Name: Created At
|
|
5070
5182
|
* SQL Data Type: datetime
|
|
5183
|
+
* Default Value: getdate()
|
|
5071
5184
|
*/
|
|
5072
5185
|
get CreatedAt() {
|
|
5073
5186
|
return this.Get('CreatedAt');
|
|
@@ -5076,6 +5189,7 @@ let EntityFieldValueEntity = class EntityFieldValueEntity extends core_1.BaseEnt
|
|
|
5076
5189
|
* Field Name: UpdatedAt
|
|
5077
5190
|
* Display Name: Updated At
|
|
5078
5191
|
* SQL Data Type: datetime
|
|
5192
|
+
* Default Value: getdate()
|
|
5079
5193
|
*/
|
|
5080
5194
|
get UpdatedAt() {
|
|
5081
5195
|
return this.Get('UpdatedAt');
|
|
@@ -5174,6 +5288,7 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
|
|
|
5174
5288
|
* Field Name: IsActive
|
|
5175
5289
|
* Display Name: Is Active
|
|
5176
5290
|
* SQL Data Type: bit
|
|
5291
|
+
* Default Value: 1
|
|
5177
5292
|
*/
|
|
5178
5293
|
get IsActive() {
|
|
5179
5294
|
return this.Get('IsActive');
|
|
@@ -5185,6 +5300,7 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
|
|
|
5185
5300
|
* Field Name: CreatedAt
|
|
5186
5301
|
* Display Name: Created At
|
|
5187
5302
|
* SQL Data Type: datetime
|
|
5303
|
+
* Default Value: getdate()
|
|
5188
5304
|
*/
|
|
5189
5305
|
get CreatedAt() {
|
|
5190
5306
|
return this.Get('CreatedAt');
|
|
@@ -5193,6 +5309,7 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
|
|
|
5193
5309
|
* Field Name: UpdatedAt
|
|
5194
5310
|
* Display Name: Updated At
|
|
5195
5311
|
* SQL Data Type: datetime
|
|
5312
|
+
* Default Value: getdate()
|
|
5196
5313
|
*/
|
|
5197
5314
|
get UpdatedAt() {
|
|
5198
5315
|
return this.Get('UpdatedAt');
|
|
@@ -5261,6 +5378,7 @@ let AIActionEntity = class AIActionEntity extends core_1.BaseEntity {
|
|
|
5261
5378
|
* Field Name: IsActive
|
|
5262
5379
|
* Display Name: Is Active
|
|
5263
5380
|
* SQL Data Type: bit
|
|
5381
|
+
* Default Value: 1
|
|
5264
5382
|
*/
|
|
5265
5383
|
get IsActive() {
|
|
5266
5384
|
return this.Get('IsActive');
|
|
@@ -5272,6 +5390,7 @@ let AIActionEntity = class AIActionEntity extends core_1.BaseEntity {
|
|
|
5272
5390
|
* Field Name: CreatedAt
|
|
5273
5391
|
* Display Name: Created At
|
|
5274
5392
|
* SQL Data Type: datetime
|
|
5393
|
+
* Default Value: getdate()
|
|
5275
5394
|
*/
|
|
5276
5395
|
get CreatedAt() {
|
|
5277
5396
|
return this.Get('CreatedAt');
|
|
@@ -5280,6 +5399,7 @@ let AIActionEntity = class AIActionEntity extends core_1.BaseEntity {
|
|
|
5280
5399
|
* Field Name: UpdatedAt
|
|
5281
5400
|
* Display Name: Updated At
|
|
5282
5401
|
* SQL Data Type: datetime
|
|
5402
|
+
* Default Value: getdate()
|
|
5283
5403
|
*/
|
|
5284
5404
|
get UpdatedAt() {
|
|
5285
5405
|
return this.Get('UpdatedAt');
|
|
@@ -5335,6 +5455,7 @@ let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
|
|
|
5335
5455
|
* Field Name: IsActive
|
|
5336
5456
|
* Display Name: Is Active
|
|
5337
5457
|
* SQL Data Type: bit
|
|
5458
|
+
* Default Value: 1
|
|
5338
5459
|
*/
|
|
5339
5460
|
get IsActive() {
|
|
5340
5461
|
return this.Get('IsActive');
|
|
@@ -5346,6 +5467,7 @@ let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
|
|
|
5346
5467
|
* Field Name: CreatedAt
|
|
5347
5468
|
* Display Name: Created At
|
|
5348
5469
|
* SQL Data Type: datetime
|
|
5470
|
+
* Default Value: getdate()
|
|
5349
5471
|
*/
|
|
5350
5472
|
get CreatedAt() {
|
|
5351
5473
|
return this.Get('CreatedAt');
|
|
@@ -5354,6 +5476,7 @@ let AIModelActionEntity = class AIModelActionEntity extends core_1.BaseEntity {
|
|
|
5354
5476
|
* Field Name: UpdatedAt
|
|
5355
5477
|
* Display Name: Updated At
|
|
5356
5478
|
* SQL Data Type: datetime
|
|
5479
|
+
* Default Value: getdate()
|
|
5357
5480
|
*/
|
|
5358
5481
|
get UpdatedAt() {
|
|
5359
5482
|
return this.Get('UpdatedAt');
|
|
@@ -5451,6 +5574,7 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
|
|
|
5451
5574
|
* Field Name: TriggerEvent
|
|
5452
5575
|
* Display Name: Trigger Event
|
|
5453
5576
|
* SQL Data Type: nchar(15)
|
|
5577
|
+
* Default Value: N'After Save'
|
|
5454
5578
|
*/
|
|
5455
5579
|
get TriggerEvent() {
|
|
5456
5580
|
return this.Get('TriggerEvent');
|
|
@@ -5473,6 +5597,7 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
|
|
|
5473
5597
|
* Field Name: OutputType
|
|
5474
5598
|
* Display Name: Output Type
|
|
5475
5599
|
* SQL Data Type: nchar(10)
|
|
5600
|
+
* Default Value: N'FIeld'
|
|
5476
5601
|
*/
|
|
5477
5602
|
get OutputType() {
|
|
5478
5603
|
return this.Get('OutputType');
|
|
@@ -5495,6 +5620,7 @@ let EntityAIActionEntity = class EntityAIActionEntity extends core_1.BaseEntity
|
|
|
5495
5620
|
* Field Name: SkipIfOutputFieldNotEmpty
|
|
5496
5621
|
* Display Name: Skip If Output Field Not Empty
|
|
5497
5622
|
* SQL Data Type: bit
|
|
5623
|
+
* Default Value: 1
|
|
5498
5624
|
*/
|
|
5499
5625
|
get SkipIfOutputFieldNotEmpty() {
|
|
5500
5626
|
return this.Get('SkipIfOutputFieldNotEmpty');
|
|
@@ -5657,6 +5783,7 @@ let QueueTypeEntity = class QueueTypeEntity extends core_1.BaseEntity {
|
|
|
5657
5783
|
* Field Name: IsActive
|
|
5658
5784
|
* Display Name: Is Active
|
|
5659
5785
|
* SQL Data Type: bit
|
|
5786
|
+
* Default Value: 1
|
|
5660
5787
|
*/
|
|
5661
5788
|
get IsActive() {
|
|
5662
5789
|
return this.Get('IsActive');
|
|
@@ -5717,6 +5844,7 @@ let QueueEntity = class QueueEntity extends core_1.BaseEntity {
|
|
|
5717
5844
|
* Field Name: IsActive
|
|
5718
5845
|
* Display Name: Is Active
|
|
5719
5846
|
* SQL Data Type: bit
|
|
5847
|
+
* Default Value: 0
|
|
5720
5848
|
*/
|
|
5721
5849
|
get IsActive() {
|
|
5722
5850
|
return this.Get('IsActive');
|
|
@@ -5849,6 +5977,7 @@ let QueueEntity = class QueueEntity extends core_1.BaseEntity {
|
|
|
5849
5977
|
* Field Name: LastHeartbeat
|
|
5850
5978
|
* Display Name: Last Heartbeat
|
|
5851
5979
|
* SQL Data Type: datetime
|
|
5980
|
+
* Default Value: getdate()
|
|
5852
5981
|
*/
|
|
5853
5982
|
get LastHeartbeat() {
|
|
5854
5983
|
return this.Get('LastHeartbeat');
|
|
@@ -5860,6 +5989,7 @@ let QueueEntity = class QueueEntity extends core_1.BaseEntity {
|
|
|
5860
5989
|
* Field Name: CreatedAt
|
|
5861
5990
|
* Display Name: Created At
|
|
5862
5991
|
* SQL Data Type: datetime
|
|
5992
|
+
* Default Value: getdate()
|
|
5863
5993
|
*/
|
|
5864
5994
|
get CreatedAt() {
|
|
5865
5995
|
return this.Get('CreatedAt');
|
|
@@ -5868,6 +5998,7 @@ let QueueEntity = class QueueEntity extends core_1.BaseEntity {
|
|
|
5868
5998
|
* Field Name: UpdatedAt
|
|
5869
5999
|
* Display Name: Updated At
|
|
5870
6000
|
* SQL Data Type: datetime
|
|
6001
|
+
* Default Value: getdate()
|
|
5871
6002
|
*/
|
|
5872
6003
|
get UpdatedAt() {
|
|
5873
6004
|
return this.Get('UpdatedAt');
|
|
@@ -5911,6 +6042,7 @@ let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
|
|
|
5911
6042
|
* Field Name: Status
|
|
5912
6043
|
* Display Name: Status
|
|
5913
6044
|
* SQL Data Type: nchar(10)
|
|
6045
|
+
* Default Value: N'Pending'
|
|
5914
6046
|
*/
|
|
5915
6047
|
get Status() {
|
|
5916
6048
|
return this.Get('Status');
|
|
@@ -6238,6 +6370,7 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
6238
6370
|
* Field Name: SharingScope
|
|
6239
6371
|
* Display Name: Sharing Scope
|
|
6240
6372
|
* SQL Data Type: nvarchar(20)
|
|
6373
|
+
* Default Value: N'Personal'
|
|
6241
6374
|
*/
|
|
6242
6375
|
get SharingScope() {
|
|
6243
6376
|
return this.Get('SharingScope');
|
|
@@ -6377,6 +6510,7 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
6377
6510
|
* Field Name: CreatedAt
|
|
6378
6511
|
* Display Name: Created At
|
|
6379
6512
|
* SQL Data Type: datetime
|
|
6513
|
+
* Default Value: getdate()
|
|
6380
6514
|
*/
|
|
6381
6515
|
get CreatedAt() {
|
|
6382
6516
|
return this.Get('CreatedAt');
|
|
@@ -6385,6 +6519,7 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
|
|
|
6385
6519
|
* Field Name: UpdatedAt
|
|
6386
6520
|
* Display Name: Updated At
|
|
6387
6521
|
* SQL Data Type: datetime
|
|
6522
|
+
* Default Value: getdate()
|
|
6388
6523
|
*/
|
|
6389
6524
|
get UpdatedAt() {
|
|
6390
6525
|
return this.Get('UpdatedAt');
|
|
@@ -6479,6 +6614,7 @@ let ReportSnapshotEntity = class ReportSnapshotEntity extends core_1.BaseEntity
|
|
|
6479
6614
|
* Field Name: CreatedAt
|
|
6480
6615
|
* Display Name: Created At
|
|
6481
6616
|
* SQL Data Type: datetime
|
|
6617
|
+
* Default Value: getdate()
|
|
6482
6618
|
*/
|
|
6483
6619
|
get CreatedAt() {
|
|
6484
6620
|
return this.Get('CreatedAt');
|
|
@@ -6586,6 +6722,7 @@ let ResourceTypeEntity = class ResourceTypeEntity extends core_1.BaseEntity {
|
|
|
6586
6722
|
* Field Name: CreatedAt
|
|
6587
6723
|
* Display Name: Created At
|
|
6588
6724
|
* SQL Data Type: datetime
|
|
6725
|
+
* Default Value: getdate()
|
|
6589
6726
|
*/
|
|
6590
6727
|
get CreatedAt() {
|
|
6591
6728
|
return this.Get('CreatedAt');
|
|
@@ -6594,6 +6731,7 @@ let ResourceTypeEntity = class ResourceTypeEntity extends core_1.BaseEntity {
|
|
|
6594
6731
|
* Field Name: UpdatedAt
|
|
6595
6732
|
* Display Name: Updated At
|
|
6596
6733
|
* SQL Data Type: datetime
|
|
6734
|
+
* Default Value: getdate()
|
|
6597
6735
|
*/
|
|
6598
6736
|
get UpdatedAt() {
|
|
6599
6737
|
return this.Get('UpdatedAt');
|
|
@@ -6948,6 +7086,7 @@ let DatasetEntity = class DatasetEntity extends core_1.BaseEntity {
|
|
|
6948
7086
|
* Field Name: CreatedAt
|
|
6949
7087
|
* Display Name: Created At
|
|
6950
7088
|
* SQL Data Type: datetime
|
|
7089
|
+
* Default Value: getdate()
|
|
6951
7090
|
*/
|
|
6952
7091
|
get CreatedAt() {
|
|
6953
7092
|
return this.Get('CreatedAt');
|
|
@@ -6956,6 +7095,7 @@ let DatasetEntity = class DatasetEntity extends core_1.BaseEntity {
|
|
|
6956
7095
|
* Field Name: UpdatedAt
|
|
6957
7096
|
* Display Name: Updated At
|
|
6958
7097
|
* SQL Data Type: datetime
|
|
7098
|
+
* Default Value: getdate()
|
|
6959
7099
|
*/
|
|
6960
7100
|
get UpdatedAt() {
|
|
6961
7101
|
return this.Get('UpdatedAt');
|
|
@@ -7002,6 +7142,7 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
|
|
|
7002
7142
|
* Field Name: Sequence
|
|
7003
7143
|
* Display Name: Sequence
|
|
7004
7144
|
* SQL Data Type: int
|
|
7145
|
+
* Default Value: 0
|
|
7005
7146
|
*/
|
|
7006
7147
|
get Sequence() {
|
|
7007
7148
|
return this.Get('Sequence');
|
|
@@ -7058,6 +7199,7 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
|
|
|
7058
7199
|
* Field Name: CreatedAt
|
|
7059
7200
|
* Display Name: Created At
|
|
7060
7201
|
* SQL Data Type: datetime
|
|
7202
|
+
* Default Value: getdate()
|
|
7061
7203
|
*/
|
|
7062
7204
|
get CreatedAt() {
|
|
7063
7205
|
return this.Get('CreatedAt');
|
|
@@ -7066,6 +7208,7 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
|
|
|
7066
7208
|
* Field Name: UpdatedAt
|
|
7067
7209
|
* Display Name: Updated At
|
|
7068
7210
|
* SQL Data Type: datetime
|
|
7211
|
+
* Default Value: getdate()
|
|
7069
7212
|
*/
|
|
7070
7213
|
get UpdatedAt() {
|
|
7071
7214
|
return this.Get('UpdatedAt');
|
|
@@ -7120,6 +7263,7 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
|
|
|
7120
7263
|
* Field Name: Role
|
|
7121
7264
|
* Display Name: Role
|
|
7122
7265
|
* SQL Data Type: nvarchar(20)
|
|
7266
|
+
* Default Value: user_name()
|
|
7123
7267
|
*/
|
|
7124
7268
|
get Role() {
|
|
7125
7269
|
return this.Get('Role');
|
|
@@ -7153,6 +7297,7 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
|
|
|
7153
7297
|
* Field Name: CreatedAt
|
|
7154
7298
|
* Display Name: Created At
|
|
7155
7299
|
* SQL Data Type: datetime
|
|
7300
|
+
* Default Value: getdate()
|
|
7156
7301
|
*/
|
|
7157
7302
|
get CreatedAt() {
|
|
7158
7303
|
return this.Get('CreatedAt');
|
|
@@ -7161,6 +7306,7 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
|
|
|
7161
7306
|
* Field Name: UpdatedAt
|
|
7162
7307
|
* Display Name: Updated At
|
|
7163
7308
|
* SQL Data Type: datetime
|
|
7309
|
+
* Default Value: getdate()
|
|
7164
7310
|
*/
|
|
7165
7311
|
get UpdatedAt() {
|
|
7166
7312
|
return this.Get('UpdatedAt');
|
|
@@ -7226,6 +7372,7 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
|
|
|
7226
7372
|
* Field Name: CreatedAt
|
|
7227
7373
|
* Display Name: Created At
|
|
7228
7374
|
* SQL Data Type: datetime
|
|
7375
|
+
* Default Value: getdate()
|
|
7229
7376
|
*/
|
|
7230
7377
|
get CreatedAt() {
|
|
7231
7378
|
return this.Get('CreatedAt');
|
|
@@ -7234,6 +7381,7 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
|
|
|
7234
7381
|
* Field Name: UpdatedAt
|
|
7235
7382
|
* Display Name: Updated At
|
|
7236
7383
|
* SQL Data Type: datetime
|
|
7384
|
+
* Default Value: getdate()
|
|
7237
7385
|
*/
|
|
7238
7386
|
get UpdatedAt() {
|
|
7239
7387
|
return this.Get('UpdatedAt');
|
|
@@ -7332,6 +7480,7 @@ let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEnt
|
|
|
7332
7480
|
* Field Name: Unread
|
|
7333
7481
|
* Display Name: Unread
|
|
7334
7482
|
* SQL Data Type: bit
|
|
7483
|
+
* Default Value: 1
|
|
7335
7484
|
*/
|
|
7336
7485
|
get Unread() {
|
|
7337
7486
|
return this.Get('Unread');
|
|
@@ -7354,6 +7503,7 @@ let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEnt
|
|
|
7354
7503
|
* Field Name: CreatedAt
|
|
7355
7504
|
* Display Name: Created At
|
|
7356
7505
|
* SQL Data Type: datetime
|
|
7506
|
+
* Default Value: getdate()
|
|
7357
7507
|
*/
|
|
7358
7508
|
get CreatedAt() {
|
|
7359
7509
|
return this.Get('CreatedAt');
|
|
@@ -7362,6 +7512,7 @@ let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEnt
|
|
|
7362
7512
|
* Field Name: UpdatedAt
|
|
7363
7513
|
* Display Name: Updated At
|
|
7364
7514
|
* SQL Data Type: datetime
|
|
7515
|
+
* Default Value: getdate()
|
|
7365
7516
|
*/
|
|
7366
7517
|
get UpdatedAt() {
|
|
7367
7518
|
return this.Get('UpdatedAt');
|
|
@@ -7451,6 +7602,7 @@ let ResourceFolderEntity = class ResourceFolderEntity extends core_1.BaseEntity
|
|
|
7451
7602
|
* Field Name: CreatedAt
|
|
7452
7603
|
* Display Name: Created At
|
|
7453
7604
|
* SQL Data Type: datetime
|
|
7605
|
+
* Default Value: getdate()
|
|
7454
7606
|
*/
|
|
7455
7607
|
get CreatedAt() {
|
|
7456
7608
|
return this.Get('CreatedAt');
|
|
@@ -7459,6 +7611,7 @@ let ResourceFolderEntity = class ResourceFolderEntity extends core_1.BaseEntity
|
|
|
7459
7611
|
* Field Name: UpdatedAt
|
|
7460
7612
|
* Display Name: Updated At
|
|
7461
7613
|
* SQL Data Type: datetime
|
|
7614
|
+
* Default Value: getdate()
|
|
7462
7615
|
*/
|
|
7463
7616
|
get UpdatedAt() {
|
|
7464
7617
|
return this.Get('UpdatedAt');
|
|
@@ -7542,6 +7695,7 @@ let SchemaInfoEntity = class SchemaInfoEntity extends core_1.BaseEntity {
|
|
|
7542
7695
|
* Field Name: CreatedAt
|
|
7543
7696
|
* Display Name: Created At
|
|
7544
7697
|
* SQL Data Type: datetime
|
|
7698
|
+
* Default Value: getdate()
|
|
7545
7699
|
*/
|
|
7546
7700
|
get CreatedAt() {
|
|
7547
7701
|
return this.Get('CreatedAt');
|
|
@@ -7550,6 +7704,7 @@ let SchemaInfoEntity = class SchemaInfoEntity extends core_1.BaseEntity {
|
|
|
7550
7704
|
* Field Name: UpdatedAt
|
|
7551
7705
|
* Display Name: Updated At
|
|
7552
7706
|
* SQL Data Type: datetime
|
|
7707
|
+
* Default Value: getdate()
|
|
7553
7708
|
*/
|
|
7554
7709
|
get UpdatedAt() {
|
|
7555
7710
|
return this.Get('UpdatedAt');
|
|
@@ -7619,6 +7774,7 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
|
|
|
7619
7774
|
* Field Name: CreatedAt
|
|
7620
7775
|
* Display Name: Created At
|
|
7621
7776
|
* SQL Data Type: datetime
|
|
7777
|
+
* Default Value: getdate()
|
|
7622
7778
|
*/
|
|
7623
7779
|
get CreatedAt() {
|
|
7624
7780
|
return this.Get('CreatedAt');
|
|
@@ -7627,6 +7783,7 @@ let CompanyIntegrationRecordMapEntity = class CompanyIntegrationRecordMapEntity
|
|
|
7627
7783
|
* Field Name: UpdatedAt
|
|
7628
7784
|
* Display Name: Updated At
|
|
7629
7785
|
* SQL Data Type: datetime
|
|
7786
|
+
* Default Value: getdate()
|
|
7630
7787
|
*/
|
|
7631
7788
|
get UpdatedAt() {
|
|
7632
7789
|
return this.Get('UpdatedAt');
|
|
@@ -7693,6 +7850,7 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
7693
7850
|
* Field Name: ApprovalStatus
|
|
7694
7851
|
* Display Name: Approval Status
|
|
7695
7852
|
* SQL Data Type: nvarchar(10)
|
|
7853
|
+
* Default Value: N'Pending'
|
|
7696
7854
|
*/
|
|
7697
7855
|
get ApprovalStatus() {
|
|
7698
7856
|
return this.Get('ApprovalStatus');
|
|
@@ -7715,6 +7873,7 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
7715
7873
|
* Field Name: ProcessingStatus
|
|
7716
7874
|
* Display Name: Processing Status
|
|
7717
7875
|
* SQL Data Type: nvarchar(10)
|
|
7876
|
+
* Default Value: N'Pending'
|
|
7718
7877
|
*/
|
|
7719
7878
|
get ProcessingStatus() {
|
|
7720
7879
|
return this.Get('ProcessingStatus');
|
|
@@ -7726,6 +7885,7 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
7726
7885
|
* Field Name: ProcessingStartedAt
|
|
7727
7886
|
* Display Name: Processing Started At
|
|
7728
7887
|
* SQL Data Type: datetime
|
|
7888
|
+
* Default Value: getdate()
|
|
7729
7889
|
*/
|
|
7730
7890
|
get ProcessingStartedAt() {
|
|
7731
7891
|
return this.Get('ProcessingStartedAt');
|
|
@@ -7770,6 +7930,7 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
7770
7930
|
* Field Name: CreatedAt
|
|
7771
7931
|
* Display Name: Created At
|
|
7772
7932
|
* SQL Data Type: datetime
|
|
7933
|
+
* Default Value: getdate()
|
|
7773
7934
|
*/
|
|
7774
7935
|
get CreatedAt() {
|
|
7775
7936
|
return this.Get('CreatedAt');
|
|
@@ -7778,6 +7939,7 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
|
|
|
7778
7939
|
* Field Name: UpdatedAt
|
|
7779
7940
|
* Display Name: Updated At
|
|
7780
7941
|
* SQL Data Type: datetime
|
|
7942
|
+
* Default Value: getdate()
|
|
7781
7943
|
*/
|
|
7782
7944
|
get UpdatedAt() {
|
|
7783
7945
|
return this.Get('UpdatedAt');
|
|
@@ -7840,6 +8002,7 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
|
|
|
7840
8002
|
* Field Name: Status
|
|
7841
8003
|
* Display Name: Status
|
|
7842
8004
|
* SQL Data Type: nvarchar(10)
|
|
8005
|
+
* Default Value: N'Pending'
|
|
7843
8006
|
*/
|
|
7844
8007
|
get Status() {
|
|
7845
8008
|
return this.Get('Status');
|
|
@@ -7862,6 +8025,7 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
|
|
|
7862
8025
|
* Field Name: CreatedAt
|
|
7863
8026
|
* Display Name: Created At
|
|
7864
8027
|
* SQL Data Type: datetime
|
|
8028
|
+
* Default Value: getdate()
|
|
7865
8029
|
*/
|
|
7866
8030
|
get CreatedAt() {
|
|
7867
8031
|
return this.Get('CreatedAt');
|
|
@@ -7870,6 +8034,7 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends co
|
|
|
7870
8034
|
* Field Name: UpdatedAt
|
|
7871
8035
|
* Display Name: Updated At
|
|
7872
8036
|
* SQL Data Type: datetime
|
|
8037
|
+
* Default Value: getdate()
|
|
7873
8038
|
*/
|
|
7874
8039
|
get UpdatedAt() {
|
|
7875
8040
|
return this.Get('UpdatedAt');
|