@memberjunction/core-entities 1.5.1 → 1.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom/UserViewEntity.js +2 -2
- package/dist/custom/UserViewEntity.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +1445 -105
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +1854 -144
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +4 -4
|
@@ -57,12 +57,14 @@ export declare class CompanyEntity extends BaseEntity {
|
|
|
57
57
|
* * Field Name: CreatedAt
|
|
58
58
|
* * Display Name: Created At
|
|
59
59
|
* * SQL Data Type: datetime
|
|
60
|
+
* * Default Value: getdate()
|
|
60
61
|
*/
|
|
61
62
|
get CreatedAt(): Date;
|
|
62
63
|
/**
|
|
63
64
|
* * Field Name: UpdatedAt
|
|
64
65
|
* * Display Name: Updated At
|
|
65
66
|
* * SQL Data Type: datetime
|
|
67
|
+
* * Default Value: getdate()
|
|
66
68
|
*/
|
|
67
69
|
get UpdatedAt(): Date;
|
|
68
70
|
/**
|
|
@@ -106,6 +108,7 @@ export declare class EmployeeEntity extends BaseEntity {
|
|
|
106
108
|
* * Field Name: BCMID
|
|
107
109
|
* * Display Name: BCMID
|
|
108
110
|
* * SQL Data Type: uniqueidentifier
|
|
111
|
+
* * Default Value: newid()
|
|
109
112
|
*/
|
|
110
113
|
get BCMID(): string;
|
|
111
114
|
/**
|
|
@@ -143,6 +146,7 @@ export declare class EmployeeEntity extends BaseEntity {
|
|
|
143
146
|
/**
|
|
144
147
|
* * Field Name: Active
|
|
145
148
|
* * SQL Data Type: bit
|
|
149
|
+
* * Default Value: 1
|
|
146
150
|
*/
|
|
147
151
|
get Active(): boolean;
|
|
148
152
|
set Active(value: boolean);
|
|
@@ -166,12 +170,14 @@ export declare class EmployeeEntity extends BaseEntity {
|
|
|
166
170
|
* * Field Name: CreatedAt
|
|
167
171
|
* * Display Name: Created At
|
|
168
172
|
* * SQL Data Type: datetime
|
|
173
|
+
* * Default Value: getdate()
|
|
169
174
|
*/
|
|
170
175
|
get CreatedAt(): Date;
|
|
171
176
|
/**
|
|
172
177
|
* * Field Name: UpdatedAt
|
|
173
178
|
* * Display Name: Updated At
|
|
174
179
|
* * SQL Data Type: datetime
|
|
180
|
+
* * Default Value: getdate()
|
|
175
181
|
*/
|
|
176
182
|
get UpdatedAt(): Date;
|
|
177
183
|
/**
|
|
@@ -261,12 +267,14 @@ export declare class UserFavoriteEntity extends BaseEntity {
|
|
|
261
267
|
* * Field Name: CreatedAt
|
|
262
268
|
* * Display Name: Created At
|
|
263
269
|
* * SQL Data Type: datetime
|
|
270
|
+
* * Default Value: getdate()
|
|
264
271
|
*/
|
|
265
272
|
get CreatedAt(): Date;
|
|
266
273
|
/**
|
|
267
274
|
* * Field Name: UpdatedAt
|
|
268
275
|
* * Display Name: Updated At
|
|
269
276
|
* * SQL Data Type: datetime
|
|
277
|
+
* * Default Value: getdate()
|
|
270
278
|
*/
|
|
271
279
|
get UpdatedAt(): Date;
|
|
272
280
|
/**
|
|
@@ -351,6 +359,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
|
|
|
351
359
|
* * Field Name: IsActive
|
|
352
360
|
* * Display Name: Is Active
|
|
353
361
|
* * SQL Data Type: bit
|
|
362
|
+
* * Default Value: 1
|
|
354
363
|
*/
|
|
355
364
|
get IsActive(): boolean;
|
|
356
365
|
set IsActive(value: boolean);
|
|
@@ -358,12 +367,14 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
|
|
|
358
367
|
* * Field Name: CreatedAt
|
|
359
368
|
* * Display Name: Created At
|
|
360
369
|
* * SQL Data Type: datetime
|
|
370
|
+
* * Default Value: getdate()
|
|
361
371
|
*/
|
|
362
372
|
get CreatedAt(): Date;
|
|
363
373
|
/**
|
|
364
374
|
* * Field Name: UpdatedAt
|
|
365
375
|
* * Display Name: Updated At
|
|
366
376
|
* * SQL Data Type: datetime
|
|
377
|
+
* * Default Value: getdate()
|
|
367
378
|
*/
|
|
368
379
|
get UpdatedAt(): Date;
|
|
369
380
|
}
|
|
@@ -425,12 +436,14 @@ export declare class EmployeeRoleEntity extends BaseEntity {
|
|
|
425
436
|
* * Field Name: CreatedAt
|
|
426
437
|
* * Display Name: Created At
|
|
427
438
|
* * SQL Data Type: datetime
|
|
439
|
+
* * Default Value: getdate()
|
|
428
440
|
*/
|
|
429
441
|
get CreatedAt(): Date;
|
|
430
442
|
/**
|
|
431
443
|
* * Field Name: UpdatedAt
|
|
432
444
|
* * Display Name: Updated At
|
|
433
445
|
* * SQL Data Type: datetime
|
|
446
|
+
* * Default Value: getdate()
|
|
434
447
|
*/
|
|
435
448
|
get UpdatedAt(): Date;
|
|
436
449
|
/**
|
|
@@ -498,12 +511,14 @@ export declare class EmployeeSkillEntity extends BaseEntity {
|
|
|
498
511
|
* * Field Name: CreatedAt
|
|
499
512
|
* * Display Name: Created At
|
|
500
513
|
* * SQL Data Type: datetime
|
|
514
|
+
* * Default Value: getdate()
|
|
501
515
|
*/
|
|
502
516
|
get CreatedAt(): Date;
|
|
503
517
|
/**
|
|
504
518
|
* * Field Name: UpdatedAt
|
|
505
519
|
* * Display Name: Updated At
|
|
506
520
|
* * SQL Data Type: datetime
|
|
521
|
+
* * Default Value: getdate()
|
|
507
522
|
*/
|
|
508
523
|
get UpdatedAt(): Date;
|
|
509
524
|
/**
|
|
@@ -574,12 +589,14 @@ export declare class RoleEntity extends BaseEntity {
|
|
|
574
589
|
* * Field Name: CreatedAt
|
|
575
590
|
* * Display Name: Created At
|
|
576
591
|
* * SQL Data Type: datetime
|
|
592
|
+
* * Default Value: getdate()
|
|
577
593
|
*/
|
|
578
594
|
get CreatedAt(): Date;
|
|
579
595
|
/**
|
|
580
596
|
* * Field Name: UpdatedAt
|
|
581
597
|
* * Display Name: Updated At
|
|
582
598
|
* * SQL Data Type: datetime
|
|
599
|
+
* * Default Value: getdate()
|
|
583
600
|
*/
|
|
584
601
|
get UpdatedAt(): Date;
|
|
585
602
|
}
|
|
@@ -648,12 +665,14 @@ export declare class SkillEntity extends BaseEntity {
|
|
|
648
665
|
* * Field Name: CreatedAt
|
|
649
666
|
* * Display Name: Created At
|
|
650
667
|
* * SQL Data Type: datetime
|
|
668
|
+
* * Default Value: getdate()
|
|
651
669
|
*/
|
|
652
670
|
get CreatedAt(): Date;
|
|
653
671
|
/**
|
|
654
672
|
* * Field Name: UpdatedAt
|
|
655
673
|
* * Display Name: Updated At
|
|
656
674
|
* * SQL Data Type: datetime
|
|
675
|
+
* * Default Value: getdate()
|
|
657
676
|
*/
|
|
658
677
|
get UpdatedAt(): Date;
|
|
659
678
|
/**
|
|
@@ -823,6 +842,7 @@ export declare class IntegrationEntity extends BaseEntity {
|
|
|
823
842
|
* * Field Name: BatchMaxRequestCount
|
|
824
843
|
* * Display Name: Batch Max Request Count
|
|
825
844
|
* * SQL Data Type: int
|
|
845
|
+
* * Default Value: -1
|
|
826
846
|
*/
|
|
827
847
|
get BatchMaxRequestCount(): number;
|
|
828
848
|
set BatchMaxRequestCount(value: number);
|
|
@@ -830,6 +850,7 @@ export declare class IntegrationEntity extends BaseEntity {
|
|
|
830
850
|
* * Field Name: BatchRequestWaitTime
|
|
831
851
|
* * Display Name: Batch Request Wait Time
|
|
832
852
|
* * SQL Data Type: int
|
|
853
|
+
* * Default Value: -1
|
|
833
854
|
*/
|
|
834
855
|
get BatchRequestWaitTime(): number;
|
|
835
856
|
set BatchRequestWaitTime(value: number);
|
|
@@ -837,12 +858,14 @@ export declare class IntegrationEntity extends BaseEntity {
|
|
|
837
858
|
* * Field Name: CreatedAt
|
|
838
859
|
* * Display Name: Created At
|
|
839
860
|
* * SQL Data Type: datetime
|
|
861
|
+
* * Default Value: getdate()
|
|
840
862
|
*/
|
|
841
863
|
get CreatedAt(): Date;
|
|
842
864
|
/**
|
|
843
865
|
* * Field Name: UpdatedAt
|
|
844
866
|
* * Display Name: Updated At
|
|
845
867
|
* * SQL Data Type: datetime
|
|
868
|
+
* * Default Value: getdate()
|
|
846
869
|
*/
|
|
847
870
|
get UpdatedAt(): Date;
|
|
848
871
|
}
|
|
@@ -938,12 +961,14 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
938
961
|
* * Field Name: CreatedAt
|
|
939
962
|
* * Display Name: Created At
|
|
940
963
|
* * SQL Data Type: datetime
|
|
964
|
+
* * Default Value: getdate()
|
|
941
965
|
*/
|
|
942
966
|
get CreatedAt(): Date;
|
|
943
967
|
/**
|
|
944
968
|
* * Field Name: UpdatedAt
|
|
945
969
|
* * Display Name: Updated At
|
|
946
970
|
* * SQL Data Type: datetime
|
|
971
|
+
* * Default Value: getdate()
|
|
947
972
|
*/
|
|
948
973
|
get UpdatedAt(): Date;
|
|
949
974
|
/**
|
|
@@ -957,6 +982,7 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
957
982
|
* * Field Name: IsExternalSystemReadOnly
|
|
958
983
|
* * Display Name: Is External System Read Only
|
|
959
984
|
* * SQL Data Type: bit
|
|
985
|
+
* * Default Value: 0
|
|
960
986
|
*/
|
|
961
987
|
get IsExternalSystemReadOnly(): boolean;
|
|
962
988
|
set IsExternalSystemReadOnly(value: boolean);
|
|
@@ -1073,6 +1099,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1073
1099
|
/**
|
|
1074
1100
|
* * Field Name: Sequence
|
|
1075
1101
|
* * SQL Data Type: int
|
|
1102
|
+
* * Default Value: 0
|
|
1076
1103
|
* * Description: Display order of the field within the entity
|
|
1077
1104
|
*/
|
|
1078
1105
|
get Sequence(): number;
|
|
@@ -1101,6 +1128,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1101
1128
|
* * Field Name: AutoUpdateDescription
|
|
1102
1129
|
* * Display Name: Auto Update Description
|
|
1103
1130
|
* * SQL Data Type: bit
|
|
1131
|
+
* * Default Value: 1
|
|
1104
1132
|
* * Description: When set to 1 (default), whenever a description is modified in the column within the underlying view (first choice) or table (second choice), the Description column in the entity field definition will be automatically updated. If you never set metadata in the database directly, you can leave this alone. However, if you have metadata set in the database level for description, and you want to provide a DIFFERENT description in this entity field definition, turn this bit off and then set the Description field and future CodeGen runs will NOT override the Description field here.
|
|
1105
1133
|
*/
|
|
1106
1134
|
get AutoUpdateDescription(): boolean;
|
|
@@ -1109,6 +1137,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1109
1137
|
* * Field Name: IsPrimaryKey
|
|
1110
1138
|
* * Display Name: Is Primary Key
|
|
1111
1139
|
* * SQL Data Type: bit
|
|
1140
|
+
* * Default Value: 0
|
|
1112
1141
|
* * Description: Indicates if the field is part of the primary key for the entity (auto maintained by CodeGen)
|
|
1113
1142
|
*/
|
|
1114
1143
|
get IsPrimaryKey(): boolean;
|
|
@@ -1117,6 +1146,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1117
1146
|
* * Field Name: IsUnique
|
|
1118
1147
|
* * Display Name: Is Unique
|
|
1119
1148
|
* * SQL Data Type: bit
|
|
1149
|
+
* * Default Value: 0
|
|
1120
1150
|
* * Description: Indicates if the field must have unique values within the entity.
|
|
1121
1151
|
*/
|
|
1122
1152
|
get IsUnique(): boolean;
|
|
@@ -1157,6 +1187,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1157
1187
|
* * Field Name: AllowsNull
|
|
1158
1188
|
* * Display Name: Allows Null
|
|
1159
1189
|
* * SQL Data Type: bit
|
|
1190
|
+
* * Default Value: 1
|
|
1160
1191
|
* * Description: Does the column allow null or not (auto maintained by CodeGen)
|
|
1161
1192
|
*/
|
|
1162
1193
|
get AllowsNull(): boolean;
|
|
@@ -1171,6 +1202,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1171
1202
|
* * Field Name: AutoIncrement
|
|
1172
1203
|
* * Display Name: Auto Increment
|
|
1173
1204
|
* * SQL Data Type: bit
|
|
1205
|
+
* * Default Value: 0
|
|
1174
1206
|
* * Description: If this field automatically increments within the table, this field is set to 1 (auto maintained by CodeGen)
|
|
1175
1207
|
*/
|
|
1176
1208
|
get AutoIncrement(): boolean;
|
|
@@ -1178,6 +1210,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1178
1210
|
* * Field Name: ValueListType
|
|
1179
1211
|
* * Display Name: Value List Type
|
|
1180
1212
|
* * SQL Data Type: nvarchar(20)
|
|
1213
|
+
* * Default Value: None
|
|
1181
1214
|
* * Value List Type: List
|
|
1182
1215
|
* * Possible Values
|
|
1183
1216
|
* * None
|
|
@@ -1230,6 +1263,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1230
1263
|
* * Field Name: DefaultInView
|
|
1231
1264
|
* * Display Name: Default In View
|
|
1232
1265
|
* * SQL Data Type: bit
|
|
1266
|
+
* * Default Value: 0
|
|
1233
1267
|
* * Description: If set to 1, this field will be included by default in any new view created by a user.
|
|
1234
1268
|
*/
|
|
1235
1269
|
get DefaultInView(): boolean;
|
|
@@ -1254,6 +1288,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1254
1288
|
* * Field Name: AllowUpdateAPI
|
|
1255
1289
|
* * Display Name: Allow Update API
|
|
1256
1290
|
* * SQL Data Type: bit
|
|
1291
|
+
* * Default Value: 1
|
|
1257
1292
|
* * Description: If set to 1, this field will be considered updateable by the API and object model. For this field to have effect, the column type must be updateable (e.g. not part of the primary key and not auto-increment)
|
|
1258
1293
|
*/
|
|
1259
1294
|
get AllowUpdateAPI(): boolean;
|
|
@@ -1262,6 +1297,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1262
1297
|
* * Field Name: AllowUpdateInView
|
|
1263
1298
|
* * Display Name: Allow Update In View
|
|
1264
1299
|
* * SQL Data Type: bit
|
|
1300
|
+
* * Default Value: 1
|
|
1265
1301
|
* * Description: If set to 1, and if AllowUpdateAPI=1, the field can be edited within a view when the view is in edit mode.
|
|
1266
1302
|
*/
|
|
1267
1303
|
get AllowUpdateInView(): boolean;
|
|
@@ -1270,6 +1306,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1270
1306
|
* * Field Name: IncludeInUserSearchAPI
|
|
1271
1307
|
* * Display Name: Include In User Search API
|
|
1272
1308
|
* * SQL Data Type: bit
|
|
1309
|
+
* * Default Value: 0
|
|
1273
1310
|
* * Description: If set to 1, this column will be included in user search queries for both traditional and full text search
|
|
1274
1311
|
*/
|
|
1275
1312
|
get IncludeInUserSearchAPI(): boolean;
|
|
@@ -1278,6 +1315,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1278
1315
|
* * Field Name: FullTextSearchEnabled
|
|
1279
1316
|
* * Display Name: Full Text Search Enabled
|
|
1280
1317
|
* * SQL Data Type: bit
|
|
1318
|
+
* * Default Value: 0
|
|
1281
1319
|
* * Description: If set to 1, CodeGen will automatically generate a Full Text Catalog/Index in the database and include this field in the search index.
|
|
1282
1320
|
*/
|
|
1283
1321
|
get FullTextSearchEnabled(): boolean;
|
|
@@ -1294,6 +1332,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1294
1332
|
* * Field Name: IncludeInGeneratedForm
|
|
1295
1333
|
* * Display Name: Include In Generated Form
|
|
1296
1334
|
* * SQL Data Type: bit
|
|
1335
|
+
* * Default Value: 1
|
|
1297
1336
|
* * Description: If set to 1, this field will be included in the generated form by CodeGen. If set to 0, this field will be excluded from the generated form. For custom forms, this field has no effect as the layout is controlled independently.
|
|
1298
1337
|
*/
|
|
1299
1338
|
get IncludeInGeneratedForm(): boolean;
|
|
@@ -1302,6 +1341,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1302
1341
|
* * Field Name: GeneratedFormSection
|
|
1303
1342
|
* * Display Name: Generated Form Section
|
|
1304
1343
|
* * SQL Data Type: nvarchar(10)
|
|
1344
|
+
* * Default Value: Details
|
|
1305
1345
|
* * Value List Type: List
|
|
1306
1346
|
* * Possible Values
|
|
1307
1347
|
* * Top
|
|
@@ -1315,6 +1355,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1315
1355
|
* * Field Name: IsVirtual
|
|
1316
1356
|
* * Display Name: Is Virtual
|
|
1317
1357
|
* * SQL Data Type: bit
|
|
1358
|
+
* * Default Value: 0
|
|
1318
1359
|
* * Description: NULL
|
|
1319
1360
|
*/
|
|
1320
1361
|
get IsVirtual(): boolean;
|
|
@@ -1322,6 +1363,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1322
1363
|
* * Field Name: IsNameField
|
|
1323
1364
|
* * Display Name: Is Name Field
|
|
1324
1365
|
* * SQL Data Type: bit
|
|
1366
|
+
* * Default Value: 0
|
|
1325
1367
|
* * Description: If set to 1, this column will be used as the "Name" field for the entity and will be used to display the name of the record in various places in the UI.
|
|
1326
1368
|
*/
|
|
1327
1369
|
get IsNameField(): boolean;
|
|
@@ -1347,6 +1389,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1347
1389
|
* * Field Name: IncludeRelatedEntityNameFieldInBaseView
|
|
1348
1390
|
* * Display Name: Include Related Entity Name Field In Base View
|
|
1349
1391
|
* * SQL Data Type: bit
|
|
1392
|
+
* * Default Value: 1
|
|
1350
1393
|
* * Description: If set to 1, the "Name" field of the Related Entity will be included in this entity as a virtual field
|
|
1351
1394
|
*/
|
|
1352
1395
|
get IncludeRelatedEntityNameFieldInBaseView(): boolean;
|
|
@@ -1362,12 +1405,14 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1362
1405
|
* * Field Name: CreatedAt
|
|
1363
1406
|
* * Display Name: Created At
|
|
1364
1407
|
* * SQL Data Type: datetime
|
|
1408
|
+
* * Default Value: getdate()
|
|
1365
1409
|
*/
|
|
1366
1410
|
get CreatedAt(): Date;
|
|
1367
1411
|
/**
|
|
1368
1412
|
* * Field Name: UpdatedAt
|
|
1369
1413
|
* * Display Name: Updated At
|
|
1370
1414
|
* * SQL Data Type: datetime
|
|
1415
|
+
* * Default Value: getdate()
|
|
1371
1416
|
*/
|
|
1372
1417
|
get UpdatedAt(): Date;
|
|
1373
1418
|
/**
|
|
@@ -1502,6 +1547,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1502
1547
|
* * Field Name: AutoUpdateDescription
|
|
1503
1548
|
* * Display Name: Auto Update Description
|
|
1504
1549
|
* * SQL Data Type: bit
|
|
1550
|
+
* * Default Value: 1
|
|
1505
1551
|
* * Description: When set to 1 (default), whenever a description is modified in the underlying view (first choice) or table (second choice), the Description column in the entity definition will be automatically updated. If you never set metadata in the database directly, you can leave this alone. However, if you have metadata set in the database level for description, and you want to provide a DIFFERENT description in this entity definition, turn this bit off and then set the Description field and future CodeGen runs will NOT override the Description field here.
|
|
1506
1552
|
*/
|
|
1507
1553
|
get AutoUpdateDescription(): boolean;
|
|
@@ -1523,6 +1569,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1523
1569
|
* * Field Name: BaseViewGenerated
|
|
1524
1570
|
* * Display Name: Base View Generated
|
|
1525
1571
|
* * SQL Data Type: bit
|
|
1572
|
+
* * Default Value: 1
|
|
1526
1573
|
* * Description: When set to 0, CodeGen no longer generates a base view for the entity.
|
|
1527
1574
|
*/
|
|
1528
1575
|
get BaseViewGenerated(): boolean;
|
|
@@ -1531,12 +1578,14 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1531
1578
|
* * Field Name: SchemaName
|
|
1532
1579
|
* * Display Name: Schema Name
|
|
1533
1580
|
* * SQL Data Type: nvarchar(255)
|
|
1581
|
+
* * Default Value: dbo
|
|
1534
1582
|
*/
|
|
1535
1583
|
get SchemaName(): string;
|
|
1536
1584
|
/**
|
|
1537
1585
|
* * Field Name: VirtualEntity
|
|
1538
1586
|
* * Display Name: Virtual Entity
|
|
1539
1587
|
* * SQL Data Type: bit
|
|
1588
|
+
* * Default Value: 0
|
|
1540
1589
|
*/
|
|
1541
1590
|
get VirtualEntity(): boolean;
|
|
1542
1591
|
set VirtualEntity(value: boolean);
|
|
@@ -1544,6 +1593,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1544
1593
|
* * Field Name: TrackRecordChanges
|
|
1545
1594
|
* * Display Name: Track Record Changes
|
|
1546
1595
|
* * SQL Data Type: bit
|
|
1596
|
+
* * Default Value: 1
|
|
1547
1597
|
* * Description: When set to 1, changes made via the MemberJunction architecture will result in tracking records being created in the RecordChange table
|
|
1548
1598
|
*/
|
|
1549
1599
|
get TrackRecordChanges(): boolean;
|
|
@@ -1552,6 +1602,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1552
1602
|
* * Field Name: AuditRecordAccess
|
|
1553
1603
|
* * Display Name: Audit Record Access
|
|
1554
1604
|
* * SQL Data Type: bit
|
|
1605
|
+
* * Default Value: 1
|
|
1555
1606
|
* * Description: When set to 1, accessing a record by an end-user will result in an Audit Log record being created
|
|
1556
1607
|
*/
|
|
1557
1608
|
get AuditRecordAccess(): boolean;
|
|
@@ -1560,6 +1611,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1560
1611
|
* * Field Name: AuditViewRuns
|
|
1561
1612
|
* * Display Name: Audit View Runs
|
|
1562
1613
|
* * SQL Data Type: bit
|
|
1614
|
+
* * Default Value: 1
|
|
1563
1615
|
* * Description: When set to 1, users running a view against this entity will result in an Audit Log record being created.
|
|
1564
1616
|
*/
|
|
1565
1617
|
get AuditViewRuns(): boolean;
|
|
@@ -1568,6 +1620,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1568
1620
|
* * Field Name: IncludeInAPI
|
|
1569
1621
|
* * Display Name: Include In API
|
|
1570
1622
|
* * SQL Data Type: bit
|
|
1623
|
+
* * Default Value: 0
|
|
1571
1624
|
* * Description: If set to 0, the entity will not be available at all in the GraphQL API or the object model.
|
|
1572
1625
|
*/
|
|
1573
1626
|
get IncludeInAPI(): boolean;
|
|
@@ -1576,6 +1629,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1576
1629
|
* * Field Name: AllowAllRowsAPI
|
|
1577
1630
|
* * Display Name: Allow All Rows API
|
|
1578
1631
|
* * SQL Data Type: bit
|
|
1632
|
+
* * Default Value: 0
|
|
1579
1633
|
* * Description: If set to 1, a GraphQL query will be enabled that allows access to all rows in the entity.
|
|
1580
1634
|
*/
|
|
1581
1635
|
get AllowAllRowsAPI(): boolean;
|
|
@@ -1584,6 +1638,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1584
1638
|
* * Field Name: AllowUpdateAPI
|
|
1585
1639
|
* * Display Name: Allow Update API
|
|
1586
1640
|
* * SQL Data Type: bit
|
|
1641
|
+
* * Default Value: 0
|
|
1587
1642
|
* * Description: Global flag controlling if updates are allowed for any user, or not. If set to 1, a GraqhQL mutation and stored procedure are created. Permissions are still required to perform the action but if this flag is set to 0, no user will be able to perform the action.
|
|
1588
1643
|
*/
|
|
1589
1644
|
get AllowUpdateAPI(): boolean;
|
|
@@ -1592,6 +1647,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1592
1647
|
* * Field Name: AllowCreateAPI
|
|
1593
1648
|
* * Display Name: Allow Create API
|
|
1594
1649
|
* * SQL Data Type: bit
|
|
1650
|
+
* * Default Value: 0
|
|
1595
1651
|
* * Description: Global flag controlling if creates are allowed for any user, or not. If set to 1, a GraqhQL mutation and stored procedure are created. Permissions are still required to perform the action but if this flag is set to 0, no user will be able to perform the action.
|
|
1596
1652
|
*/
|
|
1597
1653
|
get AllowCreateAPI(): boolean;
|
|
@@ -1600,6 +1656,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1600
1656
|
* * Field Name: AllowDeleteAPI
|
|
1601
1657
|
* * Display Name: Allow Delete API
|
|
1602
1658
|
* * SQL Data Type: bit
|
|
1659
|
+
* * Default Value: 0
|
|
1603
1660
|
* * Description: Global flag controlling if deletes are allowed for any user, or not. If set to 1, a GraqhQL mutation and stored procedure are created. Permissions are still required to perform the action but if this flag is set to 0, no user will be able to perform the action.
|
|
1604
1661
|
*/
|
|
1605
1662
|
get AllowDeleteAPI(): boolean;
|
|
@@ -1608,6 +1665,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1608
1665
|
* * Field Name: CustomResolverAPI
|
|
1609
1666
|
* * Display Name: Custom Resolver API
|
|
1610
1667
|
* * SQL Data Type: bit
|
|
1668
|
+
* * Default Value: 0
|
|
1611
1669
|
* * Description: Set to 1 if a custom resolver has been created for the entity.
|
|
1612
1670
|
*/
|
|
1613
1671
|
get CustomResolverAPI(): boolean;
|
|
@@ -1616,6 +1674,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1616
1674
|
* * Field Name: AllowUserSearchAPI
|
|
1617
1675
|
* * Display Name: Allow User Search API
|
|
1618
1676
|
* * SQL Data Type: bit
|
|
1677
|
+
* * Default Value: 0
|
|
1619
1678
|
* * Description: Enabling this bit will result in search being possible at the API and UI layers
|
|
1620
1679
|
*/
|
|
1621
1680
|
get AllowUserSearchAPI(): boolean;
|
|
@@ -1624,6 +1683,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1624
1683
|
* * Field Name: FullTextSearchEnabled
|
|
1625
1684
|
* * Display Name: Full Text Search Enabled
|
|
1626
1685
|
* * SQL Data Type: bit
|
|
1686
|
+
* * Default Value: 0
|
|
1627
1687
|
*/
|
|
1628
1688
|
get FullTextSearchEnabled(): boolean;
|
|
1629
1689
|
set FullTextSearchEnabled(value: boolean);
|
|
@@ -1638,6 +1698,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1638
1698
|
* * Field Name: FullTextCatalogGenerated
|
|
1639
1699
|
* * Display Name: Full Text Catalog Generated
|
|
1640
1700
|
* * SQL Data Type: bit
|
|
1701
|
+
* * Default Value: 1
|
|
1641
1702
|
*/
|
|
1642
1703
|
get FullTextCatalogGenerated(): boolean;
|
|
1643
1704
|
set FullTextCatalogGenerated(value: boolean);
|
|
@@ -1652,6 +1713,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1652
1713
|
* * Field Name: FullTextIndexGenerated
|
|
1653
1714
|
* * Display Name: Full Text Index Generated
|
|
1654
1715
|
* * SQL Data Type: bit
|
|
1716
|
+
* * Default Value: 1
|
|
1655
1717
|
*/
|
|
1656
1718
|
get FullTextIndexGenerated(): boolean;
|
|
1657
1719
|
set FullTextIndexGenerated(value: boolean);
|
|
@@ -1666,6 +1728,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1666
1728
|
* * Field Name: FullTextSearchFunctionGenerated
|
|
1667
1729
|
* * Display Name: Full Text Search Function Generated
|
|
1668
1730
|
* * SQL Data Type: bit
|
|
1731
|
+
* * Default Value: 1
|
|
1669
1732
|
*/
|
|
1670
1733
|
get FullTextSearchFunctionGenerated(): boolean;
|
|
1671
1734
|
set FullTextSearchFunctionGenerated(value: boolean);
|
|
@@ -1673,6 +1736,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1673
1736
|
* * Field Name: UserViewMaxRows
|
|
1674
1737
|
* * Display Name: User View Max Rows
|
|
1675
1738
|
* * SQL Data Type: int
|
|
1739
|
+
* * Default Value: 1000
|
|
1676
1740
|
*/
|
|
1677
1741
|
get UserViewMaxRows(): number | null;
|
|
1678
1742
|
set UserViewMaxRows(value: number | null);
|
|
@@ -1701,6 +1765,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1701
1765
|
* * Field Name: spCreateGenerated
|
|
1702
1766
|
* * Display Name: sp CreateGenerated
|
|
1703
1767
|
* * SQL Data Type: bit
|
|
1768
|
+
* * Default Value: 1
|
|
1704
1769
|
*/
|
|
1705
1770
|
get spCreateGenerated(): boolean;
|
|
1706
1771
|
set spCreateGenerated(value: boolean);
|
|
@@ -1708,6 +1773,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1708
1773
|
* * Field Name: spUpdateGenerated
|
|
1709
1774
|
* * Display Name: sp Update Generated
|
|
1710
1775
|
* * SQL Data Type: bit
|
|
1776
|
+
* * Default Value: 1
|
|
1711
1777
|
*/
|
|
1712
1778
|
get spUpdateGenerated(): boolean;
|
|
1713
1779
|
set spUpdateGenerated(value: boolean);
|
|
@@ -1715,6 +1781,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1715
1781
|
* * Field Name: spDeleteGenerated
|
|
1716
1782
|
* * Display Name: sp Delete Generated
|
|
1717
1783
|
* * SQL Data Type: bit
|
|
1784
|
+
* * Default Value: 1
|
|
1718
1785
|
*/
|
|
1719
1786
|
get spDeleteGenerated(): boolean;
|
|
1720
1787
|
set spDeleteGenerated(value: boolean);
|
|
@@ -1722,6 +1789,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1722
1789
|
* * Field Name: CascadeDeletes
|
|
1723
1790
|
* * Display Name: Cascade Deletes
|
|
1724
1791
|
* * SQL Data Type: bit
|
|
1792
|
+
* * Default Value: 0
|
|
1725
1793
|
* * Description: When set to 1, the deleted spDelete will pre-process deletion to related entities that have 1:M cardinality with this entity. This does not have effect if spDeleteGenerated = 0
|
|
1726
1794
|
*/
|
|
1727
1795
|
get CascadeDeletes(): boolean;
|
|
@@ -1738,6 +1806,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1738
1806
|
* * Field Name: UserFormGenerated
|
|
1739
1807
|
* * Display Name: User Form Generated
|
|
1740
1808
|
* * SQL Data Type: bit
|
|
1809
|
+
* * Default Value: 1
|
|
1741
1810
|
*/
|
|
1742
1811
|
get UserFormGenerated(): boolean;
|
|
1743
1812
|
set UserFormGenerated(value: boolean);
|
|
@@ -1759,15 +1828,25 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1759
1828
|
* * Field Name: CreatedAt
|
|
1760
1829
|
* * Display Name: Created At
|
|
1761
1830
|
* * SQL Data Type: datetime
|
|
1831
|
+
* * Default Value: getdate()
|
|
1762
1832
|
*/
|
|
1763
1833
|
get CreatedAt(): Date;
|
|
1764
1834
|
/**
|
|
1765
1835
|
* * Field Name: UpdatedAt
|
|
1766
1836
|
* * Display Name: Updated At
|
|
1767
1837
|
* * SQL Data Type: datetime
|
|
1838
|
+
* * Default Value: getdate()
|
|
1768
1839
|
*/
|
|
1769
1840
|
get UpdatedAt(): Date;
|
|
1770
1841
|
/**
|
|
1842
|
+
* * Field Name: PreferredCommunicationField
|
|
1843
|
+
* * Display Name: Preferred Communication Field
|
|
1844
|
+
* * SQL Data Type: nvarchar(255)
|
|
1845
|
+
* * Description: Used to specify a field within the entity that in turn contains the field name that will be used for record-level communication preferences. For example in a hypothetical entity called Contacts, say there is a field called PreferredComm and that field had possible values of Email1, SMS, and Phone, and those value in turn corresponded to field names in the entity. Each record in the Contacts entity could have a specific preference for which field would be used for communication. The MJ Communication Framework will use this information when available, as a priority ahead of the data in the Entity Communication Fields entity which is entity-level and not record-level.
|
|
1846
|
+
*/
|
|
1847
|
+
get PreferredCommunicationField(): string | null;
|
|
1848
|
+
set PreferredCommunicationField(value: string | null);
|
|
1849
|
+
/**
|
|
1771
1850
|
* * Field Name: CodeName
|
|
1772
1851
|
* * Display Name: Code Name
|
|
1773
1852
|
* * SQL Data Type: nvarchar(MAX)
|
|
@@ -1880,6 +1959,7 @@ export declare class UserEntity extends BaseEntity {
|
|
|
1880
1959
|
* * Field Name: IsActive
|
|
1881
1960
|
* * Display Name: Is Active
|
|
1882
1961
|
* * SQL Data Type: bit
|
|
1962
|
+
* * Default Value: 0
|
|
1883
1963
|
*/
|
|
1884
1964
|
get IsActive(): boolean;
|
|
1885
1965
|
set IsActive(value: boolean);
|
|
@@ -1887,6 +1967,7 @@ export declare class UserEntity extends BaseEntity {
|
|
|
1887
1967
|
* * Field Name: LinkedRecordType
|
|
1888
1968
|
* * Display Name: Linked Record Type
|
|
1889
1969
|
* * SQL Data Type: nchar(10)
|
|
1970
|
+
* * Default Value: None
|
|
1890
1971
|
*/
|
|
1891
1972
|
get LinkedRecordType(): string;
|
|
1892
1973
|
set LinkedRecordType(value: string);
|
|
@@ -1917,12 +1998,14 @@ export declare class UserEntity extends BaseEntity {
|
|
|
1917
1998
|
* * Field Name: CreatedAt
|
|
1918
1999
|
* * Display Name: Created At
|
|
1919
2000
|
* * SQL Data Type: datetime
|
|
2001
|
+
* * Default Value: getdate()
|
|
1920
2002
|
*/
|
|
1921
2003
|
get CreatedAt(): Date;
|
|
1922
2004
|
/**
|
|
1923
2005
|
* * Field Name: UpdatedAt
|
|
1924
2006
|
* * Display Name: Updated At
|
|
1925
2007
|
* * SQL Data Type: datetime
|
|
2008
|
+
* * Default Value: getdate()
|
|
1926
2009
|
*/
|
|
1927
2010
|
get UpdatedAt(): Date;
|
|
1928
2011
|
/**
|
|
@@ -2003,6 +2086,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2003
2086
|
* * Field Name: Sequence
|
|
2004
2087
|
* * Display Name: Sequence
|
|
2005
2088
|
* * SQL Data Type: int
|
|
2089
|
+
* * Default Value: 0
|
|
2006
2090
|
* * Description: Used for display order in generated forms and in other places in the UI where relationships for an entity are shown
|
|
2007
2091
|
*/
|
|
2008
2092
|
get Sequence(): number;
|
|
@@ -2019,6 +2103,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2019
2103
|
* * Field Name: BundleInAPI
|
|
2020
2104
|
* * Display Name: Bundle In API
|
|
2021
2105
|
* * SQL Data Type: bit
|
|
2106
|
+
* * Default Value: 1
|
|
2022
2107
|
*/
|
|
2023
2108
|
get BundleInAPI(): boolean;
|
|
2024
2109
|
set BundleInAPI(value: boolean);
|
|
@@ -2026,12 +2111,14 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2026
2111
|
* * Field Name: IncludeInParentAllQuery
|
|
2027
2112
|
* * Display Name: Include In Parent All Query
|
|
2028
2113
|
* * SQL Data Type: bit
|
|
2114
|
+
* * Default Value: 0
|
|
2029
2115
|
*/
|
|
2030
2116
|
get IncludeInParentAllQuery(): boolean;
|
|
2031
2117
|
set IncludeInParentAllQuery(value: boolean);
|
|
2032
2118
|
/**
|
|
2033
2119
|
* * Field Name: Type
|
|
2034
2120
|
* * SQL Data Type: nchar(20)
|
|
2121
|
+
* * Default Value: One To Many
|
|
2035
2122
|
* * Value List Type: List
|
|
2036
2123
|
* * Possible Values
|
|
2037
2124
|
* * One To Many
|
|
@@ -2078,6 +2165,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2078
2165
|
* * Field Name: DisplayInForm
|
|
2079
2166
|
* * Display Name: Display In Form
|
|
2080
2167
|
* * SQL Data Type: bit
|
|
2168
|
+
* * Default Value: 1
|
|
2081
2169
|
*/
|
|
2082
2170
|
get DisplayInForm(): boolean;
|
|
2083
2171
|
set DisplayInForm(value: boolean);
|
|
@@ -2099,12 +2187,14 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2099
2187
|
* * Field Name: CreatedAt
|
|
2100
2188
|
* * Display Name: Created At
|
|
2101
2189
|
* * SQL Data Type: datetime
|
|
2190
|
+
* * Default Value: getdate()
|
|
2102
2191
|
*/
|
|
2103
2192
|
get CreatedAt(): Date;
|
|
2104
2193
|
/**
|
|
2105
2194
|
* * Field Name: UpdatedAt
|
|
2106
2195
|
* * Display Name: Updated At
|
|
2107
2196
|
* * SQL Data Type: datetime
|
|
2197
|
+
* * Default Value: getdate()
|
|
2108
2198
|
*/
|
|
2109
2199
|
get UpdatedAt(): Date;
|
|
2110
2200
|
/**
|
|
@@ -2237,6 +2327,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
|
|
|
2237
2327
|
* * Field Name: EarliestAt
|
|
2238
2328
|
* * Display Name: Earliest At
|
|
2239
2329
|
* * SQL Data Type: datetime
|
|
2330
|
+
* * Default Value: getdate()
|
|
2240
2331
|
*/
|
|
2241
2332
|
get EarliestAt(): Date;
|
|
2242
2333
|
set EarliestAt(value: Date);
|
|
@@ -2244,6 +2335,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
|
|
|
2244
2335
|
* * Field Name: LatestAt
|
|
2245
2336
|
* * Display Name: Latest At
|
|
2246
2337
|
* * SQL Data Type: datetime
|
|
2338
|
+
* * Default Value: getdate()
|
|
2247
2339
|
*/
|
|
2248
2340
|
get LatestAt(): Date;
|
|
2249
2341
|
set LatestAt(value: Date);
|
|
@@ -2251,6 +2343,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
|
|
|
2251
2343
|
* * Field Name: TotalCount
|
|
2252
2344
|
* * Display Name: Total Count
|
|
2253
2345
|
* * SQL Data Type: int
|
|
2346
|
+
* * Default Value: 0
|
|
2254
2347
|
*/
|
|
2255
2348
|
get TotalCount(): number;
|
|
2256
2349
|
set TotalCount(value: number);
|
|
@@ -2346,6 +2439,7 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2346
2439
|
* * Field Name: GUID
|
|
2347
2440
|
* * Display Name: GUID
|
|
2348
2441
|
* * SQL Data Type: uniqueidentifier
|
|
2442
|
+
* * Default Value: newid()
|
|
2349
2443
|
*/
|
|
2350
2444
|
get GUID(): string;
|
|
2351
2445
|
/**
|
|
@@ -2366,6 +2460,7 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2366
2460
|
* * Field Name: IsShared
|
|
2367
2461
|
* * Display Name: Is Shared
|
|
2368
2462
|
* * SQL Data Type: bit
|
|
2463
|
+
* * Default Value: 0
|
|
2369
2464
|
*/
|
|
2370
2465
|
get IsShared(): boolean;
|
|
2371
2466
|
set IsShared(value: boolean);
|
|
@@ -2373,6 +2468,7 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2373
2468
|
* * Field Name: IsDefault
|
|
2374
2469
|
* * Display Name: Is Default
|
|
2375
2470
|
* * SQL Data Type: bit
|
|
2471
|
+
* * Default Value: 0
|
|
2376
2472
|
*/
|
|
2377
2473
|
get IsDefault(): boolean;
|
|
2378
2474
|
set IsDefault(value: boolean);
|
|
@@ -2394,6 +2490,7 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2394
2490
|
* * Field Name: CustomFilterState
|
|
2395
2491
|
* * Display Name: Custom Filter State
|
|
2396
2492
|
* * SQL Data Type: bit
|
|
2493
|
+
* * Default Value: 0
|
|
2397
2494
|
*/
|
|
2398
2495
|
get CustomFilterState(): boolean;
|
|
2399
2496
|
set CustomFilterState(value: boolean);
|
|
@@ -2401,6 +2498,7 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2401
2498
|
* * Field Name: SmartFilterEnabled
|
|
2402
2499
|
* * Display Name: Smart Filter Enabled
|
|
2403
2500
|
* * SQL Data Type: bit
|
|
2501
|
+
* * Default Value: 0
|
|
2404
2502
|
*/
|
|
2405
2503
|
get SmartFilterEnabled(): boolean;
|
|
2406
2504
|
set SmartFilterEnabled(value: boolean);
|
|
@@ -2436,6 +2534,7 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2436
2534
|
* * Field Name: CustomWhereClause
|
|
2437
2535
|
* * Display Name: Custom Where Clause
|
|
2438
2536
|
* * SQL Data Type: bit
|
|
2537
|
+
* * Default Value: 0
|
|
2439
2538
|
*/
|
|
2440
2539
|
get CustomWhereClause(): boolean;
|
|
2441
2540
|
set CustomWhereClause(value: boolean);
|
|
@@ -2450,12 +2549,14 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2450
2549
|
* * Field Name: CreatedAt
|
|
2451
2550
|
* * Display Name: Created At
|
|
2452
2551
|
* * SQL Data Type: datetime
|
|
2552
|
+
* * Default Value: getdate()
|
|
2453
2553
|
*/
|
|
2454
2554
|
get CreatedAt(): Date | null;
|
|
2455
2555
|
/**
|
|
2456
2556
|
* * Field Name: UpdatedAt
|
|
2457
2557
|
* * Display Name: Updated At
|
|
2458
2558
|
* * SQL Data Type: datetime
|
|
2559
|
+
* * Default Value: getdate()
|
|
2459
2560
|
*/
|
|
2460
2561
|
get UpdatedAt(): Date | null;
|
|
2461
2562
|
/**
|
|
@@ -2652,6 +2753,7 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
|
|
|
2652
2753
|
* * Field Name: ExecutedAt
|
|
2653
2754
|
* * Display Name: Executed At
|
|
2654
2755
|
* * SQL Data Type: datetime
|
|
2756
|
+
* * Default Value: getdate()
|
|
2655
2757
|
*/
|
|
2656
2758
|
get ExecutedAt(): Date;
|
|
2657
2759
|
set ExecutedAt(value: Date);
|
|
@@ -2659,6 +2761,7 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
|
|
|
2659
2761
|
* * Field Name: IsSuccess
|
|
2660
2762
|
* * Display Name: Is Success
|
|
2661
2763
|
* * SQL Data Type: bit
|
|
2764
|
+
* * Default Value: 0
|
|
2662
2765
|
*/
|
|
2663
2766
|
get IsSuccess(): boolean;
|
|
2664
2767
|
set IsSuccess(value: boolean);
|
|
@@ -2749,12 +2852,14 @@ export declare class ErrorLogEntity extends BaseEntity {
|
|
|
2749
2852
|
* * Field Name: CreatedAt
|
|
2750
2853
|
* * Display Name: Created At
|
|
2751
2854
|
* * SQL Data Type: datetime
|
|
2855
|
+
* * Default Value: getdate()
|
|
2752
2856
|
*/
|
|
2753
2857
|
get CreatedAt(): Date;
|
|
2754
2858
|
/**
|
|
2755
2859
|
* * Field Name: CreatedBy
|
|
2756
2860
|
* * Display Name: Created By
|
|
2757
2861
|
* * SQL Data Type: nvarchar(50)
|
|
2862
|
+
* * Default Value: suser_name()
|
|
2758
2863
|
*/
|
|
2759
2864
|
get CreatedBy(): string | null;
|
|
2760
2865
|
set CreatedBy(value: string | null);
|
|
@@ -2822,12 +2927,14 @@ export declare class ApplicationEntity extends BaseEntity {
|
|
|
2822
2927
|
* * Field Name: CreatedAt
|
|
2823
2928
|
* * Display Name: Created At
|
|
2824
2929
|
* * SQL Data Type: datetime
|
|
2930
|
+
* * Default Value: getdate()
|
|
2825
2931
|
*/
|
|
2826
2932
|
get CreatedAt(): Date;
|
|
2827
2933
|
/**
|
|
2828
2934
|
* * Field Name: UpdatedAt
|
|
2829
2935
|
* * Display Name: Updated At
|
|
2830
2936
|
* * SQL Data Type: datetime
|
|
2937
|
+
* * Default Value: getdate()
|
|
2831
2938
|
*/
|
|
2832
2939
|
get UpdatedAt(): Date;
|
|
2833
2940
|
}
|
|
@@ -2886,6 +2993,7 @@ export declare class ApplicationEntityEntity extends BaseEntity {
|
|
|
2886
2993
|
* * Field Name: DefaultForNewUser
|
|
2887
2994
|
* * Display Name: Default For New User
|
|
2888
2995
|
* * SQL Data Type: bit
|
|
2996
|
+
* * Default Value: 0
|
|
2889
2997
|
*/
|
|
2890
2998
|
get DefaultForNewUser(): boolean;
|
|
2891
2999
|
set DefaultForNewUser(value: boolean);
|
|
@@ -2893,12 +3001,14 @@ export declare class ApplicationEntityEntity extends BaseEntity {
|
|
|
2893
3001
|
* * Field Name: CreatedAt
|
|
2894
3002
|
* * Display Name: Created At
|
|
2895
3003
|
* * SQL Data Type: datetime
|
|
3004
|
+
* * Default Value: getdate()
|
|
2896
3005
|
*/
|
|
2897
3006
|
get CreatedAt(): Date;
|
|
2898
3007
|
/**
|
|
2899
3008
|
* * Field Name: UpdatedAt
|
|
2900
3009
|
* * Display Name: Updated At
|
|
2901
3010
|
* * SQL Data Type: datetime
|
|
3011
|
+
* * Default Value: getdate()
|
|
2902
3012
|
*/
|
|
2903
3013
|
get UpdatedAt(): Date;
|
|
2904
3014
|
/**
|
|
@@ -2985,6 +3095,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
2985
3095
|
* * Field Name: CanCreate
|
|
2986
3096
|
* * Display Name: Can Create
|
|
2987
3097
|
* * SQL Data Type: bit
|
|
3098
|
+
* * Default Value: 0
|
|
2988
3099
|
*/
|
|
2989
3100
|
get CanCreate(): boolean;
|
|
2990
3101
|
set CanCreate(value: boolean);
|
|
@@ -2992,6 +3103,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
2992
3103
|
* * Field Name: CanRead
|
|
2993
3104
|
* * Display Name: Can Read
|
|
2994
3105
|
* * SQL Data Type: bit
|
|
3106
|
+
* * Default Value: 0
|
|
2995
3107
|
*/
|
|
2996
3108
|
get CanRead(): boolean;
|
|
2997
3109
|
set CanRead(value: boolean);
|
|
@@ -2999,6 +3111,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
2999
3111
|
* * Field Name: CanUpdate
|
|
3000
3112
|
* * Display Name: Can Update
|
|
3001
3113
|
* * SQL Data Type: bit
|
|
3114
|
+
* * Default Value: 0
|
|
3002
3115
|
*/
|
|
3003
3116
|
get CanUpdate(): boolean;
|
|
3004
3117
|
set CanUpdate(value: boolean);
|
|
@@ -3006,6 +3119,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3006
3119
|
* * Field Name: CanDelete
|
|
3007
3120
|
* * Display Name: Can Delete
|
|
3008
3121
|
* * SQL Data Type: bit
|
|
3122
|
+
* * Default Value: 0
|
|
3009
3123
|
*/
|
|
3010
3124
|
get CanDelete(): boolean;
|
|
3011
3125
|
set CanDelete(value: boolean);
|
|
@@ -3045,12 +3159,14 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3045
3159
|
* * Field Name: CreatedAt
|
|
3046
3160
|
* * Display Name: Created At
|
|
3047
3161
|
* * SQL Data Type: datetime
|
|
3162
|
+
* * Default Value: getdate()
|
|
3048
3163
|
*/
|
|
3049
3164
|
get CreatedAt(): Date;
|
|
3050
3165
|
/**
|
|
3051
3166
|
* * Field Name: UpdatedAt
|
|
3052
3167
|
* * Display Name: Updated At
|
|
3053
3168
|
* * SQL Data Type: datetime
|
|
3169
|
+
* * Default Value: getdate()
|
|
3054
3170
|
*/
|
|
3055
3171
|
get UpdatedAt(): Date;
|
|
3056
3172
|
/**
|
|
@@ -3136,6 +3252,7 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
|
|
|
3136
3252
|
/**
|
|
3137
3253
|
* * Field Name: Sequence
|
|
3138
3254
|
* * SQL Data Type: int
|
|
3255
|
+
* * Default Value: 0
|
|
3139
3256
|
*/
|
|
3140
3257
|
get Sequence(): number;
|
|
3141
3258
|
set Sequence(value: number);
|
|
@@ -3205,6 +3322,7 @@ export declare class UserApplicationEntity extends BaseEntity {
|
|
|
3205
3322
|
/**
|
|
3206
3323
|
* * Field Name: Sequence
|
|
3207
3324
|
* * SQL Data Type: int
|
|
3325
|
+
* * Default Value: 0
|
|
3208
3326
|
*/
|
|
3209
3327
|
get Sequence(): number;
|
|
3210
3328
|
set Sequence(value: number);
|
|
@@ -3212,6 +3330,7 @@ export declare class UserApplicationEntity extends BaseEntity {
|
|
|
3212
3330
|
* * Field Name: IsActive
|
|
3213
3331
|
* * Display Name: Is Active
|
|
3214
3332
|
* * SQL Data Type: bit
|
|
3333
|
+
* * Default Value: 1
|
|
3215
3334
|
*/
|
|
3216
3335
|
get IsActive(): boolean;
|
|
3217
3336
|
set IsActive(value: boolean);
|
|
@@ -3277,6 +3396,7 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
|
|
|
3277
3396
|
* * Field Name: ExecutedAt
|
|
3278
3397
|
* * Display Name: Executed At
|
|
3279
3398
|
* * SQL Data Type: datetime
|
|
3399
|
+
* * Default Value: getdate()
|
|
3280
3400
|
*/
|
|
3281
3401
|
get ExecutedAt(): Date;
|
|
3282
3402
|
set ExecutedAt(value: Date);
|
|
@@ -3284,6 +3404,7 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
|
|
|
3284
3404
|
* * Field Name: IsSuccess
|
|
3285
3405
|
* * Display Name: Is Success
|
|
3286
3406
|
* * SQL Data Type: bit
|
|
3407
|
+
* * Default Value: 0
|
|
3287
3408
|
*/
|
|
3288
3409
|
get IsSuccess(): boolean;
|
|
3289
3410
|
set IsSuccess(value: boolean);
|
|
@@ -3392,12 +3513,14 @@ export declare class ListEntity extends BaseEntity {
|
|
|
3392
3513
|
* * Field Name: CreatedAt
|
|
3393
3514
|
* * Display Name: Created At
|
|
3394
3515
|
* * SQL Data Type: datetime
|
|
3516
|
+
* * Default Value: getdate()
|
|
3395
3517
|
*/
|
|
3396
3518
|
get CreatedAt(): Date;
|
|
3397
3519
|
/**
|
|
3398
3520
|
* * Field Name: UpdatedAt
|
|
3399
3521
|
* * Display Name: Updated At
|
|
3400
3522
|
* * SQL Data Type: datetime
|
|
3523
|
+
* * Default Value: getdate()
|
|
3401
3524
|
*/
|
|
3402
3525
|
get UpdatedAt(): Date;
|
|
3403
3526
|
/**
|
|
@@ -3467,6 +3590,7 @@ export declare class ListDetailEntity extends BaseEntity {
|
|
|
3467
3590
|
/**
|
|
3468
3591
|
* * Field Name: Sequence
|
|
3469
3592
|
* * SQL Data Type: int
|
|
3593
|
+
* * Default Value: 0
|
|
3470
3594
|
*/
|
|
3471
3595
|
get Sequence(): number;
|
|
3472
3596
|
set Sequence(value: number);
|
|
@@ -3686,6 +3810,7 @@ export declare class WorkflowRunEntity extends BaseEntity {
|
|
|
3686
3810
|
/**
|
|
3687
3811
|
* * Field Name: Status
|
|
3688
3812
|
* * SQL Data Type: nchar(10)
|
|
3813
|
+
* * Default Value: Pending
|
|
3689
3814
|
* * Value List Type: List
|
|
3690
3815
|
* * Possible Values
|
|
3691
3816
|
* * Pending
|
|
@@ -3790,18 +3915,21 @@ export declare class WorkflowEntity extends BaseEntity {
|
|
|
3790
3915
|
* * Field Name: CreatedAt
|
|
3791
3916
|
* * Display Name: Created At
|
|
3792
3917
|
* * SQL Data Type: datetime
|
|
3918
|
+
* * Default Value: getdate()
|
|
3793
3919
|
*/
|
|
3794
3920
|
get CreatedAt(): Date;
|
|
3795
3921
|
/**
|
|
3796
3922
|
* * Field Name: UpdatedAt
|
|
3797
3923
|
* * Display Name: Updated At
|
|
3798
3924
|
* * SQL Data Type: datetime
|
|
3925
|
+
* * Default Value: getdate()
|
|
3799
3926
|
*/
|
|
3800
3927
|
get UpdatedAt(): Date;
|
|
3801
3928
|
/**
|
|
3802
3929
|
* * Field Name: AutoRunEnabled
|
|
3803
3930
|
* * Display Name: Auto Run Enabled
|
|
3804
3931
|
* * SQL Data Type: bit
|
|
3932
|
+
* * Default Value: 0
|
|
3805
3933
|
* * Description: If set to 1, the workflow will be run automatically on the interval specified by the AutoRunIntervalType and AutoRunInterval fields
|
|
3806
3934
|
*/
|
|
3807
3935
|
get AutoRunEnabled(): boolean;
|
|
@@ -3912,12 +4040,14 @@ export declare class WorkflowEngineEntity extends BaseEntity {
|
|
|
3912
4040
|
* * Field Name: CreatedAt
|
|
3913
4041
|
* * Display Name: Created At
|
|
3914
4042
|
* * SQL Data Type: datetime
|
|
4043
|
+
* * Default Value: getdate()
|
|
3915
4044
|
*/
|
|
3916
4045
|
get CreatedAt(): Date;
|
|
3917
4046
|
/**
|
|
3918
4047
|
* * Field Name: UpdatedAt
|
|
3919
4048
|
* * Display Name: Updated At
|
|
3920
4049
|
* * SQL Data Type: datetime
|
|
4050
|
+
* * Default Value: getdate()
|
|
3921
4051
|
*/
|
|
3922
4052
|
get UpdatedAt(): Date;
|
|
3923
4053
|
}
|
|
@@ -3986,6 +4116,7 @@ export declare class RecordChangeEntity extends BaseEntity {
|
|
|
3986
4116
|
* * Field Name: ChangedAt
|
|
3987
4117
|
* * Display Name: Changed At
|
|
3988
4118
|
* * SQL Data Type: datetime
|
|
4119
|
+
* * Default Value: getdate()
|
|
3989
4120
|
*/
|
|
3990
4121
|
get ChangedAt(): Date;
|
|
3991
4122
|
set ChangedAt(value: Date);
|
|
@@ -4013,6 +4144,7 @@ export declare class RecordChangeEntity extends BaseEntity {
|
|
|
4013
4144
|
/**
|
|
4014
4145
|
* * Field Name: Status
|
|
4015
4146
|
* * SQL Data Type: nchar(15)
|
|
4147
|
+
* * Default Value: Complete
|
|
4016
4148
|
* * Value List Type: List
|
|
4017
4149
|
* * Possible Values
|
|
4018
4150
|
* * Pending
|
|
@@ -4088,12 +4220,14 @@ export declare class UserRoleEntity extends BaseEntity {
|
|
|
4088
4220
|
* * Field Name: CreatedAt
|
|
4089
4221
|
* * Display Name: Created At
|
|
4090
4222
|
* * SQL Data Type: datetime
|
|
4223
|
+
* * Default Value: getdate()
|
|
4091
4224
|
*/
|
|
4092
4225
|
get CreatedAt(): Date;
|
|
4093
4226
|
/**
|
|
4094
4227
|
* * Field Name: UpdatedAt
|
|
4095
4228
|
* * Display Name: Updated At
|
|
4096
4229
|
* * SQL Data Type: datetime
|
|
4230
|
+
* * Default Value: getdate()
|
|
4097
4231
|
*/
|
|
4098
4232
|
get UpdatedAt(): Date;
|
|
4099
4233
|
/**
|
|
@@ -4175,12 +4309,14 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity {
|
|
|
4175
4309
|
* * Field Name: CreatedAt
|
|
4176
4310
|
* * Display Name: Created At
|
|
4177
4311
|
* * SQL Data Type: datetime
|
|
4312
|
+
* * Default Value: getdate()
|
|
4178
4313
|
*/
|
|
4179
4314
|
get CreatedAt(): Date;
|
|
4180
4315
|
/**
|
|
4181
4316
|
* * Field Name: UpdatedAt
|
|
4182
4317
|
* * Display Name: Updated At
|
|
4183
4318
|
* * SQL Data Type: datetime
|
|
4319
|
+
* * Default Value: getdate()
|
|
4184
4320
|
*/
|
|
4185
4321
|
get UpdatedAt(): Date;
|
|
4186
4322
|
}
|
|
@@ -4250,6 +4386,7 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4250
4386
|
* * Field Name: Status
|
|
4251
4387
|
* * Display Name: Status
|
|
4252
4388
|
* * SQL Data Type: nvarchar(50)
|
|
4389
|
+
* * Default Value: Allow
|
|
4253
4390
|
* * Value List Type: List
|
|
4254
4391
|
* * Possible Values
|
|
4255
4392
|
* * Success
|
|
@@ -4290,12 +4427,14 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4290
4427
|
* * Field Name: CreatedAt
|
|
4291
4428
|
* * Display Name: Created At
|
|
4292
4429
|
* * SQL Data Type: datetime
|
|
4430
|
+
* * Default Value: getdate()
|
|
4293
4431
|
*/
|
|
4294
4432
|
get CreatedAt(): Date;
|
|
4295
4433
|
/**
|
|
4296
4434
|
* * Field Name: UpdatedAt
|
|
4297
4435
|
* * Display Name: Updated At
|
|
4298
4436
|
* * SQL Data Type: datetime
|
|
4437
|
+
* * Default Value: getdate()
|
|
4299
4438
|
*/
|
|
4300
4439
|
get UpdatedAt(): Date;
|
|
4301
4440
|
/**
|
|
@@ -4377,6 +4516,7 @@ export declare class AuthorizationEntity extends BaseEntity {
|
|
|
4377
4516
|
* * Field Name: IsActive
|
|
4378
4517
|
* * Display Name: Is Active
|
|
4379
4518
|
* * SQL Data Type: bit
|
|
4519
|
+
* * Default Value: 1
|
|
4380
4520
|
*/
|
|
4381
4521
|
get IsActive(): boolean;
|
|
4382
4522
|
set IsActive(value: boolean);
|
|
@@ -4384,6 +4524,7 @@ export declare class AuthorizationEntity extends BaseEntity {
|
|
|
4384
4524
|
* * Field Name: UseAuditLog
|
|
4385
4525
|
* * Display Name: Use Audit Log
|
|
4386
4526
|
* * SQL Data Type: bit
|
|
4527
|
+
* * Default Value: 1
|
|
4387
4528
|
*/
|
|
4388
4529
|
get UseAuditLog(): boolean;
|
|
4389
4530
|
set UseAuditLog(value: boolean);
|
|
@@ -4398,12 +4539,14 @@ export declare class AuthorizationEntity extends BaseEntity {
|
|
|
4398
4539
|
* * Field Name: CreatedAt
|
|
4399
4540
|
* * Display Name: Created At
|
|
4400
4541
|
* * SQL Data Type: datetime
|
|
4542
|
+
* * Default Value: getdate()
|
|
4401
4543
|
*/
|
|
4402
4544
|
get CreatedAt(): Date;
|
|
4403
4545
|
/**
|
|
4404
4546
|
* * Field Name: UpdatedAt
|
|
4405
4547
|
* * Display Name: Updated At
|
|
4406
4548
|
* * SQL Data Type: datetime
|
|
4549
|
+
* * Default Value: getdate()
|
|
4407
4550
|
*/
|
|
4408
4551
|
get UpdatedAt(): Date;
|
|
4409
4552
|
/**
|
|
@@ -4480,6 +4623,7 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
|
|
|
4480
4623
|
* * Field Name: Type
|
|
4481
4624
|
* * Display Name: Type
|
|
4482
4625
|
* * SQL Data Type: nchar(10)
|
|
4626
|
+
* * Default Value: grant
|
|
4483
4627
|
* * Value List Type: List
|
|
4484
4628
|
* * Possible Values
|
|
4485
4629
|
* * Allow - User allowed to execute tasks linked to this authorization
|
|
@@ -4491,12 +4635,14 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
|
|
|
4491
4635
|
* * Field Name: CreatedAt
|
|
4492
4636
|
* * Display Name: Created At
|
|
4493
4637
|
* * SQL Data Type: datetime
|
|
4638
|
+
* * Default Value: getdate()
|
|
4494
4639
|
*/
|
|
4495
4640
|
get CreatedAt(): Date;
|
|
4496
4641
|
/**
|
|
4497
4642
|
* * Field Name: UpdatedAt
|
|
4498
4643
|
* * Display Name: Updated At
|
|
4499
4644
|
* * SQL Data Type: datetime
|
|
4645
|
+
* * Default Value: getdate()
|
|
4500
4646
|
*/
|
|
4501
4647
|
get UpdatedAt(): Date;
|
|
4502
4648
|
}
|
|
@@ -4581,12 +4727,14 @@ export declare class AuditLogTypeEntity extends BaseEntity {
|
|
|
4581
4727
|
* * Field Name: CreatedAt
|
|
4582
4728
|
* * Display Name: Created At
|
|
4583
4729
|
* * SQL Data Type: datetime
|
|
4730
|
+
* * Default Value: getdate()
|
|
4584
4731
|
*/
|
|
4585
4732
|
get CreatedAt(): Date;
|
|
4586
4733
|
/**
|
|
4587
4734
|
* * Field Name: UpdatedAt
|
|
4588
4735
|
* * Display Name: Updated At
|
|
4589
4736
|
* * SQL Data Type: datetime
|
|
4737
|
+
* * Default Value: getdate()
|
|
4590
4738
|
*/
|
|
4591
4739
|
get UpdatedAt(): Date;
|
|
4592
4740
|
/**
|
|
@@ -4691,12 +4839,14 @@ export declare class EntityFieldValueEntity extends BaseEntity {
|
|
|
4691
4839
|
* * Field Name: CreatedAt
|
|
4692
4840
|
* * Display Name: Created At
|
|
4693
4841
|
* * SQL Data Type: datetime
|
|
4842
|
+
* * Default Value: getdate()
|
|
4694
4843
|
*/
|
|
4695
4844
|
get CreatedAt(): Date;
|
|
4696
4845
|
/**
|
|
4697
4846
|
* * Field Name: UpdatedAt
|
|
4698
4847
|
* * Display Name: Updated At
|
|
4699
4848
|
* * SQL Data Type: datetime
|
|
4849
|
+
* * Default Value: getdate()
|
|
4700
4850
|
*/
|
|
4701
4851
|
get UpdatedAt(): Date;
|
|
4702
4852
|
/**
|
|
@@ -4737,15 +4887,6 @@ export declare class AIModelEntity extends BaseEntity {
|
|
|
4737
4887
|
*/
|
|
4738
4888
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4739
4889
|
/**
|
|
4740
|
-
* AI Models - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
4741
|
-
* @public
|
|
4742
|
-
* @method
|
|
4743
|
-
* @override
|
|
4744
|
-
* @memberof AIModelEntity
|
|
4745
|
-
* @throws {Error} - Delete is not allowed for AI Models, to enable it set AllowDeleteAPI to 1 in the database.
|
|
4746
|
-
*/
|
|
4747
|
-
Delete(): Promise<boolean>;
|
|
4748
|
-
/**
|
|
4749
4890
|
* * Field Name: ID
|
|
4750
4891
|
* * Display Name: ID
|
|
4751
4892
|
* * SQL Data Type: int
|
|
@@ -4777,6 +4918,7 @@ export declare class AIModelEntity extends BaseEntity {
|
|
|
4777
4918
|
* * Field Name: IsActive
|
|
4778
4919
|
* * Display Name: Is Active
|
|
4779
4920
|
* * SQL Data Type: bit
|
|
4921
|
+
* * Default Value: 1
|
|
4780
4922
|
*/
|
|
4781
4923
|
get IsActive(): boolean;
|
|
4782
4924
|
set IsActive(value: boolean);
|
|
@@ -4821,12 +4963,14 @@ export declare class AIModelEntity extends BaseEntity {
|
|
|
4821
4963
|
* * Field Name: CreatedAt
|
|
4822
4964
|
* * Display Name: Created At
|
|
4823
4965
|
* * SQL Data Type: datetime
|
|
4966
|
+
* * Default Value: getdate()
|
|
4824
4967
|
*/
|
|
4825
4968
|
get CreatedAt(): Date;
|
|
4826
4969
|
/**
|
|
4827
4970
|
* * Field Name: UpdatedAt
|
|
4828
4971
|
* * Display Name: Updated At
|
|
4829
4972
|
* * SQL Data Type: datetime
|
|
4973
|
+
* * Default Value: getdate()
|
|
4830
4974
|
*/
|
|
4831
4975
|
get UpdatedAt(): Date;
|
|
4832
4976
|
/**
|
|
@@ -4899,6 +5043,7 @@ export declare class AIActionEntity extends BaseEntity {
|
|
|
4899
5043
|
* * Field Name: IsActive
|
|
4900
5044
|
* * Display Name: Is Active
|
|
4901
5045
|
* * SQL Data Type: bit
|
|
5046
|
+
* * Default Value: 1
|
|
4902
5047
|
*/
|
|
4903
5048
|
get IsActive(): boolean;
|
|
4904
5049
|
set IsActive(value: boolean);
|
|
@@ -4906,12 +5051,14 @@ export declare class AIActionEntity extends BaseEntity {
|
|
|
4906
5051
|
* * Field Name: CreatedAt
|
|
4907
5052
|
* * Display Name: Created At
|
|
4908
5053
|
* * SQL Data Type: datetime
|
|
5054
|
+
* * Default Value: getdate()
|
|
4909
5055
|
*/
|
|
4910
5056
|
get CreatedAt(): Date;
|
|
4911
5057
|
/**
|
|
4912
5058
|
* * Field Name: UpdatedAt
|
|
4913
5059
|
* * Display Name: Updated At
|
|
4914
5060
|
* * SQL Data Type: datetime
|
|
5061
|
+
* * Default Value: getdate()
|
|
4915
5062
|
*/
|
|
4916
5063
|
get UpdatedAt(): Date;
|
|
4917
5064
|
/**
|
|
@@ -4971,6 +5118,7 @@ export declare class AIModelActionEntity extends BaseEntity {
|
|
|
4971
5118
|
* * Field Name: IsActive
|
|
4972
5119
|
* * Display Name: Is Active
|
|
4973
5120
|
* * SQL Data Type: bit
|
|
5121
|
+
* * Default Value: 1
|
|
4974
5122
|
*/
|
|
4975
5123
|
get IsActive(): boolean;
|
|
4976
5124
|
set IsActive(value: boolean);
|
|
@@ -4978,12 +5126,14 @@ export declare class AIModelActionEntity extends BaseEntity {
|
|
|
4978
5126
|
* * Field Name: CreatedAt
|
|
4979
5127
|
* * Display Name: Created At
|
|
4980
5128
|
* * SQL Data Type: datetime
|
|
5129
|
+
* * Default Value: getdate()
|
|
4981
5130
|
*/
|
|
4982
5131
|
get CreatedAt(): Date;
|
|
4983
5132
|
/**
|
|
4984
5133
|
* * Field Name: UpdatedAt
|
|
4985
5134
|
* * Display Name: Updated At
|
|
4986
5135
|
* * SQL Data Type: datetime
|
|
5136
|
+
* * Default Value: getdate()
|
|
4987
5137
|
*/
|
|
4988
5138
|
get UpdatedAt(): Date;
|
|
4989
5139
|
/**
|
|
@@ -5071,6 +5221,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5071
5221
|
* * Field Name: TriggerEvent
|
|
5072
5222
|
* * Display Name: Trigger Event
|
|
5073
5223
|
* * SQL Data Type: nchar(15)
|
|
5224
|
+
* * Default Value: After Save
|
|
5074
5225
|
* * Value List Type: List
|
|
5075
5226
|
* * Possible Values
|
|
5076
5227
|
* * after save
|
|
@@ -5089,6 +5240,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5089
5240
|
* * Field Name: OutputType
|
|
5090
5241
|
* * Display Name: Output Type
|
|
5091
5242
|
* * SQL Data Type: nchar(10)
|
|
5243
|
+
* * Default Value: FIeld
|
|
5092
5244
|
* * Value List Type: List
|
|
5093
5245
|
* * Possible Values
|
|
5094
5246
|
* * entity
|
|
@@ -5107,6 +5259,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5107
5259
|
* * Field Name: SkipIfOutputFieldNotEmpty
|
|
5108
5260
|
* * Display Name: Skip If Output Field Not Empty
|
|
5109
5261
|
* * SQL Data Type: bit
|
|
5262
|
+
* * Default Value: 1
|
|
5110
5263
|
*/
|
|
5111
5264
|
get SkipIfOutputFieldNotEmpty(): boolean;
|
|
5112
5265
|
set SkipIfOutputFieldNotEmpty(value: boolean);
|
|
@@ -5175,15 +5328,6 @@ export declare class AIModelTypeEntity extends BaseEntity {
|
|
|
5175
5328
|
*/
|
|
5176
5329
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5177
5330
|
/**
|
|
5178
|
-
* AI Model Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
5179
|
-
* @public
|
|
5180
|
-
* @method
|
|
5181
|
-
* @override
|
|
5182
|
-
* @memberof AIModelTypeEntity
|
|
5183
|
-
* @throws {Error} - Delete is not allowed for AI Model Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
5184
|
-
*/
|
|
5185
|
-
Delete(): Promise<boolean>;
|
|
5186
|
-
/**
|
|
5187
5331
|
* * Field Name: ID
|
|
5188
5332
|
* * Display Name: ID
|
|
5189
5333
|
* * SQL Data Type: int
|
|
@@ -5283,6 +5427,7 @@ export declare class QueueTypeEntity extends BaseEntity {
|
|
|
5283
5427
|
* * Field Name: IsActive
|
|
5284
5428
|
* * Display Name: Is Active
|
|
5285
5429
|
* * SQL Data Type: bit
|
|
5430
|
+
* * Default Value: 1
|
|
5286
5431
|
*/
|
|
5287
5432
|
get IsActive(): boolean;
|
|
5288
5433
|
set IsActive(value: boolean);
|
|
@@ -5352,6 +5497,7 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
5352
5497
|
* * Field Name: IsActive
|
|
5353
5498
|
* * Display Name: Is Active
|
|
5354
5499
|
* * SQL Data Type: bit
|
|
5500
|
+
* * Default Value: 0
|
|
5355
5501
|
*/
|
|
5356
5502
|
get IsActive(): boolean;
|
|
5357
5503
|
set IsActive(value: boolean);
|
|
@@ -5436,6 +5582,7 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
5436
5582
|
* * Field Name: LastHeartbeat
|
|
5437
5583
|
* * Display Name: Last Heartbeat
|
|
5438
5584
|
* * SQL Data Type: datetime
|
|
5585
|
+
* * Default Value: getdate()
|
|
5439
5586
|
*/
|
|
5440
5587
|
get LastHeartbeat(): Date;
|
|
5441
5588
|
set LastHeartbeat(value: Date);
|
|
@@ -5443,12 +5590,14 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
5443
5590
|
* * Field Name: CreatedAt
|
|
5444
5591
|
* * Display Name: Created At
|
|
5445
5592
|
* * SQL Data Type: datetime
|
|
5593
|
+
* * Default Value: getdate()
|
|
5446
5594
|
*/
|
|
5447
5595
|
get CreatedAt(): Date;
|
|
5448
5596
|
/**
|
|
5449
5597
|
* * Field Name: UpdatedAt
|
|
5450
5598
|
* * Display Name: Updated At
|
|
5451
5599
|
* * SQL Data Type: datetime
|
|
5600
|
+
* * Default Value: getdate()
|
|
5452
5601
|
*/
|
|
5453
5602
|
get UpdatedAt(): Date;
|
|
5454
5603
|
/**
|
|
@@ -5508,6 +5657,7 @@ export declare class QueueTaskEntity extends BaseEntity {
|
|
|
5508
5657
|
* * Field Name: Status
|
|
5509
5658
|
* * Display Name: Status
|
|
5510
5659
|
* * SQL Data Type: nchar(10)
|
|
5660
|
+
* * Default Value: Pending
|
|
5511
5661
|
* * Value List Type: List
|
|
5512
5662
|
* * Possible Values
|
|
5513
5663
|
* * In Progress
|
|
@@ -5908,6 +6058,7 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5908
6058
|
* * Field Name: SharingScope
|
|
5909
6059
|
* * Display Name: Sharing Scope
|
|
5910
6060
|
* * SQL Data Type: nvarchar(20)
|
|
6061
|
+
* * Default Value: Personal
|
|
5911
6062
|
* * Value List Type: List
|
|
5912
6063
|
* * Possible Values
|
|
5913
6064
|
* * None
|
|
@@ -6005,12 +6156,14 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
6005
6156
|
* * Field Name: CreatedAt
|
|
6006
6157
|
* * Display Name: Created At
|
|
6007
6158
|
* * SQL Data Type: datetime
|
|
6159
|
+
* * Default Value: getdate()
|
|
6008
6160
|
*/
|
|
6009
6161
|
get CreatedAt(): Date;
|
|
6010
6162
|
/**
|
|
6011
6163
|
* * Field Name: UpdatedAt
|
|
6012
6164
|
* * Display Name: Updated At
|
|
6013
6165
|
* * SQL Data Type: datetime
|
|
6166
|
+
* * Default Value: getdate()
|
|
6014
6167
|
*/
|
|
6015
6168
|
get UpdatedAt(): Date;
|
|
6016
6169
|
/**
|
|
@@ -6116,6 +6269,7 @@ export declare class ReportSnapshotEntity extends BaseEntity {
|
|
|
6116
6269
|
* * Field Name: CreatedAt
|
|
6117
6270
|
* * Display Name: Created At
|
|
6118
6271
|
* * SQL Data Type: datetime
|
|
6272
|
+
* * Default Value: getdate()
|
|
6119
6273
|
*/
|
|
6120
6274
|
get CreatedAt(): Date;
|
|
6121
6275
|
/**
|
|
@@ -6226,12 +6380,14 @@ export declare class ResourceTypeEntity extends BaseEntity {
|
|
|
6226
6380
|
* * Field Name: CreatedAt
|
|
6227
6381
|
* * Display Name: Created At
|
|
6228
6382
|
* * SQL Data Type: datetime
|
|
6383
|
+
* * Default Value: getdate()
|
|
6229
6384
|
*/
|
|
6230
6385
|
get CreatedAt(): Date;
|
|
6231
6386
|
/**
|
|
6232
6387
|
* * Field Name: UpdatedAt
|
|
6233
6388
|
* * Display Name: Updated At
|
|
6234
6389
|
* * SQL Data Type: datetime
|
|
6390
|
+
* * Default Value: getdate()
|
|
6235
6391
|
*/
|
|
6236
6392
|
get UpdatedAt(): Date;
|
|
6237
6393
|
/**
|
|
@@ -6456,12 +6612,14 @@ export declare class WorkspaceEntity extends BaseEntity {
|
|
|
6456
6612
|
* * Field Name: CreatedAt
|
|
6457
6613
|
* * Display Name: Created At
|
|
6458
6614
|
* * SQL Data Type: datetime
|
|
6615
|
+
* * Default Value: getdate()
|
|
6459
6616
|
*/
|
|
6460
6617
|
get CreatedAt(): Date;
|
|
6461
6618
|
/**
|
|
6462
6619
|
* * Field Name: UpdatedAt
|
|
6463
6620
|
* * Display Name: Updated At
|
|
6464
6621
|
* * SQL Data Type: datetime
|
|
6622
|
+
* * Default Value: getdate()
|
|
6465
6623
|
*/
|
|
6466
6624
|
get UpdatedAt(): Date;
|
|
6467
6625
|
/**
|
|
@@ -6556,12 +6714,14 @@ export declare class WorkspaceItemEntity extends BaseEntity {
|
|
|
6556
6714
|
* * Field Name: CreatedAt
|
|
6557
6715
|
* * Display Name: Created At
|
|
6558
6716
|
* * SQL Data Type: datetime
|
|
6717
|
+
* * Default Value: getdate()
|
|
6559
6718
|
*/
|
|
6560
6719
|
get CreatedAt(): Date;
|
|
6561
6720
|
/**
|
|
6562
6721
|
* * Field Name: UpdatedAt
|
|
6563
6722
|
* * Display Name: Updated At
|
|
6564
6723
|
* * SQL Data Type: datetime
|
|
6724
|
+
* * Default Value: getdate()
|
|
6565
6725
|
*/
|
|
6566
6726
|
get UpdatedAt(): Date;
|
|
6567
6727
|
/**
|
|
@@ -6643,12 +6803,14 @@ export declare class DatasetEntity extends BaseEntity {
|
|
|
6643
6803
|
* * Field Name: CreatedAt
|
|
6644
6804
|
* * Display Name: Created At
|
|
6645
6805
|
* * SQL Data Type: datetime
|
|
6806
|
+
* * Default Value: getdate()
|
|
6646
6807
|
*/
|
|
6647
6808
|
get CreatedAt(): Date;
|
|
6648
6809
|
/**
|
|
6649
6810
|
* * Field Name: UpdatedAt
|
|
6650
6811
|
* * Display Name: Updated At
|
|
6651
6812
|
* * SQL Data Type: datetime
|
|
6813
|
+
* * Default Value: getdate()
|
|
6652
6814
|
*/
|
|
6653
6815
|
get UpdatedAt(): Date;
|
|
6654
6816
|
}
|
|
@@ -6719,6 +6881,7 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
6719
6881
|
* * Field Name: Sequence
|
|
6720
6882
|
* * Display Name: Sequence
|
|
6721
6883
|
* * SQL Data Type: int
|
|
6884
|
+
* * Default Value: 0
|
|
6722
6885
|
*/
|
|
6723
6886
|
get Sequence(): number;
|
|
6724
6887
|
set Sequence(value: number);
|
|
@@ -6755,12 +6918,14 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
6755
6918
|
* * Field Name: CreatedAt
|
|
6756
6919
|
* * Display Name: Created At
|
|
6757
6920
|
* * SQL Data Type: datetime
|
|
6921
|
+
* * Default Value: getdate()
|
|
6758
6922
|
*/
|
|
6759
6923
|
get CreatedAt(): Date;
|
|
6760
6924
|
/**
|
|
6761
6925
|
* * Field Name: UpdatedAt
|
|
6762
6926
|
* * Display Name: Updated At
|
|
6763
6927
|
* * SQL Data Type: datetime
|
|
6928
|
+
* * Default Value: getdate()
|
|
6764
6929
|
*/
|
|
6765
6930
|
get UpdatedAt(): Date;
|
|
6766
6931
|
/**
|
|
@@ -6818,6 +6983,7 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
6818
6983
|
* * Field Name: Role
|
|
6819
6984
|
* * Display Name: Role
|
|
6820
6985
|
* * SQL Data Type: nvarchar(20)
|
|
6986
|
+
* * Default Value: user_name()
|
|
6821
6987
|
* * Value List Type: List
|
|
6822
6988
|
* * Possible Values
|
|
6823
6989
|
* * User
|
|
@@ -6844,6 +7010,7 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
6844
7010
|
* * Field Name: HiddenToUser
|
|
6845
7011
|
* * Display Name: Hidden To User
|
|
6846
7012
|
* * SQL Data Type: bit
|
|
7013
|
+
* * Default Value: 0
|
|
6847
7014
|
*/
|
|
6848
7015
|
get HiddenToUser(): boolean;
|
|
6849
7016
|
set HiddenToUser(value: boolean);
|
|
@@ -6851,12 +7018,14 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
6851
7018
|
* * Field Name: CreatedAt
|
|
6852
7019
|
* * Display Name: Created At
|
|
6853
7020
|
* * SQL Data Type: datetime
|
|
7021
|
+
* * Default Value: getdate()
|
|
6854
7022
|
*/
|
|
6855
7023
|
get CreatedAt(): Date;
|
|
6856
7024
|
/**
|
|
6857
7025
|
* * Field Name: UpdatedAt
|
|
6858
7026
|
* * Display Name: Updated At
|
|
6859
7027
|
* * SQL Data Type: datetime
|
|
7028
|
+
* * Default Value: getdate()
|
|
6860
7029
|
*/
|
|
6861
7030
|
get UpdatedAt(): Date;
|
|
6862
7031
|
/**
|
|
@@ -6928,6 +7097,7 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
6928
7097
|
* * Field Name: Type
|
|
6929
7098
|
* * Display Name: Type
|
|
6930
7099
|
* * SQL Data Type: nvarchar(50)
|
|
7100
|
+
* * Default Value: Skip
|
|
6931
7101
|
*/
|
|
6932
7102
|
get Type(): string;
|
|
6933
7103
|
set Type(value: string);
|
|
@@ -6935,6 +7105,7 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
6935
7105
|
* * Field Name: IsArchived
|
|
6936
7106
|
* * Display Name: Is Archived
|
|
6937
7107
|
* * SQL Data Type: bit
|
|
7108
|
+
* * Default Value: 0
|
|
6938
7109
|
*/
|
|
6939
7110
|
get IsArchived(): boolean;
|
|
6940
7111
|
set IsArchived(value: boolean);
|
|
@@ -6964,12 +7135,14 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
6964
7135
|
* * Field Name: CreatedAt
|
|
6965
7136
|
* * Display Name: Created At
|
|
6966
7137
|
* * SQL Data Type: datetime
|
|
7138
|
+
* * Default Value: getdate()
|
|
6967
7139
|
*/
|
|
6968
7140
|
get CreatedAt(): Date;
|
|
6969
7141
|
/**
|
|
6970
7142
|
* * Field Name: UpdatedAt
|
|
6971
7143
|
* * Display Name: Updated At
|
|
6972
7144
|
* * SQL Data Type: datetime
|
|
7145
|
+
* * Default Value: getdate()
|
|
6973
7146
|
*/
|
|
6974
7147
|
get UpdatedAt(): Date;
|
|
6975
7148
|
/**
|
|
@@ -7061,6 +7234,7 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
7061
7234
|
* * Field Name: Unread
|
|
7062
7235
|
* * Display Name: Unread
|
|
7063
7236
|
* * SQL Data Type: bit
|
|
7237
|
+
* * Default Value: 1
|
|
7064
7238
|
*/
|
|
7065
7239
|
get Unread(): boolean;
|
|
7066
7240
|
set Unread(value: boolean);
|
|
@@ -7075,12 +7249,14 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
7075
7249
|
* * Field Name: CreatedAt
|
|
7076
7250
|
* * Display Name: Created At
|
|
7077
7251
|
* * SQL Data Type: datetime
|
|
7252
|
+
* * Default Value: getdate()
|
|
7078
7253
|
*/
|
|
7079
7254
|
get CreatedAt(): Date;
|
|
7080
7255
|
/**
|
|
7081
7256
|
* * Field Name: UpdatedAt
|
|
7082
7257
|
* * Display Name: Updated At
|
|
7083
7258
|
* * SQL Data Type: datetime
|
|
7259
|
+
* * Default Value: getdate()
|
|
7084
7260
|
*/
|
|
7085
7261
|
get UpdatedAt(): Date;
|
|
7086
7262
|
/**
|
|
@@ -7161,12 +7337,14 @@ export declare class SchemaInfoEntity extends BaseEntity {
|
|
|
7161
7337
|
* * Field Name: CreatedAt
|
|
7162
7338
|
* * Display Name: Created At
|
|
7163
7339
|
* * SQL Data Type: datetime
|
|
7340
|
+
* * Default Value: getdate()
|
|
7164
7341
|
*/
|
|
7165
7342
|
get CreatedAt(): Date;
|
|
7166
7343
|
/**
|
|
7167
7344
|
* * Field Name: UpdatedAt
|
|
7168
7345
|
* * Display Name: Updated At
|
|
7169
7346
|
* * SQL Data Type: datetime
|
|
7347
|
+
* * Default Value: getdate()
|
|
7170
7348
|
*/
|
|
7171
7349
|
get UpdatedAt(): Date;
|
|
7172
7350
|
}
|
|
@@ -7242,12 +7420,14 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
|
|
|
7242
7420
|
* * Field Name: CreatedAt
|
|
7243
7421
|
* * Display Name: Created At
|
|
7244
7422
|
* * SQL Data Type: datetime
|
|
7423
|
+
* * Default Value: getdate()
|
|
7245
7424
|
*/
|
|
7246
7425
|
get CreatedAt(): Date;
|
|
7247
7426
|
/**
|
|
7248
7427
|
* * Field Name: UpdatedAt
|
|
7249
7428
|
* * Display Name: Updated At
|
|
7250
7429
|
* * SQL Data Type: datetime
|
|
7430
|
+
* * Default Value: getdate()
|
|
7251
7431
|
*/
|
|
7252
7432
|
get UpdatedAt(): Date;
|
|
7253
7433
|
/**
|
|
@@ -7322,6 +7502,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7322
7502
|
* * Field Name: ApprovalStatus
|
|
7323
7503
|
* * Display Name: Approval Status
|
|
7324
7504
|
* * SQL Data Type: nvarchar(10)
|
|
7505
|
+
* * Default Value: Pending
|
|
7325
7506
|
* * Value List Type: List
|
|
7326
7507
|
* * Possible Values
|
|
7327
7508
|
* * Pending
|
|
@@ -7341,6 +7522,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7341
7522
|
* * Field Name: ProcessingStatus
|
|
7342
7523
|
* * Display Name: Processing Status
|
|
7343
7524
|
* * SQL Data Type: nvarchar(10)
|
|
7525
|
+
* * Default Value: Pending
|
|
7344
7526
|
* * Value List Type: List
|
|
7345
7527
|
* * Possible Values
|
|
7346
7528
|
* * Started
|
|
@@ -7353,6 +7535,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7353
7535
|
* * Field Name: ProcessingStartedAt
|
|
7354
7536
|
* * Display Name: Processing Started At
|
|
7355
7537
|
* * SQL Data Type: datetime
|
|
7538
|
+
* * Default Value: getdate()
|
|
7356
7539
|
*/
|
|
7357
7540
|
get ProcessingStartedAt(): Date;
|
|
7358
7541
|
set ProcessingStartedAt(value: Date);
|
|
@@ -7381,12 +7564,14 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7381
7564
|
* * Field Name: CreatedAt
|
|
7382
7565
|
* * Display Name: Created At
|
|
7383
7566
|
* * SQL Data Type: datetime
|
|
7567
|
+
* * Default Value: getdate()
|
|
7384
7568
|
*/
|
|
7385
7569
|
get CreatedAt(): Date;
|
|
7386
7570
|
/**
|
|
7387
7571
|
* * Field Name: UpdatedAt
|
|
7388
7572
|
* * Display Name: Updated At
|
|
7389
7573
|
* * SQL Data Type: datetime
|
|
7574
|
+
* * Default Value: getdate()
|
|
7390
7575
|
*/
|
|
7391
7576
|
get UpdatedAt(): Date | null;
|
|
7392
7577
|
/**
|
|
@@ -7459,6 +7644,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
|
|
|
7459
7644
|
* * Field Name: Status
|
|
7460
7645
|
* * Display Name: Status
|
|
7461
7646
|
* * SQL Data Type: nvarchar(10)
|
|
7647
|
+
* * Default Value: Pending
|
|
7462
7648
|
* * Value List Type: List
|
|
7463
7649
|
* * Possible Values
|
|
7464
7650
|
* * Pending
|
|
@@ -7478,12 +7664,14 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
|
|
|
7478
7664
|
* * Field Name: CreatedAt
|
|
7479
7665
|
* * Display Name: Created At
|
|
7480
7666
|
* * SQL Data Type: datetime
|
|
7667
|
+
* * Default Value: getdate()
|
|
7481
7668
|
*/
|
|
7482
7669
|
get CreatedAt(): Date;
|
|
7483
7670
|
/**
|
|
7484
7671
|
* * Field Name: UpdatedAt
|
|
7485
7672
|
* * Display Name: Updated At
|
|
7486
7673
|
* * SQL Data Type: datetime
|
|
7674
|
+
* * Default Value: getdate()
|
|
7487
7675
|
*/
|
|
7488
7676
|
get UpdatedAt(): Date;
|
|
7489
7677
|
}
|
|
@@ -7589,6 +7777,7 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7589
7777
|
* * Field Name: IsComputed
|
|
7590
7778
|
* * Display Name: Is Computed
|
|
7591
7779
|
* * SQL Data Type: bit
|
|
7780
|
+
* * Default Value: 0
|
|
7592
7781
|
*/
|
|
7593
7782
|
get IsComputed(): boolean;
|
|
7594
7783
|
set IsComputed(value: boolean);
|
|
@@ -7603,6 +7792,7 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7603
7792
|
* * Field Name: IsSummary
|
|
7604
7793
|
* * Display Name: Is Summary
|
|
7605
7794
|
* * SQL Data Type: bit
|
|
7795
|
+
* * Default Value: 0
|
|
7606
7796
|
*/
|
|
7607
7797
|
get IsSummary(): boolean;
|
|
7608
7798
|
set IsSummary(value: boolean);
|
|
@@ -7617,12 +7807,14 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7617
7807
|
* * Field Name: CreatedAt
|
|
7618
7808
|
* * Display Name: Created At
|
|
7619
7809
|
* * SQL Data Type: datetime
|
|
7810
|
+
* * Default Value: getdate()
|
|
7620
7811
|
*/
|
|
7621
7812
|
get CreatedAt(): Date;
|
|
7622
7813
|
/**
|
|
7623
7814
|
* * Field Name: UpdatedAt
|
|
7624
7815
|
* * Display Name: Updated At
|
|
7625
7816
|
* * SQL Data Type: datetime
|
|
7817
|
+
* * Default Value: getdate()
|
|
7626
7818
|
*/
|
|
7627
7819
|
get UpdatedAt(): Date;
|
|
7628
7820
|
/**
|
|
@@ -7693,12 +7885,14 @@ export declare class QueryCategoryEntity extends BaseEntity {
|
|
|
7693
7885
|
* * Field Name: CreatedAt
|
|
7694
7886
|
* * Display Name: Created At
|
|
7695
7887
|
* * SQL Data Type: datetime
|
|
7888
|
+
* * Default Value: getdate()
|
|
7696
7889
|
*/
|
|
7697
7890
|
get CreatedAt(): Date;
|
|
7698
7891
|
/**
|
|
7699
7892
|
* * Field Name: UpdatedAt
|
|
7700
7893
|
* * Display Name: Updated At
|
|
7701
7894
|
* * SQL Data Type: datetime
|
|
7895
|
+
* * Default Value: getdate()
|
|
7702
7896
|
*/
|
|
7703
7897
|
get UpdatedAt(): Date;
|
|
7704
7898
|
/**
|
|
@@ -7808,6 +8002,7 @@ export declare class QueryEntity extends BaseEntity {
|
|
|
7808
8002
|
* * Field Name: Status
|
|
7809
8003
|
* * Display Name: Status
|
|
7810
8004
|
* * SQL Data Type: nvarchar(15)
|
|
8005
|
+
* * Default Value: Pending
|
|
7811
8006
|
* * Value List Type: List
|
|
7812
8007
|
* * Possible Values
|
|
7813
8008
|
* * Pending
|
|
@@ -7821,6 +8016,7 @@ export declare class QueryEntity extends BaseEntity {
|
|
|
7821
8016
|
* * Field Name: QualityRank
|
|
7822
8017
|
* * Display Name: Quality Rank
|
|
7823
8018
|
* * SQL Data Type: int
|
|
8019
|
+
* * Default Value: 0
|
|
7824
8020
|
*/
|
|
7825
8021
|
get QualityRank(): number | null;
|
|
7826
8022
|
set QualityRank(value: number | null);
|
|
@@ -7828,12 +8024,14 @@ export declare class QueryEntity extends BaseEntity {
|
|
|
7828
8024
|
* * Field Name: CreatedAt
|
|
7829
8025
|
* * Display Name: Created At
|
|
7830
8026
|
* * SQL Data Type: datetime
|
|
8027
|
+
* * Default Value: getdate()
|
|
7831
8028
|
*/
|
|
7832
8029
|
get CreatedAt(): Date;
|
|
7833
8030
|
/**
|
|
7834
8031
|
* * Field Name: UpdatedAt
|
|
7835
8032
|
* * Display Name: Updated At
|
|
7836
8033
|
* * SQL Data Type: datetime
|
|
8034
|
+
* * Default Value: getdate()
|
|
7837
8035
|
*/
|
|
7838
8036
|
get UpdatedAt(): Date;
|
|
7839
8037
|
/**
|
|
@@ -7901,12 +8099,14 @@ export declare class QueryPermissionEntity extends BaseEntity {
|
|
|
7901
8099
|
* * Field Name: CreatedAt
|
|
7902
8100
|
* * Display Name: Created At
|
|
7903
8101
|
* * SQL Data Type: datetime
|
|
8102
|
+
* * Default Value: getdate()
|
|
7904
8103
|
*/
|
|
7905
8104
|
get CreatedAt(): Date;
|
|
7906
8105
|
/**
|
|
7907
8106
|
* * Field Name: UpdatedAt
|
|
7908
8107
|
* * Display Name: Updated At
|
|
7909
8108
|
* * SQL Data Type: datetime
|
|
8109
|
+
* * Default Value: getdate()
|
|
7910
8110
|
*/
|
|
7911
8111
|
get UpdatedAt(): Date;
|
|
7912
8112
|
}
|
|
@@ -7982,12 +8182,14 @@ export declare class VectorIndexEntity extends BaseEntity {
|
|
|
7982
8182
|
* * Field Name: CreatedAt
|
|
7983
8183
|
* * Display Name: Created At
|
|
7984
8184
|
* * SQL Data Type: datetime
|
|
8185
|
+
* * Default Value: getdate()
|
|
7985
8186
|
*/
|
|
7986
8187
|
get CreatedAt(): Date;
|
|
7987
8188
|
/**
|
|
7988
8189
|
* * Field Name: UpdatedAt
|
|
7989
8190
|
* * Display Name: Updated At
|
|
7990
8191
|
* * SQL Data Type: datetime
|
|
8192
|
+
* * Default Value: getdate()
|
|
7991
8193
|
*/
|
|
7992
8194
|
get UpdatedAt(): Date;
|
|
7993
8195
|
/**
|
|
@@ -8059,12 +8261,14 @@ export declare class EntityDocumentTypeEntity extends BaseEntity {
|
|
|
8059
8261
|
* * Field Name: CreatedAt
|
|
8060
8262
|
* * Display Name: Created At
|
|
8061
8263
|
* * SQL Data Type: datetime
|
|
8264
|
+
* * Default Value: getdate()
|
|
8062
8265
|
*/
|
|
8063
8266
|
get CreatedAt(): Date;
|
|
8064
8267
|
/**
|
|
8065
8268
|
* * Field Name: UpdatedAt
|
|
8066
8269
|
* * Display Name: Updated At
|
|
8067
8270
|
* * SQL Data Type: datetime
|
|
8271
|
+
* * Default Value: getdate()
|
|
8068
8272
|
*/
|
|
8069
8273
|
get UpdatedAt(): Date;
|
|
8070
8274
|
}
|
|
@@ -8132,6 +8336,7 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
|
|
|
8132
8336
|
* * Field Name: Status
|
|
8133
8337
|
* * Display Name: Status
|
|
8134
8338
|
* * SQL Data Type: nvarchar(15)
|
|
8339
|
+
* * Default Value: Pending
|
|
8135
8340
|
* * Value List Type: List
|
|
8136
8341
|
* * Possible Values
|
|
8137
8342
|
* * Pending
|
|
@@ -8145,12 +8350,14 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
|
|
|
8145
8350
|
* * Field Name: CreatedAt
|
|
8146
8351
|
* * Display Name: Created At
|
|
8147
8352
|
* * SQL Data Type: datetime
|
|
8353
|
+
* * Default Value: getdate()
|
|
8148
8354
|
*/
|
|
8149
8355
|
get CreatedAt(): Date;
|
|
8150
8356
|
/**
|
|
8151
8357
|
* * Field Name: UpdatedAt
|
|
8152
8358
|
* * Display Name: Updated At
|
|
8153
8359
|
* * SQL Data Type: datetime
|
|
8360
|
+
* * Default Value: getdate()
|
|
8154
8361
|
*/
|
|
8155
8362
|
get UpdatedAt(): Date;
|
|
8156
8363
|
/**
|
|
@@ -8230,12 +8437,14 @@ export declare class VectorDatabaseEntity extends BaseEntity {
|
|
|
8230
8437
|
* * Field Name: CreatedAt
|
|
8231
8438
|
* * Display Name: Created At
|
|
8232
8439
|
* * SQL Data Type: datetime
|
|
8440
|
+
* * Default Value: getdate()
|
|
8233
8441
|
*/
|
|
8234
8442
|
get CreatedAt(): Date;
|
|
8235
8443
|
/**
|
|
8236
8444
|
* * Field Name: UpdatedAt
|
|
8237
8445
|
* * Display Name: Updated At
|
|
8238
8446
|
* * SQL Data Type: datetime
|
|
8447
|
+
* * Default Value: getdate()
|
|
8239
8448
|
*/
|
|
8240
8449
|
get UpdatedAt(): Date;
|
|
8241
8450
|
}
|
|
@@ -8331,12 +8540,14 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
|
|
|
8331
8540
|
* * Field Name: CreatedAt
|
|
8332
8541
|
* * Display Name: Created At
|
|
8333
8542
|
* * SQL Data Type: datetime
|
|
8543
|
+
* * Default Value: getdate()
|
|
8334
8544
|
*/
|
|
8335
8545
|
get CreatedAt(): Date;
|
|
8336
8546
|
/**
|
|
8337
8547
|
* * Field Name: UpdatedAt
|
|
8338
8548
|
* * Display Name: Updated At
|
|
8339
8549
|
* * SQL Data Type: datetime
|
|
8550
|
+
* * Default Value: getdate()
|
|
8340
8551
|
*/
|
|
8341
8552
|
get UpdatedAt(): Date;
|
|
8342
8553
|
/**
|
|
@@ -8412,6 +8623,7 @@ export declare class EntityDocumentEntity extends BaseEntity {
|
|
|
8412
8623
|
* * Field Name: Status
|
|
8413
8624
|
* * Display Name: Status
|
|
8414
8625
|
* * SQL Data Type: nvarchar(15)
|
|
8626
|
+
* * Default Value: Active
|
|
8415
8627
|
* * Value List Type: List
|
|
8416
8628
|
* * Possible Values
|
|
8417
8629
|
* * Active
|
|
@@ -8446,6 +8658,7 @@ export declare class EntityDocumentEntity extends BaseEntity {
|
|
|
8446
8658
|
* * Field Name: PotentialMatchThreshold
|
|
8447
8659
|
* * Display Name: Potential Match Threshold
|
|
8448
8660
|
* * SQL Data Type: numeric(12, 11)
|
|
8661
|
+
* * Default Value: 1
|
|
8449
8662
|
* * Description: Value between 0 and 1 that determines what is considered a potential matching record. Value must be <= AbsoluteMatchThreshold. This is primarily used for duplicate detection but can be used for other applications as well where matching is relevant.
|
|
8450
8663
|
*/
|
|
8451
8664
|
get PotentialMatchThreshold(): number;
|
|
@@ -8454,6 +8667,7 @@ export declare class EntityDocumentEntity extends BaseEntity {
|
|
|
8454
8667
|
* * Field Name: AbsoluteMatchThreshold
|
|
8455
8668
|
* * Display Name: Absolute Match Threshold
|
|
8456
8669
|
* * SQL Data Type: numeric(12, 11)
|
|
8670
|
+
* * Default Value: 1
|
|
8457
8671
|
* * Description: Value between 0 and 1 that determines what is considered an absolute matching record. Value must be >= PotentialMatchThreshold. This is primarily used for duplicate detection but can be used for other applications as well where matching is relevant.
|
|
8458
8672
|
*/
|
|
8459
8673
|
get AbsoluteMatchThreshold(): number;
|
|
@@ -8462,12 +8676,14 @@ export declare class EntityDocumentEntity extends BaseEntity {
|
|
|
8462
8676
|
* * Field Name: CreatedAt
|
|
8463
8677
|
* * Display Name: Created At
|
|
8464
8678
|
* * SQL Data Type: datetime
|
|
8679
|
+
* * Default Value: getdate()
|
|
8465
8680
|
*/
|
|
8466
8681
|
get CreatedAt(): Date;
|
|
8467
8682
|
/**
|
|
8468
8683
|
* * Field Name: UpdatedAt
|
|
8469
8684
|
* * Display Name: Updated At
|
|
8470
8685
|
* * SQL Data Type: datetime
|
|
8686
|
+
* * Default Value: getdate()
|
|
8471
8687
|
*/
|
|
8472
8688
|
get UpdatedAt(): Date;
|
|
8473
8689
|
/**
|
|
@@ -8600,12 +8816,14 @@ export declare class DataContextItemEntity extends BaseEntity {
|
|
|
8600
8816
|
* * Field Name: CreatedAt
|
|
8601
8817
|
* * Display Name: Created At
|
|
8602
8818
|
* * SQL Data Type: datetime
|
|
8819
|
+
* * Default Value: getdate()
|
|
8603
8820
|
*/
|
|
8604
8821
|
get CreatedAt(): Date;
|
|
8605
8822
|
/**
|
|
8606
8823
|
* * Field Name: UpdatedAt
|
|
8607
8824
|
* * Display Name: Updated At
|
|
8608
8825
|
* * SQL Data Type: datetime
|
|
8826
|
+
* * Default Value: getdate()
|
|
8609
8827
|
*/
|
|
8610
8828
|
get UpdatedAt(): Date;
|
|
8611
8829
|
/**
|
|
@@ -8696,12 +8914,14 @@ export declare class DataContextEntity extends BaseEntity {
|
|
|
8696
8914
|
* * Field Name: CreatedAt
|
|
8697
8915
|
* * Display Name: Created At
|
|
8698
8916
|
* * SQL Data Type: datetime
|
|
8917
|
+
* * Default Value: getdate()
|
|
8699
8918
|
*/
|
|
8700
8919
|
get CreatedAt(): Date;
|
|
8701
8920
|
/**
|
|
8702
8921
|
* * Field Name: UpdatedAt
|
|
8703
8922
|
* * Display Name: Updated At
|
|
8704
8923
|
* * SQL Data Type: datetime
|
|
8924
|
+
* * Default Value: getdate()
|
|
8705
8925
|
*/
|
|
8706
8926
|
get UpdatedAt(): Date;
|
|
8707
8927
|
/**
|
|
@@ -8766,12 +8986,14 @@ export declare class UserViewCategoryEntity extends BaseEntity {
|
|
|
8766
8986
|
* * Field Name: CreatedAt
|
|
8767
8987
|
* * Display Name: Created At
|
|
8768
8988
|
* * SQL Data Type: datetime
|
|
8989
|
+
* * Default Value: getdate()
|
|
8769
8990
|
*/
|
|
8770
8991
|
get CreatedAt(): Date;
|
|
8771
8992
|
/**
|
|
8772
8993
|
* * Field Name: UpdatedAt
|
|
8773
8994
|
* * Display Name: Updated At
|
|
8774
8995
|
* * SQL Data Type: datetime
|
|
8996
|
+
* * Default Value: getdate()
|
|
8775
8997
|
*/
|
|
8776
8998
|
get UpdatedAt(): Date;
|
|
8777
8999
|
/**
|
|
@@ -8858,12 +9080,14 @@ export declare class DashboardCategoryEntity extends BaseEntity {
|
|
|
8858
9080
|
* * Field Name: CreatedAt
|
|
8859
9081
|
* * Display Name: Created At
|
|
8860
9082
|
* * SQL Data Type: datetime
|
|
9083
|
+
* * Default Value: getdate()
|
|
8861
9084
|
*/
|
|
8862
9085
|
get CreatedAt(): Date;
|
|
8863
9086
|
/**
|
|
8864
9087
|
* * Field Name: UpdatedAt
|
|
8865
9088
|
* * Display Name: Updated At
|
|
8866
9089
|
* * SQL Data Type: datetime
|
|
9090
|
+
* * Default Value: getdate()
|
|
8867
9091
|
*/
|
|
8868
9092
|
get UpdatedAt(): Date;
|
|
8869
9093
|
/**
|
|
@@ -8942,12 +9166,14 @@ export declare class ReportCategoryEntity extends BaseEntity {
|
|
|
8942
9166
|
* * Field Name: CreatedAt
|
|
8943
9167
|
* * Display Name: Created At
|
|
8944
9168
|
* * SQL Data Type: datetime
|
|
9169
|
+
* * Default Value: getdate()
|
|
8945
9170
|
*/
|
|
8946
9171
|
get CreatedAt(): Date;
|
|
8947
9172
|
/**
|
|
8948
9173
|
* * Field Name: UpdatedAt
|
|
8949
9174
|
* * Display Name: Updated At
|
|
8950
9175
|
* * SQL Data Type: datetime
|
|
9176
|
+
* * Default Value: getdate()
|
|
8951
9177
|
*/
|
|
8952
9178
|
get UpdatedAt(): Date;
|
|
8953
9179
|
/**
|
|
@@ -9041,6 +9267,7 @@ export declare class FileStorageProviderEntity extends BaseEntity {
|
|
|
9041
9267
|
* * Field Name: Priority
|
|
9042
9268
|
* * Display Name: Priority
|
|
9043
9269
|
* * SQL Data Type: int
|
|
9270
|
+
* * Default Value: 0
|
|
9044
9271
|
*/
|
|
9045
9272
|
get Priority(): number;
|
|
9046
9273
|
set Priority(value: number);
|
|
@@ -9048,6 +9275,7 @@ export declare class FileStorageProviderEntity extends BaseEntity {
|
|
|
9048
9275
|
* * Field Name: IsActive
|
|
9049
9276
|
* * Display Name: Is Active
|
|
9050
9277
|
* * SQL Data Type: bit
|
|
9278
|
+
* * Default Value: 1
|
|
9051
9279
|
*/
|
|
9052
9280
|
get IsActive(): boolean;
|
|
9053
9281
|
set IsActive(value: boolean);
|
|
@@ -9055,12 +9283,14 @@ export declare class FileStorageProviderEntity extends BaseEntity {
|
|
|
9055
9283
|
* * Field Name: CreatedAt
|
|
9056
9284
|
* * Display Name: Created At
|
|
9057
9285
|
* * SQL Data Type: datetime
|
|
9286
|
+
* * Default Value: getdate()
|
|
9058
9287
|
*/
|
|
9059
9288
|
get CreatedAt(): Date;
|
|
9060
9289
|
/**
|
|
9061
9290
|
* * Field Name: UpdatedAt
|
|
9062
9291
|
* * Display Name: Updated At
|
|
9063
9292
|
* * SQL Data Type: datetime
|
|
9293
|
+
* * Default Value: getdate()
|
|
9064
9294
|
*/
|
|
9065
9295
|
get UpdatedAt(): Date;
|
|
9066
9296
|
}
|
|
@@ -9141,6 +9371,7 @@ export declare class FileEntity extends BaseEntity {
|
|
|
9141
9371
|
* * Field Name: Status
|
|
9142
9372
|
* * Display Name: Status
|
|
9143
9373
|
* * SQL Data Type: nvarchar(20)
|
|
9374
|
+
* * Default Value: Pending
|
|
9144
9375
|
* * Description: Pending, Uploading, Uploaded, Deleting, Deleted
|
|
9145
9376
|
*/
|
|
9146
9377
|
get Status(): string;
|
|
@@ -9149,12 +9380,14 @@ export declare class FileEntity extends BaseEntity {
|
|
|
9149
9380
|
* * Field Name: CreatedAt
|
|
9150
9381
|
* * Display Name: Created At
|
|
9151
9382
|
* * SQL Data Type: datetime
|
|
9383
|
+
* * Default Value: getdate()
|
|
9152
9384
|
*/
|
|
9153
9385
|
get CreatedAt(): Date;
|
|
9154
9386
|
/**
|
|
9155
9387
|
* * Field Name: UpdatedAt
|
|
9156
9388
|
* * Display Name: Updated At
|
|
9157
9389
|
* * SQL Data Type: datetime
|
|
9390
|
+
* * Default Value: getdate()
|
|
9158
9391
|
*/
|
|
9159
9392
|
get UpdatedAt(): Date;
|
|
9160
9393
|
/**
|
|
@@ -9225,12 +9458,14 @@ export declare class FileCategoryEntity extends BaseEntity {
|
|
|
9225
9458
|
* * Field Name: CreatedAt
|
|
9226
9459
|
* * Display Name: Created At
|
|
9227
9460
|
* * SQL Data Type: datetime
|
|
9461
|
+
* * Default Value: getdate()
|
|
9228
9462
|
*/
|
|
9229
9463
|
get CreatedAt(): Date;
|
|
9230
9464
|
/**
|
|
9231
9465
|
* * Field Name: UpdatedAt
|
|
9232
9466
|
* * Display Name: Updated At
|
|
9233
9467
|
* * SQL Data Type: datetime
|
|
9468
|
+
* * Default Value: getdate()
|
|
9234
9469
|
*/
|
|
9235
9470
|
get UpdatedAt(): Date;
|
|
9236
9471
|
/**
|
|
@@ -9305,12 +9540,14 @@ export declare class FileEntityRecordLinkEntity extends BaseEntity {
|
|
|
9305
9540
|
* * Field Name: CreatedAt
|
|
9306
9541
|
* * Display Name: Created At
|
|
9307
9542
|
* * SQL Data Type: datetime
|
|
9543
|
+
* * Default Value: getdate()
|
|
9308
9544
|
*/
|
|
9309
9545
|
get CreatedAt(): Date;
|
|
9310
9546
|
/**
|
|
9311
9547
|
* * Field Name: UpdatedAt
|
|
9312
9548
|
* * Display Name: Updated At
|
|
9313
9549
|
* * SQL Data Type: datetime
|
|
9550
|
+
* * Default Value: getdate()
|
|
9314
9551
|
*/
|
|
9315
9552
|
get UpdatedAt(): Date;
|
|
9316
9553
|
/**
|
|
@@ -9389,6 +9626,7 @@ export declare class VersionInstallationEntity extends BaseEntity {
|
|
|
9389
9626
|
* * Field Name: Type
|
|
9390
9627
|
* * Display Name: Type
|
|
9391
9628
|
* * SQL Data Type: nvarchar(20)
|
|
9629
|
+
* * Default Value: System
|
|
9392
9630
|
* * Value List Type: List
|
|
9393
9631
|
* * Possible Values
|
|
9394
9632
|
* * New
|
|
@@ -9408,6 +9646,7 @@ export declare class VersionInstallationEntity extends BaseEntity {
|
|
|
9408
9646
|
* * Field Name: Status
|
|
9409
9647
|
* * Display Name: Status
|
|
9410
9648
|
* * SQL Data Type: nvarchar(20)
|
|
9649
|
+
* * Default Value: Pending
|
|
9411
9650
|
* * Value List Type: List
|
|
9412
9651
|
* * Possible Values
|
|
9413
9652
|
* * Pending
|
|
@@ -9438,12 +9677,14 @@ export declare class VersionInstallationEntity extends BaseEntity {
|
|
|
9438
9677
|
* * Field Name: CreatedAt
|
|
9439
9678
|
* * Display Name: Created At
|
|
9440
9679
|
* * SQL Data Type: datetime
|
|
9680
|
+
* * Default Value: getdate()
|
|
9441
9681
|
*/
|
|
9442
9682
|
get CreatedAt(): Date;
|
|
9443
9683
|
/**
|
|
9444
9684
|
* * Field Name: UpdatedAt
|
|
9445
9685
|
* * Display Name: Updated At
|
|
9446
9686
|
* * SQL Data Type: datetime
|
|
9687
|
+
* * Default Value: getdate()
|
|
9447
9688
|
*/
|
|
9448
9689
|
get UpdatedAt(): Date;
|
|
9449
9690
|
/**
|
|
@@ -9503,6 +9744,7 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9503
9744
|
* * Field Name: MatchSource
|
|
9504
9745
|
* * Display Name: Match Source
|
|
9505
9746
|
* * SQL Data Type: nvarchar(20)
|
|
9747
|
+
* * Default Value: Vector
|
|
9506
9748
|
* * Value List Type: List
|
|
9507
9749
|
* * Possible Values
|
|
9508
9750
|
* * SP
|
|
@@ -9522,6 +9764,7 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9522
9764
|
* * Field Name: MatchProbability
|
|
9523
9765
|
* * Display Name: Match Probability
|
|
9524
9766
|
* * SQL Data Type: numeric(12, 11)
|
|
9767
|
+
* * Default Value: 0
|
|
9525
9768
|
* * Description: Value between 0 and 1 designating the computed probability of a match
|
|
9526
9769
|
*/
|
|
9527
9770
|
get MatchProbability(): number;
|
|
@@ -9530,6 +9773,7 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9530
9773
|
* * Field Name: MatchedAt
|
|
9531
9774
|
* * Display Name: Matched At
|
|
9532
9775
|
* * SQL Data Type: datetime
|
|
9776
|
+
* * Default Value: getdate()
|
|
9533
9777
|
*/
|
|
9534
9778
|
get MatchedAt(): Date;
|
|
9535
9779
|
set MatchedAt(value: Date);
|
|
@@ -9537,6 +9781,7 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9537
9781
|
* * Field Name: Action
|
|
9538
9782
|
* * Display Name: Action
|
|
9539
9783
|
* * SQL Data Type: nvarchar(20)
|
|
9784
|
+
* * Default Value: Ignore
|
|
9540
9785
|
*/
|
|
9541
9786
|
get Action(): string;
|
|
9542
9787
|
set Action(value: string);
|
|
@@ -9544,6 +9789,7 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9544
9789
|
* * Field Name: ApprovalStatus
|
|
9545
9790
|
* * Display Name: Approval Status
|
|
9546
9791
|
* * SQL Data Type: nvarchar(20)
|
|
9792
|
+
* * Default Value: Pending
|
|
9547
9793
|
* * Value List Type: List
|
|
9548
9794
|
* * Possible Values
|
|
9549
9795
|
* * Rejected
|
|
@@ -9556,6 +9802,7 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9556
9802
|
* * Field Name: MergeStatus
|
|
9557
9803
|
* * Display Name: Merge Status
|
|
9558
9804
|
* * SQL Data Type: nvarchar(20)
|
|
9805
|
+
* * Default Value: Pending
|
|
9559
9806
|
* * Value List Type: List
|
|
9560
9807
|
* * Possible Values
|
|
9561
9808
|
* * Error
|
|
@@ -9568,6 +9815,7 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9568
9815
|
* * Field Name: MergedAt
|
|
9569
9816
|
* * Display Name: Merged At
|
|
9570
9817
|
* * SQL Data Type: datetime
|
|
9818
|
+
* * Default Value: getdate()
|
|
9571
9819
|
*/
|
|
9572
9820
|
get MergedAt(): Date;
|
|
9573
9821
|
set MergedAt(value: Date);
|
|
@@ -9583,12 +9831,14 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9583
9831
|
* * Field Name: CreatedAt
|
|
9584
9832
|
* * Display Name: Created At
|
|
9585
9833
|
* * SQL Data Type: datetime
|
|
9834
|
+
* * Default Value: getdate()
|
|
9586
9835
|
*/
|
|
9587
9836
|
get CreatedAt(): Date;
|
|
9588
9837
|
/**
|
|
9589
9838
|
* * Field Name: UpdatedAt
|
|
9590
9839
|
* * Display Name: Updated At
|
|
9591
9840
|
* * SQL Data Type: datetime
|
|
9841
|
+
* * Default Value: getdate()
|
|
9592
9842
|
*/
|
|
9593
9843
|
get UpdatedAt(): Date;
|
|
9594
9844
|
}
|
|
@@ -9663,12 +9913,14 @@ export declare class EntityDocumentSettingEntity extends BaseEntity {
|
|
|
9663
9913
|
* * Field Name: CreatedAt
|
|
9664
9914
|
* * Display Name: Created At
|
|
9665
9915
|
* * SQL Data Type: datetime
|
|
9916
|
+
* * Default Value: getdate()
|
|
9666
9917
|
*/
|
|
9667
9918
|
get CreatedAt(): Date;
|
|
9668
9919
|
/**
|
|
9669
9920
|
* * Field Name: UpdatedAt
|
|
9670
9921
|
* * Display Name: Updated At
|
|
9671
9922
|
* * SQL Data Type: datetime
|
|
9923
|
+
* * Default Value: getdate()
|
|
9672
9924
|
*/
|
|
9673
9925
|
get UpdatedAt(): Date;
|
|
9674
9926
|
/**
|
|
@@ -9749,12 +10001,14 @@ export declare class EntitySettingEntity extends BaseEntity {
|
|
|
9749
10001
|
* * Field Name: CreatedAt
|
|
9750
10002
|
* * Display Name: Created At
|
|
9751
10003
|
* * SQL Data Type: datetime
|
|
10004
|
+
* * Default Value: getdate()
|
|
9752
10005
|
*/
|
|
9753
10006
|
get CreatedAt(): Date;
|
|
9754
10007
|
/**
|
|
9755
10008
|
* * Field Name: UpdatedAt
|
|
9756
10009
|
* * Display Name: Updated At
|
|
9757
10010
|
* * SQL Data Type: datetime
|
|
10011
|
+
* * Default Value: getdate()
|
|
9758
10012
|
*/
|
|
9759
10013
|
get UpdatedAt(): Date;
|
|
9760
10014
|
/**
|
|
@@ -9822,6 +10076,7 @@ export declare class DuplicateRunEntity extends BaseEntity {
|
|
|
9822
10076
|
* * Field Name: StartedAt
|
|
9823
10077
|
* * Display Name: Started At
|
|
9824
10078
|
* * SQL Data Type: datetime
|
|
10079
|
+
* * Default Value: getdate()
|
|
9825
10080
|
*/
|
|
9826
10081
|
get StartedAt(): Date;
|
|
9827
10082
|
set StartedAt(value: Date);
|
|
@@ -9836,6 +10091,7 @@ export declare class DuplicateRunEntity extends BaseEntity {
|
|
|
9836
10091
|
* * Field Name: ApprovalStatus
|
|
9837
10092
|
* * Display Name: Approval Status
|
|
9838
10093
|
* * SQL Data Type: nvarchar(20)
|
|
10094
|
+
* * Default Value: Pending
|
|
9839
10095
|
* * Value List Type: List
|
|
9840
10096
|
* * Possible Values
|
|
9841
10097
|
* * Rejected
|
|
@@ -9863,6 +10119,7 @@ export declare class DuplicateRunEntity extends BaseEntity {
|
|
|
9863
10119
|
* * Field Name: ProcessingStatus
|
|
9864
10120
|
* * Display Name: Processing Status
|
|
9865
10121
|
* * SQL Data Type: nvarchar(20)
|
|
10122
|
+
* * Default Value: Pending
|
|
9866
10123
|
* * Value List Type: List
|
|
9867
10124
|
* * Possible Values
|
|
9868
10125
|
* * Failed
|
|
@@ -9891,12 +10148,14 @@ export declare class DuplicateRunEntity extends BaseEntity {
|
|
|
9891
10148
|
* * Field Name: CreatedAt
|
|
9892
10149
|
* * Display Name: Created At
|
|
9893
10150
|
* * SQL Data Type: datetime
|
|
10151
|
+
* * Default Value: getdate()
|
|
9894
10152
|
*/
|
|
9895
10153
|
get CreatedAt(): Date;
|
|
9896
10154
|
/**
|
|
9897
10155
|
* * Field Name: UpdatedAt
|
|
9898
10156
|
* * Display Name: Updated At
|
|
9899
10157
|
* * SQL Data Type: datetime
|
|
10158
|
+
* * Default Value: getdate()
|
|
9900
10159
|
*/
|
|
9901
10160
|
get UpdatedAt(): Date;
|
|
9902
10161
|
/**
|
|
@@ -9981,6 +10240,7 @@ export declare class DuplicateRunDetailEntity extends BaseEntity {
|
|
|
9981
10240
|
* * Field Name: MatchStatus
|
|
9982
10241
|
* * Display Name: Match Status
|
|
9983
10242
|
* * SQL Data Type: nvarchar(20)
|
|
10243
|
+
* * Default Value: Pending
|
|
9984
10244
|
* * Value List Type: List
|
|
9985
10245
|
* * Possible Values
|
|
9986
10246
|
* * Error
|
|
@@ -10010,6 +10270,7 @@ export declare class DuplicateRunDetailEntity extends BaseEntity {
|
|
|
10010
10270
|
* * Field Name: MergeStatus
|
|
10011
10271
|
* * Display Name: Merge Status
|
|
10012
10272
|
* * SQL Data Type: nvarchar(20)
|
|
10273
|
+
* * Default Value: Not Applicable
|
|
10013
10274
|
* * Value List Type: List
|
|
10014
10275
|
* * Possible Values
|
|
10015
10276
|
* * Error
|
|
@@ -10030,12 +10291,14 @@ export declare class DuplicateRunDetailEntity extends BaseEntity {
|
|
|
10030
10291
|
* * Field Name: CreatedAt
|
|
10031
10292
|
* * Display Name: Created At
|
|
10032
10293
|
* * SQL Data Type: datetime
|
|
10294
|
+
* * Default Value: getdate()
|
|
10033
10295
|
*/
|
|
10034
10296
|
get CreatedAt(): Date;
|
|
10035
10297
|
/**
|
|
10036
10298
|
* * Field Name: UpdatedAt
|
|
10037
10299
|
* * Display Name: Updated At
|
|
10038
10300
|
* * SQL Data Type: datetime
|
|
10301
|
+
* * Default Value: getdate()
|
|
10039
10302
|
*/
|
|
10040
10303
|
get UpdatedAt(): Date;
|
|
10041
10304
|
}
|
|
@@ -10097,6 +10360,7 @@ export declare class EntityBehaviorEntity extends BaseEntity {
|
|
|
10097
10360
|
* * Field Name: RegenerateCode
|
|
10098
10361
|
* * Display Name: Regenerate Code
|
|
10099
10362
|
* * SQL Data Type: bit
|
|
10363
|
+
* * Default Value: 0
|
|
10100
10364
|
* * Description: This bit field is automatically turned on whenever the Description field is changed so that a future server process will pick it up and regenerate the code. This might happen asynchronously or synchronously depending on system setup.
|
|
10101
10365
|
*/
|
|
10102
10366
|
get RegenerateCode(): boolean;
|
|
@@ -10121,6 +10385,7 @@ export declare class EntityBehaviorEntity extends BaseEntity {
|
|
|
10121
10385
|
* * Field Name: CodeGenerated
|
|
10122
10386
|
* * Display Name: Code Generated
|
|
10123
10387
|
* * SQL Data Type: bit
|
|
10388
|
+
* * Default Value: 1
|
|
10124
10389
|
*/
|
|
10125
10390
|
get CodeGenerated(): boolean;
|
|
10126
10391
|
set CodeGenerated(value: boolean);
|
|
@@ -10128,12 +10393,14 @@ export declare class EntityBehaviorEntity extends BaseEntity {
|
|
|
10128
10393
|
* * Field Name: CreatedAt
|
|
10129
10394
|
* * Display Name: Created At
|
|
10130
10395
|
* * SQL Data Type: datetime
|
|
10396
|
+
* * Default Value: getdate()
|
|
10131
10397
|
*/
|
|
10132
10398
|
get CreatedAt(): Date;
|
|
10133
10399
|
/**
|
|
10134
10400
|
* * Field Name: UpdatedAt
|
|
10135
10401
|
* * Display Name: Updated At
|
|
10136
10402
|
* * SQL Data Type: datetime
|
|
10403
|
+
* * Default Value: getdate()
|
|
10137
10404
|
*/
|
|
10138
10405
|
get UpdatedAt(): Date;
|
|
10139
10406
|
/**
|
|
@@ -10198,6 +10465,7 @@ export declare class EntityBehaviorTypeEntity extends BaseEntity {
|
|
|
10198
10465
|
* * Field Name: UpdatedAt
|
|
10199
10466
|
* * Display Name: Updated At
|
|
10200
10467
|
* * SQL Data Type: datetime
|
|
10468
|
+
* * Default Value: getdate()
|
|
10201
10469
|
*/
|
|
10202
10470
|
get UpdatedAt(): Date;
|
|
10203
10471
|
}
|
|
@@ -10263,12 +10531,14 @@ export declare class ApplicationSettingEntity extends BaseEntity {
|
|
|
10263
10531
|
* * Field Name: CreatedAt
|
|
10264
10532
|
* * Display Name: Created At
|
|
10265
10533
|
* * SQL Data Type: datetime
|
|
10534
|
+
* * Default Value: getdate()
|
|
10266
10535
|
*/
|
|
10267
10536
|
get CreatedAt(): Date;
|
|
10268
10537
|
/**
|
|
10269
10538
|
* * Field Name: UpdatedAt
|
|
10270
10539
|
* * Display Name: Updated At
|
|
10271
10540
|
* * SQL Data Type: datetime
|
|
10541
|
+
* * Default Value: getdate()
|
|
10272
10542
|
*/
|
|
10273
10543
|
get UpdatedAt(): Date;
|
|
10274
10544
|
}
|
|
@@ -10331,6 +10601,7 @@ export declare class ActionCategoryEntity extends BaseEntity {
|
|
|
10331
10601
|
* * Field Name: Status
|
|
10332
10602
|
* * Display Name: Status
|
|
10333
10603
|
* * SQL Data Type: nvarchar(20)
|
|
10604
|
+
* * Default Value: Pending
|
|
10334
10605
|
* * Value List Type: List
|
|
10335
10606
|
* * Possible Values
|
|
10336
10607
|
* * Disabled
|
|
@@ -10344,12 +10615,14 @@ export declare class ActionCategoryEntity extends BaseEntity {
|
|
|
10344
10615
|
* * Field Name: CreatedAt
|
|
10345
10616
|
* * Display Name: Created At
|
|
10346
10617
|
* * SQL Data Type: datetime
|
|
10618
|
+
* * Default Value: getdate()
|
|
10347
10619
|
*/
|
|
10348
10620
|
get CreatedAt(): Date;
|
|
10349
10621
|
/**
|
|
10350
10622
|
* * Field Name: UpdatedAt
|
|
10351
10623
|
* * Display Name: Updated At
|
|
10352
10624
|
* * SQL Data Type: datetime
|
|
10625
|
+
* * Default Value: getdate()
|
|
10353
10626
|
*/
|
|
10354
10627
|
get UpdatedAt(): Date;
|
|
10355
10628
|
/**
|
|
@@ -10409,6 +10682,7 @@ export declare class EntityActionEntity extends BaseEntity {
|
|
|
10409
10682
|
* * Field Name: Status
|
|
10410
10683
|
* * Display Name: Status
|
|
10411
10684
|
* * SQL Data Type: nvarchar(20)
|
|
10685
|
+
* * Default Value: Pending
|
|
10412
10686
|
* * Value List Type: List
|
|
10413
10687
|
* * Possible Values
|
|
10414
10688
|
* * Disabled
|
|
@@ -10422,12 +10696,14 @@ export declare class EntityActionEntity extends BaseEntity {
|
|
|
10422
10696
|
* * Field Name: CreatedAt
|
|
10423
10697
|
* * Display Name: Created At
|
|
10424
10698
|
* * SQL Data Type: datetime
|
|
10699
|
+
* * Default Value: getdate()
|
|
10425
10700
|
*/
|
|
10426
10701
|
get CreatedAt(): Date;
|
|
10427
10702
|
/**
|
|
10428
10703
|
* * Field Name: UpdatedAt
|
|
10429
10704
|
* * Display Name: Updated At
|
|
10430
10705
|
* * SQL Data Type: datetime
|
|
10706
|
+
* * Default Value: getdate()
|
|
10431
10707
|
*/
|
|
10432
10708
|
get UpdatedAt(): Date;
|
|
10433
10709
|
/**
|
|
@@ -10493,6 +10769,7 @@ export declare class EntityActionInvocationEntity extends BaseEntity {
|
|
|
10493
10769
|
* * Field Name: Status
|
|
10494
10770
|
* * Display Name: Status
|
|
10495
10771
|
* * SQL Data Type: nvarchar(20)
|
|
10772
|
+
* * Default Value: Pending
|
|
10496
10773
|
* * Value List Type: List
|
|
10497
10774
|
* * Possible Values
|
|
10498
10775
|
* * Disabled
|
|
@@ -10506,12 +10783,14 @@ export declare class EntityActionInvocationEntity extends BaseEntity {
|
|
|
10506
10783
|
* * Field Name: CreatedAt
|
|
10507
10784
|
* * Display Name: Created At
|
|
10508
10785
|
* * SQL Data Type: datetime
|
|
10786
|
+
* * Default Value: getdate()
|
|
10509
10787
|
*/
|
|
10510
10788
|
get CreatedAt(): Date;
|
|
10511
10789
|
/**
|
|
10512
10790
|
* * Field Name: UpdatedAt
|
|
10513
10791
|
* * Display Name: Updated At
|
|
10514
10792
|
* * SQL Data Type: datetime
|
|
10793
|
+
* * Default Value: getdate()
|
|
10515
10794
|
*/
|
|
10516
10795
|
get UpdatedAt(): Date;
|
|
10517
10796
|
/**
|
|
@@ -10578,12 +10857,14 @@ export declare class ActionAuthorizationEntity extends BaseEntity {
|
|
|
10578
10857
|
* * Field Name: CreatedAt
|
|
10579
10858
|
* * Display Name: Created At
|
|
10580
10859
|
* * SQL Data Type: datetime
|
|
10860
|
+
* * Default Value: getdate()
|
|
10581
10861
|
*/
|
|
10582
10862
|
get CreatedAt(): Date;
|
|
10583
10863
|
/**
|
|
10584
10864
|
* * Field Name: UpdatedAt
|
|
10585
10865
|
* * Display Name: Updated At
|
|
10586
10866
|
* * SQL Data Type: datetime
|
|
10867
|
+
* * Default Value: getdate()
|
|
10587
10868
|
*/
|
|
10588
10869
|
get UpdatedAt(): Date;
|
|
10589
10870
|
/**
|
|
@@ -10643,6 +10924,7 @@ export declare class EntityActionInvocationTypeEntity extends BaseEntity {
|
|
|
10643
10924
|
* * Field Name: DisplaySequence
|
|
10644
10925
|
* * Display Name: Display Sequence
|
|
10645
10926
|
* * SQL Data Type: int
|
|
10927
|
+
* * Default Value: 0
|
|
10646
10928
|
*/
|
|
10647
10929
|
get DisplaySequence(): number;
|
|
10648
10930
|
set DisplaySequence(value: number);
|
|
@@ -10650,12 +10932,14 @@ export declare class EntityActionInvocationTypeEntity extends BaseEntity {
|
|
|
10650
10932
|
* * Field Name: CreatedAt
|
|
10651
10933
|
* * Display Name: Created At
|
|
10652
10934
|
* * SQL Data Type: datetime
|
|
10935
|
+
* * Default Value: getdate()
|
|
10653
10936
|
*/
|
|
10654
10937
|
get CreatedAt(): Date;
|
|
10655
10938
|
/**
|
|
10656
10939
|
* * Field Name: UpdatedAt
|
|
10657
10940
|
* * Display Name: Updated At
|
|
10658
10941
|
* * SQL Data Type: datetime
|
|
10942
|
+
* * Default Value: getdate()
|
|
10659
10943
|
*/
|
|
10660
10944
|
get UpdatedAt(): Date;
|
|
10661
10945
|
}
|
|
@@ -10738,6 +11022,7 @@ export declare class ActionEntity extends BaseEntity {
|
|
|
10738
11022
|
* * Field Name: CodeApprovalStatus
|
|
10739
11023
|
* * Display Name: Code Approval Status
|
|
10740
11024
|
* * SQL Data Type: nvarchar(20)
|
|
11025
|
+
* * Default Value: Pending
|
|
10741
11026
|
* * Value List Type: List
|
|
10742
11027
|
* * Possible Values
|
|
10743
11028
|
* * Rejected
|
|
@@ -10776,6 +11061,7 @@ export declare class ActionEntity extends BaseEntity {
|
|
|
10776
11061
|
* * Field Name: ForceCodeGeneration
|
|
10777
11062
|
* * Display Name: Force Code Generation
|
|
10778
11063
|
* * SQL Data Type: bit
|
|
11064
|
+
* * Default Value: 0
|
|
10779
11065
|
* * Description: If set to 1, the Action will generate code for the provided UserPrompt on the next Save even if the UserPrompt hasn't changed. This is useful to force regeneration when other candidates (such as a change in Action Inputs/Outputs) occurs or on demand by a user.
|
|
10780
11066
|
*/
|
|
10781
11067
|
get ForceCodeGeneration(): boolean;
|
|
@@ -10792,6 +11078,7 @@ export declare class ActionEntity extends BaseEntity {
|
|
|
10792
11078
|
* * Field Name: Status
|
|
10793
11079
|
* * Display Name: Status
|
|
10794
11080
|
* * SQL Data Type: nvarchar(20)
|
|
11081
|
+
* * Default Value: Pending
|
|
10795
11082
|
* * Value List Type: List
|
|
10796
11083
|
* * Possible Values
|
|
10797
11084
|
* * Disabled
|
|
@@ -10805,12 +11092,14 @@ export declare class ActionEntity extends BaseEntity {
|
|
|
10805
11092
|
* * Field Name: CreatedAt
|
|
10806
11093
|
* * Display Name: Created At
|
|
10807
11094
|
* * SQL Data Type: datetime
|
|
11095
|
+
* * Default Value: getdate()
|
|
10808
11096
|
*/
|
|
10809
11097
|
get CreatedAt(): Date;
|
|
10810
11098
|
/**
|
|
10811
11099
|
* * Field Name: UpdatedAt
|
|
10812
11100
|
* * Display Name: Updated At
|
|
10813
11101
|
* * SQL Data Type: datetime
|
|
11102
|
+
* * Default Value: getdate()
|
|
10814
11103
|
*/
|
|
10815
11104
|
get UpdatedAt(): Date;
|
|
10816
11105
|
/**
|
|
@@ -10884,6 +11173,7 @@ export declare class EntityActionFilterEntity extends BaseEntity {
|
|
|
10884
11173
|
* * Field Name: Status
|
|
10885
11174
|
* * Display Name: Status
|
|
10886
11175
|
* * SQL Data Type: nvarchar(20)
|
|
11176
|
+
* * Default Value: Pending
|
|
10887
11177
|
* * Value List Type: List
|
|
10888
11178
|
* * Possible Values
|
|
10889
11179
|
* * Disabled
|
|
@@ -10897,12 +11187,14 @@ export declare class EntityActionFilterEntity extends BaseEntity {
|
|
|
10897
11187
|
* * Field Name: CreatedAt
|
|
10898
11188
|
* * Display Name: Created At
|
|
10899
11189
|
* * SQL Data Type: datetime
|
|
11190
|
+
* * Default Value: getdate()
|
|
10900
11191
|
*/
|
|
10901
11192
|
get CreatedAt(): Date;
|
|
10902
11193
|
/**
|
|
10903
11194
|
* * Field Name: UpdatedAt
|
|
10904
11195
|
* * Display Name: Updated At
|
|
10905
11196
|
* * SQL Data Type: datetime
|
|
11197
|
+
* * Default Value: getdate()
|
|
10906
11198
|
*/
|
|
10907
11199
|
get UpdatedAt(): Date;
|
|
10908
11200
|
}
|
|
@@ -10968,12 +11260,14 @@ export declare class ActionFilterEntity extends BaseEntity {
|
|
|
10968
11260
|
* * Field Name: CreatedAt
|
|
10969
11261
|
* * Display Name: Created At
|
|
10970
11262
|
* * SQL Data Type: datetime
|
|
11263
|
+
* * Default Value: getdate()
|
|
10971
11264
|
*/
|
|
10972
11265
|
get CreatedAt(): Date;
|
|
10973
11266
|
/**
|
|
10974
11267
|
* * Field Name: UpdatedAt
|
|
10975
11268
|
* * Display Name: Updated At
|
|
10976
11269
|
* * SQL Data Type: datetime
|
|
11270
|
+
* * Default Value: getdate()
|
|
10977
11271
|
*/
|
|
10978
11272
|
get UpdatedAt(): Date;
|
|
10979
11273
|
}
|
|
@@ -11027,12 +11321,14 @@ export declare class ActionContextTypeEntity extends BaseEntity {
|
|
|
11027
11321
|
* * Field Name: CreatedAt
|
|
11028
11322
|
* * Display Name: Created At
|
|
11029
11323
|
* * SQL Data Type: datetime
|
|
11324
|
+
* * Default Value: getdate()
|
|
11030
11325
|
*/
|
|
11031
11326
|
get CreatedAt(): Date;
|
|
11032
11327
|
/**
|
|
11033
11328
|
* * Field Name: UpdatedAt
|
|
11034
11329
|
* * Display Name: Updated At
|
|
11035
11330
|
* * SQL Data Type: datetime
|
|
11331
|
+
* * Default Value: getdate()
|
|
11036
11332
|
*/
|
|
11037
11333
|
get UpdatedAt(): Date;
|
|
11038
11334
|
}
|
|
@@ -11093,12 +11389,14 @@ export declare class ActionResultCodeEntity extends BaseEntity {
|
|
|
11093
11389
|
* * Field Name: CreatedAt
|
|
11094
11390
|
* * Display Name: Created At
|
|
11095
11391
|
* * SQL Data Type: datetime
|
|
11392
|
+
* * Default Value: getdate()
|
|
11096
11393
|
*/
|
|
11097
11394
|
get CreatedAt(): Date;
|
|
11098
11395
|
/**
|
|
11099
11396
|
* * Field Name: UpdatedAt
|
|
11100
11397
|
* * Display Name: Updated At
|
|
11101
11398
|
* * SQL Data Type: datetime
|
|
11399
|
+
* * Default Value: getdate()
|
|
11102
11400
|
*/
|
|
11103
11401
|
get UpdatedAt(): Date;
|
|
11104
11402
|
/**
|
|
@@ -11158,6 +11456,7 @@ export declare class ActionContextEntity extends BaseEntity {
|
|
|
11158
11456
|
* * Field Name: Status
|
|
11159
11457
|
* * Display Name: Status
|
|
11160
11458
|
* * SQL Data Type: nvarchar(20)
|
|
11459
|
+
* * Default Value: Pending
|
|
11161
11460
|
* * Value List Type: List
|
|
11162
11461
|
* * Possible Values
|
|
11163
11462
|
* * Disabled
|
|
@@ -11171,12 +11470,14 @@ export declare class ActionContextEntity extends BaseEntity {
|
|
|
11171
11470
|
* * Field Name: CreatedAt
|
|
11172
11471
|
* * Display Name: Created At
|
|
11173
11472
|
* * SQL Data Type: datetime
|
|
11473
|
+
* * Default Value: getdate()
|
|
11174
11474
|
*/
|
|
11175
11475
|
get CreatedAt(): Date;
|
|
11176
11476
|
/**
|
|
11177
11477
|
* * Field Name: UpdatedAt
|
|
11178
11478
|
* * Display Name: Updated At
|
|
11179
11479
|
* * SQL Data Type: datetime
|
|
11480
|
+
* * Default Value: getdate()
|
|
11180
11481
|
*/
|
|
11181
11482
|
get UpdatedAt(): Date;
|
|
11182
11483
|
/**
|
|
@@ -11234,6 +11535,7 @@ export declare class ActionExecutionLogEntity extends BaseEntity {
|
|
|
11234
11535
|
* * Field Name: StartedAt
|
|
11235
11536
|
* * Display Name: Started At
|
|
11236
11537
|
* * SQL Data Type: datetime
|
|
11538
|
+
* * Default Value: getdate()
|
|
11237
11539
|
* * Description: Timestamp of when the action started execution.
|
|
11238
11540
|
*/
|
|
11239
11541
|
get StartedAt(): Date;
|
|
@@ -11280,12 +11582,14 @@ export declare class ActionExecutionLogEntity extends BaseEntity {
|
|
|
11280
11582
|
* * Field Name: CreatedAt
|
|
11281
11583
|
* * Display Name: Created At
|
|
11282
11584
|
* * SQL Data Type: datetime
|
|
11585
|
+
* * Default Value: getdate()
|
|
11283
11586
|
*/
|
|
11284
11587
|
get CreatedAt(): Date;
|
|
11285
11588
|
/**
|
|
11286
11589
|
* * Field Name: UpdatedAt
|
|
11287
11590
|
* * Display Name: Updated At
|
|
11288
11591
|
* * SQL Data Type: datetime
|
|
11592
|
+
* * Default Value: getdate()
|
|
11289
11593
|
*/
|
|
11290
11594
|
get UpdatedAt(): Date;
|
|
11291
11595
|
/**
|
|
@@ -11383,6 +11687,7 @@ export declare class ActionParamEntity extends BaseEntity {
|
|
|
11383
11687
|
* * Field Name: IsArray
|
|
11384
11688
|
* * Display Name: Is Array
|
|
11385
11689
|
* * SQL Data Type: bit
|
|
11690
|
+
* * Default Value: 0
|
|
11386
11691
|
*/
|
|
11387
11692
|
get IsArray(): boolean;
|
|
11388
11693
|
set IsArray(value: boolean);
|
|
@@ -11397,6 +11702,7 @@ export declare class ActionParamEntity extends BaseEntity {
|
|
|
11397
11702
|
* * Field Name: IsRequired
|
|
11398
11703
|
* * Display Name: Is Required
|
|
11399
11704
|
* * SQL Data Type: bit
|
|
11705
|
+
* * Default Value: 1
|
|
11400
11706
|
*/
|
|
11401
11707
|
get IsRequired(): boolean;
|
|
11402
11708
|
set IsRequired(value: boolean);
|
|
@@ -11404,12 +11710,14 @@ export declare class ActionParamEntity extends BaseEntity {
|
|
|
11404
11710
|
* * Field Name: CreatedAt
|
|
11405
11711
|
* * Display Name: Created At
|
|
11406
11712
|
* * SQL Data Type: datetime
|
|
11713
|
+
* * Default Value: getdate()
|
|
11407
11714
|
*/
|
|
11408
11715
|
get CreatedAt(): Date;
|
|
11409
11716
|
/**
|
|
11410
11717
|
* * Field Name: UpdatedAt
|
|
11411
11718
|
* * Display Name: Updated At
|
|
11412
11719
|
* * SQL Data Type: datetime
|
|
11720
|
+
* * Default Value: getdate()
|
|
11413
11721
|
*/
|
|
11414
11722
|
get UpdatedAt(): Date;
|
|
11415
11723
|
/**
|
|
@@ -11477,12 +11785,14 @@ export declare class ActionLibraryEntity extends BaseEntity {
|
|
|
11477
11785
|
* * Field Name: CreatedAt
|
|
11478
11786
|
* * Display Name: Created At
|
|
11479
11787
|
* * SQL Data Type: datetime
|
|
11788
|
+
* * Default Value: getdate()
|
|
11480
11789
|
*/
|
|
11481
11790
|
get CreatedAt(): Date;
|
|
11482
11791
|
/**
|
|
11483
11792
|
* * Field Name: UpdatedAt
|
|
11484
11793
|
* * Display Name: Updated At
|
|
11485
11794
|
* * SQL Data Type: datetime
|
|
11795
|
+
* * Default Value: getdate()
|
|
11486
11796
|
*/
|
|
11487
11797
|
get UpdatedAt(): Date;
|
|
11488
11798
|
/**
|
|
@@ -11555,6 +11865,7 @@ export declare class LibraryEntity extends BaseEntity {
|
|
|
11555
11865
|
* * Field Name: Status
|
|
11556
11866
|
* * Display Name: Status
|
|
11557
11867
|
* * SQL Data Type: nvarchar(20)
|
|
11868
|
+
* * Default Value: Pending
|
|
11558
11869
|
* * Value List Type: List
|
|
11559
11870
|
* * Possible Values
|
|
11560
11871
|
* * Pending
|
|
@@ -11592,12 +11903,14 @@ export declare class LibraryEntity extends BaseEntity {
|
|
|
11592
11903
|
* * Field Name: CreatedAt
|
|
11593
11904
|
* * Display Name: Created At
|
|
11594
11905
|
* * SQL Data Type: datetime
|
|
11906
|
+
* * Default Value: getdate()
|
|
11595
11907
|
*/
|
|
11596
11908
|
get CreatedAt(): Date;
|
|
11597
11909
|
/**
|
|
11598
11910
|
* * Field Name: UpdatedAt
|
|
11599
11911
|
* * Display Name: Updated At
|
|
11600
11912
|
* * SQL Data Type: datetime
|
|
11913
|
+
* * Default Value: getdate()
|
|
11601
11914
|
*/
|
|
11602
11915
|
get UpdatedAt(): Date;
|
|
11603
11916
|
}
|
|
@@ -11680,93 +11993,6 @@ export declare class ListCategoryEntity extends BaseEntity {
|
|
|
11680
11993
|
get UserID(): number;
|
|
11681
11994
|
set UserID(value: number);
|
|
11682
11995
|
}
|
|
11683
|
-
/**
|
|
11684
|
-
* Communication Templates - strongly typed entity sub-class
|
|
11685
|
-
* * Schema: __mj
|
|
11686
|
-
* * Base Table: CommunicationTemplate
|
|
11687
|
-
* * Base View: vwCommunicationTemplates
|
|
11688
|
-
* * @description Reusable templates for communication.
|
|
11689
|
-
* * Primary Key: ID
|
|
11690
|
-
* @extends {BaseEntity}
|
|
11691
|
-
* @class
|
|
11692
|
-
* @public
|
|
11693
|
-
*/
|
|
11694
|
-
export declare class CommunicationTemplateEntity extends BaseEntity {
|
|
11695
|
-
/**
|
|
11696
|
-
* Loads the Communication Templates record from the database
|
|
11697
|
-
* @param ID: number - primary key value to load the Communication Templates record.
|
|
11698
|
-
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11699
|
-
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11700
|
-
* @public
|
|
11701
|
-
* @async
|
|
11702
|
-
* @memberof CommunicationTemplateEntity
|
|
11703
|
-
* @method
|
|
11704
|
-
* @override
|
|
11705
|
-
*/
|
|
11706
|
-
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11707
|
-
/**
|
|
11708
|
-
* Communication Templates - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
11709
|
-
* @public
|
|
11710
|
-
* @method
|
|
11711
|
-
* @override
|
|
11712
|
-
* @memberof CommunicationTemplateEntity
|
|
11713
|
-
* @throws {Error} - Delete is not allowed for Communication Templates, to enable it set AllowDeleteAPI to 1 in the database.
|
|
11714
|
-
*/
|
|
11715
|
-
Delete(): Promise<boolean>;
|
|
11716
|
-
/**
|
|
11717
|
-
* * Field Name: ID
|
|
11718
|
-
* * Display Name: ID
|
|
11719
|
-
* * SQL Data Type: int
|
|
11720
|
-
*/
|
|
11721
|
-
get ID(): number;
|
|
11722
|
-
/**
|
|
11723
|
-
* * Field Name: Name
|
|
11724
|
-
* * Display Name: Name
|
|
11725
|
-
* * SQL Data Type: nvarchar(255)
|
|
11726
|
-
*/
|
|
11727
|
-
get Name(): string;
|
|
11728
|
-
set Name(value: string);
|
|
11729
|
-
/**
|
|
11730
|
-
* * Field Name: Content
|
|
11731
|
-
* * Display Name: Content
|
|
11732
|
-
* * SQL Data Type: nvarchar(MAX)
|
|
11733
|
-
*/
|
|
11734
|
-
get Content(): string;
|
|
11735
|
-
set Content(value: string);
|
|
11736
|
-
/**
|
|
11737
|
-
* * Field Name: ParentID
|
|
11738
|
-
* * Display Name: Parent ID
|
|
11739
|
-
* * SQL Data Type: int
|
|
11740
|
-
* * Related Entity/Foreign Key: Communication Templates (vwCommunicationTemplates.ID)
|
|
11741
|
-
*/
|
|
11742
|
-
get ParentID(): number | null;
|
|
11743
|
-
set ParentID(value: number | null);
|
|
11744
|
-
/**
|
|
11745
|
-
* * Field Name: Comments
|
|
11746
|
-
* * Display Name: Comments
|
|
11747
|
-
* * SQL Data Type: nvarchar(MAX)
|
|
11748
|
-
*/
|
|
11749
|
-
get Comments(): string | null;
|
|
11750
|
-
set Comments(value: string | null);
|
|
11751
|
-
/**
|
|
11752
|
-
* * Field Name: CreatedAt
|
|
11753
|
-
* * Display Name: Created At
|
|
11754
|
-
* * SQL Data Type: datetime
|
|
11755
|
-
*/
|
|
11756
|
-
get CreatedAt(): Date;
|
|
11757
|
-
/**
|
|
11758
|
-
* * Field Name: UpdatedAt
|
|
11759
|
-
* * Display Name: Updated At
|
|
11760
|
-
* * SQL Data Type: datetime
|
|
11761
|
-
*/
|
|
11762
|
-
get UpdatedAt(): Date;
|
|
11763
|
-
/**
|
|
11764
|
-
* * Field Name: Parent
|
|
11765
|
-
* * Display Name: Parent
|
|
11766
|
-
* * SQL Data Type: nvarchar(255)
|
|
11767
|
-
*/
|
|
11768
|
-
get Parent(): string | null;
|
|
11769
|
-
}
|
|
11770
11996
|
/**
|
|
11771
11997
|
* Communication Providers - strongly typed entity sub-class
|
|
11772
11998
|
* * Schema: __mj
|
|
@@ -11824,6 +12050,7 @@ export declare class CommunicationProviderEntity extends BaseEntity {
|
|
|
11824
12050
|
* * Field Name: Status
|
|
11825
12051
|
* * Display Name: Status
|
|
11826
12052
|
* * SQL Data Type: nvarchar(20)
|
|
12053
|
+
* * Default Value: Disabled
|
|
11827
12054
|
* * Value List Type: List
|
|
11828
12055
|
* * Possible Values
|
|
11829
12056
|
* * Disabled
|
|
@@ -11836,6 +12063,7 @@ export declare class CommunicationProviderEntity extends BaseEntity {
|
|
|
11836
12063
|
* * Field Name: SupportsSending
|
|
11837
12064
|
* * Display Name: Supports Sending
|
|
11838
12065
|
* * SQL Data Type: bit
|
|
12066
|
+
* * Default Value: 1
|
|
11839
12067
|
* * Description: Indicates if the provider supports sending messages.
|
|
11840
12068
|
*/
|
|
11841
12069
|
get SupportsSending(): boolean;
|
|
@@ -11844,6 +12072,7 @@ export declare class CommunicationProviderEntity extends BaseEntity {
|
|
|
11844
12072
|
* * Field Name: SupportsReceiving
|
|
11845
12073
|
* * Display Name: Supports Receiving
|
|
11846
12074
|
* * SQL Data Type: bit
|
|
12075
|
+
* * Default Value: 0
|
|
11847
12076
|
* * Description: Indicates if the provider supports receiving messages.
|
|
11848
12077
|
*/
|
|
11849
12078
|
get SupportsReceiving(): boolean;
|
|
@@ -11852,12 +12081,14 @@ export declare class CommunicationProviderEntity extends BaseEntity {
|
|
|
11852
12081
|
* * Field Name: CreatedAt
|
|
11853
12082
|
* * Display Name: Created At
|
|
11854
12083
|
* * SQL Data Type: datetime
|
|
12084
|
+
* * Default Value: getdate()
|
|
11855
12085
|
*/
|
|
11856
12086
|
get CreatedAt(): Date;
|
|
11857
12087
|
/**
|
|
11858
12088
|
* * Field Name: UpdatedAt
|
|
11859
12089
|
* * Display Name: Updated At
|
|
11860
12090
|
* * SQL Data Type: datetime
|
|
12091
|
+
* * Default Value: getdate()
|
|
11861
12092
|
*/
|
|
11862
12093
|
get UpdatedAt(): Date;
|
|
11863
12094
|
}
|
|
@@ -11935,6 +12166,20 @@ export declare class CommunicationRunEntity extends BaseEntity {
|
|
|
11935
12166
|
get Status(): 'Pending' | 'In-Progress' | 'Complete' | 'Failed';
|
|
11936
12167
|
set Status(value: 'Pending' | 'In-Progress' | 'Complete' | 'Failed');
|
|
11937
12168
|
/**
|
|
12169
|
+
* * Field Name: StartedAt
|
|
12170
|
+
* * Display Name: Started At
|
|
12171
|
+
* * SQL Data Type: datetime
|
|
12172
|
+
*/
|
|
12173
|
+
get StartedAt(): Date | null;
|
|
12174
|
+
set StartedAt(value: Date | null);
|
|
12175
|
+
/**
|
|
12176
|
+
* * Field Name: EndedAt
|
|
12177
|
+
* * Display Name: Ended At
|
|
12178
|
+
* * SQL Data Type: datetime
|
|
12179
|
+
*/
|
|
12180
|
+
get EndedAt(): Date | null;
|
|
12181
|
+
set EndedAt(value: Date | null);
|
|
12182
|
+
/**
|
|
11938
12183
|
* * Field Name: Comments
|
|
11939
12184
|
* * Display Name: Comments
|
|
11940
12185
|
* * SQL Data Type: nvarchar(MAX)
|
|
@@ -11953,12 +12198,14 @@ export declare class CommunicationRunEntity extends BaseEntity {
|
|
|
11953
12198
|
* * Field Name: CreatedAt
|
|
11954
12199
|
* * Display Name: Created At
|
|
11955
12200
|
* * SQL Data Type: datetime
|
|
12201
|
+
* * Default Value: getdate()
|
|
11956
12202
|
*/
|
|
11957
12203
|
get CreatedAt(): Date;
|
|
11958
12204
|
/**
|
|
11959
12205
|
* * Field Name: UpdatedAt
|
|
11960
12206
|
* * Display Name: Updated At
|
|
11961
12207
|
* * SQL Data Type: datetime
|
|
12208
|
+
* * Default Value: getdate()
|
|
11962
12209
|
*/
|
|
11963
12210
|
get UpdatedAt(): Date;
|
|
11964
12211
|
/**
|
|
@@ -12034,6 +12281,7 @@ export declare class CommunicationProviderMessageTypeEntity extends BaseEntity {
|
|
|
12034
12281
|
* * Field Name: Status
|
|
12035
12282
|
* * Display Name: Status
|
|
12036
12283
|
* * SQL Data Type: nvarchar(20)
|
|
12284
|
+
* * Default Value: Disabled
|
|
12037
12285
|
* * Value List Type: List
|
|
12038
12286
|
* * Possible Values
|
|
12039
12287
|
* * Disabled
|
|
@@ -12054,12 +12302,14 @@ export declare class CommunicationProviderMessageTypeEntity extends BaseEntity {
|
|
|
12054
12302
|
* * Field Name: CreatedAt
|
|
12055
12303
|
* * Display Name: Created At
|
|
12056
12304
|
* * SQL Data Type: datetime
|
|
12305
|
+
* * Default Value: getdate()
|
|
12057
12306
|
*/
|
|
12058
12307
|
get CreatedAt(): Date;
|
|
12059
12308
|
/**
|
|
12060
12309
|
* * Field Name: UpdatedAt
|
|
12061
12310
|
* * Display Name: Updated At
|
|
12062
12311
|
* * SQL Data Type: datetime
|
|
12312
|
+
* * Default Value: getdate()
|
|
12063
12313
|
*/
|
|
12064
12314
|
get UpdatedAt(): Date;
|
|
12065
12315
|
/**
|
|
@@ -12192,12 +12442,14 @@ export declare class CommunicationLogEntity extends BaseEntity {
|
|
|
12192
12442
|
* * Field Name: CreatedAt
|
|
12193
12443
|
* * Display Name: Created At
|
|
12194
12444
|
* * SQL Data Type: datetime
|
|
12445
|
+
* * Default Value: getdate()
|
|
12195
12446
|
*/
|
|
12196
12447
|
get CreatedAt(): Date;
|
|
12197
12448
|
/**
|
|
12198
12449
|
* * Field Name: UpdatedAt
|
|
12199
12450
|
* * Display Name: Updated At
|
|
12200
12451
|
* * SQL Data Type: datetime
|
|
12452
|
+
* * Default Value: getdate()
|
|
12201
12453
|
*/
|
|
12202
12454
|
get UpdatedAt(): Date;
|
|
12203
12455
|
/**
|
|
@@ -12263,6 +12515,7 @@ export declare class CommunicationBaseMessageTypeEntity extends BaseEntity {
|
|
|
12263
12515
|
* * Field Name: SupportsAttachments
|
|
12264
12516
|
* * Display Name: Supports Attachments
|
|
12265
12517
|
* * SQL Data Type: bit
|
|
12518
|
+
* * Default Value: 0
|
|
12266
12519
|
* * Description: Indicates if attachments are supported.
|
|
12267
12520
|
*/
|
|
12268
12521
|
get SupportsAttachments(): boolean;
|
|
@@ -12271,6 +12524,7 @@ export declare class CommunicationBaseMessageTypeEntity extends BaseEntity {
|
|
|
12271
12524
|
* * Field Name: SupportsSubjectLine
|
|
12272
12525
|
* * Display Name: Supports Subject Line
|
|
12273
12526
|
* * SQL Data Type: bit
|
|
12527
|
+
* * Default Value: 0
|
|
12274
12528
|
* * Description: Indicates if a subject line is supported.
|
|
12275
12529
|
*/
|
|
12276
12530
|
get SupportsSubjectLine(): boolean;
|
|
@@ -12279,6 +12533,7 @@ export declare class CommunicationBaseMessageTypeEntity extends BaseEntity {
|
|
|
12279
12533
|
* * Field Name: SupportsHtml
|
|
12280
12534
|
* * Display Name: Supports Html
|
|
12281
12535
|
* * SQL Data Type: bit
|
|
12536
|
+
* * Default Value: 0
|
|
12282
12537
|
* * Description: Indicates if HTML content is supported.
|
|
12283
12538
|
*/
|
|
12284
12539
|
get SupportsHtml(): boolean;
|
|
@@ -12295,12 +12550,1097 @@ export declare class CommunicationBaseMessageTypeEntity extends BaseEntity {
|
|
|
12295
12550
|
* * Field Name: CreatedAt
|
|
12296
12551
|
* * Display Name: Created At
|
|
12297
12552
|
* * SQL Data Type: datetime
|
|
12553
|
+
* * Default Value: getdate()
|
|
12554
|
+
*/
|
|
12555
|
+
get CreatedAt(): Date;
|
|
12556
|
+
/**
|
|
12557
|
+
* * Field Name: UpdatedAt
|
|
12558
|
+
* * Display Name: Updated At
|
|
12559
|
+
* * SQL Data Type: datetime
|
|
12560
|
+
* * Default Value: getdate()
|
|
12561
|
+
*/
|
|
12562
|
+
get UpdatedAt(): Date;
|
|
12563
|
+
}
|
|
12564
|
+
/**
|
|
12565
|
+
* Templates - strongly typed entity sub-class
|
|
12566
|
+
* * Schema: __mj
|
|
12567
|
+
* * Base Table: Template
|
|
12568
|
+
* * Base View: vwTemplates
|
|
12569
|
+
* * @description Templates are used for dynamic expansion of a static template with data from a given context. Templates can be used to create documents, messages and anything else that requires dynamic document creation merging together static text, data and lightweight logic
|
|
12570
|
+
* * Primary Key: ID
|
|
12571
|
+
* @extends {BaseEntity}
|
|
12572
|
+
* @class
|
|
12573
|
+
* @public
|
|
12574
|
+
*/
|
|
12575
|
+
export declare class TemplateEntity extends BaseEntity {
|
|
12576
|
+
/**
|
|
12577
|
+
* Loads the Templates record from the database
|
|
12578
|
+
* @param ID: number - primary key value to load the Templates record.
|
|
12579
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12580
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12581
|
+
* @public
|
|
12582
|
+
* @async
|
|
12583
|
+
* @memberof TemplateEntity
|
|
12584
|
+
* @method
|
|
12585
|
+
* @override
|
|
12586
|
+
*/
|
|
12587
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
12588
|
+
/**
|
|
12589
|
+
* Templates - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
12590
|
+
* @public
|
|
12591
|
+
* @method
|
|
12592
|
+
* @override
|
|
12593
|
+
* @memberof TemplateEntity
|
|
12594
|
+
* @throws {Error} - Delete is not allowed for Templates, to enable it set AllowDeleteAPI to 1 in the database.
|
|
12595
|
+
*/
|
|
12596
|
+
Delete(): Promise<boolean>;
|
|
12597
|
+
/**
|
|
12598
|
+
* * Field Name: ID
|
|
12599
|
+
* * Display Name: ID
|
|
12600
|
+
* * SQL Data Type: int
|
|
12601
|
+
*/
|
|
12602
|
+
get ID(): number;
|
|
12603
|
+
/**
|
|
12604
|
+
* * Field Name: Name
|
|
12605
|
+
* * Display Name: Name
|
|
12606
|
+
* * SQL Data Type: nvarchar(255)
|
|
12607
|
+
* * Description: Name of the template
|
|
12608
|
+
*/
|
|
12609
|
+
get Name(): string;
|
|
12610
|
+
set Name(value: string);
|
|
12611
|
+
/**
|
|
12612
|
+
* * Field Name: Description
|
|
12613
|
+
* * Display Name: Description
|
|
12614
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12615
|
+
* * Description: Description of the template
|
|
12616
|
+
*/
|
|
12617
|
+
get Description(): string | null;
|
|
12618
|
+
set Description(value: string | null);
|
|
12619
|
+
/**
|
|
12620
|
+
* * Field Name: UserPrompt
|
|
12621
|
+
* * Display Name: User Prompt
|
|
12622
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12623
|
+
* * Description: This prompt will be used by the AI to generate template content as requested by the user.
|
|
12624
|
+
*/
|
|
12625
|
+
get UserPrompt(): string | null;
|
|
12626
|
+
set UserPrompt(value: string | null);
|
|
12627
|
+
/**
|
|
12628
|
+
* * Field Name: CategoryID
|
|
12629
|
+
* * Display Name: Category ID
|
|
12630
|
+
* * SQL Data Type: int
|
|
12631
|
+
* * Related Entity/Foreign Key: Template Categories (vwTemplateCategories.ID)
|
|
12632
|
+
* * Description: Optional, Category that this template is part of
|
|
12633
|
+
*/
|
|
12634
|
+
get CategoryID(): number | null;
|
|
12635
|
+
set CategoryID(value: number | null);
|
|
12636
|
+
/**
|
|
12637
|
+
* * Field Name: UserID
|
|
12638
|
+
* * Display Name: User ID
|
|
12639
|
+
* * SQL Data Type: int
|
|
12640
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
12641
|
+
*/
|
|
12642
|
+
get UserID(): number;
|
|
12643
|
+
set UserID(value: number);
|
|
12644
|
+
/**
|
|
12645
|
+
* * Field Name: ActiveAt
|
|
12646
|
+
* * Display Name: Active At
|
|
12647
|
+
* * SQL Data Type: datetime
|
|
12648
|
+
* * Description: Optional, if provided, this template will not be available for use until the specified date. Requires IsActive to be set to 1
|
|
12649
|
+
*/
|
|
12650
|
+
get ActiveAt(): Date | null;
|
|
12651
|
+
set ActiveAt(value: Date | null);
|
|
12652
|
+
/**
|
|
12653
|
+
* * Field Name: DisabledAt
|
|
12654
|
+
* * Display Name: Disabled At
|
|
12655
|
+
* * SQL Data Type: datetime
|
|
12656
|
+
* * Description: Optional, if provided, this template will not be available for use after the specified date. If IsActive=0, this has no effect.
|
|
12657
|
+
*/
|
|
12658
|
+
get DisabledAt(): Date | null;
|
|
12659
|
+
set DisabledAt(value: Date | null);
|
|
12660
|
+
/**
|
|
12661
|
+
* * Field Name: IsActive
|
|
12662
|
+
* * Display Name: Is Active
|
|
12663
|
+
* * SQL Data Type: bit
|
|
12664
|
+
* * Default Value: 1
|
|
12665
|
+
* * Description: If set to 0, the template will be disabled regardless of the values in ActiveAt/DisabledAt.
|
|
12666
|
+
*/
|
|
12667
|
+
get IsActive(): boolean;
|
|
12668
|
+
set IsActive(value: boolean);
|
|
12669
|
+
/**
|
|
12670
|
+
* * Field Name: CreatedAt
|
|
12671
|
+
* * Display Name: Created At
|
|
12672
|
+
* * SQL Data Type: datetime
|
|
12673
|
+
* * Default Value: getdate()
|
|
12674
|
+
*/
|
|
12675
|
+
get CreatedAt(): Date;
|
|
12676
|
+
/**
|
|
12677
|
+
* * Field Name: UpdatedAt
|
|
12678
|
+
* * Display Name: Updated At
|
|
12679
|
+
* * SQL Data Type: datetime
|
|
12680
|
+
* * Default Value: getdate()
|
|
12681
|
+
*/
|
|
12682
|
+
get UpdatedAt(): Date;
|
|
12683
|
+
/**
|
|
12684
|
+
* * Field Name: Category
|
|
12685
|
+
* * Display Name: Category
|
|
12686
|
+
* * SQL Data Type: nvarchar(255)
|
|
12687
|
+
*/
|
|
12688
|
+
get Category(): string | null;
|
|
12689
|
+
/**
|
|
12690
|
+
* * Field Name: User
|
|
12691
|
+
* * Display Name: User
|
|
12692
|
+
* * SQL Data Type: nvarchar(100)
|
|
12693
|
+
*/
|
|
12694
|
+
get User(): string;
|
|
12695
|
+
}
|
|
12696
|
+
/**
|
|
12697
|
+
* Template Categories - strongly typed entity sub-class
|
|
12698
|
+
* * Schema: __mj
|
|
12699
|
+
* * Base Table: TemplateCategory
|
|
12700
|
+
* * Base View: vwTemplateCategories
|
|
12701
|
+
* * @description Template categories for organizing templates
|
|
12702
|
+
* * Primary Key: ID
|
|
12703
|
+
* @extends {BaseEntity}
|
|
12704
|
+
* @class
|
|
12705
|
+
* @public
|
|
12706
|
+
*/
|
|
12707
|
+
export declare class TemplateCategoryEntity extends BaseEntity {
|
|
12708
|
+
/**
|
|
12709
|
+
* Loads the Template Categories record from the database
|
|
12710
|
+
* @param ID: number - primary key value to load the Template Categories record.
|
|
12711
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12712
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12713
|
+
* @public
|
|
12714
|
+
* @async
|
|
12715
|
+
* @memberof TemplateCategoryEntity
|
|
12716
|
+
* @method
|
|
12717
|
+
* @override
|
|
12718
|
+
*/
|
|
12719
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
12720
|
+
/**
|
|
12721
|
+
* Template Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
12722
|
+
* @public
|
|
12723
|
+
* @method
|
|
12724
|
+
* @override
|
|
12725
|
+
* @memberof TemplateCategoryEntity
|
|
12726
|
+
* @throws {Error} - Delete is not allowed for Template Categories, to enable it set AllowDeleteAPI to 1 in the database.
|
|
12727
|
+
*/
|
|
12728
|
+
Delete(): Promise<boolean>;
|
|
12729
|
+
/**
|
|
12730
|
+
* * Field Name: ID
|
|
12731
|
+
* * Display Name: ID
|
|
12732
|
+
* * SQL Data Type: int
|
|
12733
|
+
*/
|
|
12734
|
+
get ID(): number;
|
|
12735
|
+
/**
|
|
12736
|
+
* * Field Name: Name
|
|
12737
|
+
* * Display Name: Name
|
|
12738
|
+
* * SQL Data Type: nvarchar(255)
|
|
12739
|
+
* * Description: Name of the template category
|
|
12740
|
+
*/
|
|
12741
|
+
get Name(): string;
|
|
12742
|
+
set Name(value: string);
|
|
12743
|
+
/**
|
|
12744
|
+
* * Field Name: Description
|
|
12745
|
+
* * Display Name: Description
|
|
12746
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12747
|
+
* * Description: Description of the template category
|
|
12748
|
+
*/
|
|
12749
|
+
get Description(): string | null;
|
|
12750
|
+
set Description(value: string | null);
|
|
12751
|
+
/**
|
|
12752
|
+
* * Field Name: ParentID
|
|
12753
|
+
* * Display Name: Parent ID
|
|
12754
|
+
* * SQL Data Type: int
|
|
12755
|
+
* * Related Entity/Foreign Key: Template Categories (vwTemplateCategories.ID)
|
|
12756
|
+
*/
|
|
12757
|
+
get ParentID(): number | null;
|
|
12758
|
+
set ParentID(value: number | null);
|
|
12759
|
+
/**
|
|
12760
|
+
* * Field Name: UserID
|
|
12761
|
+
* * Display Name: User ID
|
|
12762
|
+
* * SQL Data Type: int
|
|
12763
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
12764
|
+
*/
|
|
12765
|
+
get UserID(): number;
|
|
12766
|
+
set UserID(value: number);
|
|
12767
|
+
/**
|
|
12768
|
+
* * Field Name: CreatedAt
|
|
12769
|
+
* * Display Name: Created At
|
|
12770
|
+
* * SQL Data Type: datetime
|
|
12771
|
+
* * Default Value: getdate()
|
|
12772
|
+
*/
|
|
12773
|
+
get CreatedAt(): Date;
|
|
12774
|
+
/**
|
|
12775
|
+
* * Field Name: UpdatedAt
|
|
12776
|
+
* * Display Name: Updated At
|
|
12777
|
+
* * SQL Data Type: datetime
|
|
12778
|
+
* * Default Value: getdate()
|
|
12779
|
+
*/
|
|
12780
|
+
get UpdatedAt(): Date;
|
|
12781
|
+
/**
|
|
12782
|
+
* * Field Name: Parent
|
|
12783
|
+
* * Display Name: Parent
|
|
12784
|
+
* * SQL Data Type: nvarchar(255)
|
|
12785
|
+
*/
|
|
12786
|
+
get Parent(): string | null;
|
|
12787
|
+
/**
|
|
12788
|
+
* * Field Name: User
|
|
12789
|
+
* * Display Name: User
|
|
12790
|
+
* * SQL Data Type: nvarchar(100)
|
|
12791
|
+
*/
|
|
12792
|
+
get User(): string;
|
|
12793
|
+
}
|
|
12794
|
+
/**
|
|
12795
|
+
* Template Contents - strongly typed entity sub-class
|
|
12796
|
+
* * Schema: __mj
|
|
12797
|
+
* * Base Table: TemplateContent
|
|
12798
|
+
* * Base View: vwTemplateContents
|
|
12799
|
+
* * @description Template content for different versions of a template for purposes like HTML/Text/etc
|
|
12800
|
+
* * Primary Key: ID
|
|
12801
|
+
* @extends {BaseEntity}
|
|
12802
|
+
* @class
|
|
12803
|
+
* @public
|
|
12804
|
+
*/
|
|
12805
|
+
export declare class TemplateContentEntity extends BaseEntity {
|
|
12806
|
+
/**
|
|
12807
|
+
* Loads the Template Contents record from the database
|
|
12808
|
+
* @param ID: number - primary key value to load the Template Contents record.
|
|
12809
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12810
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12811
|
+
* @public
|
|
12812
|
+
* @async
|
|
12813
|
+
* @memberof TemplateContentEntity
|
|
12814
|
+
* @method
|
|
12815
|
+
* @override
|
|
12816
|
+
*/
|
|
12817
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
12818
|
+
/**
|
|
12819
|
+
* Template Contents - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
12820
|
+
* @public
|
|
12821
|
+
* @method
|
|
12822
|
+
* @override
|
|
12823
|
+
* @memberof TemplateContentEntity
|
|
12824
|
+
* @throws {Error} - Delete is not allowed for Template Contents, to enable it set AllowDeleteAPI to 1 in the database.
|
|
12825
|
+
*/
|
|
12826
|
+
Delete(): Promise<boolean>;
|
|
12827
|
+
/**
|
|
12828
|
+
* * Field Name: ID
|
|
12829
|
+
* * Display Name: ID
|
|
12830
|
+
* * SQL Data Type: int
|
|
12831
|
+
*/
|
|
12832
|
+
get ID(): number;
|
|
12833
|
+
/**
|
|
12834
|
+
* * Field Name: TemplateID
|
|
12835
|
+
* * Display Name: Template ID
|
|
12836
|
+
* * SQL Data Type: int
|
|
12837
|
+
* * Related Entity/Foreign Key: Templates (vwTemplates.ID)
|
|
12838
|
+
*/
|
|
12839
|
+
get TemplateID(): number;
|
|
12840
|
+
set TemplateID(value: number);
|
|
12841
|
+
/**
|
|
12842
|
+
* * Field Name: TypeID
|
|
12843
|
+
* * Display Name: Type ID
|
|
12844
|
+
* * SQL Data Type: int
|
|
12845
|
+
* * Related Entity/Foreign Key: Template Content Types (vwTemplateContentTypes.ID)
|
|
12846
|
+
*/
|
|
12847
|
+
get TypeID(): number;
|
|
12848
|
+
set TypeID(value: number);
|
|
12849
|
+
/**
|
|
12850
|
+
* * Field Name: TemplateText
|
|
12851
|
+
* * Display Name: Template Text
|
|
12852
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12853
|
+
* * Description: The actual text content for the template
|
|
12854
|
+
*/
|
|
12855
|
+
get TemplateText(): string | null;
|
|
12856
|
+
set TemplateText(value: string | null);
|
|
12857
|
+
/**
|
|
12858
|
+
* * Field Name: Priority
|
|
12859
|
+
* * Display Name: Priority
|
|
12860
|
+
* * SQL Data Type: int
|
|
12861
|
+
* * Description: Priority of the content version, higher priority versions will be used ahead of lower priority versions for a given Type
|
|
12862
|
+
*/
|
|
12863
|
+
get Priority(): number;
|
|
12864
|
+
set Priority(value: number);
|
|
12865
|
+
/**
|
|
12866
|
+
* * Field Name: IsActive
|
|
12867
|
+
* * Display Name: Is Active
|
|
12868
|
+
* * SQL Data Type: bit
|
|
12869
|
+
* * Default Value: 1
|
|
12870
|
+
* * Description: Indicates whether the content is active or not. Use this to disable a particular Template Content item without having to remove it
|
|
12871
|
+
*/
|
|
12872
|
+
get IsActive(): boolean;
|
|
12873
|
+
set IsActive(value: boolean);
|
|
12874
|
+
/**
|
|
12875
|
+
* * Field Name: CreatedAt
|
|
12876
|
+
* * Display Name: Created At
|
|
12877
|
+
* * SQL Data Type: datetime
|
|
12878
|
+
* * Default Value: getdate()
|
|
12879
|
+
*/
|
|
12880
|
+
get CreatedAt(): Date;
|
|
12881
|
+
/**
|
|
12882
|
+
* * Field Name: UpdatedAt
|
|
12883
|
+
* * Display Name: Updated At
|
|
12884
|
+
* * SQL Data Type: datetime
|
|
12885
|
+
* * Default Value: getdate()
|
|
12886
|
+
*/
|
|
12887
|
+
get UpdatedAt(): Date;
|
|
12888
|
+
/**
|
|
12889
|
+
* * Field Name: Template
|
|
12890
|
+
* * Display Name: Template
|
|
12891
|
+
* * SQL Data Type: nvarchar(255)
|
|
12892
|
+
*/
|
|
12893
|
+
get Template(): string;
|
|
12894
|
+
/**
|
|
12895
|
+
* * Field Name: Type
|
|
12896
|
+
* * Display Name: Type
|
|
12897
|
+
* * SQL Data Type: nvarchar(255)
|
|
12898
|
+
*/
|
|
12899
|
+
get Type(): string;
|
|
12900
|
+
}
|
|
12901
|
+
/**
|
|
12902
|
+
* Template Params - strongly typed entity sub-class
|
|
12903
|
+
* * Schema: __mj
|
|
12904
|
+
* * Base Table: TemplateParam
|
|
12905
|
+
* * Base View: vwTemplateParams
|
|
12906
|
+
* * @description Parameters allowed for use inside the template
|
|
12907
|
+
* * Primary Key: ID
|
|
12908
|
+
* @extends {BaseEntity}
|
|
12909
|
+
* @class
|
|
12910
|
+
* @public
|
|
12911
|
+
*/
|
|
12912
|
+
export declare class TemplateParamEntity extends BaseEntity {
|
|
12913
|
+
/**
|
|
12914
|
+
* Loads the Template Params record from the database
|
|
12915
|
+
* @param ID: number - primary key value to load the Template Params record.
|
|
12916
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12917
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12918
|
+
* @public
|
|
12919
|
+
* @async
|
|
12920
|
+
* @memberof TemplateParamEntity
|
|
12921
|
+
* @method
|
|
12922
|
+
* @override
|
|
12923
|
+
*/
|
|
12924
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
12925
|
+
/**
|
|
12926
|
+
* Template Params - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
12927
|
+
* @public
|
|
12928
|
+
* @method
|
|
12929
|
+
* @override
|
|
12930
|
+
* @memberof TemplateParamEntity
|
|
12931
|
+
* @throws {Error} - Delete is not allowed for Template Params, to enable it set AllowDeleteAPI to 1 in the database.
|
|
12932
|
+
*/
|
|
12933
|
+
Delete(): Promise<boolean>;
|
|
12934
|
+
/**
|
|
12935
|
+
* * Field Name: ID
|
|
12936
|
+
* * Display Name: ID
|
|
12937
|
+
* * SQL Data Type: int
|
|
12938
|
+
*/
|
|
12939
|
+
get ID(): number;
|
|
12940
|
+
/**
|
|
12941
|
+
* * Field Name: TemplateID
|
|
12942
|
+
* * Display Name: Template ID
|
|
12943
|
+
* * SQL Data Type: int
|
|
12944
|
+
* * Related Entity/Foreign Key: Templates (vwTemplates.ID)
|
|
12945
|
+
* * Description: ID of the template this parameter belongs to
|
|
12946
|
+
*/
|
|
12947
|
+
get TemplateID(): number;
|
|
12948
|
+
set TemplateID(value: number);
|
|
12949
|
+
/**
|
|
12950
|
+
* * Field Name: Name
|
|
12951
|
+
* * Display Name: Name
|
|
12952
|
+
* * SQL Data Type: nvarchar(255)
|
|
12953
|
+
* * Description: Name of the parameter
|
|
12954
|
+
*/
|
|
12955
|
+
get Name(): string;
|
|
12956
|
+
set Name(value: string);
|
|
12957
|
+
/**
|
|
12958
|
+
* * Field Name: Description
|
|
12959
|
+
* * Display Name: Description
|
|
12960
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12961
|
+
* * Description: Description of the parameter
|
|
12962
|
+
*/
|
|
12963
|
+
get Description(): string | null;
|
|
12964
|
+
set Description(value: string | null);
|
|
12965
|
+
/**
|
|
12966
|
+
* * Field Name: Type
|
|
12967
|
+
* * Display Name: Type
|
|
12968
|
+
* * SQL Data Type: nvarchar(20)
|
|
12969
|
+
* * Default Value: Scalar
|
|
12970
|
+
* * Value List Type: List
|
|
12971
|
+
* * Possible Values
|
|
12972
|
+
* * Scalar
|
|
12973
|
+
* * Array
|
|
12974
|
+
* * Object
|
|
12975
|
+
* * Record
|
|
12976
|
+
* * Description: Type of the parameter
|
|
12977
|
+
*/
|
|
12978
|
+
get Type(): 'Scalar' | 'Array' | 'Object' | 'Record';
|
|
12979
|
+
set Type(value: 'Scalar' | 'Array' | 'Object' | 'Record');
|
|
12980
|
+
/**
|
|
12981
|
+
* * Field Name: DefaultValue
|
|
12982
|
+
* * Display Name: Default Value
|
|
12983
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12984
|
+
* * Description: Default value of the parameter
|
|
12985
|
+
*/
|
|
12986
|
+
get DefaultValue(): string | null;
|
|
12987
|
+
set DefaultValue(value: string | null);
|
|
12988
|
+
/**
|
|
12989
|
+
* * Field Name: IsRequired
|
|
12990
|
+
* * Display Name: Is Required
|
|
12991
|
+
* * SQL Data Type: bit
|
|
12992
|
+
* * Default Value: 0
|
|
12993
|
+
*/
|
|
12994
|
+
get IsRequired(): boolean;
|
|
12995
|
+
set IsRequired(value: boolean);
|
|
12996
|
+
/**
|
|
12997
|
+
* * Field Name: EntityID
|
|
12998
|
+
* * Display Name: Entity ID
|
|
12999
|
+
* * SQL Data Type: int
|
|
13000
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
13001
|
+
* * Description: Entity ID, used only when Type is Record
|
|
13002
|
+
*/
|
|
13003
|
+
get EntityID(): number | null;
|
|
13004
|
+
set EntityID(value: number | null);
|
|
13005
|
+
/**
|
|
13006
|
+
* * Field Name: RecordID
|
|
13007
|
+
* * Display Name: Record ID
|
|
13008
|
+
* * SQL Data Type: nvarchar(2000)
|
|
13009
|
+
* * Description: Record ID, used only when Type is Record
|
|
13010
|
+
*/
|
|
13011
|
+
get RecordID(): string | null;
|
|
13012
|
+
set RecordID(value: string | null);
|
|
13013
|
+
/**
|
|
13014
|
+
* * Field Name: CreatedAt
|
|
13015
|
+
* * Display Name: Created At
|
|
13016
|
+
* * SQL Data Type: datetime
|
|
13017
|
+
* * Default Value: getdate()
|
|
13018
|
+
*/
|
|
13019
|
+
get CreatedAt(): Date;
|
|
13020
|
+
/**
|
|
13021
|
+
* * Field Name: UpdatedAt
|
|
13022
|
+
* * Display Name: Updated At
|
|
13023
|
+
* * SQL Data Type: datetime
|
|
13024
|
+
* * Default Value: getdate()
|
|
13025
|
+
*/
|
|
13026
|
+
get UpdatedAt(): Date;
|
|
13027
|
+
/**
|
|
13028
|
+
* * Field Name: Template
|
|
13029
|
+
* * Display Name: Template
|
|
13030
|
+
* * SQL Data Type: nvarchar(255)
|
|
13031
|
+
*/
|
|
13032
|
+
get Template(): string;
|
|
13033
|
+
/**
|
|
13034
|
+
* * Field Name: Entity
|
|
13035
|
+
* * Display Name: Entity
|
|
13036
|
+
* * SQL Data Type: nvarchar(255)
|
|
13037
|
+
*/
|
|
13038
|
+
get Entity(): string | null;
|
|
13039
|
+
}
|
|
13040
|
+
/**
|
|
13041
|
+
* Template Content Types - strongly typed entity sub-class
|
|
13042
|
+
* * Schema: __mj
|
|
13043
|
+
* * Base Table: TemplateContentType
|
|
13044
|
+
* * Base View: vwTemplateContentTypes
|
|
13045
|
+
* * @description Template content types for categorizing content within templates
|
|
13046
|
+
* * Primary Key: ID
|
|
13047
|
+
* @extends {BaseEntity}
|
|
13048
|
+
* @class
|
|
13049
|
+
* @public
|
|
13050
|
+
*/
|
|
13051
|
+
export declare class TemplateContentTypeEntity extends BaseEntity {
|
|
13052
|
+
/**
|
|
13053
|
+
* Loads the Template Content Types record from the database
|
|
13054
|
+
* @param ID: number - primary key value to load the Template Content Types record.
|
|
13055
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
13056
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
13057
|
+
* @public
|
|
13058
|
+
* @async
|
|
13059
|
+
* @memberof TemplateContentTypeEntity
|
|
13060
|
+
* @method
|
|
13061
|
+
* @override
|
|
13062
|
+
*/
|
|
13063
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
13064
|
+
/**
|
|
13065
|
+
* Template Content Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
13066
|
+
* @public
|
|
13067
|
+
* @method
|
|
13068
|
+
* @override
|
|
13069
|
+
* @memberof TemplateContentTypeEntity
|
|
13070
|
+
* @throws {Error} - Delete is not allowed for Template Content Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
13071
|
+
*/
|
|
13072
|
+
Delete(): Promise<boolean>;
|
|
13073
|
+
/**
|
|
13074
|
+
* * Field Name: ID
|
|
13075
|
+
* * Display Name: ID
|
|
13076
|
+
* * SQL Data Type: int
|
|
13077
|
+
*/
|
|
13078
|
+
get ID(): number;
|
|
13079
|
+
/**
|
|
13080
|
+
* * Field Name: Name
|
|
13081
|
+
* * Display Name: Name
|
|
13082
|
+
* * SQL Data Type: nvarchar(255)
|
|
13083
|
+
* * Description: Name of the template content type
|
|
13084
|
+
*/
|
|
13085
|
+
get Name(): string;
|
|
13086
|
+
set Name(value: string);
|
|
13087
|
+
/**
|
|
13088
|
+
* * Field Name: Description
|
|
13089
|
+
* * Display Name: Description
|
|
13090
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
13091
|
+
* * Description: Description of the template content type
|
|
13092
|
+
*/
|
|
13093
|
+
get Description(): string | null;
|
|
13094
|
+
set Description(value: string | null);
|
|
13095
|
+
/**
|
|
13096
|
+
* * Field Name: CreatedAt
|
|
13097
|
+
* * Display Name: Created At
|
|
13098
|
+
* * SQL Data Type: datetime
|
|
13099
|
+
* * Default Value: getdate()
|
|
13100
|
+
*/
|
|
13101
|
+
get CreatedAt(): Date;
|
|
13102
|
+
/**
|
|
13103
|
+
* * Field Name: UpdatedAt
|
|
13104
|
+
* * Display Name: Updated At
|
|
13105
|
+
* * SQL Data Type: datetime
|
|
13106
|
+
* * Default Value: getdate()
|
|
13107
|
+
*/
|
|
13108
|
+
get UpdatedAt(): Date;
|
|
13109
|
+
}
|
|
13110
|
+
/**
|
|
13111
|
+
* Recommendations - strongly typed entity sub-class
|
|
13112
|
+
* * Schema: __mj
|
|
13113
|
+
* * Base Table: Recommendation
|
|
13114
|
+
* * Base View: vwRecommendations
|
|
13115
|
+
* * @description Recommendation headers that store the left side of the recommendation which we track in the SourceEntityID/SourceEntityRecordID
|
|
13116
|
+
* * Primary Key: ID
|
|
13117
|
+
* @extends {BaseEntity}
|
|
13118
|
+
* @class
|
|
13119
|
+
* @public
|
|
13120
|
+
*/
|
|
13121
|
+
export declare class RecommendationEntity extends BaseEntity {
|
|
13122
|
+
/**
|
|
13123
|
+
* Loads the Recommendations record from the database
|
|
13124
|
+
* @param ID: number - primary key value to load the Recommendations record.
|
|
13125
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
13126
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
13127
|
+
* @public
|
|
13128
|
+
* @async
|
|
13129
|
+
* @memberof RecommendationEntity
|
|
13130
|
+
* @method
|
|
13131
|
+
* @override
|
|
13132
|
+
*/
|
|
13133
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
13134
|
+
/**
|
|
13135
|
+
* Recommendations - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
13136
|
+
* @public
|
|
13137
|
+
* @method
|
|
13138
|
+
* @override
|
|
13139
|
+
* @memberof RecommendationEntity
|
|
13140
|
+
* @throws {Error} - Delete is not allowed for Recommendations, to enable it set AllowDeleteAPI to 1 in the database.
|
|
13141
|
+
*/
|
|
13142
|
+
Delete(): Promise<boolean>;
|
|
13143
|
+
/**
|
|
13144
|
+
* * Field Name: ID
|
|
13145
|
+
* * Display Name: ID
|
|
13146
|
+
* * SQL Data Type: int
|
|
13147
|
+
*/
|
|
13148
|
+
get ID(): number;
|
|
13149
|
+
/**
|
|
13150
|
+
* * Field Name: RecommendationRunID
|
|
13151
|
+
* * Display Name: Recommendation Run ID
|
|
13152
|
+
* * SQL Data Type: int
|
|
13153
|
+
* * Related Entity/Foreign Key: Recommendation Runs (vwRecommendationRuns.ID)
|
|
13154
|
+
*/
|
|
13155
|
+
get RecommendationRunID(): number;
|
|
13156
|
+
set RecommendationRunID(value: number);
|
|
13157
|
+
/**
|
|
13158
|
+
* * Field Name: SourceEntityID
|
|
13159
|
+
* * Display Name: Source Entity ID
|
|
13160
|
+
* * SQL Data Type: int
|
|
13161
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
13162
|
+
*/
|
|
13163
|
+
get SourceEntityID(): number;
|
|
13164
|
+
set SourceEntityID(value: number);
|
|
13165
|
+
/**
|
|
13166
|
+
* * Field Name: SourceEntityRecordID
|
|
13167
|
+
* * Display Name: Source Entity Record ID
|
|
13168
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
13169
|
+
* * Description: The record ID of the source entity
|
|
13170
|
+
*/
|
|
13171
|
+
get SourceEntityRecordID(): string;
|
|
13172
|
+
set SourceEntityRecordID(value: string);
|
|
13173
|
+
/**
|
|
13174
|
+
* * Field Name: CreatedAt
|
|
13175
|
+
* * Display Name: Created At
|
|
13176
|
+
* * SQL Data Type: datetime
|
|
13177
|
+
* * Default Value: getdate()
|
|
13178
|
+
*/
|
|
13179
|
+
get CreatedAt(): Date | null;
|
|
13180
|
+
/**
|
|
13181
|
+
* * Field Name: UpdatedAt
|
|
13182
|
+
* * Display Name: Updated At
|
|
13183
|
+
* * SQL Data Type: datetime
|
|
13184
|
+
* * Default Value: getdate()
|
|
13185
|
+
*/
|
|
13186
|
+
get UpdatedAt(): Date | null;
|
|
13187
|
+
/**
|
|
13188
|
+
* * Field Name: SourceEntity
|
|
13189
|
+
* * Display Name: Source Entity
|
|
13190
|
+
* * SQL Data Type: nvarchar(255)
|
|
13191
|
+
*/
|
|
13192
|
+
get SourceEntity(): string;
|
|
13193
|
+
}
|
|
13194
|
+
/**
|
|
13195
|
+
* Recommendation Providers - strongly typed entity sub-class
|
|
13196
|
+
* * Schema: __mj
|
|
13197
|
+
* * Base Table: RecommendationProvider
|
|
13198
|
+
* * Base View: vwRecommendationProviders
|
|
13199
|
+
* * @description Recommendation providers details
|
|
13200
|
+
* * Primary Key: ID
|
|
13201
|
+
* @extends {BaseEntity}
|
|
13202
|
+
* @class
|
|
13203
|
+
* @public
|
|
13204
|
+
*/
|
|
13205
|
+
export declare class RecommendationProviderEntity extends BaseEntity {
|
|
13206
|
+
/**
|
|
13207
|
+
* Loads the Recommendation Providers record from the database
|
|
13208
|
+
* @param ID: number - primary key value to load the Recommendation Providers record.
|
|
13209
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
13210
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
13211
|
+
* @public
|
|
13212
|
+
* @async
|
|
13213
|
+
* @memberof RecommendationProviderEntity
|
|
13214
|
+
* @method
|
|
13215
|
+
* @override
|
|
13216
|
+
*/
|
|
13217
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
13218
|
+
/**
|
|
13219
|
+
* Recommendation Providers - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
13220
|
+
* @public
|
|
13221
|
+
* @method
|
|
13222
|
+
* @override
|
|
13223
|
+
* @memberof RecommendationProviderEntity
|
|
13224
|
+
* @throws {Error} - Delete is not allowed for Recommendation Providers, to enable it set AllowDeleteAPI to 1 in the database.
|
|
13225
|
+
*/
|
|
13226
|
+
Delete(): Promise<boolean>;
|
|
13227
|
+
/**
|
|
13228
|
+
* * Field Name: ID
|
|
13229
|
+
* * Display Name: ID
|
|
13230
|
+
* * SQL Data Type: int
|
|
13231
|
+
*/
|
|
13232
|
+
get ID(): number;
|
|
13233
|
+
/**
|
|
13234
|
+
* * Field Name: Name
|
|
13235
|
+
* * Display Name: Name
|
|
13236
|
+
* * SQL Data Type: nvarchar(255)
|
|
13237
|
+
*/
|
|
13238
|
+
get Name(): string;
|
|
13239
|
+
set Name(value: string);
|
|
13240
|
+
/**
|
|
13241
|
+
* * Field Name: Description
|
|
13242
|
+
* * Display Name: Description
|
|
13243
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
13244
|
+
*/
|
|
13245
|
+
get Description(): string | null;
|
|
13246
|
+
set Description(value: string | null);
|
|
13247
|
+
/**
|
|
13248
|
+
* * Field Name: CreatedAt
|
|
13249
|
+
* * Display Name: Created At
|
|
13250
|
+
* * SQL Data Type: datetime
|
|
13251
|
+
* * Default Value: getdate()
|
|
13252
|
+
*/
|
|
13253
|
+
get CreatedAt(): Date | null;
|
|
13254
|
+
/**
|
|
13255
|
+
* * Field Name: UpdatedAt
|
|
13256
|
+
* * Display Name: Updated At
|
|
13257
|
+
* * SQL Data Type: datetime
|
|
13258
|
+
* * Default Value: getdate()
|
|
13259
|
+
*/
|
|
13260
|
+
get UpdatedAt(): Date | null;
|
|
13261
|
+
}
|
|
13262
|
+
/**
|
|
13263
|
+
* Recommendation Runs - strongly typed entity sub-class
|
|
13264
|
+
* * Schema: __mj
|
|
13265
|
+
* * Base Table: RecommendationRun
|
|
13266
|
+
* * Base View: vwRecommendationRuns
|
|
13267
|
+
* * @description Recommendation runs log each time a provider is requested to provide recommendations
|
|
13268
|
+
* * Primary Key: ID
|
|
13269
|
+
* @extends {BaseEntity}
|
|
13270
|
+
* @class
|
|
13271
|
+
* @public
|
|
13272
|
+
*/
|
|
13273
|
+
export declare class RecommendationRunEntity extends BaseEntity {
|
|
13274
|
+
/**
|
|
13275
|
+
* Loads the Recommendation Runs record from the database
|
|
13276
|
+
* @param ID: number - primary key value to load the Recommendation Runs record.
|
|
13277
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
13278
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
13279
|
+
* @public
|
|
13280
|
+
* @async
|
|
13281
|
+
* @memberof RecommendationRunEntity
|
|
13282
|
+
* @method
|
|
13283
|
+
* @override
|
|
13284
|
+
*/
|
|
13285
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
13286
|
+
/**
|
|
13287
|
+
* Recommendation Runs - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
13288
|
+
* @public
|
|
13289
|
+
* @method
|
|
13290
|
+
* @override
|
|
13291
|
+
* @memberof RecommendationRunEntity
|
|
13292
|
+
* @throws {Error} - Delete is not allowed for Recommendation Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
13293
|
+
*/
|
|
13294
|
+
Delete(): Promise<boolean>;
|
|
13295
|
+
/**
|
|
13296
|
+
* * Field Name: ID
|
|
13297
|
+
* * Display Name: ID
|
|
13298
|
+
* * SQL Data Type: int
|
|
13299
|
+
*/
|
|
13300
|
+
get ID(): number;
|
|
13301
|
+
/**
|
|
13302
|
+
* * Field Name: RecommendationProviderID
|
|
13303
|
+
* * Display Name: Recommendation Provider ID
|
|
13304
|
+
* * SQL Data Type: int
|
|
13305
|
+
* * Related Entity/Foreign Key: Recommendation Providers (vwRecommendationProviders.ID)
|
|
13306
|
+
*/
|
|
13307
|
+
get RecommendationProviderID(): number;
|
|
13308
|
+
set RecommendationProviderID(value: number);
|
|
13309
|
+
/**
|
|
13310
|
+
* * Field Name: StartDate
|
|
13311
|
+
* * Display Name: Start Date
|
|
13312
|
+
* * SQL Data Type: datetime
|
|
13313
|
+
* * Description: The start date of the recommendation run
|
|
13314
|
+
*/
|
|
13315
|
+
get StartDate(): Date;
|
|
13316
|
+
set StartDate(value: Date);
|
|
13317
|
+
/**
|
|
13318
|
+
* * Field Name: EndDate
|
|
13319
|
+
* * Display Name: End Date
|
|
13320
|
+
* * SQL Data Type: datetime
|
|
13321
|
+
* * Description: The end date of the recommendation run
|
|
13322
|
+
*/
|
|
13323
|
+
get EndDate(): Date | null;
|
|
13324
|
+
set EndDate(value: Date | null);
|
|
13325
|
+
/**
|
|
13326
|
+
* * Field Name: Status
|
|
13327
|
+
* * Display Name: Status
|
|
13328
|
+
* * SQL Data Type: nvarchar(50)
|
|
13329
|
+
* * Value List Type: List
|
|
13330
|
+
* * Possible Values
|
|
13331
|
+
* * Pending
|
|
13332
|
+
* * In Progress
|
|
13333
|
+
* * Completed
|
|
13334
|
+
* * Canceled
|
|
13335
|
+
* * Error
|
|
13336
|
+
* * Description: The status of the recommendation run
|
|
13337
|
+
*/
|
|
13338
|
+
get Status(): 'Pending' | 'In Progress' | 'Completed' | 'Canceled' | 'Error';
|
|
13339
|
+
set Status(value: 'Pending' | 'In Progress' | 'Completed' | 'Canceled' | 'Error');
|
|
13340
|
+
/**
|
|
13341
|
+
* * Field Name: Description
|
|
13342
|
+
* * Display Name: Description
|
|
13343
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
13344
|
+
*/
|
|
13345
|
+
get Description(): string | null;
|
|
13346
|
+
set Description(value: string | null);
|
|
13347
|
+
/**
|
|
13348
|
+
* * Field Name: RunByUserID
|
|
13349
|
+
* * Display Name: Run By User ID
|
|
13350
|
+
* * SQL Data Type: int
|
|
13351
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
13352
|
+
*/
|
|
13353
|
+
get RunByUserID(): number;
|
|
13354
|
+
set RunByUserID(value: number);
|
|
13355
|
+
/**
|
|
13356
|
+
* * Field Name: CreatedAt
|
|
13357
|
+
* * Display Name: Created At
|
|
13358
|
+
* * SQL Data Type: datetime
|
|
13359
|
+
* * Default Value: getdate()
|
|
13360
|
+
*/
|
|
13361
|
+
get CreatedAt(): Date | null;
|
|
13362
|
+
/**
|
|
13363
|
+
* * Field Name: UpdatedAt
|
|
13364
|
+
* * Display Name: Updated At
|
|
13365
|
+
* * SQL Data Type: datetime
|
|
13366
|
+
* * Default Value: getdate()
|
|
13367
|
+
*/
|
|
13368
|
+
get UpdatedAt(): Date | null;
|
|
13369
|
+
/**
|
|
13370
|
+
* * Field Name: RecommendationProvider
|
|
13371
|
+
* * Display Name: Recommendation Provider
|
|
13372
|
+
* * SQL Data Type: nvarchar(255)
|
|
13373
|
+
*/
|
|
13374
|
+
get RecommendationProvider(): string;
|
|
13375
|
+
/**
|
|
13376
|
+
* * Field Name: RunByUser
|
|
13377
|
+
* * Display Name: Run By User
|
|
13378
|
+
* * SQL Data Type: nvarchar(100)
|
|
13379
|
+
*/
|
|
13380
|
+
get RunByUser(): string;
|
|
13381
|
+
}
|
|
13382
|
+
/**
|
|
13383
|
+
* Recommendation Items - strongly typed entity sub-class
|
|
13384
|
+
* * Schema: __mj
|
|
13385
|
+
* * Base Table: RecommendationItem
|
|
13386
|
+
* * Base View: vwRecommendationItems
|
|
13387
|
+
* * @description Table to store individual recommendation items that are the right side of the recommendation which we track in the DestinationEntityID/DestinationEntityRecordID
|
|
13388
|
+
* * Primary Key: ID
|
|
13389
|
+
* @extends {BaseEntity}
|
|
13390
|
+
* @class
|
|
13391
|
+
* @public
|
|
13392
|
+
*/
|
|
13393
|
+
export declare class RecommendationItemEntity extends BaseEntity {
|
|
13394
|
+
/**
|
|
13395
|
+
* Loads the Recommendation Items record from the database
|
|
13396
|
+
* @param ID: number - primary key value to load the Recommendation Items record.
|
|
13397
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
13398
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
13399
|
+
* @public
|
|
13400
|
+
* @async
|
|
13401
|
+
* @memberof RecommendationItemEntity
|
|
13402
|
+
* @method
|
|
13403
|
+
* @override
|
|
13404
|
+
*/
|
|
13405
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
13406
|
+
/**
|
|
13407
|
+
* Recommendation Items - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
13408
|
+
* @public
|
|
13409
|
+
* @method
|
|
13410
|
+
* @override
|
|
13411
|
+
* @memberof RecommendationItemEntity
|
|
13412
|
+
* @throws {Error} - Delete is not allowed for Recommendation Items, to enable it set AllowDeleteAPI to 1 in the database.
|
|
13413
|
+
*/
|
|
13414
|
+
Delete(): Promise<boolean>;
|
|
13415
|
+
/**
|
|
13416
|
+
* * Field Name: ID
|
|
13417
|
+
* * Display Name: ID
|
|
13418
|
+
* * SQL Data Type: int
|
|
13419
|
+
*/
|
|
13420
|
+
get ID(): number;
|
|
13421
|
+
/**
|
|
13422
|
+
* * Field Name: RecommendationID
|
|
13423
|
+
* * Display Name: Recommendation ID
|
|
13424
|
+
* * SQL Data Type: int
|
|
13425
|
+
* * Related Entity/Foreign Key: Recommendations (vwRecommendations.ID)
|
|
13426
|
+
*/
|
|
13427
|
+
get RecommendationID(): number;
|
|
13428
|
+
set RecommendationID(value: number);
|
|
13429
|
+
/**
|
|
13430
|
+
* * Field Name: DestinationEntityID
|
|
13431
|
+
* * Display Name: Destination Entity ID
|
|
13432
|
+
* * SQL Data Type: int
|
|
13433
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
13434
|
+
* * Description: The ID of the destination entity
|
|
13435
|
+
*/
|
|
13436
|
+
get DestinationEntityID(): number;
|
|
13437
|
+
set DestinationEntityID(value: number);
|
|
13438
|
+
/**
|
|
13439
|
+
* * Field Name: DestinationEntityRecordID
|
|
13440
|
+
* * Display Name: Destination Entity Record ID
|
|
13441
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
13442
|
+
* * Description: The record ID of the destination entity
|
|
13443
|
+
*/
|
|
13444
|
+
get DestinationEntityRecordID(): string;
|
|
13445
|
+
set DestinationEntityRecordID(value: string);
|
|
13446
|
+
/**
|
|
13447
|
+
* * Field Name: MatchProbability
|
|
13448
|
+
* * Display Name: Match Probability
|
|
13449
|
+
* * SQL Data Type: decimal(18, 15)
|
|
13450
|
+
* * Description: A value between 0 and 1 indicating the probability of the match, higher numbers indicating a more certain match/recommendation.
|
|
13451
|
+
*/
|
|
13452
|
+
get MatchProbability(): number | null;
|
|
13453
|
+
set MatchProbability(value: number | null);
|
|
13454
|
+
/**
|
|
13455
|
+
* * Field Name: CreatedAt
|
|
13456
|
+
* * Display Name: Created At
|
|
13457
|
+
* * SQL Data Type: datetime
|
|
13458
|
+
* * Default Value: getdate()
|
|
13459
|
+
*/
|
|
13460
|
+
get CreatedAt(): Date | null;
|
|
13461
|
+
/**
|
|
13462
|
+
* * Field Name: UpdatedAt
|
|
13463
|
+
* * Display Name: Updated At
|
|
13464
|
+
* * SQL Data Type: datetime
|
|
13465
|
+
* * Default Value: getdate()
|
|
13466
|
+
*/
|
|
13467
|
+
get UpdatedAt(): Date | null;
|
|
13468
|
+
/**
|
|
13469
|
+
* * Field Name: DestinationEntity
|
|
13470
|
+
* * Display Name: Destination Entity
|
|
13471
|
+
* * SQL Data Type: nvarchar(255)
|
|
13472
|
+
*/
|
|
13473
|
+
get DestinationEntity(): string;
|
|
13474
|
+
}
|
|
13475
|
+
/**
|
|
13476
|
+
* Entity Communication Message Types - strongly typed entity sub-class
|
|
13477
|
+
* * Schema: __mj
|
|
13478
|
+
* * Base Table: EntityCommunicationMessageType
|
|
13479
|
+
* * Base View: vwEntityCommunicationMessageTypes
|
|
13480
|
+
* * @description Mapping between entities and communication base message types
|
|
13481
|
+
* * Primary Key: ID
|
|
13482
|
+
* @extends {BaseEntity}
|
|
13483
|
+
* @class
|
|
13484
|
+
* @public
|
|
13485
|
+
*/
|
|
13486
|
+
export declare class EntityCommunicationMessageTypeEntity extends BaseEntity {
|
|
13487
|
+
/**
|
|
13488
|
+
* Loads the Entity Communication Message Types record from the database
|
|
13489
|
+
* @param ID: number - primary key value to load the Entity Communication Message Types record.
|
|
13490
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
13491
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
13492
|
+
* @public
|
|
13493
|
+
* @async
|
|
13494
|
+
* @memberof EntityCommunicationMessageTypeEntity
|
|
13495
|
+
* @method
|
|
13496
|
+
* @override
|
|
13497
|
+
*/
|
|
13498
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
13499
|
+
/**
|
|
13500
|
+
* Entity Communication Message Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
13501
|
+
* @public
|
|
13502
|
+
* @method
|
|
13503
|
+
* @override
|
|
13504
|
+
* @memberof EntityCommunicationMessageTypeEntity
|
|
13505
|
+
* @throws {Error} - Delete is not allowed for Entity Communication Message Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
13506
|
+
*/
|
|
13507
|
+
Delete(): Promise<boolean>;
|
|
13508
|
+
/**
|
|
13509
|
+
* * Field Name: ID
|
|
13510
|
+
* * Display Name: ID
|
|
13511
|
+
* * SQL Data Type: int
|
|
13512
|
+
*/
|
|
13513
|
+
get ID(): number;
|
|
13514
|
+
/**
|
|
13515
|
+
* * Field Name: EntityID
|
|
13516
|
+
* * Display Name: Entity ID
|
|
13517
|
+
* * SQL Data Type: int
|
|
13518
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
13519
|
+
* * Description: ID of the entity
|
|
13520
|
+
*/
|
|
13521
|
+
get EntityID(): number;
|
|
13522
|
+
set EntityID(value: number);
|
|
13523
|
+
/**
|
|
13524
|
+
* * Field Name: BaseMessageTypeID
|
|
13525
|
+
* * Display Name: Base Message Type ID
|
|
13526
|
+
* * SQL Data Type: int
|
|
13527
|
+
* * Related Entity/Foreign Key: Communication Base Message Types (vwCommunicationBaseMessageTypes.ID)
|
|
13528
|
+
* * Description: ID of the communication base message type
|
|
13529
|
+
*/
|
|
13530
|
+
get BaseMessageTypeID(): number;
|
|
13531
|
+
set BaseMessageTypeID(value: number);
|
|
13532
|
+
/**
|
|
13533
|
+
* * Field Name: IsActive
|
|
13534
|
+
* * Display Name: Is Active
|
|
13535
|
+
* * SQL Data Type: bit
|
|
13536
|
+
* * Default Value: 1
|
|
13537
|
+
* * Description: Indicates whether the message type is active
|
|
13538
|
+
*/
|
|
13539
|
+
get IsActive(): boolean;
|
|
13540
|
+
set IsActive(value: boolean);
|
|
13541
|
+
/**
|
|
13542
|
+
* * Field Name: CreatedAt
|
|
13543
|
+
* * Display Name: Created At
|
|
13544
|
+
* * SQL Data Type: datetime
|
|
13545
|
+
*/
|
|
13546
|
+
get CreatedAt(): Date;
|
|
13547
|
+
/**
|
|
13548
|
+
* * Field Name: UpdatedAt
|
|
13549
|
+
* * Display Name: Updated At
|
|
13550
|
+
* * SQL Data Type: datetime
|
|
13551
|
+
* * Default Value: getdate()
|
|
13552
|
+
*/
|
|
13553
|
+
get UpdatedAt(): Date;
|
|
13554
|
+
/**
|
|
13555
|
+
* * Field Name: Entity
|
|
13556
|
+
* * Display Name: Entity
|
|
13557
|
+
* * SQL Data Type: nvarchar(255)
|
|
13558
|
+
* * Default Value: getdate()
|
|
13559
|
+
*/
|
|
13560
|
+
get Entity(): string;
|
|
13561
|
+
/**
|
|
13562
|
+
* * Field Name: BaseMessageType
|
|
13563
|
+
* * Display Name: Base Message Type
|
|
13564
|
+
* * SQL Data Type: nvarchar(100)
|
|
13565
|
+
*/
|
|
13566
|
+
get BaseMessageType(): string;
|
|
13567
|
+
}
|
|
13568
|
+
/**
|
|
13569
|
+
* Entity Communication Fields - strongly typed entity sub-class
|
|
13570
|
+
* * Schema: __mj
|
|
13571
|
+
* * Base Table: EntityCommunicationField
|
|
13572
|
+
* * Base View: vwEntityCommunicationFields
|
|
13573
|
+
* * @description Mapping between entity fields and communication base message types with priority
|
|
13574
|
+
* * Primary Key: ID
|
|
13575
|
+
* @extends {BaseEntity}
|
|
13576
|
+
* @class
|
|
13577
|
+
* @public
|
|
13578
|
+
*/
|
|
13579
|
+
export declare class EntityCommunicationFieldEntity extends BaseEntity {
|
|
13580
|
+
/**
|
|
13581
|
+
* Loads the Entity Communication Fields record from the database
|
|
13582
|
+
* @param ID: number - primary key value to load the Entity Communication Fields record.
|
|
13583
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
13584
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
13585
|
+
* @public
|
|
13586
|
+
* @async
|
|
13587
|
+
* @memberof EntityCommunicationFieldEntity
|
|
13588
|
+
* @method
|
|
13589
|
+
* @override
|
|
13590
|
+
*/
|
|
13591
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
13592
|
+
/**
|
|
13593
|
+
* Entity Communication Fields - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
13594
|
+
* @public
|
|
13595
|
+
* @method
|
|
13596
|
+
* @override
|
|
13597
|
+
* @memberof EntityCommunicationFieldEntity
|
|
13598
|
+
* @throws {Error} - Delete is not allowed for Entity Communication Fields, to enable it set AllowDeleteAPI to 1 in the database.
|
|
13599
|
+
*/
|
|
13600
|
+
Delete(): Promise<boolean>;
|
|
13601
|
+
/**
|
|
13602
|
+
* * Field Name: ID
|
|
13603
|
+
* * Display Name: ID
|
|
13604
|
+
* * SQL Data Type: int
|
|
13605
|
+
*/
|
|
13606
|
+
get ID(): number;
|
|
13607
|
+
/**
|
|
13608
|
+
* * Field Name: EntityCommunicationMessageTypeID
|
|
13609
|
+
* * Display Name: Entity Communication Message Type ID
|
|
13610
|
+
* * SQL Data Type: int
|
|
13611
|
+
* * Related Entity/Foreign Key: Entity Communication Message Types (vwEntityCommunicationMessageTypes.ID)
|
|
13612
|
+
* * Description: ID of the entity communication message type
|
|
13613
|
+
*/
|
|
13614
|
+
get EntityCommunicationMessageTypeID(): number;
|
|
13615
|
+
set EntityCommunicationMessageTypeID(value: number);
|
|
13616
|
+
/**
|
|
13617
|
+
* * Field Name: FieldName
|
|
13618
|
+
* * Display Name: Field Name
|
|
13619
|
+
* * SQL Data Type: nvarchar(500)
|
|
13620
|
+
* * Description: Name of the field in the entity that maps to the communication base message type
|
|
13621
|
+
*/
|
|
13622
|
+
get FieldName(): string;
|
|
13623
|
+
set FieldName(value: string);
|
|
13624
|
+
/**
|
|
13625
|
+
* * Field Name: Priority
|
|
13626
|
+
* * Display Name: Priority
|
|
13627
|
+
* * SQL Data Type: int
|
|
13628
|
+
* * Description: Priority of the field for the communication base message type
|
|
13629
|
+
*/
|
|
13630
|
+
get Priority(): number;
|
|
13631
|
+
set Priority(value: number);
|
|
13632
|
+
/**
|
|
13633
|
+
* * Field Name: CreatedAt
|
|
13634
|
+
* * Display Name: Created At
|
|
13635
|
+
* * SQL Data Type: datetime
|
|
13636
|
+
* * Default Value: getdate()
|
|
12298
13637
|
*/
|
|
12299
13638
|
get CreatedAt(): Date;
|
|
12300
13639
|
/**
|
|
12301
13640
|
* * Field Name: UpdatedAt
|
|
12302
13641
|
* * Display Name: Updated At
|
|
12303
13642
|
* * SQL Data Type: datetime
|
|
13643
|
+
* * Default Value: getdate()
|
|
12304
13644
|
*/
|
|
12305
13645
|
get UpdatedAt(): Date;
|
|
12306
13646
|
}
|