@memberjunction/core-entities 1.3.3 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom/EntityBehaviorExtended.d.ts +6 -0
- package/dist/custom/EntityBehaviorExtended.d.ts.map +1 -0
- package/dist/custom/EntityBehaviorExtended.js +33 -0
- package/dist/custom/EntityBehaviorExtended.js.map +1 -0
- package/dist/custom/ListDetailEntityExtended.d.ts +5 -0
- package/dist/custom/ListDetailEntityExtended.d.ts.map +1 -0
- package/dist/custom/ListDetailEntityExtended.js +62 -0
- package/dist/custom/ListDetailEntityExtended.js.map +1 -0
- package/dist/custom/UserViewEntity.d.ts.map +1 -1
- package/dist/custom/UserViewEntity.js +1 -0
- package/dist/custom/UserViewEntity.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +2372 -305
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +3265 -305
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -57,14 +57,12 @@ 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()
|
|
61
60
|
*/
|
|
62
61
|
get CreatedAt(): Date;
|
|
63
62
|
/**
|
|
64
63
|
* * Field Name: UpdatedAt
|
|
65
64
|
* * Display Name: Updated At
|
|
66
65
|
* * SQL Data Type: datetime
|
|
67
|
-
* * Default Value: getdate()
|
|
68
66
|
*/
|
|
69
67
|
get UpdatedAt(): Date;
|
|
70
68
|
/**
|
|
@@ -108,7 +106,6 @@ export declare class EmployeeEntity extends BaseEntity {
|
|
|
108
106
|
* * Field Name: BCMID
|
|
109
107
|
* * Display Name: BCMID
|
|
110
108
|
* * SQL Data Type: uniqueidentifier
|
|
111
|
-
* * Default Value: newid()
|
|
112
109
|
*/
|
|
113
110
|
get BCMID(): string;
|
|
114
111
|
/**
|
|
@@ -146,7 +143,6 @@ export declare class EmployeeEntity extends BaseEntity {
|
|
|
146
143
|
/**
|
|
147
144
|
* * Field Name: Active
|
|
148
145
|
* * SQL Data Type: bit
|
|
149
|
-
* * Default Value: 1
|
|
150
146
|
*/
|
|
151
147
|
get Active(): boolean;
|
|
152
148
|
set Active(value: boolean);
|
|
@@ -170,14 +166,12 @@ export declare class EmployeeEntity extends BaseEntity {
|
|
|
170
166
|
* * Field Name: CreatedAt
|
|
171
167
|
* * Display Name: Created At
|
|
172
168
|
* * SQL Data Type: datetime
|
|
173
|
-
* * Default Value: getdate()
|
|
174
169
|
*/
|
|
175
170
|
get CreatedAt(): Date;
|
|
176
171
|
/**
|
|
177
172
|
* * Field Name: UpdatedAt
|
|
178
173
|
* * Display Name: Updated At
|
|
179
174
|
* * SQL Data Type: datetime
|
|
180
|
-
* * Default Value: getdate()
|
|
181
175
|
*/
|
|
182
176
|
get UpdatedAt(): Date;
|
|
183
177
|
/**
|
|
@@ -267,14 +261,12 @@ export declare class UserFavoriteEntity extends BaseEntity {
|
|
|
267
261
|
* * Field Name: CreatedAt
|
|
268
262
|
* * Display Name: Created At
|
|
269
263
|
* * SQL Data Type: datetime
|
|
270
|
-
* * Default Value: getdate()
|
|
271
264
|
*/
|
|
272
265
|
get CreatedAt(): Date;
|
|
273
266
|
/**
|
|
274
267
|
* * Field Name: UpdatedAt
|
|
275
268
|
* * Display Name: Updated At
|
|
276
269
|
* * SQL Data Type: datetime
|
|
277
|
-
* * Default Value: getdate()
|
|
278
270
|
*/
|
|
279
271
|
get UpdatedAt(): Date;
|
|
280
272
|
/**
|
|
@@ -359,7 +351,6 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
|
|
|
359
351
|
* * Field Name: IsActive
|
|
360
352
|
* * Display Name: Is Active
|
|
361
353
|
* * SQL Data Type: bit
|
|
362
|
-
* * Default Value: 1
|
|
363
354
|
*/
|
|
364
355
|
get IsActive(): boolean;
|
|
365
356
|
set IsActive(value: boolean);
|
|
@@ -367,14 +358,12 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
|
|
|
367
358
|
* * Field Name: CreatedAt
|
|
368
359
|
* * Display Name: Created At
|
|
369
360
|
* * SQL Data Type: datetime
|
|
370
|
-
* * Default Value: getdate()
|
|
371
361
|
*/
|
|
372
362
|
get CreatedAt(): Date;
|
|
373
363
|
/**
|
|
374
364
|
* * Field Name: UpdatedAt
|
|
375
365
|
* * Display Name: Updated At
|
|
376
366
|
* * SQL Data Type: datetime
|
|
377
|
-
* * Default Value: getdate()
|
|
378
367
|
*/
|
|
379
368
|
get UpdatedAt(): Date;
|
|
380
369
|
}
|
|
@@ -436,14 +425,12 @@ export declare class EmployeeRoleEntity extends BaseEntity {
|
|
|
436
425
|
* * Field Name: CreatedAt
|
|
437
426
|
* * Display Name: Created At
|
|
438
427
|
* * SQL Data Type: datetime
|
|
439
|
-
* * Default Value: getdate()
|
|
440
428
|
*/
|
|
441
429
|
get CreatedAt(): Date;
|
|
442
430
|
/**
|
|
443
431
|
* * Field Name: UpdatedAt
|
|
444
432
|
* * Display Name: Updated At
|
|
445
433
|
* * SQL Data Type: datetime
|
|
446
|
-
* * Default Value: getdate()
|
|
447
434
|
*/
|
|
448
435
|
get UpdatedAt(): Date;
|
|
449
436
|
/**
|
|
@@ -511,14 +498,12 @@ export declare class EmployeeSkillEntity extends BaseEntity {
|
|
|
511
498
|
* * Field Name: CreatedAt
|
|
512
499
|
* * Display Name: Created At
|
|
513
500
|
* * SQL Data Type: datetime
|
|
514
|
-
* * Default Value: getdate()
|
|
515
501
|
*/
|
|
516
502
|
get CreatedAt(): Date;
|
|
517
503
|
/**
|
|
518
504
|
* * Field Name: UpdatedAt
|
|
519
505
|
* * Display Name: Updated At
|
|
520
506
|
* * SQL Data Type: datetime
|
|
521
|
-
* * Default Value: getdate()
|
|
522
507
|
*/
|
|
523
508
|
get UpdatedAt(): Date;
|
|
524
509
|
/**
|
|
@@ -589,14 +574,12 @@ export declare class RoleEntity extends BaseEntity {
|
|
|
589
574
|
* * Field Name: CreatedAt
|
|
590
575
|
* * Display Name: Created At
|
|
591
576
|
* * SQL Data Type: datetime
|
|
592
|
-
* * Default Value: getdate()
|
|
593
577
|
*/
|
|
594
578
|
get CreatedAt(): Date;
|
|
595
579
|
/**
|
|
596
580
|
* * Field Name: UpdatedAt
|
|
597
581
|
* * Display Name: Updated At
|
|
598
582
|
* * SQL Data Type: datetime
|
|
599
|
-
* * Default Value: getdate()
|
|
600
583
|
*/
|
|
601
584
|
get UpdatedAt(): Date;
|
|
602
585
|
}
|
|
@@ -665,14 +648,12 @@ export declare class SkillEntity extends BaseEntity {
|
|
|
665
648
|
* * Field Name: CreatedAt
|
|
666
649
|
* * Display Name: Created At
|
|
667
650
|
* * SQL Data Type: datetime
|
|
668
|
-
* * Default Value: getdate()
|
|
669
651
|
*/
|
|
670
652
|
get CreatedAt(): Date;
|
|
671
653
|
/**
|
|
672
654
|
* * Field Name: UpdatedAt
|
|
673
655
|
* * Display Name: Updated At
|
|
674
656
|
* * SQL Data Type: datetime
|
|
675
|
-
* * Default Value: getdate()
|
|
676
657
|
*/
|
|
677
658
|
get UpdatedAt(): Date;
|
|
678
659
|
/**
|
|
@@ -842,7 +823,6 @@ export declare class IntegrationEntity extends BaseEntity {
|
|
|
842
823
|
* * Field Name: BatchMaxRequestCount
|
|
843
824
|
* * Display Name: Batch Max Request Count
|
|
844
825
|
* * SQL Data Type: int
|
|
845
|
-
* * Default Value: -1
|
|
846
826
|
*/
|
|
847
827
|
get BatchMaxRequestCount(): number;
|
|
848
828
|
set BatchMaxRequestCount(value: number);
|
|
@@ -850,7 +830,6 @@ export declare class IntegrationEntity extends BaseEntity {
|
|
|
850
830
|
* * Field Name: BatchRequestWaitTime
|
|
851
831
|
* * Display Name: Batch Request Wait Time
|
|
852
832
|
* * SQL Data Type: int
|
|
853
|
-
* * Default Value: -1
|
|
854
833
|
*/
|
|
855
834
|
get BatchRequestWaitTime(): number;
|
|
856
835
|
set BatchRequestWaitTime(value: number);
|
|
@@ -858,14 +837,12 @@ export declare class IntegrationEntity extends BaseEntity {
|
|
|
858
837
|
* * Field Name: CreatedAt
|
|
859
838
|
* * Display Name: Created At
|
|
860
839
|
* * SQL Data Type: datetime
|
|
861
|
-
* * Default Value: getdate()
|
|
862
840
|
*/
|
|
863
841
|
get CreatedAt(): Date;
|
|
864
842
|
/**
|
|
865
843
|
* * Field Name: UpdatedAt
|
|
866
844
|
* * Display Name: Updated At
|
|
867
845
|
* * SQL Data Type: datetime
|
|
868
|
-
* * Default Value: getdate()
|
|
869
846
|
*/
|
|
870
847
|
get UpdatedAt(): Date;
|
|
871
848
|
}
|
|
@@ -961,14 +938,12 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
961
938
|
* * Field Name: CreatedAt
|
|
962
939
|
* * Display Name: Created At
|
|
963
940
|
* * SQL Data Type: datetime
|
|
964
|
-
* * Default Value: getdate()
|
|
965
941
|
*/
|
|
966
942
|
get CreatedAt(): Date;
|
|
967
943
|
/**
|
|
968
944
|
* * Field Name: UpdatedAt
|
|
969
945
|
* * Display Name: Updated At
|
|
970
946
|
* * SQL Data Type: datetime
|
|
971
|
-
* * Default Value: getdate()
|
|
972
947
|
*/
|
|
973
948
|
get UpdatedAt(): Date;
|
|
974
949
|
/**
|
|
@@ -982,7 +957,6 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
982
957
|
* * Field Name: IsExternalSystemReadOnly
|
|
983
958
|
* * Display Name: Is External System Read Only
|
|
984
959
|
* * SQL Data Type: bit
|
|
985
|
-
* * Default Value: 0
|
|
986
960
|
*/
|
|
987
961
|
get IsExternalSystemReadOnly(): boolean;
|
|
988
962
|
set IsExternalSystemReadOnly(value: boolean);
|
|
@@ -1099,24 +1073,27 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1099
1073
|
/**
|
|
1100
1074
|
* * Field Name: Sequence
|
|
1101
1075
|
* * SQL Data Type: int
|
|
1102
|
-
* *
|
|
1076
|
+
* * Description: Display order of the field within the entity
|
|
1103
1077
|
*/
|
|
1104
1078
|
get Sequence(): number;
|
|
1105
1079
|
/**
|
|
1106
1080
|
* * Field Name: Name
|
|
1107
1081
|
* * SQL Data Type: nvarchar(255)
|
|
1082
|
+
* * Description: Name of the field within the database table
|
|
1108
1083
|
*/
|
|
1109
1084
|
get Name(): string;
|
|
1110
1085
|
/**
|
|
1111
1086
|
* * Field Name: DisplayName
|
|
1112
1087
|
* * Display Name: Display Name
|
|
1113
1088
|
* * SQL Data Type: nvarchar(255)
|
|
1089
|
+
* * Description: A user friendly alternative to the field name
|
|
1114
1090
|
*/
|
|
1115
1091
|
get DisplayName(): string | null;
|
|
1116
1092
|
set DisplayName(value: string | null);
|
|
1117
1093
|
/**
|
|
1118
1094
|
* * Field Name: Description
|
|
1119
1095
|
* * SQL Data Type: nvarchar(MAX)
|
|
1096
|
+
* * Description: Descriptive text explaining the purpose of the field
|
|
1120
1097
|
*/
|
|
1121
1098
|
get Description(): string | null;
|
|
1122
1099
|
set Description(value: string | null);
|
|
@@ -1124,7 +1101,6 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1124
1101
|
* * Field Name: AutoUpdateDescription
|
|
1125
1102
|
* * Display Name: Auto Update Description
|
|
1126
1103
|
* * SQL Data Type: bit
|
|
1127
|
-
* * Default Value: 1
|
|
1128
1104
|
* * 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.
|
|
1129
1105
|
*/
|
|
1130
1106
|
get AutoUpdateDescription(): boolean;
|
|
@@ -1133,7 +1109,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1133
1109
|
* * Field Name: IsPrimaryKey
|
|
1134
1110
|
* * Display Name: Is Primary Key
|
|
1135
1111
|
* * SQL Data Type: bit
|
|
1136
|
-
* *
|
|
1112
|
+
* * Description: Indicates if the field is part of the primary key for the entity (auto maintained by CodeGen)
|
|
1137
1113
|
*/
|
|
1138
1114
|
get IsPrimaryKey(): boolean;
|
|
1139
1115
|
set IsPrimaryKey(value: boolean);
|
|
@@ -1141,7 +1117,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1141
1117
|
* * Field Name: IsUnique
|
|
1142
1118
|
* * Display Name: Is Unique
|
|
1143
1119
|
* * SQL Data Type: bit
|
|
1144
|
-
* *
|
|
1120
|
+
* * Description: Indicates if the field must have unique values within the entity.
|
|
1145
1121
|
*/
|
|
1146
1122
|
get IsUnique(): boolean;
|
|
1147
1123
|
set IsUnique(value: boolean);
|
|
@@ -1149,59 +1125,65 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1149
1125
|
* * Field Name: Category
|
|
1150
1126
|
* * Display Name: Category
|
|
1151
1127
|
* * SQL Data Type: nvarchar(255)
|
|
1128
|
+
* * Description: Used for generating custom tabs in the generated forms, only utilized if GeneratedFormSection=Category
|
|
1152
1129
|
*/
|
|
1153
1130
|
get Category(): string | null;
|
|
1154
1131
|
set Category(value: string | null);
|
|
1155
1132
|
/**
|
|
1156
1133
|
* * Field Name: Type
|
|
1157
1134
|
* * SQL Data Type: nvarchar(100)
|
|
1135
|
+
* * Description: SQL Data type (auto maintained by CodeGen)
|
|
1158
1136
|
*/
|
|
1159
1137
|
get Type(): string;
|
|
1160
1138
|
/**
|
|
1161
1139
|
* * Field Name: Length
|
|
1162
1140
|
* * SQL Data Type: int
|
|
1141
|
+
* * Description: SQL data length (auto maintained by CodeGen)
|
|
1163
1142
|
*/
|
|
1164
1143
|
get Length(): number | null;
|
|
1165
1144
|
/**
|
|
1166
1145
|
* * Field Name: Precision
|
|
1167
1146
|
* * SQL Data Type: int
|
|
1147
|
+
* * Description: SQL precision (auto maintained by CodeGen)
|
|
1168
1148
|
*/
|
|
1169
1149
|
get Precision(): number | null;
|
|
1170
1150
|
/**
|
|
1171
1151
|
* * Field Name: Scale
|
|
1172
1152
|
* * SQL Data Type: int
|
|
1153
|
+
* * Description: SQL scale (auto maintained by CodeGen)
|
|
1173
1154
|
*/
|
|
1174
1155
|
get Scale(): number | null;
|
|
1175
1156
|
/**
|
|
1176
1157
|
* * Field Name: AllowsNull
|
|
1177
1158
|
* * Display Name: Allows Null
|
|
1178
1159
|
* * SQL Data Type: bit
|
|
1179
|
-
* *
|
|
1160
|
+
* * Description: Does the column allow null or not (auto maintained by CodeGen)
|
|
1180
1161
|
*/
|
|
1181
1162
|
get AllowsNull(): boolean;
|
|
1182
1163
|
/**
|
|
1183
1164
|
* * Field Name: DefaultValue
|
|
1184
1165
|
* * Display Name: Default Value
|
|
1185
1166
|
* * SQL Data Type: nvarchar(255)
|
|
1167
|
+
* * Description: If a default value is defined for the field it is stored here (auto maintained by CodeGen)
|
|
1186
1168
|
*/
|
|
1187
1169
|
get DefaultValue(): string | null;
|
|
1188
1170
|
/**
|
|
1189
1171
|
* * Field Name: AutoIncrement
|
|
1190
1172
|
* * Display Name: Auto Increment
|
|
1191
1173
|
* * SQL Data Type: bit
|
|
1192
|
-
* *
|
|
1174
|
+
* * Description: If this field automatically increments within the table, this field is set to 1 (auto maintained by CodeGen)
|
|
1193
1175
|
*/
|
|
1194
1176
|
get AutoIncrement(): boolean;
|
|
1195
1177
|
/**
|
|
1196
1178
|
* * Field Name: ValueListType
|
|
1197
1179
|
* * Display Name: Value List Type
|
|
1198
1180
|
* * SQL Data Type: nvarchar(20)
|
|
1199
|
-
* * Default Value: N'None'
|
|
1200
1181
|
* * Value List Type: List
|
|
1201
1182
|
* * Possible Values
|
|
1202
1183
|
* * None
|
|
1203
1184
|
* * List
|
|
1204
1185
|
* * ListOrUserEntry
|
|
1186
|
+
* * Description: Possible Values of None, List, ListOrUserEntry - the last option meaning that the list of possible values are options, but a user can enter anything else desired too.
|
|
1205
1187
|
*/
|
|
1206
1188
|
get ValueListType(): 'None' | 'List' | 'ListOrUserEntry';
|
|
1207
1189
|
set ValueListType(value: 'None' | 'List' | 'ListOrUserEntry');
|
|
@@ -1209,14 +1191,46 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1209
1191
|
* * Field Name: ExtendedType
|
|
1210
1192
|
* * Display Name: Extended Type
|
|
1211
1193
|
* * SQL Data Type: nvarchar(50)
|
|
1194
|
+
* * Value List Type: List
|
|
1195
|
+
* * Possible Values
|
|
1196
|
+
* * Email
|
|
1197
|
+
* * URL
|
|
1198
|
+
* * Tel
|
|
1199
|
+
* * SMS
|
|
1200
|
+
* * Geo
|
|
1201
|
+
* * WhatsApp
|
|
1202
|
+
* * FaceTime
|
|
1203
|
+
* * Skype
|
|
1204
|
+
* * SIP
|
|
1205
|
+
* * MSTeams
|
|
1206
|
+
* * ZoomMtg
|
|
1207
|
+
* * Other
|
|
1208
|
+
* * Code
|
|
1209
|
+
* * Description: Defines extended behaviors for a field such as for Email, Web URLs, Code, etc.
|
|
1210
|
+
*/
|
|
1211
|
+
get ExtendedType(): 'Email' | 'URL' | 'Tel' | 'SMS' | 'Geo' | 'WhatsApp' | 'FaceTime' | 'Skype' | 'SIP' | 'MSTeams' | 'ZoomMtg' | 'Other' | 'Code' | null;
|
|
1212
|
+
set ExtendedType(value: 'Email' | 'URL' | 'Tel' | 'SMS' | 'Geo' | 'WhatsApp' | 'FaceTime' | 'Skype' | 'SIP' | 'MSTeams' | 'ZoomMtg' | 'Other' | 'Code' | null);
|
|
1213
|
+
/**
|
|
1214
|
+
* * Field Name: CodeType
|
|
1215
|
+
* * Display Name: Code Type
|
|
1216
|
+
* * SQL Data Type: nvarchar(50)
|
|
1217
|
+
* * Value List Type: List
|
|
1218
|
+
* * Possible Values
|
|
1219
|
+
* * TypeScript
|
|
1220
|
+
* * SQL
|
|
1221
|
+
* * HTML
|
|
1222
|
+
* * CSS
|
|
1223
|
+
* * JavaScript
|
|
1224
|
+
* * Other
|
|
1225
|
+
* * Description: The type of code associated with this field. Only used when the ExtendedType field is set to "Code"
|
|
1212
1226
|
*/
|
|
1213
|
-
get
|
|
1214
|
-
set
|
|
1227
|
+
get CodeType(): 'TypeScript' | 'SQL' | 'HTML' | 'CSS' | 'JavaScript' | 'Other' | null;
|
|
1228
|
+
set CodeType(value: 'TypeScript' | 'SQL' | 'HTML' | 'CSS' | 'JavaScript' | 'Other' | null);
|
|
1215
1229
|
/**
|
|
1216
1230
|
* * Field Name: DefaultInView
|
|
1217
1231
|
* * Display Name: Default In View
|
|
1218
1232
|
* * SQL Data Type: bit
|
|
1219
|
-
* *
|
|
1233
|
+
* * Description: If set to 1, this field will be included by default in any new view created by a user.
|
|
1220
1234
|
*/
|
|
1221
1235
|
get DefaultInView(): boolean;
|
|
1222
1236
|
set DefaultInView(value: boolean);
|
|
@@ -1224,6 +1238,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1224
1238
|
* * Field Name: ViewCellTemplate
|
|
1225
1239
|
* * Display Name: View Cell Template
|
|
1226
1240
|
* * SQL Data Type: nvarchar(MAX)
|
|
1241
|
+
* * Description: NULL
|
|
1227
1242
|
*/
|
|
1228
1243
|
get ViewCellTemplate(): string | null;
|
|
1229
1244
|
set ViewCellTemplate(value: string | null);
|
|
@@ -1231,6 +1246,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1231
1246
|
* * Field Name: DefaultColumnWidth
|
|
1232
1247
|
* * Display Name: Default Column Width
|
|
1233
1248
|
* * SQL Data Type: int
|
|
1249
|
+
* * Description: Determines the default width for this field when included in a view
|
|
1234
1250
|
*/
|
|
1235
1251
|
get DefaultColumnWidth(): number | null;
|
|
1236
1252
|
set DefaultColumnWidth(value: number | null);
|
|
@@ -1238,7 +1254,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1238
1254
|
* * Field Name: AllowUpdateAPI
|
|
1239
1255
|
* * Display Name: Allow Update API
|
|
1240
1256
|
* * SQL Data Type: bit
|
|
1241
|
-
* *
|
|
1257
|
+
* * 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)
|
|
1242
1258
|
*/
|
|
1243
1259
|
get AllowUpdateAPI(): boolean;
|
|
1244
1260
|
set AllowUpdateAPI(value: boolean);
|
|
@@ -1246,7 +1262,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1246
1262
|
* * Field Name: AllowUpdateInView
|
|
1247
1263
|
* * Display Name: Allow Update In View
|
|
1248
1264
|
* * SQL Data Type: bit
|
|
1249
|
-
* *
|
|
1265
|
+
* * Description: If set to 1, and if AllowUpdateAPI=1, the field can be edited within a view when the view is in edit mode.
|
|
1250
1266
|
*/
|
|
1251
1267
|
get AllowUpdateInView(): boolean;
|
|
1252
1268
|
set AllowUpdateInView(value: boolean);
|
|
@@ -1254,7 +1270,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1254
1270
|
* * Field Name: IncludeInUserSearchAPI
|
|
1255
1271
|
* * Display Name: Include In User Search API
|
|
1256
1272
|
* * SQL Data Type: bit
|
|
1257
|
-
* *
|
|
1273
|
+
* * Description: If set to 1, this column will be included in user search queries for both traditional and full text search
|
|
1258
1274
|
*/
|
|
1259
1275
|
get IncludeInUserSearchAPI(): boolean;
|
|
1260
1276
|
set IncludeInUserSearchAPI(value: boolean);
|
|
@@ -1262,7 +1278,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1262
1278
|
* * Field Name: FullTextSearchEnabled
|
|
1263
1279
|
* * Display Name: Full Text Search Enabled
|
|
1264
1280
|
* * SQL Data Type: bit
|
|
1265
|
-
* *
|
|
1281
|
+
* * 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.
|
|
1266
1282
|
*/
|
|
1267
1283
|
get FullTextSearchEnabled(): boolean;
|
|
1268
1284
|
set FullTextSearchEnabled(value: boolean);
|
|
@@ -1270,6 +1286,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1270
1286
|
* * Field Name: UserSearchParamFormatAPI
|
|
1271
1287
|
* * Display Name: User Search Param Format API
|
|
1272
1288
|
* * SQL Data Type: nvarchar(500)
|
|
1289
|
+
* * Description: NULL
|
|
1273
1290
|
*/
|
|
1274
1291
|
get UserSearchParamFormatAPI(): string | null;
|
|
1275
1292
|
set UserSearchParamFormatAPI(value: string | null);
|
|
@@ -1277,7 +1294,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1277
1294
|
* * Field Name: IncludeInGeneratedForm
|
|
1278
1295
|
* * Display Name: Include In Generated Form
|
|
1279
1296
|
* * SQL Data Type: bit
|
|
1280
|
-
* *
|
|
1297
|
+
* * 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.
|
|
1281
1298
|
*/
|
|
1282
1299
|
get IncludeInGeneratedForm(): boolean;
|
|
1283
1300
|
set IncludeInGeneratedForm(value: boolean);
|
|
@@ -1285,22 +1302,27 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1285
1302
|
* * Field Name: GeneratedFormSection
|
|
1286
1303
|
* * Display Name: Generated Form Section
|
|
1287
1304
|
* * SQL Data Type: nvarchar(10)
|
|
1288
|
-
* *
|
|
1305
|
+
* * Value List Type: List
|
|
1306
|
+
* * Possible Values
|
|
1307
|
+
* * Top
|
|
1308
|
+
* * Category
|
|
1309
|
+
* * Details
|
|
1310
|
+
* * Description: When set to Top, the field will be placed in a "top area" on the top of a generated form and visible regardless of which tab is displayed. When set to "category" Options: Top, Category, Details
|
|
1289
1311
|
*/
|
|
1290
|
-
get GeneratedFormSection():
|
|
1291
|
-
set GeneratedFormSection(value:
|
|
1312
|
+
get GeneratedFormSection(): 'Top' | 'Category' | 'Details';
|
|
1313
|
+
set GeneratedFormSection(value: 'Top' | 'Category' | 'Details');
|
|
1292
1314
|
/**
|
|
1293
1315
|
* * Field Name: IsVirtual
|
|
1294
1316
|
* * Display Name: Is Virtual
|
|
1295
1317
|
* * SQL Data Type: bit
|
|
1296
|
-
* *
|
|
1318
|
+
* * Description: NULL
|
|
1297
1319
|
*/
|
|
1298
1320
|
get IsVirtual(): boolean;
|
|
1299
1321
|
/**
|
|
1300
1322
|
* * Field Name: IsNameField
|
|
1301
1323
|
* * Display Name: Is Name Field
|
|
1302
1324
|
* * SQL Data Type: bit
|
|
1303
|
-
* *
|
|
1325
|
+
* * 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.
|
|
1304
1326
|
*/
|
|
1305
1327
|
get IsNameField(): boolean;
|
|
1306
1328
|
set IsNameField(value: boolean);
|
|
@@ -1309,6 +1331,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1309
1331
|
* * Display Name: RelatedEntity ID
|
|
1310
1332
|
* * SQL Data Type: int
|
|
1311
1333
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
1334
|
+
* * Description: Link to the entity this field points to if it is a foreign key (auto maintained by CodeGen)
|
|
1312
1335
|
*/
|
|
1313
1336
|
get RelatedEntityID(): number | null;
|
|
1314
1337
|
set RelatedEntityID(value: number | null);
|
|
@@ -1316,6 +1339,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1316
1339
|
* * Field Name: RelatedEntityFieldName
|
|
1317
1340
|
* * Display Name: Related Entity Field Name
|
|
1318
1341
|
* * SQL Data Type: nvarchar(255)
|
|
1342
|
+
* * Description: Name of the field in the Related Entity that this field links to (auto maintained by CodeGen)
|
|
1319
1343
|
*/
|
|
1320
1344
|
get RelatedEntityFieldName(): string | null;
|
|
1321
1345
|
set RelatedEntityFieldName(value: string | null);
|
|
@@ -1323,7 +1347,7 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1323
1347
|
* * Field Name: IncludeRelatedEntityNameFieldInBaseView
|
|
1324
1348
|
* * Display Name: Include Related Entity Name Field In Base View
|
|
1325
1349
|
* * SQL Data Type: bit
|
|
1326
|
-
* *
|
|
1350
|
+
* * Description: If set to 1, the "Name" field of the Related Entity will be included in this entity as a virtual field
|
|
1327
1351
|
*/
|
|
1328
1352
|
get IncludeRelatedEntityNameFieldInBaseView(): boolean;
|
|
1329
1353
|
set IncludeRelatedEntityNameFieldInBaseView(value: boolean);
|
|
@@ -1338,14 +1362,12 @@ export declare class EntityFieldEntity extends BaseEntity {
|
|
|
1338
1362
|
* * Field Name: CreatedAt
|
|
1339
1363
|
* * Display Name: Created At
|
|
1340
1364
|
* * SQL Data Type: datetime
|
|
1341
|
-
* * Default Value: getdate()
|
|
1342
1365
|
*/
|
|
1343
1366
|
get CreatedAt(): Date;
|
|
1344
1367
|
/**
|
|
1345
1368
|
* * Field Name: UpdatedAt
|
|
1346
1369
|
* * Display Name: Updated At
|
|
1347
1370
|
* * SQL Data Type: datetime
|
|
1348
|
-
* * Default Value: getdate()
|
|
1349
1371
|
*/
|
|
1350
1372
|
get UpdatedAt(): Date;
|
|
1351
1373
|
/**
|
|
@@ -1480,7 +1502,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1480
1502
|
* * Field Name: AutoUpdateDescription
|
|
1481
1503
|
* * Display Name: Auto Update Description
|
|
1482
1504
|
* * SQL Data Type: bit
|
|
1483
|
-
* * Default Value: 1
|
|
1484
1505
|
* * 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.
|
|
1485
1506
|
*/
|
|
1486
1507
|
get AutoUpdateDescription(): boolean;
|
|
@@ -1502,7 +1523,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1502
1523
|
* * Field Name: BaseViewGenerated
|
|
1503
1524
|
* * Display Name: Base View Generated
|
|
1504
1525
|
* * SQL Data Type: bit
|
|
1505
|
-
* * Default Value: 1
|
|
1506
1526
|
* * Description: When set to 0, CodeGen no longer generates a base view for the entity.
|
|
1507
1527
|
*/
|
|
1508
1528
|
get BaseViewGenerated(): boolean;
|
|
@@ -1511,14 +1531,12 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1511
1531
|
* * Field Name: SchemaName
|
|
1512
1532
|
* * Display Name: Schema Name
|
|
1513
1533
|
* * SQL Data Type: nvarchar(255)
|
|
1514
|
-
* * Default Value: N'dbo'
|
|
1515
1534
|
*/
|
|
1516
1535
|
get SchemaName(): string;
|
|
1517
1536
|
/**
|
|
1518
1537
|
* * Field Name: VirtualEntity
|
|
1519
1538
|
* * Display Name: Virtual Entity
|
|
1520
1539
|
* * SQL Data Type: bit
|
|
1521
|
-
* * Default Value: 0
|
|
1522
1540
|
*/
|
|
1523
1541
|
get VirtualEntity(): boolean;
|
|
1524
1542
|
set VirtualEntity(value: boolean);
|
|
@@ -1526,7 +1544,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1526
1544
|
* * Field Name: TrackRecordChanges
|
|
1527
1545
|
* * Display Name: Track Record Changes
|
|
1528
1546
|
* * SQL Data Type: bit
|
|
1529
|
-
* * Default Value: 1
|
|
1530
1547
|
* * Description: When set to 1, changes made via the MemberJunction architecture will result in tracking records being created in the RecordChange table
|
|
1531
1548
|
*/
|
|
1532
1549
|
get TrackRecordChanges(): boolean;
|
|
@@ -1535,7 +1552,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1535
1552
|
* * Field Name: AuditRecordAccess
|
|
1536
1553
|
* * Display Name: Audit Record Access
|
|
1537
1554
|
* * SQL Data Type: bit
|
|
1538
|
-
* * Default Value: 1
|
|
1539
1555
|
* * Description: When set to 1, accessing a record by an end-user will result in an Audit Log record being created
|
|
1540
1556
|
*/
|
|
1541
1557
|
get AuditRecordAccess(): boolean;
|
|
@@ -1544,7 +1560,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1544
1560
|
* * Field Name: AuditViewRuns
|
|
1545
1561
|
* * Display Name: Audit View Runs
|
|
1546
1562
|
* * SQL Data Type: bit
|
|
1547
|
-
* * Default Value: 1
|
|
1548
1563
|
* * Description: When set to 1, users running a view against this entity will result in an Audit Log record being created.
|
|
1549
1564
|
*/
|
|
1550
1565
|
get AuditViewRuns(): boolean;
|
|
@@ -1553,7 +1568,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1553
1568
|
* * Field Name: IncludeInAPI
|
|
1554
1569
|
* * Display Name: Include In API
|
|
1555
1570
|
* * SQL Data Type: bit
|
|
1556
|
-
* * Default Value: 0
|
|
1557
1571
|
* * Description: If set to 0, the entity will not be available at all in the GraphQL API or the object model.
|
|
1558
1572
|
*/
|
|
1559
1573
|
get IncludeInAPI(): boolean;
|
|
@@ -1562,7 +1576,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1562
1576
|
* * Field Name: AllowAllRowsAPI
|
|
1563
1577
|
* * Display Name: Allow All Rows API
|
|
1564
1578
|
* * SQL Data Type: bit
|
|
1565
|
-
* * Default Value: 0
|
|
1566
1579
|
* * Description: If set to 1, a GraphQL query will be enabled that allows access to all rows in the entity.
|
|
1567
1580
|
*/
|
|
1568
1581
|
get AllowAllRowsAPI(): boolean;
|
|
@@ -1571,7 +1584,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1571
1584
|
* * Field Name: AllowUpdateAPI
|
|
1572
1585
|
* * Display Name: Allow Update API
|
|
1573
1586
|
* * SQL Data Type: bit
|
|
1574
|
-
* * Default Value: 0
|
|
1575
1587
|
* * 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.
|
|
1576
1588
|
*/
|
|
1577
1589
|
get AllowUpdateAPI(): boolean;
|
|
@@ -1580,7 +1592,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1580
1592
|
* * Field Name: AllowCreateAPI
|
|
1581
1593
|
* * Display Name: Allow Create API
|
|
1582
1594
|
* * SQL Data Type: bit
|
|
1583
|
-
* * Default Value: 0
|
|
1584
1595
|
* * 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.
|
|
1585
1596
|
*/
|
|
1586
1597
|
get AllowCreateAPI(): boolean;
|
|
@@ -1589,7 +1600,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1589
1600
|
* * Field Name: AllowDeleteAPI
|
|
1590
1601
|
* * Display Name: Allow Delete API
|
|
1591
1602
|
* * SQL Data Type: bit
|
|
1592
|
-
* * Default Value: 0
|
|
1593
1603
|
* * 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.
|
|
1594
1604
|
*/
|
|
1595
1605
|
get AllowDeleteAPI(): boolean;
|
|
@@ -1598,7 +1608,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1598
1608
|
* * Field Name: CustomResolverAPI
|
|
1599
1609
|
* * Display Name: Custom Resolver API
|
|
1600
1610
|
* * SQL Data Type: bit
|
|
1601
|
-
* * Default Value: 0
|
|
1602
1611
|
* * Description: Set to 1 if a custom resolver has been created for the entity.
|
|
1603
1612
|
*/
|
|
1604
1613
|
get CustomResolverAPI(): boolean;
|
|
@@ -1607,7 +1616,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1607
1616
|
* * Field Name: AllowUserSearchAPI
|
|
1608
1617
|
* * Display Name: Allow User Search API
|
|
1609
1618
|
* * SQL Data Type: bit
|
|
1610
|
-
* * Default Value: 0
|
|
1611
1619
|
* * Description: Enabling this bit will result in search being possible at the API and UI layers
|
|
1612
1620
|
*/
|
|
1613
1621
|
get AllowUserSearchAPI(): boolean;
|
|
@@ -1616,7 +1624,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1616
1624
|
* * Field Name: FullTextSearchEnabled
|
|
1617
1625
|
* * Display Name: Full Text Search Enabled
|
|
1618
1626
|
* * SQL Data Type: bit
|
|
1619
|
-
* * Default Value: 0
|
|
1620
1627
|
*/
|
|
1621
1628
|
get FullTextSearchEnabled(): boolean;
|
|
1622
1629
|
set FullTextSearchEnabled(value: boolean);
|
|
@@ -1631,7 +1638,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1631
1638
|
* * Field Name: FullTextCatalogGenerated
|
|
1632
1639
|
* * Display Name: Full Text Catalog Generated
|
|
1633
1640
|
* * SQL Data Type: bit
|
|
1634
|
-
* * Default Value: 1
|
|
1635
1641
|
*/
|
|
1636
1642
|
get FullTextCatalogGenerated(): boolean;
|
|
1637
1643
|
set FullTextCatalogGenerated(value: boolean);
|
|
@@ -1646,7 +1652,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1646
1652
|
* * Field Name: FullTextIndexGenerated
|
|
1647
1653
|
* * Display Name: Full Text Index Generated
|
|
1648
1654
|
* * SQL Data Type: bit
|
|
1649
|
-
* * Default Value: 1
|
|
1650
1655
|
*/
|
|
1651
1656
|
get FullTextIndexGenerated(): boolean;
|
|
1652
1657
|
set FullTextIndexGenerated(value: boolean);
|
|
@@ -1661,7 +1666,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1661
1666
|
* * Field Name: FullTextSearchFunctionGenerated
|
|
1662
1667
|
* * Display Name: Full Text Search Function Generated
|
|
1663
1668
|
* * SQL Data Type: bit
|
|
1664
|
-
* * Default Value: 1
|
|
1665
1669
|
*/
|
|
1666
1670
|
get FullTextSearchFunctionGenerated(): boolean;
|
|
1667
1671
|
set FullTextSearchFunctionGenerated(value: boolean);
|
|
@@ -1669,7 +1673,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1669
1673
|
* * Field Name: UserViewMaxRows
|
|
1670
1674
|
* * Display Name: User View Max Rows
|
|
1671
1675
|
* * SQL Data Type: int
|
|
1672
|
-
* * Default Value: 1000
|
|
1673
1676
|
*/
|
|
1674
1677
|
get UserViewMaxRows(): number | null;
|
|
1675
1678
|
set UserViewMaxRows(value: number | null);
|
|
@@ -1698,7 +1701,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1698
1701
|
* * Field Name: spCreateGenerated
|
|
1699
1702
|
* * Display Name: sp CreateGenerated
|
|
1700
1703
|
* * SQL Data Type: bit
|
|
1701
|
-
* * Default Value: 1
|
|
1702
1704
|
*/
|
|
1703
1705
|
get spCreateGenerated(): boolean;
|
|
1704
1706
|
set spCreateGenerated(value: boolean);
|
|
@@ -1706,7 +1708,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1706
1708
|
* * Field Name: spUpdateGenerated
|
|
1707
1709
|
* * Display Name: sp Update Generated
|
|
1708
1710
|
* * SQL Data Type: bit
|
|
1709
|
-
* * Default Value: 1
|
|
1710
1711
|
*/
|
|
1711
1712
|
get spUpdateGenerated(): boolean;
|
|
1712
1713
|
set spUpdateGenerated(value: boolean);
|
|
@@ -1714,7 +1715,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1714
1715
|
* * Field Name: spDeleteGenerated
|
|
1715
1716
|
* * Display Name: sp Delete Generated
|
|
1716
1717
|
* * SQL Data Type: bit
|
|
1717
|
-
* * Default Value: 1
|
|
1718
1718
|
*/
|
|
1719
1719
|
get spDeleteGenerated(): boolean;
|
|
1720
1720
|
set spDeleteGenerated(value: boolean);
|
|
@@ -1722,7 +1722,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1722
1722
|
* * Field Name: CascadeDeletes
|
|
1723
1723
|
* * Display Name: Cascade Deletes
|
|
1724
1724
|
* * SQL Data Type: bit
|
|
1725
|
-
* * Default Value: 0
|
|
1726
1725
|
* * 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
|
|
1727
1726
|
*/
|
|
1728
1727
|
get CascadeDeletes(): boolean;
|
|
@@ -1739,7 +1738,6 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1739
1738
|
* * Field Name: UserFormGenerated
|
|
1740
1739
|
* * Display Name: User Form Generated
|
|
1741
1740
|
* * SQL Data Type: bit
|
|
1742
|
-
* * Default Value: 1
|
|
1743
1741
|
*/
|
|
1744
1742
|
get UserFormGenerated(): boolean;
|
|
1745
1743
|
set UserFormGenerated(value: boolean);
|
|
@@ -1761,14 +1759,12 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1761
1759
|
* * Field Name: CreatedAt
|
|
1762
1760
|
* * Display Name: Created At
|
|
1763
1761
|
* * SQL Data Type: datetime
|
|
1764
|
-
* * Default Value: getdate()
|
|
1765
1762
|
*/
|
|
1766
1763
|
get CreatedAt(): Date;
|
|
1767
1764
|
/**
|
|
1768
1765
|
* * Field Name: UpdatedAt
|
|
1769
1766
|
* * Display Name: Updated At
|
|
1770
1767
|
* * SQL Data Type: datetime
|
|
1771
|
-
* * Default Value: getdate()
|
|
1772
1768
|
*/
|
|
1773
1769
|
get UpdatedAt(): Date;
|
|
1774
1770
|
/**
|
|
@@ -1884,7 +1880,6 @@ export declare class UserEntity extends BaseEntity {
|
|
|
1884
1880
|
* * Field Name: IsActive
|
|
1885
1881
|
* * Display Name: Is Active
|
|
1886
1882
|
* * SQL Data Type: bit
|
|
1887
|
-
* * Default Value: 0
|
|
1888
1883
|
*/
|
|
1889
1884
|
get IsActive(): boolean;
|
|
1890
1885
|
set IsActive(value: boolean);
|
|
@@ -1892,7 +1887,6 @@ export declare class UserEntity extends BaseEntity {
|
|
|
1892
1887
|
* * Field Name: LinkedRecordType
|
|
1893
1888
|
* * Display Name: Linked Record Type
|
|
1894
1889
|
* * SQL Data Type: nchar(10)
|
|
1895
|
-
* * Default Value: N'None'
|
|
1896
1890
|
*/
|
|
1897
1891
|
get LinkedRecordType(): string;
|
|
1898
1892
|
set LinkedRecordType(value: string);
|
|
@@ -1923,14 +1917,12 @@ export declare class UserEntity extends BaseEntity {
|
|
|
1923
1917
|
* * Field Name: CreatedAt
|
|
1924
1918
|
* * Display Name: Created At
|
|
1925
1919
|
* * SQL Data Type: datetime
|
|
1926
|
-
* * Default Value: getdate()
|
|
1927
1920
|
*/
|
|
1928
1921
|
get CreatedAt(): Date;
|
|
1929
1922
|
/**
|
|
1930
1923
|
* * Field Name: UpdatedAt
|
|
1931
1924
|
* * Display Name: Updated At
|
|
1932
1925
|
* * SQL Data Type: datetime
|
|
1933
|
-
* * Default Value: getdate()
|
|
1934
1926
|
*/
|
|
1935
1927
|
get UpdatedAt(): Date;
|
|
1936
1928
|
/**
|
|
@@ -2011,7 +2003,6 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2011
2003
|
* * Field Name: Sequence
|
|
2012
2004
|
* * Display Name: Sequence
|
|
2013
2005
|
* * SQL Data Type: int
|
|
2014
|
-
* * Default Value: 0
|
|
2015
2006
|
* * Description: Used for display order in generated forms and in other places in the UI where relationships for an entity are shown
|
|
2016
2007
|
*/
|
|
2017
2008
|
get Sequence(): number;
|
|
@@ -2028,7 +2019,6 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2028
2019
|
* * Field Name: BundleInAPI
|
|
2029
2020
|
* * Display Name: Bundle In API
|
|
2030
2021
|
* * SQL Data Type: bit
|
|
2031
|
-
* * Default Value: 1
|
|
2032
2022
|
*/
|
|
2033
2023
|
get BundleInAPI(): boolean;
|
|
2034
2024
|
set BundleInAPI(value: boolean);
|
|
@@ -2036,14 +2026,12 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2036
2026
|
* * Field Name: IncludeInParentAllQuery
|
|
2037
2027
|
* * Display Name: Include In Parent All Query
|
|
2038
2028
|
* * SQL Data Type: bit
|
|
2039
|
-
* * Default Value: 0
|
|
2040
2029
|
*/
|
|
2041
2030
|
get IncludeInParentAllQuery(): boolean;
|
|
2042
2031
|
set IncludeInParentAllQuery(value: boolean);
|
|
2043
2032
|
/**
|
|
2044
2033
|
* * Field Name: Type
|
|
2045
2034
|
* * SQL Data Type: nchar(20)
|
|
2046
|
-
* * Default Value: N'One To Many'
|
|
2047
2035
|
* * Value List Type: List
|
|
2048
2036
|
* * Possible Values
|
|
2049
2037
|
* * One To Many
|
|
@@ -2090,7 +2078,6 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2090
2078
|
* * Field Name: DisplayInForm
|
|
2091
2079
|
* * Display Name: Display In Form
|
|
2092
2080
|
* * SQL Data Type: bit
|
|
2093
|
-
* * Default Value: 1
|
|
2094
2081
|
*/
|
|
2095
2082
|
get DisplayInForm(): boolean;
|
|
2096
2083
|
set DisplayInForm(value: boolean);
|
|
@@ -2112,14 +2099,12 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2112
2099
|
* * Field Name: CreatedAt
|
|
2113
2100
|
* * Display Name: Created At
|
|
2114
2101
|
* * SQL Data Type: datetime
|
|
2115
|
-
* * Default Value: getdate()
|
|
2116
2102
|
*/
|
|
2117
2103
|
get CreatedAt(): Date;
|
|
2118
2104
|
/**
|
|
2119
2105
|
* * Field Name: UpdatedAt
|
|
2120
2106
|
* * Display Name: Updated At
|
|
2121
2107
|
* * SQL Data Type: datetime
|
|
2122
|
-
* * Default Value: getdate()
|
|
2123
2108
|
*/
|
|
2124
2109
|
get UpdatedAt(): Date;
|
|
2125
2110
|
/**
|
|
@@ -2252,7 +2237,6 @@ export declare class UserRecordLogEntity extends BaseEntity {
|
|
|
2252
2237
|
* * Field Name: EarliestAt
|
|
2253
2238
|
* * Display Name: Earliest At
|
|
2254
2239
|
* * SQL Data Type: datetime
|
|
2255
|
-
* * Default Value: getdate()
|
|
2256
2240
|
*/
|
|
2257
2241
|
get EarliestAt(): Date;
|
|
2258
2242
|
set EarliestAt(value: Date);
|
|
@@ -2260,7 +2244,6 @@ export declare class UserRecordLogEntity extends BaseEntity {
|
|
|
2260
2244
|
* * Field Name: LatestAt
|
|
2261
2245
|
* * Display Name: Latest At
|
|
2262
2246
|
* * SQL Data Type: datetime
|
|
2263
|
-
* * Default Value: getdate()
|
|
2264
2247
|
*/
|
|
2265
2248
|
get LatestAt(): Date;
|
|
2266
2249
|
set LatestAt(value: Date);
|
|
@@ -2268,7 +2251,6 @@ export declare class UserRecordLogEntity extends BaseEntity {
|
|
|
2268
2251
|
* * Field Name: TotalCount
|
|
2269
2252
|
* * Display Name: Total Count
|
|
2270
2253
|
* * SQL Data Type: int
|
|
2271
|
-
* * Default Value: 0
|
|
2272
2254
|
*/
|
|
2273
2255
|
get TotalCount(): number;
|
|
2274
2256
|
set TotalCount(value: number);
|
|
@@ -2364,7 +2346,6 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2364
2346
|
* * Field Name: GUID
|
|
2365
2347
|
* * Display Name: GUID
|
|
2366
2348
|
* * SQL Data Type: uniqueidentifier
|
|
2367
|
-
* * Default Value: newid()
|
|
2368
2349
|
*/
|
|
2369
2350
|
get GUID(): string;
|
|
2370
2351
|
/**
|
|
@@ -2385,7 +2366,6 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2385
2366
|
* * Field Name: IsShared
|
|
2386
2367
|
* * Display Name: Is Shared
|
|
2387
2368
|
* * SQL Data Type: bit
|
|
2388
|
-
* * Default Value: 0
|
|
2389
2369
|
*/
|
|
2390
2370
|
get IsShared(): boolean;
|
|
2391
2371
|
set IsShared(value: boolean);
|
|
@@ -2393,7 +2373,6 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2393
2373
|
* * Field Name: IsDefault
|
|
2394
2374
|
* * Display Name: Is Default
|
|
2395
2375
|
* * SQL Data Type: bit
|
|
2396
|
-
* * Default Value: 0
|
|
2397
2376
|
*/
|
|
2398
2377
|
get IsDefault(): boolean;
|
|
2399
2378
|
set IsDefault(value: boolean);
|
|
@@ -2415,7 +2394,6 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2415
2394
|
* * Field Name: CustomFilterState
|
|
2416
2395
|
* * Display Name: Custom Filter State
|
|
2417
2396
|
* * SQL Data Type: bit
|
|
2418
|
-
* * Default Value: 0
|
|
2419
2397
|
*/
|
|
2420
2398
|
get CustomFilterState(): boolean;
|
|
2421
2399
|
set CustomFilterState(value: boolean);
|
|
@@ -2423,7 +2401,6 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2423
2401
|
* * Field Name: SmartFilterEnabled
|
|
2424
2402
|
* * Display Name: Smart Filter Enabled
|
|
2425
2403
|
* * SQL Data Type: bit
|
|
2426
|
-
* * Default Value: 0
|
|
2427
2404
|
*/
|
|
2428
2405
|
get SmartFilterEnabled(): boolean;
|
|
2429
2406
|
set SmartFilterEnabled(value: boolean);
|
|
@@ -2459,7 +2436,6 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2459
2436
|
* * Field Name: CustomWhereClause
|
|
2460
2437
|
* * Display Name: Custom Where Clause
|
|
2461
2438
|
* * SQL Data Type: bit
|
|
2462
|
-
* * Default Value: 0
|
|
2463
2439
|
*/
|
|
2464
2440
|
get CustomWhereClause(): boolean;
|
|
2465
2441
|
set CustomWhereClause(value: boolean);
|
|
@@ -2474,14 +2450,12 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2474
2450
|
* * Field Name: CreatedAt
|
|
2475
2451
|
* * Display Name: Created At
|
|
2476
2452
|
* * SQL Data Type: datetime
|
|
2477
|
-
* * Default Value: getdate()
|
|
2478
2453
|
*/
|
|
2479
2454
|
get CreatedAt(): Date | null;
|
|
2480
2455
|
/**
|
|
2481
2456
|
* * Field Name: UpdatedAt
|
|
2482
2457
|
* * Display Name: Updated At
|
|
2483
2458
|
* * SQL Data Type: datetime
|
|
2484
|
-
* * Default Value: getdate()
|
|
2485
2459
|
*/
|
|
2486
2460
|
get UpdatedAt(): Date | null;
|
|
2487
2461
|
/**
|
|
@@ -2678,7 +2652,6 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
|
|
|
2678
2652
|
* * Field Name: ExecutedAt
|
|
2679
2653
|
* * Display Name: Executed At
|
|
2680
2654
|
* * SQL Data Type: datetime
|
|
2681
|
-
* * Default Value: getdate()
|
|
2682
2655
|
*/
|
|
2683
2656
|
get ExecutedAt(): Date;
|
|
2684
2657
|
set ExecutedAt(value: Date);
|
|
@@ -2686,7 +2659,6 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
|
|
|
2686
2659
|
* * Field Name: IsSuccess
|
|
2687
2660
|
* * Display Name: Is Success
|
|
2688
2661
|
* * SQL Data Type: bit
|
|
2689
|
-
* * Default Value: 0
|
|
2690
2662
|
*/
|
|
2691
2663
|
get IsSuccess(): boolean;
|
|
2692
2664
|
set IsSuccess(value: boolean);
|
|
@@ -2777,14 +2749,12 @@ export declare class ErrorLogEntity extends BaseEntity {
|
|
|
2777
2749
|
* * Field Name: CreatedAt
|
|
2778
2750
|
* * Display Name: Created At
|
|
2779
2751
|
* * SQL Data Type: datetime
|
|
2780
|
-
* * Default Value: getdate()
|
|
2781
2752
|
*/
|
|
2782
2753
|
get CreatedAt(): Date;
|
|
2783
2754
|
/**
|
|
2784
2755
|
* * Field Name: CreatedBy
|
|
2785
2756
|
* * Display Name: Created By
|
|
2786
2757
|
* * SQL Data Type: nvarchar(50)
|
|
2787
|
-
* * Default Value: suser_name()
|
|
2788
2758
|
*/
|
|
2789
2759
|
get CreatedBy(): string | null;
|
|
2790
2760
|
set CreatedBy(value: string | null);
|
|
@@ -2844,7 +2814,7 @@ export declare class ApplicationEntity extends BaseEntity {
|
|
|
2844
2814
|
set Name(value: string);
|
|
2845
2815
|
/**
|
|
2846
2816
|
* * Field Name: Description
|
|
2847
|
-
* * SQL Data Type: nvarchar(
|
|
2817
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
2848
2818
|
*/
|
|
2849
2819
|
get Description(): string | null;
|
|
2850
2820
|
set Description(value: string | null);
|
|
@@ -2852,14 +2822,12 @@ export declare class ApplicationEntity extends BaseEntity {
|
|
|
2852
2822
|
* * Field Name: CreatedAt
|
|
2853
2823
|
* * Display Name: Created At
|
|
2854
2824
|
* * SQL Data Type: datetime
|
|
2855
|
-
* * Default Value: getdate()
|
|
2856
2825
|
*/
|
|
2857
2826
|
get CreatedAt(): Date;
|
|
2858
2827
|
/**
|
|
2859
2828
|
* * Field Name: UpdatedAt
|
|
2860
2829
|
* * Display Name: Updated At
|
|
2861
2830
|
* * SQL Data Type: datetime
|
|
2862
|
-
* * Default Value: getdate()
|
|
2863
2831
|
*/
|
|
2864
2832
|
get UpdatedAt(): Date;
|
|
2865
2833
|
}
|
|
@@ -2918,7 +2886,6 @@ export declare class ApplicationEntityEntity extends BaseEntity {
|
|
|
2918
2886
|
* * Field Name: DefaultForNewUser
|
|
2919
2887
|
* * Display Name: Default For New User
|
|
2920
2888
|
* * SQL Data Type: bit
|
|
2921
|
-
* * Default Value: 0
|
|
2922
2889
|
*/
|
|
2923
2890
|
get DefaultForNewUser(): boolean;
|
|
2924
2891
|
set DefaultForNewUser(value: boolean);
|
|
@@ -2926,14 +2893,12 @@ export declare class ApplicationEntityEntity extends BaseEntity {
|
|
|
2926
2893
|
* * Field Name: CreatedAt
|
|
2927
2894
|
* * Display Name: Created At
|
|
2928
2895
|
* * SQL Data Type: datetime
|
|
2929
|
-
* * Default Value: getdate()
|
|
2930
2896
|
*/
|
|
2931
2897
|
get CreatedAt(): Date;
|
|
2932
2898
|
/**
|
|
2933
2899
|
* * Field Name: UpdatedAt
|
|
2934
2900
|
* * Display Name: Updated At
|
|
2935
2901
|
* * SQL Data Type: datetime
|
|
2936
|
-
* * Default Value: getdate()
|
|
2937
2902
|
*/
|
|
2938
2903
|
get UpdatedAt(): Date;
|
|
2939
2904
|
/**
|
|
@@ -3020,7 +2985,6 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3020
2985
|
* * Field Name: CanCreate
|
|
3021
2986
|
* * Display Name: Can Create
|
|
3022
2987
|
* * SQL Data Type: bit
|
|
3023
|
-
* * Default Value: 0
|
|
3024
2988
|
*/
|
|
3025
2989
|
get CanCreate(): boolean;
|
|
3026
2990
|
set CanCreate(value: boolean);
|
|
@@ -3028,7 +2992,6 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3028
2992
|
* * Field Name: CanRead
|
|
3029
2993
|
* * Display Name: Can Read
|
|
3030
2994
|
* * SQL Data Type: bit
|
|
3031
|
-
* * Default Value: 0
|
|
3032
2995
|
*/
|
|
3033
2996
|
get CanRead(): boolean;
|
|
3034
2997
|
set CanRead(value: boolean);
|
|
@@ -3036,7 +2999,6 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3036
2999
|
* * Field Name: CanUpdate
|
|
3037
3000
|
* * Display Name: Can Update
|
|
3038
3001
|
* * SQL Data Type: bit
|
|
3039
|
-
* * Default Value: 0
|
|
3040
3002
|
*/
|
|
3041
3003
|
get CanUpdate(): boolean;
|
|
3042
3004
|
set CanUpdate(value: boolean);
|
|
@@ -3044,7 +3006,6 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3044
3006
|
* * Field Name: CanDelete
|
|
3045
3007
|
* * Display Name: Can Delete
|
|
3046
3008
|
* * SQL Data Type: bit
|
|
3047
|
-
* * Default Value: 0
|
|
3048
3009
|
*/
|
|
3049
3010
|
get CanDelete(): boolean;
|
|
3050
3011
|
set CanDelete(value: boolean);
|
|
@@ -3084,14 +3045,12 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3084
3045
|
* * Field Name: CreatedAt
|
|
3085
3046
|
* * Display Name: Created At
|
|
3086
3047
|
* * SQL Data Type: datetime
|
|
3087
|
-
* * Default Value: getdate()
|
|
3088
3048
|
*/
|
|
3089
3049
|
get CreatedAt(): Date;
|
|
3090
3050
|
/**
|
|
3091
3051
|
* * Field Name: UpdatedAt
|
|
3092
3052
|
* * Display Name: Updated At
|
|
3093
3053
|
* * SQL Data Type: datetime
|
|
3094
|
-
* * Default Value: getdate()
|
|
3095
3054
|
*/
|
|
3096
3055
|
get UpdatedAt(): Date;
|
|
3097
3056
|
/**
|
|
@@ -3177,7 +3136,6 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
|
|
|
3177
3136
|
/**
|
|
3178
3137
|
* * Field Name: Sequence
|
|
3179
3138
|
* * SQL Data Type: int
|
|
3180
|
-
* * Default Value: 0
|
|
3181
3139
|
*/
|
|
3182
3140
|
get Sequence(): number;
|
|
3183
3141
|
set Sequence(value: number);
|
|
@@ -3247,7 +3205,6 @@ export declare class UserApplicationEntity extends BaseEntity {
|
|
|
3247
3205
|
/**
|
|
3248
3206
|
* * Field Name: Sequence
|
|
3249
3207
|
* * SQL Data Type: int
|
|
3250
|
-
* * Default Value: 0
|
|
3251
3208
|
*/
|
|
3252
3209
|
get Sequence(): number;
|
|
3253
3210
|
set Sequence(value: number);
|
|
@@ -3255,7 +3212,6 @@ export declare class UserApplicationEntity extends BaseEntity {
|
|
|
3255
3212
|
* * Field Name: IsActive
|
|
3256
3213
|
* * Display Name: Is Active
|
|
3257
3214
|
* * SQL Data Type: bit
|
|
3258
|
-
* * Default Value: 1
|
|
3259
3215
|
*/
|
|
3260
3216
|
get IsActive(): boolean;
|
|
3261
3217
|
set IsActive(value: boolean);
|
|
@@ -3321,7 +3277,6 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
|
|
|
3321
3277
|
* * Field Name: ExecutedAt
|
|
3322
3278
|
* * Display Name: Executed At
|
|
3323
3279
|
* * SQL Data Type: datetime
|
|
3324
|
-
* * Default Value: getdate()
|
|
3325
3280
|
*/
|
|
3326
3281
|
get ExecutedAt(): Date;
|
|
3327
3282
|
set ExecutedAt(value: Date);
|
|
@@ -3329,7 +3284,6 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
|
|
|
3329
3284
|
* * Field Name: IsSuccess
|
|
3330
3285
|
* * Display Name: Is Success
|
|
3331
3286
|
* * SQL Data Type: bit
|
|
3332
|
-
* * Default Value: 0
|
|
3333
3287
|
*/
|
|
3334
3288
|
get IsSuccess(): boolean;
|
|
3335
3289
|
set IsSuccess(value: boolean);
|
|
@@ -3409,8 +3363,8 @@ export declare class ListEntity extends BaseEntity {
|
|
|
3409
3363
|
* * SQL Data Type: int
|
|
3410
3364
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
3411
3365
|
*/
|
|
3412
|
-
get EntityID(): number
|
|
3413
|
-
set EntityID(value: number
|
|
3366
|
+
get EntityID(): number;
|
|
3367
|
+
set EntityID(value: number);
|
|
3414
3368
|
/**
|
|
3415
3369
|
* * Field Name: UserID
|
|
3416
3370
|
* * Display Name: User ID
|
|
@@ -3438,22 +3392,27 @@ export declare class ListEntity extends BaseEntity {
|
|
|
3438
3392
|
* * Field Name: CreatedAt
|
|
3439
3393
|
* * Display Name: Created At
|
|
3440
3394
|
* * SQL Data Type: datetime
|
|
3441
|
-
* * Default Value: getdate()
|
|
3442
3395
|
*/
|
|
3443
3396
|
get CreatedAt(): Date;
|
|
3444
3397
|
/**
|
|
3445
3398
|
* * Field Name: UpdatedAt
|
|
3446
3399
|
* * Display Name: Updated At
|
|
3447
3400
|
* * SQL Data Type: datetime
|
|
3448
|
-
* * Default Value: getdate()
|
|
3449
3401
|
*/
|
|
3450
3402
|
get UpdatedAt(): Date;
|
|
3451
3403
|
/**
|
|
3404
|
+
* * Field Name: CategoryID
|
|
3405
|
+
* * Display Name: Category ID
|
|
3406
|
+
* * SQL Data Type: int
|
|
3407
|
+
*/
|
|
3408
|
+
get CategoryID(): number | null;
|
|
3409
|
+
set CategoryID(value: number | null);
|
|
3410
|
+
/**
|
|
3452
3411
|
* * Field Name: Entity
|
|
3453
3412
|
* * Display Name: Entity
|
|
3454
3413
|
* * SQL Data Type: nvarchar(255)
|
|
3455
3414
|
*/
|
|
3456
|
-
get Entity(): string
|
|
3415
|
+
get Entity(): string;
|
|
3457
3416
|
/**
|
|
3458
3417
|
* * Field Name: User
|
|
3459
3418
|
* * Display Name: User
|
|
@@ -3508,7 +3467,6 @@ export declare class ListDetailEntity extends BaseEntity {
|
|
|
3508
3467
|
/**
|
|
3509
3468
|
* * Field Name: Sequence
|
|
3510
3469
|
* * SQL Data Type: int
|
|
3511
|
-
* * Default Value: 0
|
|
3512
3470
|
*/
|
|
3513
3471
|
get Sequence(): number;
|
|
3514
3472
|
set Sequence(value: number);
|
|
@@ -3728,7 +3686,6 @@ export declare class WorkflowRunEntity extends BaseEntity {
|
|
|
3728
3686
|
/**
|
|
3729
3687
|
* * Field Name: Status
|
|
3730
3688
|
* * SQL Data Type: nchar(10)
|
|
3731
|
-
* * Default Value: N'Pending'
|
|
3732
3689
|
* * Value List Type: List
|
|
3733
3690
|
* * Possible Values
|
|
3734
3691
|
* * Pending
|
|
@@ -3833,21 +3790,18 @@ export declare class WorkflowEntity extends BaseEntity {
|
|
|
3833
3790
|
* * Field Name: CreatedAt
|
|
3834
3791
|
* * Display Name: Created At
|
|
3835
3792
|
* * SQL Data Type: datetime
|
|
3836
|
-
* * Default Value: getdate()
|
|
3837
3793
|
*/
|
|
3838
3794
|
get CreatedAt(): Date;
|
|
3839
3795
|
/**
|
|
3840
3796
|
* * Field Name: UpdatedAt
|
|
3841
3797
|
* * Display Name: Updated At
|
|
3842
3798
|
* * SQL Data Type: datetime
|
|
3843
|
-
* * Default Value: getdate()
|
|
3844
3799
|
*/
|
|
3845
3800
|
get UpdatedAt(): Date;
|
|
3846
3801
|
/**
|
|
3847
3802
|
* * Field Name: AutoRunEnabled
|
|
3848
3803
|
* * Display Name: Auto Run Enabled
|
|
3849
3804
|
* * SQL Data Type: bit
|
|
3850
|
-
* * Default Value: 0
|
|
3851
3805
|
* * Description: If set to 1, the workflow will be run automatically on the interval specified by the AutoRunIntervalType and AutoRunInterval fields
|
|
3852
3806
|
*/
|
|
3853
3807
|
get AutoRunEnabled(): boolean;
|
|
@@ -3958,14 +3912,12 @@ export declare class WorkflowEngineEntity extends BaseEntity {
|
|
|
3958
3912
|
* * Field Name: CreatedAt
|
|
3959
3913
|
* * Display Name: Created At
|
|
3960
3914
|
* * SQL Data Type: datetime
|
|
3961
|
-
* * Default Value: getdate()
|
|
3962
3915
|
*/
|
|
3963
3916
|
get CreatedAt(): Date;
|
|
3964
3917
|
/**
|
|
3965
3918
|
* * Field Name: UpdatedAt
|
|
3966
3919
|
* * Display Name: Updated At
|
|
3967
3920
|
* * SQL Data Type: datetime
|
|
3968
|
-
* * Default Value: getdate()
|
|
3969
3921
|
*/
|
|
3970
3922
|
get UpdatedAt(): Date;
|
|
3971
3923
|
}
|
|
@@ -4034,7 +3986,6 @@ export declare class RecordChangeEntity extends BaseEntity {
|
|
|
4034
3986
|
* * Field Name: ChangedAt
|
|
4035
3987
|
* * Display Name: Changed At
|
|
4036
3988
|
* * SQL Data Type: datetime
|
|
4037
|
-
* * Default Value: getdate()
|
|
4038
3989
|
*/
|
|
4039
3990
|
get ChangedAt(): Date;
|
|
4040
3991
|
set ChangedAt(value: Date);
|
|
@@ -4062,7 +4013,6 @@ export declare class RecordChangeEntity extends BaseEntity {
|
|
|
4062
4013
|
/**
|
|
4063
4014
|
* * Field Name: Status
|
|
4064
4015
|
* * SQL Data Type: nchar(15)
|
|
4065
|
-
* * Default Value: N'Complete'
|
|
4066
4016
|
* * Value List Type: List
|
|
4067
4017
|
* * Possible Values
|
|
4068
4018
|
* * Pending
|
|
@@ -4138,14 +4088,12 @@ export declare class UserRoleEntity extends BaseEntity {
|
|
|
4138
4088
|
* * Field Name: CreatedAt
|
|
4139
4089
|
* * Display Name: Created At
|
|
4140
4090
|
* * SQL Data Type: datetime
|
|
4141
|
-
* * Default Value: getdate()
|
|
4142
4091
|
*/
|
|
4143
4092
|
get CreatedAt(): Date;
|
|
4144
4093
|
/**
|
|
4145
4094
|
* * Field Name: UpdatedAt
|
|
4146
4095
|
* * Display Name: Updated At
|
|
4147
4096
|
* * SQL Data Type: datetime
|
|
4148
|
-
* * Default Value: getdate()
|
|
4149
4097
|
*/
|
|
4150
4098
|
get UpdatedAt(): Date;
|
|
4151
4099
|
/**
|
|
@@ -4227,14 +4175,12 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity {
|
|
|
4227
4175
|
* * Field Name: CreatedAt
|
|
4228
4176
|
* * Display Name: Created At
|
|
4229
4177
|
* * SQL Data Type: datetime
|
|
4230
|
-
* * Default Value: getdate()
|
|
4231
4178
|
*/
|
|
4232
4179
|
get CreatedAt(): Date;
|
|
4233
4180
|
/**
|
|
4234
4181
|
* * Field Name: UpdatedAt
|
|
4235
4182
|
* * Display Name: Updated At
|
|
4236
4183
|
* * SQL Data Type: datetime
|
|
4237
|
-
* * Default Value: getdate()
|
|
4238
4184
|
*/
|
|
4239
4185
|
get UpdatedAt(): Date;
|
|
4240
4186
|
}
|
|
@@ -4304,7 +4250,6 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4304
4250
|
* * Field Name: Status
|
|
4305
4251
|
* * Display Name: Status
|
|
4306
4252
|
* * SQL Data Type: nvarchar(50)
|
|
4307
|
-
* * Default Value: N'Allow'
|
|
4308
4253
|
* * Value List Type: List
|
|
4309
4254
|
* * Possible Values
|
|
4310
4255
|
* * Success
|
|
@@ -4345,14 +4290,12 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4345
4290
|
* * Field Name: CreatedAt
|
|
4346
4291
|
* * Display Name: Created At
|
|
4347
4292
|
* * SQL Data Type: datetime
|
|
4348
|
-
* * Default Value: getdate()
|
|
4349
4293
|
*/
|
|
4350
4294
|
get CreatedAt(): Date;
|
|
4351
4295
|
/**
|
|
4352
4296
|
* * Field Name: UpdatedAt
|
|
4353
4297
|
* * Display Name: Updated At
|
|
4354
4298
|
* * SQL Data Type: datetime
|
|
4355
|
-
* * Default Value: getdate()
|
|
4356
4299
|
*/
|
|
4357
4300
|
get UpdatedAt(): Date;
|
|
4358
4301
|
/**
|
|
@@ -4434,7 +4377,6 @@ export declare class AuthorizationEntity extends BaseEntity {
|
|
|
4434
4377
|
* * Field Name: IsActive
|
|
4435
4378
|
* * Display Name: Is Active
|
|
4436
4379
|
* * SQL Data Type: bit
|
|
4437
|
-
* * Default Value: 1
|
|
4438
4380
|
*/
|
|
4439
4381
|
get IsActive(): boolean;
|
|
4440
4382
|
set IsActive(value: boolean);
|
|
@@ -4442,7 +4384,6 @@ export declare class AuthorizationEntity extends BaseEntity {
|
|
|
4442
4384
|
* * Field Name: UseAuditLog
|
|
4443
4385
|
* * Display Name: Use Audit Log
|
|
4444
4386
|
* * SQL Data Type: bit
|
|
4445
|
-
* * Default Value: 1
|
|
4446
4387
|
*/
|
|
4447
4388
|
get UseAuditLog(): boolean;
|
|
4448
4389
|
set UseAuditLog(value: boolean);
|
|
@@ -4457,14 +4398,12 @@ export declare class AuthorizationEntity extends BaseEntity {
|
|
|
4457
4398
|
* * Field Name: CreatedAt
|
|
4458
4399
|
* * Display Name: Created At
|
|
4459
4400
|
* * SQL Data Type: datetime
|
|
4460
|
-
* * Default Value: getdate()
|
|
4461
4401
|
*/
|
|
4462
4402
|
get CreatedAt(): Date;
|
|
4463
4403
|
/**
|
|
4464
4404
|
* * Field Name: UpdatedAt
|
|
4465
4405
|
* * Display Name: Updated At
|
|
4466
4406
|
* * SQL Data Type: datetime
|
|
4467
|
-
* * Default Value: getdate()
|
|
4468
4407
|
*/
|
|
4469
4408
|
get UpdatedAt(): Date;
|
|
4470
4409
|
/**
|
|
@@ -4541,7 +4480,6 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
|
|
|
4541
4480
|
* * Field Name: Type
|
|
4542
4481
|
* * Display Name: Type
|
|
4543
4482
|
* * SQL Data Type: nchar(10)
|
|
4544
|
-
* * Default Value: N'grant'
|
|
4545
4483
|
* * Value List Type: List
|
|
4546
4484
|
* * Possible Values
|
|
4547
4485
|
* * Allow - User allowed to execute tasks linked to this authorization
|
|
@@ -4553,14 +4491,12 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
|
|
|
4553
4491
|
* * Field Name: CreatedAt
|
|
4554
4492
|
* * Display Name: Created At
|
|
4555
4493
|
* * SQL Data Type: datetime
|
|
4556
|
-
* * Default Value: getdate()
|
|
4557
4494
|
*/
|
|
4558
4495
|
get CreatedAt(): Date;
|
|
4559
4496
|
/**
|
|
4560
4497
|
* * Field Name: UpdatedAt
|
|
4561
4498
|
* * Display Name: Updated At
|
|
4562
4499
|
* * SQL Data Type: datetime
|
|
4563
|
-
* * Default Value: getdate()
|
|
4564
4500
|
*/
|
|
4565
4501
|
get UpdatedAt(): Date;
|
|
4566
4502
|
}
|
|
@@ -4645,14 +4581,12 @@ export declare class AuditLogTypeEntity extends BaseEntity {
|
|
|
4645
4581
|
* * Field Name: CreatedAt
|
|
4646
4582
|
* * Display Name: Created At
|
|
4647
4583
|
* * SQL Data Type: datetime
|
|
4648
|
-
* * Default Value: getdate()
|
|
4649
4584
|
*/
|
|
4650
4585
|
get CreatedAt(): Date;
|
|
4651
4586
|
/**
|
|
4652
4587
|
* * Field Name: UpdatedAt
|
|
4653
4588
|
* * Display Name: Updated At
|
|
4654
4589
|
* * SQL Data Type: datetime
|
|
4655
|
-
* * Default Value: getdate()
|
|
4656
4590
|
*/
|
|
4657
4591
|
get UpdatedAt(): Date;
|
|
4658
4592
|
/**
|
|
@@ -4757,14 +4691,12 @@ export declare class EntityFieldValueEntity extends BaseEntity {
|
|
|
4757
4691
|
* * Field Name: CreatedAt
|
|
4758
4692
|
* * Display Name: Created At
|
|
4759
4693
|
* * SQL Data Type: datetime
|
|
4760
|
-
* * Default Value: getdate()
|
|
4761
4694
|
*/
|
|
4762
4695
|
get CreatedAt(): Date;
|
|
4763
4696
|
/**
|
|
4764
4697
|
* * Field Name: UpdatedAt
|
|
4765
4698
|
* * Display Name: Updated At
|
|
4766
4699
|
* * SQL Data Type: datetime
|
|
4767
|
-
* * Default Value: getdate()
|
|
4768
4700
|
*/
|
|
4769
4701
|
get UpdatedAt(): Date;
|
|
4770
4702
|
/**
|
|
@@ -4845,7 +4777,6 @@ export declare class AIModelEntity extends BaseEntity {
|
|
|
4845
4777
|
* * Field Name: IsActive
|
|
4846
4778
|
* * Display Name: Is Active
|
|
4847
4779
|
* * SQL Data Type: bit
|
|
4848
|
-
* * Default Value: 1
|
|
4849
4780
|
*/
|
|
4850
4781
|
get IsActive(): boolean;
|
|
4851
4782
|
set IsActive(value: boolean);
|
|
@@ -4890,14 +4821,12 @@ export declare class AIModelEntity extends BaseEntity {
|
|
|
4890
4821
|
* * Field Name: CreatedAt
|
|
4891
4822
|
* * Display Name: Created At
|
|
4892
4823
|
* * SQL Data Type: datetime
|
|
4893
|
-
* * Default Value: getdate()
|
|
4894
4824
|
*/
|
|
4895
4825
|
get CreatedAt(): Date;
|
|
4896
4826
|
/**
|
|
4897
4827
|
* * Field Name: UpdatedAt
|
|
4898
4828
|
* * Display Name: Updated At
|
|
4899
4829
|
* * SQL Data Type: datetime
|
|
4900
|
-
* * Default Value: getdate()
|
|
4901
4830
|
*/
|
|
4902
4831
|
get UpdatedAt(): Date;
|
|
4903
4832
|
/**
|
|
@@ -4932,15 +4861,6 @@ export declare class AIActionEntity extends BaseEntity {
|
|
|
4932
4861
|
*/
|
|
4933
4862
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4934
4863
|
/**
|
|
4935
|
-
* AI Actions - 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.
|
|
4936
|
-
* @public
|
|
4937
|
-
* @method
|
|
4938
|
-
* @override
|
|
4939
|
-
* @memberof AIActionEntity
|
|
4940
|
-
* @throws {Error} - Delete is not allowed for AI Actions, to enable it set AllowDeleteAPI to 1 in the database.
|
|
4941
|
-
*/
|
|
4942
|
-
Delete(): Promise<boolean>;
|
|
4943
|
-
/**
|
|
4944
4864
|
* * Field Name: ID
|
|
4945
4865
|
* * Display Name: ID
|
|
4946
4866
|
* * SQL Data Type: int
|
|
@@ -4979,7 +4899,6 @@ export declare class AIActionEntity extends BaseEntity {
|
|
|
4979
4899
|
* * Field Name: IsActive
|
|
4980
4900
|
* * Display Name: Is Active
|
|
4981
4901
|
* * SQL Data Type: bit
|
|
4982
|
-
* * Default Value: 1
|
|
4983
4902
|
*/
|
|
4984
4903
|
get IsActive(): boolean;
|
|
4985
4904
|
set IsActive(value: boolean);
|
|
@@ -4987,14 +4906,12 @@ export declare class AIActionEntity extends BaseEntity {
|
|
|
4987
4906
|
* * Field Name: CreatedAt
|
|
4988
4907
|
* * Display Name: Created At
|
|
4989
4908
|
* * SQL Data Type: datetime
|
|
4990
|
-
* * Default Value: getdate()
|
|
4991
4909
|
*/
|
|
4992
4910
|
get CreatedAt(): Date;
|
|
4993
4911
|
/**
|
|
4994
4912
|
* * Field Name: UpdatedAt
|
|
4995
4913
|
* * Display Name: Updated At
|
|
4996
4914
|
* * SQL Data Type: datetime
|
|
4997
|
-
* * Default Value: getdate()
|
|
4998
4915
|
*/
|
|
4999
4916
|
get UpdatedAt(): Date;
|
|
5000
4917
|
/**
|
|
@@ -5029,15 +4946,6 @@ export declare class AIModelActionEntity extends BaseEntity {
|
|
|
5029
4946
|
*/
|
|
5030
4947
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5031
4948
|
/**
|
|
5032
|
-
* AI Model Actions - 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.
|
|
5033
|
-
* @public
|
|
5034
|
-
* @method
|
|
5035
|
-
* @override
|
|
5036
|
-
* @memberof AIModelActionEntity
|
|
5037
|
-
* @throws {Error} - Delete is not allowed for AI Model Actions, to enable it set AllowDeleteAPI to 1 in the database.
|
|
5038
|
-
*/
|
|
5039
|
-
Delete(): Promise<boolean>;
|
|
5040
|
-
/**
|
|
5041
4949
|
* * Field Name: ID
|
|
5042
4950
|
* * Display Name: ID
|
|
5043
4951
|
* * SQL Data Type: int
|
|
@@ -5063,7 +4971,6 @@ export declare class AIModelActionEntity extends BaseEntity {
|
|
|
5063
4971
|
* * Field Name: IsActive
|
|
5064
4972
|
* * Display Name: Is Active
|
|
5065
4973
|
* * SQL Data Type: bit
|
|
5066
|
-
* * Default Value: 1
|
|
5067
4974
|
*/
|
|
5068
4975
|
get IsActive(): boolean;
|
|
5069
4976
|
set IsActive(value: boolean);
|
|
@@ -5071,14 +4978,12 @@ export declare class AIModelActionEntity extends BaseEntity {
|
|
|
5071
4978
|
* * Field Name: CreatedAt
|
|
5072
4979
|
* * Display Name: Created At
|
|
5073
4980
|
* * SQL Data Type: datetime
|
|
5074
|
-
* * Default Value: getdate()
|
|
5075
4981
|
*/
|
|
5076
4982
|
get CreatedAt(): Date;
|
|
5077
4983
|
/**
|
|
5078
4984
|
* * Field Name: UpdatedAt
|
|
5079
4985
|
* * Display Name: Updated At
|
|
5080
4986
|
* * SQL Data Type: datetime
|
|
5081
|
-
* * Default Value: getdate()
|
|
5082
4987
|
*/
|
|
5083
4988
|
get UpdatedAt(): Date;
|
|
5084
4989
|
/**
|
|
@@ -5119,15 +5024,6 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5119
5024
|
*/
|
|
5120
5025
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
5121
5026
|
/**
|
|
5122
|
-
* Entity AI Actions - 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.
|
|
5123
|
-
* @public
|
|
5124
|
-
* @method
|
|
5125
|
-
* @override
|
|
5126
|
-
* @memberof EntityAIActionEntity
|
|
5127
|
-
* @throws {Error} - Delete is not allowed for Entity AI Actions, to enable it set AllowDeleteAPI to 1 in the database.
|
|
5128
|
-
*/
|
|
5129
|
-
Delete(): Promise<boolean>;
|
|
5130
|
-
/**
|
|
5131
5027
|
* * Field Name: ID
|
|
5132
5028
|
* * Display Name: ID
|
|
5133
5029
|
* * SQL Data Type: int
|
|
@@ -5175,7 +5071,6 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5175
5071
|
* * Field Name: TriggerEvent
|
|
5176
5072
|
* * Display Name: Trigger Event
|
|
5177
5073
|
* * SQL Data Type: nchar(15)
|
|
5178
|
-
* * Default Value: N'After Save'
|
|
5179
5074
|
* * Value List Type: List
|
|
5180
5075
|
* * Possible Values
|
|
5181
5076
|
* * after save
|
|
@@ -5194,7 +5089,6 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5194
5089
|
* * Field Name: OutputType
|
|
5195
5090
|
* * Display Name: Output Type
|
|
5196
5091
|
* * SQL Data Type: nchar(10)
|
|
5197
|
-
* * Default Value: N'FIeld'
|
|
5198
5092
|
* * Value List Type: List
|
|
5199
5093
|
* * Possible Values
|
|
5200
5094
|
* * entity
|
|
@@ -5213,7 +5107,6 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5213
5107
|
* * Field Name: SkipIfOutputFieldNotEmpty
|
|
5214
5108
|
* * Display Name: Skip If Output Field Not Empty
|
|
5215
5109
|
* * SQL Data Type: bit
|
|
5216
|
-
* * Default Value: 1
|
|
5217
5110
|
*/
|
|
5218
5111
|
get SkipIfOutputFieldNotEmpty(): boolean;
|
|
5219
5112
|
set SkipIfOutputFieldNotEmpty(value: boolean);
|
|
@@ -5390,7 +5283,6 @@ export declare class QueueTypeEntity extends BaseEntity {
|
|
|
5390
5283
|
* * Field Name: IsActive
|
|
5391
5284
|
* * Display Name: Is Active
|
|
5392
5285
|
* * SQL Data Type: bit
|
|
5393
|
-
* * Default Value: 1
|
|
5394
5286
|
*/
|
|
5395
5287
|
get IsActive(): boolean;
|
|
5396
5288
|
set IsActive(value: boolean);
|
|
@@ -5460,7 +5352,6 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
5460
5352
|
* * Field Name: IsActive
|
|
5461
5353
|
* * Display Name: Is Active
|
|
5462
5354
|
* * SQL Data Type: bit
|
|
5463
|
-
* * Default Value: 0
|
|
5464
5355
|
*/
|
|
5465
5356
|
get IsActive(): boolean;
|
|
5466
5357
|
set IsActive(value: boolean);
|
|
@@ -5545,7 +5436,6 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
5545
5436
|
* * Field Name: LastHeartbeat
|
|
5546
5437
|
* * Display Name: Last Heartbeat
|
|
5547
5438
|
* * SQL Data Type: datetime
|
|
5548
|
-
* * Default Value: getdate()
|
|
5549
5439
|
*/
|
|
5550
5440
|
get LastHeartbeat(): Date;
|
|
5551
5441
|
set LastHeartbeat(value: Date);
|
|
@@ -5553,14 +5443,12 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
5553
5443
|
* * Field Name: CreatedAt
|
|
5554
5444
|
* * Display Name: Created At
|
|
5555
5445
|
* * SQL Data Type: datetime
|
|
5556
|
-
* * Default Value: getdate()
|
|
5557
5446
|
*/
|
|
5558
5447
|
get CreatedAt(): Date;
|
|
5559
5448
|
/**
|
|
5560
5449
|
* * Field Name: UpdatedAt
|
|
5561
5450
|
* * Display Name: Updated At
|
|
5562
5451
|
* * SQL Data Type: datetime
|
|
5563
|
-
* * Default Value: getdate()
|
|
5564
5452
|
*/
|
|
5565
5453
|
get UpdatedAt(): Date;
|
|
5566
5454
|
/**
|
|
@@ -5620,7 +5508,6 @@ export declare class QueueTaskEntity extends BaseEntity {
|
|
|
5620
5508
|
* * Field Name: Status
|
|
5621
5509
|
* * Display Name: Status
|
|
5622
5510
|
* * SQL Data Type: nchar(10)
|
|
5623
|
-
* * Default Value: N'Pending'
|
|
5624
5511
|
* * Value List Type: List
|
|
5625
5512
|
* * Possible Values
|
|
5626
5513
|
* * In Progress
|
|
@@ -6021,7 +5908,6 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
6021
5908
|
* * Field Name: SharingScope
|
|
6022
5909
|
* * Display Name: Sharing Scope
|
|
6023
5910
|
* * SQL Data Type: nvarchar(20)
|
|
6024
|
-
* * Default Value: N'Personal'
|
|
6025
5911
|
* * Value List Type: List
|
|
6026
5912
|
* * Possible Values
|
|
6027
5913
|
* * None
|
|
@@ -6119,14 +6005,12 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
6119
6005
|
* * Field Name: CreatedAt
|
|
6120
6006
|
* * Display Name: Created At
|
|
6121
6007
|
* * SQL Data Type: datetime
|
|
6122
|
-
* * Default Value: getdate()
|
|
6123
6008
|
*/
|
|
6124
6009
|
get CreatedAt(): Date;
|
|
6125
6010
|
/**
|
|
6126
6011
|
* * Field Name: UpdatedAt
|
|
6127
6012
|
* * Display Name: Updated At
|
|
6128
6013
|
* * SQL Data Type: datetime
|
|
6129
|
-
* * Default Value: getdate()
|
|
6130
6014
|
*/
|
|
6131
6015
|
get UpdatedAt(): Date;
|
|
6132
6016
|
/**
|
|
@@ -6232,7 +6116,6 @@ export declare class ReportSnapshotEntity extends BaseEntity {
|
|
|
6232
6116
|
* * Field Name: CreatedAt
|
|
6233
6117
|
* * Display Name: Created At
|
|
6234
6118
|
* * SQL Data Type: datetime
|
|
6235
|
-
* * Default Value: getdate()
|
|
6236
6119
|
*/
|
|
6237
6120
|
get CreatedAt(): Date;
|
|
6238
6121
|
/**
|
|
@@ -6343,14 +6226,12 @@ export declare class ResourceTypeEntity extends BaseEntity {
|
|
|
6343
6226
|
* * Field Name: CreatedAt
|
|
6344
6227
|
* * Display Name: Created At
|
|
6345
6228
|
* * SQL Data Type: datetime
|
|
6346
|
-
* * Default Value: getdate()
|
|
6347
6229
|
*/
|
|
6348
6230
|
get CreatedAt(): Date;
|
|
6349
6231
|
/**
|
|
6350
6232
|
* * Field Name: UpdatedAt
|
|
6351
6233
|
* * Display Name: Updated At
|
|
6352
6234
|
* * SQL Data Type: datetime
|
|
6353
|
-
* * Default Value: getdate()
|
|
6354
6235
|
*/
|
|
6355
6236
|
get UpdatedAt(): Date;
|
|
6356
6237
|
/**
|
|
@@ -6572,6 +6453,18 @@ export declare class WorkspaceEntity extends BaseEntity {
|
|
|
6572
6453
|
get UserID(): number;
|
|
6573
6454
|
set UserID(value: number);
|
|
6574
6455
|
/**
|
|
6456
|
+
* * Field Name: CreatedAt
|
|
6457
|
+
* * Display Name: Created At
|
|
6458
|
+
* * SQL Data Type: datetime
|
|
6459
|
+
*/
|
|
6460
|
+
get CreatedAt(): Date;
|
|
6461
|
+
/**
|
|
6462
|
+
* * Field Name: UpdatedAt
|
|
6463
|
+
* * Display Name: Updated At
|
|
6464
|
+
* * SQL Data Type: datetime
|
|
6465
|
+
*/
|
|
6466
|
+
get UpdatedAt(): Date;
|
|
6467
|
+
/**
|
|
6575
6468
|
* * Field Name: User
|
|
6576
6469
|
* * Display Name: User
|
|
6577
6470
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -6641,7 +6534,7 @@ export declare class WorkspaceItemEntity extends BaseEntity {
|
|
|
6641
6534
|
/**
|
|
6642
6535
|
* * Field Name: ResourceRecordID
|
|
6643
6536
|
* * Display Name: Resource Record ID
|
|
6644
|
-
* * SQL Data Type: nvarchar(
|
|
6537
|
+
* * SQL Data Type: nvarchar(2000)
|
|
6645
6538
|
*/
|
|
6646
6539
|
get ResourceRecordID(): string | null;
|
|
6647
6540
|
set ResourceRecordID(value: string | null);
|
|
@@ -6660,6 +6553,18 @@ export declare class WorkspaceItemEntity extends BaseEntity {
|
|
|
6660
6553
|
get Configuration(): string | null;
|
|
6661
6554
|
set Configuration(value: string | null);
|
|
6662
6555
|
/**
|
|
6556
|
+
* * Field Name: CreatedAt
|
|
6557
|
+
* * Display Name: Created At
|
|
6558
|
+
* * SQL Data Type: datetime
|
|
6559
|
+
*/
|
|
6560
|
+
get CreatedAt(): Date;
|
|
6561
|
+
/**
|
|
6562
|
+
* * Field Name: UpdatedAt
|
|
6563
|
+
* * Display Name: Updated At
|
|
6564
|
+
* * SQL Data Type: datetime
|
|
6565
|
+
*/
|
|
6566
|
+
get UpdatedAt(): Date;
|
|
6567
|
+
/**
|
|
6663
6568
|
* * Field Name: WorkSpace
|
|
6664
6569
|
* * Display Name: Work Space
|
|
6665
6570
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -6738,14 +6643,12 @@ export declare class DatasetEntity extends BaseEntity {
|
|
|
6738
6643
|
* * Field Name: CreatedAt
|
|
6739
6644
|
* * Display Name: Created At
|
|
6740
6645
|
* * SQL Data Type: datetime
|
|
6741
|
-
* * Default Value: getdate()
|
|
6742
6646
|
*/
|
|
6743
6647
|
get CreatedAt(): Date;
|
|
6744
6648
|
/**
|
|
6745
6649
|
* * Field Name: UpdatedAt
|
|
6746
6650
|
* * Display Name: Updated At
|
|
6747
6651
|
* * SQL Data Type: datetime
|
|
6748
|
-
* * Default Value: getdate()
|
|
6749
6652
|
*/
|
|
6750
6653
|
get UpdatedAt(): Date;
|
|
6751
6654
|
}
|
|
@@ -6816,7 +6719,6 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
6816
6719
|
* * Field Name: Sequence
|
|
6817
6720
|
* * Display Name: Sequence
|
|
6818
6721
|
* * SQL Data Type: int
|
|
6819
|
-
* * Default Value: 0
|
|
6820
6722
|
*/
|
|
6821
6723
|
get Sequence(): number;
|
|
6822
6724
|
set Sequence(value: number);
|
|
@@ -6853,14 +6755,12 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
6853
6755
|
* * Field Name: CreatedAt
|
|
6854
6756
|
* * Display Name: Created At
|
|
6855
6757
|
* * SQL Data Type: datetime
|
|
6856
|
-
* * Default Value: getdate()
|
|
6857
6758
|
*/
|
|
6858
6759
|
get CreatedAt(): Date;
|
|
6859
6760
|
/**
|
|
6860
6761
|
* * Field Name: UpdatedAt
|
|
6861
6762
|
* * Display Name: Updated At
|
|
6862
6763
|
* * SQL Data Type: datetime
|
|
6863
|
-
* * Default Value: getdate()
|
|
6864
6764
|
*/
|
|
6865
6765
|
get UpdatedAt(): Date;
|
|
6866
6766
|
/**
|
|
@@ -6918,7 +6818,6 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
6918
6818
|
* * Field Name: Role
|
|
6919
6819
|
* * Display Name: Role
|
|
6920
6820
|
* * SQL Data Type: nvarchar(20)
|
|
6921
|
-
* * Default Value: user_name()
|
|
6922
6821
|
* * Value List Type: List
|
|
6923
6822
|
* * Possible Values
|
|
6924
6823
|
* * User
|
|
@@ -6945,7 +6844,6 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
6945
6844
|
* * Field Name: HiddenToUser
|
|
6946
6845
|
* * Display Name: Hidden To User
|
|
6947
6846
|
* * SQL Data Type: bit
|
|
6948
|
-
* * Default Value: 0
|
|
6949
6847
|
*/
|
|
6950
6848
|
get HiddenToUser(): boolean;
|
|
6951
6849
|
set HiddenToUser(value: boolean);
|
|
@@ -6953,14 +6851,12 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
6953
6851
|
* * Field Name: CreatedAt
|
|
6954
6852
|
* * Display Name: Created At
|
|
6955
6853
|
* * SQL Data Type: datetime
|
|
6956
|
-
* * Default Value: getdate()
|
|
6957
6854
|
*/
|
|
6958
6855
|
get CreatedAt(): Date;
|
|
6959
6856
|
/**
|
|
6960
6857
|
* * Field Name: UpdatedAt
|
|
6961
6858
|
* * Display Name: Updated At
|
|
6962
6859
|
* * SQL Data Type: datetime
|
|
6963
|
-
* * Default Value: getdate()
|
|
6964
6860
|
*/
|
|
6965
6861
|
get UpdatedAt(): Date;
|
|
6966
6862
|
/**
|
|
@@ -7032,7 +6928,6 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
7032
6928
|
* * Field Name: Type
|
|
7033
6929
|
* * Display Name: Type
|
|
7034
6930
|
* * SQL Data Type: nvarchar(50)
|
|
7035
|
-
* * Default Value: N'Skip'
|
|
7036
6931
|
*/
|
|
7037
6932
|
get Type(): string;
|
|
7038
6933
|
set Type(value: string);
|
|
@@ -7040,7 +6935,6 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
7040
6935
|
* * Field Name: IsArchived
|
|
7041
6936
|
* * Display Name: Is Archived
|
|
7042
6937
|
* * SQL Data Type: bit
|
|
7043
|
-
* * Default Value: 0
|
|
7044
6938
|
*/
|
|
7045
6939
|
get IsArchived(): boolean;
|
|
7046
6940
|
set IsArchived(value: boolean);
|
|
@@ -7070,14 +6964,12 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
7070
6964
|
* * Field Name: CreatedAt
|
|
7071
6965
|
* * Display Name: Created At
|
|
7072
6966
|
* * SQL Data Type: datetime
|
|
7073
|
-
* * Default Value: getdate()
|
|
7074
6967
|
*/
|
|
7075
6968
|
get CreatedAt(): Date;
|
|
7076
6969
|
/**
|
|
7077
6970
|
* * Field Name: UpdatedAt
|
|
7078
6971
|
* * Display Name: Updated At
|
|
7079
6972
|
* * SQL Data Type: datetime
|
|
7080
|
-
* * Default Value: getdate()
|
|
7081
6973
|
*/
|
|
7082
6974
|
get UpdatedAt(): Date;
|
|
7083
6975
|
/**
|
|
@@ -7169,7 +7061,6 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
7169
7061
|
* * Field Name: Unread
|
|
7170
7062
|
* * Display Name: Unread
|
|
7171
7063
|
* * SQL Data Type: bit
|
|
7172
|
-
* * Default Value: 1
|
|
7173
7064
|
*/
|
|
7174
7065
|
get Unread(): boolean;
|
|
7175
7066
|
set Unread(value: boolean);
|
|
@@ -7184,14 +7075,12 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
7184
7075
|
* * Field Name: CreatedAt
|
|
7185
7076
|
* * Display Name: Created At
|
|
7186
7077
|
* * SQL Data Type: datetime
|
|
7187
|
-
* * Default Value: getdate()
|
|
7188
7078
|
*/
|
|
7189
7079
|
get CreatedAt(): Date;
|
|
7190
7080
|
/**
|
|
7191
7081
|
* * Field Name: UpdatedAt
|
|
7192
7082
|
* * Display Name: Updated At
|
|
7193
7083
|
* * SQL Data Type: datetime
|
|
7194
|
-
* * Default Value: getdate()
|
|
7195
7084
|
*/
|
|
7196
7085
|
get UpdatedAt(): Date;
|
|
7197
7086
|
/**
|
|
@@ -7272,14 +7161,12 @@ export declare class SchemaInfoEntity extends BaseEntity {
|
|
|
7272
7161
|
* * Field Name: CreatedAt
|
|
7273
7162
|
* * Display Name: Created At
|
|
7274
7163
|
* * SQL Data Type: datetime
|
|
7275
|
-
* * Default Value: getdate()
|
|
7276
7164
|
*/
|
|
7277
7165
|
get CreatedAt(): Date;
|
|
7278
7166
|
/**
|
|
7279
7167
|
* * Field Name: UpdatedAt
|
|
7280
7168
|
* * Display Name: Updated At
|
|
7281
7169
|
* * SQL Data Type: datetime
|
|
7282
|
-
* * Default Value: getdate()
|
|
7283
7170
|
*/
|
|
7284
7171
|
get UpdatedAt(): Date;
|
|
7285
7172
|
}
|
|
@@ -7355,14 +7242,12 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
|
|
|
7355
7242
|
* * Field Name: CreatedAt
|
|
7356
7243
|
* * Display Name: Created At
|
|
7357
7244
|
* * SQL Data Type: datetime
|
|
7358
|
-
* * Default Value: getdate()
|
|
7359
7245
|
*/
|
|
7360
7246
|
get CreatedAt(): Date;
|
|
7361
7247
|
/**
|
|
7362
7248
|
* * Field Name: UpdatedAt
|
|
7363
7249
|
* * Display Name: Updated At
|
|
7364
7250
|
* * SQL Data Type: datetime
|
|
7365
|
-
* * Default Value: getdate()
|
|
7366
7251
|
*/
|
|
7367
7252
|
get UpdatedAt(): Date;
|
|
7368
7253
|
/**
|
|
@@ -7437,7 +7322,6 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7437
7322
|
* * Field Name: ApprovalStatus
|
|
7438
7323
|
* * Display Name: Approval Status
|
|
7439
7324
|
* * SQL Data Type: nvarchar(10)
|
|
7440
|
-
* * Default Value: N'Pending'
|
|
7441
7325
|
* * Value List Type: List
|
|
7442
7326
|
* * Possible Values
|
|
7443
7327
|
* * Pending
|
|
@@ -7457,7 +7341,6 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7457
7341
|
* * Field Name: ProcessingStatus
|
|
7458
7342
|
* * Display Name: Processing Status
|
|
7459
7343
|
* * SQL Data Type: nvarchar(10)
|
|
7460
|
-
* * Default Value: N'Pending'
|
|
7461
7344
|
* * Value List Type: List
|
|
7462
7345
|
* * Possible Values
|
|
7463
7346
|
* * Started
|
|
@@ -7470,7 +7353,6 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7470
7353
|
* * Field Name: ProcessingStartedAt
|
|
7471
7354
|
* * Display Name: Processing Started At
|
|
7472
7355
|
* * SQL Data Type: datetime
|
|
7473
|
-
* * Default Value: getdate()
|
|
7474
7356
|
*/
|
|
7475
7357
|
get ProcessingStartedAt(): Date;
|
|
7476
7358
|
set ProcessingStartedAt(value: Date);
|
|
@@ -7499,14 +7381,12 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7499
7381
|
* * Field Name: CreatedAt
|
|
7500
7382
|
* * Display Name: Created At
|
|
7501
7383
|
* * SQL Data Type: datetime
|
|
7502
|
-
* * Default Value: getdate()
|
|
7503
7384
|
*/
|
|
7504
7385
|
get CreatedAt(): Date;
|
|
7505
7386
|
/**
|
|
7506
7387
|
* * Field Name: UpdatedAt
|
|
7507
7388
|
* * Display Name: Updated At
|
|
7508
7389
|
* * SQL Data Type: datetime
|
|
7509
|
-
* * Default Value: getdate()
|
|
7510
7390
|
*/
|
|
7511
7391
|
get UpdatedAt(): Date | null;
|
|
7512
7392
|
/**
|
|
@@ -7579,7 +7459,6 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
|
|
|
7579
7459
|
* * Field Name: Status
|
|
7580
7460
|
* * Display Name: Status
|
|
7581
7461
|
* * SQL Data Type: nvarchar(10)
|
|
7582
|
-
* * Default Value: N'Pending'
|
|
7583
7462
|
* * Value List Type: List
|
|
7584
7463
|
* * Possible Values
|
|
7585
7464
|
* * Pending
|
|
@@ -7599,14 +7478,12 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
|
|
|
7599
7478
|
* * Field Name: CreatedAt
|
|
7600
7479
|
* * Display Name: Created At
|
|
7601
7480
|
* * SQL Data Type: datetime
|
|
7602
|
-
* * Default Value: getdate()
|
|
7603
7481
|
*/
|
|
7604
7482
|
get CreatedAt(): Date;
|
|
7605
7483
|
/**
|
|
7606
7484
|
* * Field Name: UpdatedAt
|
|
7607
7485
|
* * Display Name: Updated At
|
|
7608
7486
|
* * SQL Data Type: datetime
|
|
7609
|
-
* * Default Value: getdate()
|
|
7610
7487
|
*/
|
|
7611
7488
|
get UpdatedAt(): Date;
|
|
7612
7489
|
}
|
|
@@ -7712,7 +7589,6 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7712
7589
|
* * Field Name: IsComputed
|
|
7713
7590
|
* * Display Name: Is Computed
|
|
7714
7591
|
* * SQL Data Type: bit
|
|
7715
|
-
* * Default Value: 0
|
|
7716
7592
|
*/
|
|
7717
7593
|
get IsComputed(): boolean;
|
|
7718
7594
|
set IsComputed(value: boolean);
|
|
@@ -7727,7 +7603,6 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7727
7603
|
* * Field Name: IsSummary
|
|
7728
7604
|
* * Display Name: Is Summary
|
|
7729
7605
|
* * SQL Data Type: bit
|
|
7730
|
-
* * Default Value: 0
|
|
7731
7606
|
*/
|
|
7732
7607
|
get IsSummary(): boolean;
|
|
7733
7608
|
set IsSummary(value: boolean);
|
|
@@ -7742,14 +7617,12 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7742
7617
|
* * Field Name: CreatedAt
|
|
7743
7618
|
* * Display Name: Created At
|
|
7744
7619
|
* * SQL Data Type: datetime
|
|
7745
|
-
* * Default Value: getdate()
|
|
7746
7620
|
*/
|
|
7747
7621
|
get CreatedAt(): Date;
|
|
7748
7622
|
/**
|
|
7749
7623
|
* * Field Name: UpdatedAt
|
|
7750
7624
|
* * Display Name: Updated At
|
|
7751
7625
|
* * SQL Data Type: datetime
|
|
7752
|
-
* * Default Value: getdate()
|
|
7753
7626
|
*/
|
|
7754
7627
|
get UpdatedAt(): Date;
|
|
7755
7628
|
/**
|
|
@@ -7820,14 +7693,12 @@ export declare class QueryCategoryEntity extends BaseEntity {
|
|
|
7820
7693
|
* * Field Name: CreatedAt
|
|
7821
7694
|
* * Display Name: Created At
|
|
7822
7695
|
* * SQL Data Type: datetime
|
|
7823
|
-
* * Default Value: getdate()
|
|
7824
7696
|
*/
|
|
7825
7697
|
get CreatedAt(): Date;
|
|
7826
7698
|
/**
|
|
7827
7699
|
* * Field Name: UpdatedAt
|
|
7828
7700
|
* * Display Name: Updated At
|
|
7829
7701
|
* * SQL Data Type: datetime
|
|
7830
|
-
* * Default Value: getdate()
|
|
7831
7702
|
*/
|
|
7832
7703
|
get UpdatedAt(): Date;
|
|
7833
7704
|
/**
|
|
@@ -7937,7 +7808,6 @@ export declare class QueryEntity extends BaseEntity {
|
|
|
7937
7808
|
* * Field Name: Status
|
|
7938
7809
|
* * Display Name: Status
|
|
7939
7810
|
* * SQL Data Type: nvarchar(15)
|
|
7940
|
-
* * Default Value: N'Pending'
|
|
7941
7811
|
* * Value List Type: List
|
|
7942
7812
|
* * Possible Values
|
|
7943
7813
|
* * Pending
|
|
@@ -7951,7 +7821,6 @@ export declare class QueryEntity extends BaseEntity {
|
|
|
7951
7821
|
* * Field Name: QualityRank
|
|
7952
7822
|
* * Display Name: Quality Rank
|
|
7953
7823
|
* * SQL Data Type: int
|
|
7954
|
-
* * Default Value: 0
|
|
7955
7824
|
*/
|
|
7956
7825
|
get QualityRank(): number | null;
|
|
7957
7826
|
set QualityRank(value: number | null);
|
|
@@ -7959,14 +7828,12 @@ export declare class QueryEntity extends BaseEntity {
|
|
|
7959
7828
|
* * Field Name: CreatedAt
|
|
7960
7829
|
* * Display Name: Created At
|
|
7961
7830
|
* * SQL Data Type: datetime
|
|
7962
|
-
* * Default Value: getdate()
|
|
7963
7831
|
*/
|
|
7964
7832
|
get CreatedAt(): Date;
|
|
7965
7833
|
/**
|
|
7966
7834
|
* * Field Name: UpdatedAt
|
|
7967
7835
|
* * Display Name: Updated At
|
|
7968
7836
|
* * SQL Data Type: datetime
|
|
7969
|
-
* * Default Value: getdate()
|
|
7970
7837
|
*/
|
|
7971
7838
|
get UpdatedAt(): Date;
|
|
7972
7839
|
/**
|
|
@@ -8034,14 +7901,12 @@ export declare class QueryPermissionEntity extends BaseEntity {
|
|
|
8034
7901
|
* * Field Name: CreatedAt
|
|
8035
7902
|
* * Display Name: Created At
|
|
8036
7903
|
* * SQL Data Type: datetime
|
|
8037
|
-
* * Default Value: getdate()
|
|
8038
7904
|
*/
|
|
8039
7905
|
get CreatedAt(): Date;
|
|
8040
7906
|
/**
|
|
8041
7907
|
* * Field Name: UpdatedAt
|
|
8042
7908
|
* * Display Name: Updated At
|
|
8043
7909
|
* * SQL Data Type: datetime
|
|
8044
|
-
* * Default Value: getdate()
|
|
8045
7910
|
*/
|
|
8046
7911
|
get UpdatedAt(): Date;
|
|
8047
7912
|
}
|
|
@@ -8117,14 +7982,12 @@ export declare class VectorIndexEntity extends BaseEntity {
|
|
|
8117
7982
|
* * Field Name: CreatedAt
|
|
8118
7983
|
* * Display Name: Created At
|
|
8119
7984
|
* * SQL Data Type: datetime
|
|
8120
|
-
* * Default Value: getdate()
|
|
8121
7985
|
*/
|
|
8122
7986
|
get CreatedAt(): Date;
|
|
8123
7987
|
/**
|
|
8124
7988
|
* * Field Name: UpdatedAt
|
|
8125
7989
|
* * Display Name: Updated At
|
|
8126
7990
|
* * SQL Data Type: datetime
|
|
8127
|
-
* * Default Value: getdate()
|
|
8128
7991
|
*/
|
|
8129
7992
|
get UpdatedAt(): Date;
|
|
8130
7993
|
/**
|
|
@@ -8196,14 +8059,12 @@ export declare class EntityDocumentTypeEntity extends BaseEntity {
|
|
|
8196
8059
|
* * Field Name: CreatedAt
|
|
8197
8060
|
* * Display Name: Created At
|
|
8198
8061
|
* * SQL Data Type: datetime
|
|
8199
|
-
* * Default Value: getdate()
|
|
8200
8062
|
*/
|
|
8201
8063
|
get CreatedAt(): Date;
|
|
8202
8064
|
/**
|
|
8203
8065
|
* * Field Name: UpdatedAt
|
|
8204
8066
|
* * Display Name: Updated At
|
|
8205
8067
|
* * SQL Data Type: datetime
|
|
8206
|
-
* * Default Value: getdate()
|
|
8207
8068
|
*/
|
|
8208
8069
|
get UpdatedAt(): Date;
|
|
8209
8070
|
}
|
|
@@ -8271,7 +8132,6 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
|
|
|
8271
8132
|
* * Field Name: Status
|
|
8272
8133
|
* * Display Name: Status
|
|
8273
8134
|
* * SQL Data Type: nvarchar(15)
|
|
8274
|
-
* * Default Value: N'Pending'
|
|
8275
8135
|
* * Value List Type: List
|
|
8276
8136
|
* * Possible Values
|
|
8277
8137
|
* * Pending
|
|
@@ -8285,14 +8145,12 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
|
|
|
8285
8145
|
* * Field Name: CreatedAt
|
|
8286
8146
|
* * Display Name: Created At
|
|
8287
8147
|
* * SQL Data Type: datetime
|
|
8288
|
-
* * Default Value: getdate()
|
|
8289
8148
|
*/
|
|
8290
8149
|
get CreatedAt(): Date;
|
|
8291
8150
|
/**
|
|
8292
8151
|
* * Field Name: UpdatedAt
|
|
8293
8152
|
* * Display Name: Updated At
|
|
8294
8153
|
* * SQL Data Type: datetime
|
|
8295
|
-
* * Default Value: getdate()
|
|
8296
8154
|
*/
|
|
8297
8155
|
get UpdatedAt(): Date;
|
|
8298
8156
|
/**
|
|
@@ -8372,14 +8230,12 @@ export declare class VectorDatabaseEntity extends BaseEntity {
|
|
|
8372
8230
|
* * Field Name: CreatedAt
|
|
8373
8231
|
* * Display Name: Created At
|
|
8374
8232
|
* * SQL Data Type: datetime
|
|
8375
|
-
* * Default Value: getdate()
|
|
8376
8233
|
*/
|
|
8377
8234
|
get CreatedAt(): Date;
|
|
8378
8235
|
/**
|
|
8379
8236
|
* * Field Name: UpdatedAt
|
|
8380
8237
|
* * Display Name: Updated At
|
|
8381
8238
|
* * SQL Data Type: datetime
|
|
8382
|
-
* * Default Value: getdate()
|
|
8383
8239
|
*/
|
|
8384
8240
|
get UpdatedAt(): Date;
|
|
8385
8241
|
}
|
|
@@ -8475,14 +8331,12 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
|
|
|
8475
8331
|
* * Field Name: CreatedAt
|
|
8476
8332
|
* * Display Name: Created At
|
|
8477
8333
|
* * SQL Data Type: datetime
|
|
8478
|
-
* * Default Value: getdate()
|
|
8479
8334
|
*/
|
|
8480
8335
|
get CreatedAt(): Date;
|
|
8481
8336
|
/**
|
|
8482
8337
|
* * Field Name: UpdatedAt
|
|
8483
8338
|
* * Display Name: Updated At
|
|
8484
8339
|
* * SQL Data Type: datetime
|
|
8485
|
-
* * Default Value: getdate()
|
|
8486
8340
|
*/
|
|
8487
8341
|
get UpdatedAt(): Date;
|
|
8488
8342
|
/**
|
|
@@ -8558,7 +8412,6 @@ export declare class EntityDocumentEntity extends BaseEntity {
|
|
|
8558
8412
|
* * Field Name: Status
|
|
8559
8413
|
* * Display Name: Status
|
|
8560
8414
|
* * SQL Data Type: nvarchar(15)
|
|
8561
|
-
* * Default Value: N'Active'
|
|
8562
8415
|
* * Value List Type: List
|
|
8563
8416
|
* * Possible Values
|
|
8564
8417
|
* * Active
|
|
@@ -8593,7 +8446,6 @@ export declare class EntityDocumentEntity extends BaseEntity {
|
|
|
8593
8446
|
* * Field Name: PotentialMatchThreshold
|
|
8594
8447
|
* * Display Name: Potential Match Threshold
|
|
8595
8448
|
* * SQL Data Type: numeric(12, 11)
|
|
8596
|
-
* * Default Value: 1
|
|
8597
8449
|
* * 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.
|
|
8598
8450
|
*/
|
|
8599
8451
|
get PotentialMatchThreshold(): number;
|
|
@@ -8602,7 +8454,6 @@ export declare class EntityDocumentEntity extends BaseEntity {
|
|
|
8602
8454
|
* * Field Name: AbsoluteMatchThreshold
|
|
8603
8455
|
* * Display Name: Absolute Match Threshold
|
|
8604
8456
|
* * SQL Data Type: numeric(12, 11)
|
|
8605
|
-
* * Default Value: 1
|
|
8606
8457
|
* * 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.
|
|
8607
8458
|
*/
|
|
8608
8459
|
get AbsoluteMatchThreshold(): number;
|
|
@@ -8611,14 +8462,12 @@ export declare class EntityDocumentEntity extends BaseEntity {
|
|
|
8611
8462
|
* * Field Name: CreatedAt
|
|
8612
8463
|
* * Display Name: Created At
|
|
8613
8464
|
* * SQL Data Type: datetime
|
|
8614
|
-
* * Default Value: getdate()
|
|
8615
8465
|
*/
|
|
8616
8466
|
get CreatedAt(): Date;
|
|
8617
8467
|
/**
|
|
8618
8468
|
* * Field Name: UpdatedAt
|
|
8619
8469
|
* * Display Name: Updated At
|
|
8620
8470
|
* * SQL Data Type: datetime
|
|
8621
|
-
* * Default Value: getdate()
|
|
8622
8471
|
*/
|
|
8623
8472
|
get UpdatedAt(): Date;
|
|
8624
8473
|
/**
|
|
@@ -8751,14 +8600,12 @@ export declare class DataContextItemEntity extends BaseEntity {
|
|
|
8751
8600
|
* * Field Name: CreatedAt
|
|
8752
8601
|
* * Display Name: Created At
|
|
8753
8602
|
* * SQL Data Type: datetime
|
|
8754
|
-
* * Default Value: getdate()
|
|
8755
8603
|
*/
|
|
8756
8604
|
get CreatedAt(): Date;
|
|
8757
8605
|
/**
|
|
8758
8606
|
* * Field Name: UpdatedAt
|
|
8759
8607
|
* * Display Name: Updated At
|
|
8760
8608
|
* * SQL Data Type: datetime
|
|
8761
|
-
* * Default Value: getdate()
|
|
8762
8609
|
*/
|
|
8763
8610
|
get UpdatedAt(): Date;
|
|
8764
8611
|
/**
|
|
@@ -8849,14 +8696,12 @@ export declare class DataContextEntity extends BaseEntity {
|
|
|
8849
8696
|
* * Field Name: CreatedAt
|
|
8850
8697
|
* * Display Name: Created At
|
|
8851
8698
|
* * SQL Data Type: datetime
|
|
8852
|
-
* * Default Value: getdate()
|
|
8853
8699
|
*/
|
|
8854
8700
|
get CreatedAt(): Date;
|
|
8855
8701
|
/**
|
|
8856
8702
|
* * Field Name: UpdatedAt
|
|
8857
8703
|
* * Display Name: Updated At
|
|
8858
8704
|
* * SQL Data Type: datetime
|
|
8859
|
-
* * Default Value: getdate()
|
|
8860
8705
|
*/
|
|
8861
8706
|
get UpdatedAt(): Date;
|
|
8862
8707
|
/**
|
|
@@ -8921,14 +8766,12 @@ export declare class UserViewCategoryEntity extends BaseEntity {
|
|
|
8921
8766
|
* * Field Name: CreatedAt
|
|
8922
8767
|
* * Display Name: Created At
|
|
8923
8768
|
* * SQL Data Type: datetime
|
|
8924
|
-
* * Default Value: getdate()
|
|
8925
8769
|
*/
|
|
8926
8770
|
get CreatedAt(): Date;
|
|
8927
8771
|
/**
|
|
8928
8772
|
* * Field Name: UpdatedAt
|
|
8929
8773
|
* * Display Name: Updated At
|
|
8930
8774
|
* * SQL Data Type: datetime
|
|
8931
|
-
* * Default Value: getdate()
|
|
8932
8775
|
*/
|
|
8933
8776
|
get UpdatedAt(): Date;
|
|
8934
8777
|
/**
|
|
@@ -9015,14 +8858,12 @@ export declare class DashboardCategoryEntity extends BaseEntity {
|
|
|
9015
8858
|
* * Field Name: CreatedAt
|
|
9016
8859
|
* * Display Name: Created At
|
|
9017
8860
|
* * SQL Data Type: datetime
|
|
9018
|
-
* * Default Value: getdate()
|
|
9019
8861
|
*/
|
|
9020
8862
|
get CreatedAt(): Date;
|
|
9021
8863
|
/**
|
|
9022
8864
|
* * Field Name: UpdatedAt
|
|
9023
8865
|
* * Display Name: Updated At
|
|
9024
8866
|
* * SQL Data Type: datetime
|
|
9025
|
-
* * Default Value: getdate()
|
|
9026
8867
|
*/
|
|
9027
8868
|
get UpdatedAt(): Date;
|
|
9028
8869
|
/**
|
|
@@ -9101,14 +8942,12 @@ export declare class ReportCategoryEntity extends BaseEntity {
|
|
|
9101
8942
|
* * Field Name: CreatedAt
|
|
9102
8943
|
* * Display Name: Created At
|
|
9103
8944
|
* * SQL Data Type: datetime
|
|
9104
|
-
* * Default Value: getdate()
|
|
9105
8945
|
*/
|
|
9106
8946
|
get CreatedAt(): Date;
|
|
9107
8947
|
/**
|
|
9108
8948
|
* * Field Name: UpdatedAt
|
|
9109
8949
|
* * Display Name: Updated At
|
|
9110
8950
|
* * SQL Data Type: datetime
|
|
9111
|
-
* * Default Value: getdate()
|
|
9112
8951
|
*/
|
|
9113
8952
|
get UpdatedAt(): Date;
|
|
9114
8953
|
/**
|
|
@@ -9202,7 +9041,6 @@ export declare class FileStorageProviderEntity extends BaseEntity {
|
|
|
9202
9041
|
* * Field Name: Priority
|
|
9203
9042
|
* * Display Name: Priority
|
|
9204
9043
|
* * SQL Data Type: int
|
|
9205
|
-
* * Default Value: 0
|
|
9206
9044
|
*/
|
|
9207
9045
|
get Priority(): number;
|
|
9208
9046
|
set Priority(value: number);
|
|
@@ -9210,7 +9048,6 @@ export declare class FileStorageProviderEntity extends BaseEntity {
|
|
|
9210
9048
|
* * Field Name: IsActive
|
|
9211
9049
|
* * Display Name: Is Active
|
|
9212
9050
|
* * SQL Data Type: bit
|
|
9213
|
-
* * Default Value: 1
|
|
9214
9051
|
*/
|
|
9215
9052
|
get IsActive(): boolean;
|
|
9216
9053
|
set IsActive(value: boolean);
|
|
@@ -9218,14 +9055,12 @@ export declare class FileStorageProviderEntity extends BaseEntity {
|
|
|
9218
9055
|
* * Field Name: CreatedAt
|
|
9219
9056
|
* * Display Name: Created At
|
|
9220
9057
|
* * SQL Data Type: datetime
|
|
9221
|
-
* * Default Value: getdate()
|
|
9222
9058
|
*/
|
|
9223
9059
|
get CreatedAt(): Date;
|
|
9224
9060
|
/**
|
|
9225
9061
|
* * Field Name: UpdatedAt
|
|
9226
9062
|
* * Display Name: Updated At
|
|
9227
9063
|
* * SQL Data Type: datetime
|
|
9228
|
-
* * Default Value: getdate()
|
|
9229
9064
|
*/
|
|
9230
9065
|
get UpdatedAt(): Date;
|
|
9231
9066
|
}
|
|
@@ -9306,7 +9141,6 @@ export declare class FileEntity extends BaseEntity {
|
|
|
9306
9141
|
* * Field Name: Status
|
|
9307
9142
|
* * Display Name: Status
|
|
9308
9143
|
* * SQL Data Type: nvarchar(20)
|
|
9309
|
-
* * Default Value: N'Pending'
|
|
9310
9144
|
* * Description: Pending, Uploading, Uploaded, Deleting, Deleted
|
|
9311
9145
|
*/
|
|
9312
9146
|
get Status(): string;
|
|
@@ -9315,14 +9149,12 @@ export declare class FileEntity extends BaseEntity {
|
|
|
9315
9149
|
* * Field Name: CreatedAt
|
|
9316
9150
|
* * Display Name: Created At
|
|
9317
9151
|
* * SQL Data Type: datetime
|
|
9318
|
-
* * Default Value: getdate()
|
|
9319
9152
|
*/
|
|
9320
9153
|
get CreatedAt(): Date;
|
|
9321
9154
|
/**
|
|
9322
9155
|
* * Field Name: UpdatedAt
|
|
9323
9156
|
* * Display Name: Updated At
|
|
9324
9157
|
* * SQL Data Type: datetime
|
|
9325
|
-
* * Default Value: getdate()
|
|
9326
9158
|
*/
|
|
9327
9159
|
get UpdatedAt(): Date;
|
|
9328
9160
|
/**
|
|
@@ -9393,14 +9225,12 @@ export declare class FileCategoryEntity extends BaseEntity {
|
|
|
9393
9225
|
* * Field Name: CreatedAt
|
|
9394
9226
|
* * Display Name: Created At
|
|
9395
9227
|
* * SQL Data Type: datetime
|
|
9396
|
-
* * Default Value: getdate()
|
|
9397
9228
|
*/
|
|
9398
9229
|
get CreatedAt(): Date;
|
|
9399
9230
|
/**
|
|
9400
9231
|
* * Field Name: UpdatedAt
|
|
9401
9232
|
* * Display Name: Updated At
|
|
9402
9233
|
* * SQL Data Type: datetime
|
|
9403
|
-
* * Default Value: getdate()
|
|
9404
9234
|
*/
|
|
9405
9235
|
get UpdatedAt(): Date;
|
|
9406
9236
|
/**
|
|
@@ -9475,14 +9305,12 @@ export declare class FileEntityRecordLinkEntity extends BaseEntity {
|
|
|
9475
9305
|
* * Field Name: CreatedAt
|
|
9476
9306
|
* * Display Name: Created At
|
|
9477
9307
|
* * SQL Data Type: datetime
|
|
9478
|
-
* * Default Value: getdate()
|
|
9479
9308
|
*/
|
|
9480
9309
|
get CreatedAt(): Date;
|
|
9481
9310
|
/**
|
|
9482
9311
|
* * Field Name: UpdatedAt
|
|
9483
9312
|
* * Display Name: Updated At
|
|
9484
9313
|
* * SQL Data Type: datetime
|
|
9485
|
-
* * Default Value: getdate()
|
|
9486
9314
|
*/
|
|
9487
9315
|
get UpdatedAt(): Date;
|
|
9488
9316
|
/**
|
|
@@ -9561,7 +9389,6 @@ export declare class VersionInstallationEntity extends BaseEntity {
|
|
|
9561
9389
|
* * Field Name: Type
|
|
9562
9390
|
* * Display Name: Type
|
|
9563
9391
|
* * SQL Data Type: nvarchar(20)
|
|
9564
|
-
* * Default Value: N'System'
|
|
9565
9392
|
* * Value List Type: List
|
|
9566
9393
|
* * Possible Values
|
|
9567
9394
|
* * New
|
|
@@ -9581,7 +9408,6 @@ export declare class VersionInstallationEntity extends BaseEntity {
|
|
|
9581
9408
|
* * Field Name: Status
|
|
9582
9409
|
* * Display Name: Status
|
|
9583
9410
|
* * SQL Data Type: nvarchar(20)
|
|
9584
|
-
* * Default Value: N'Pending'
|
|
9585
9411
|
* * Value List Type: List
|
|
9586
9412
|
* * Possible Values
|
|
9587
9413
|
* * Pending
|
|
@@ -9612,14 +9438,12 @@ export declare class VersionInstallationEntity extends BaseEntity {
|
|
|
9612
9438
|
* * Field Name: CreatedAt
|
|
9613
9439
|
* * Display Name: Created At
|
|
9614
9440
|
* * SQL Data Type: datetime
|
|
9615
|
-
* * Default Value: getdate()
|
|
9616
9441
|
*/
|
|
9617
9442
|
get CreatedAt(): Date;
|
|
9618
9443
|
/**
|
|
9619
9444
|
* * Field Name: UpdatedAt
|
|
9620
9445
|
* * Display Name: Updated At
|
|
9621
9446
|
* * SQL Data Type: datetime
|
|
9622
|
-
* * Default Value: getdate()
|
|
9623
9447
|
*/
|
|
9624
9448
|
get UpdatedAt(): Date;
|
|
9625
9449
|
/**
|
|
@@ -9679,7 +9503,6 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9679
9503
|
* * Field Name: MatchSource
|
|
9680
9504
|
* * Display Name: Match Source
|
|
9681
9505
|
* * SQL Data Type: nvarchar(20)
|
|
9682
|
-
* * Default Value: N'Vector'
|
|
9683
9506
|
* * Value List Type: List
|
|
9684
9507
|
* * Possible Values
|
|
9685
9508
|
* * SP
|
|
@@ -9699,7 +9522,6 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9699
9522
|
* * Field Name: MatchProbability
|
|
9700
9523
|
* * Display Name: Match Probability
|
|
9701
9524
|
* * SQL Data Type: numeric(12, 11)
|
|
9702
|
-
* * Default Value: 0
|
|
9703
9525
|
* * Description: Value between 0 and 1 designating the computed probability of a match
|
|
9704
9526
|
*/
|
|
9705
9527
|
get MatchProbability(): number;
|
|
@@ -9708,7 +9530,6 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9708
9530
|
* * Field Name: MatchedAt
|
|
9709
9531
|
* * Display Name: Matched At
|
|
9710
9532
|
* * SQL Data Type: datetime
|
|
9711
|
-
* * Default Value: getdate()
|
|
9712
9533
|
*/
|
|
9713
9534
|
get MatchedAt(): Date;
|
|
9714
9535
|
set MatchedAt(value: Date);
|
|
@@ -9716,7 +9537,6 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9716
9537
|
* * Field Name: Action
|
|
9717
9538
|
* * Display Name: Action
|
|
9718
9539
|
* * SQL Data Type: nvarchar(20)
|
|
9719
|
-
* * Default Value: N'Ignore'
|
|
9720
9540
|
*/
|
|
9721
9541
|
get Action(): string;
|
|
9722
9542
|
set Action(value: string);
|
|
@@ -9724,7 +9544,6 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9724
9544
|
* * Field Name: ApprovalStatus
|
|
9725
9545
|
* * Display Name: Approval Status
|
|
9726
9546
|
* * SQL Data Type: nvarchar(20)
|
|
9727
|
-
* * Default Value: N'Pending'
|
|
9728
9547
|
* * Value List Type: List
|
|
9729
9548
|
* * Possible Values
|
|
9730
9549
|
* * Rejected
|
|
@@ -9737,7 +9556,6 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9737
9556
|
* * Field Name: MergeStatus
|
|
9738
9557
|
* * Display Name: Merge Status
|
|
9739
9558
|
* * SQL Data Type: nvarchar(20)
|
|
9740
|
-
* * Default Value: N'Pending'
|
|
9741
9559
|
* * Value List Type: List
|
|
9742
9560
|
* * Possible Values
|
|
9743
9561
|
* * Error
|
|
@@ -9750,7 +9568,6 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9750
9568
|
* * Field Name: MergedAt
|
|
9751
9569
|
* * Display Name: Merged At
|
|
9752
9570
|
* * SQL Data Type: datetime
|
|
9753
|
-
* * Default Value: getdate()
|
|
9754
9571
|
*/
|
|
9755
9572
|
get MergedAt(): Date;
|
|
9756
9573
|
set MergedAt(value: Date);
|
|
@@ -9766,14 +9583,12 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
9766
9583
|
* * Field Name: CreatedAt
|
|
9767
9584
|
* * Display Name: Created At
|
|
9768
9585
|
* * SQL Data Type: datetime
|
|
9769
|
-
* * Default Value: getdate()
|
|
9770
9586
|
*/
|
|
9771
9587
|
get CreatedAt(): Date;
|
|
9772
9588
|
/**
|
|
9773
9589
|
* * Field Name: UpdatedAt
|
|
9774
9590
|
* * Display Name: Updated At
|
|
9775
9591
|
* * SQL Data Type: datetime
|
|
9776
|
-
* * Default Value: getdate()
|
|
9777
9592
|
*/
|
|
9778
9593
|
get UpdatedAt(): Date;
|
|
9779
9594
|
}
|
|
@@ -9848,14 +9663,12 @@ export declare class EntityDocumentSettingEntity extends BaseEntity {
|
|
|
9848
9663
|
* * Field Name: CreatedAt
|
|
9849
9664
|
* * Display Name: Created At
|
|
9850
9665
|
* * SQL Data Type: datetime
|
|
9851
|
-
* * Default Value: getdate()
|
|
9852
9666
|
*/
|
|
9853
9667
|
get CreatedAt(): Date;
|
|
9854
9668
|
/**
|
|
9855
9669
|
* * Field Name: UpdatedAt
|
|
9856
9670
|
* * Display Name: Updated At
|
|
9857
9671
|
* * SQL Data Type: datetime
|
|
9858
|
-
* * Default Value: getdate()
|
|
9859
9672
|
*/
|
|
9860
9673
|
get UpdatedAt(): Date;
|
|
9861
9674
|
/**
|
|
@@ -9936,14 +9749,12 @@ export declare class EntitySettingEntity extends BaseEntity {
|
|
|
9936
9749
|
* * Field Name: CreatedAt
|
|
9937
9750
|
* * Display Name: Created At
|
|
9938
9751
|
* * SQL Data Type: datetime
|
|
9939
|
-
* * Default Value: getdate()
|
|
9940
9752
|
*/
|
|
9941
9753
|
get CreatedAt(): Date;
|
|
9942
9754
|
/**
|
|
9943
9755
|
* * Field Name: UpdatedAt
|
|
9944
9756
|
* * Display Name: Updated At
|
|
9945
9757
|
* * SQL Data Type: datetime
|
|
9946
|
-
* * Default Value: getdate()
|
|
9947
9758
|
*/
|
|
9948
9759
|
get UpdatedAt(): Date;
|
|
9949
9760
|
/**
|
|
@@ -10011,7 +9822,6 @@ export declare class DuplicateRunEntity extends BaseEntity {
|
|
|
10011
9822
|
* * Field Name: StartedAt
|
|
10012
9823
|
* * Display Name: Started At
|
|
10013
9824
|
* * SQL Data Type: datetime
|
|
10014
|
-
* * Default Value: getdate()
|
|
10015
9825
|
*/
|
|
10016
9826
|
get StartedAt(): Date;
|
|
10017
9827
|
set StartedAt(value: Date);
|
|
@@ -10026,7 +9836,6 @@ export declare class DuplicateRunEntity extends BaseEntity {
|
|
|
10026
9836
|
* * Field Name: ApprovalStatus
|
|
10027
9837
|
* * Display Name: Approval Status
|
|
10028
9838
|
* * SQL Data Type: nvarchar(20)
|
|
10029
|
-
* * Default Value: N'Pending'
|
|
10030
9839
|
* * Value List Type: List
|
|
10031
9840
|
* * Possible Values
|
|
10032
9841
|
* * Rejected
|
|
@@ -10054,7 +9863,6 @@ export declare class DuplicateRunEntity extends BaseEntity {
|
|
|
10054
9863
|
* * Field Name: ProcessingStatus
|
|
10055
9864
|
* * Display Name: Processing Status
|
|
10056
9865
|
* * SQL Data Type: nvarchar(20)
|
|
10057
|
-
* * Default Value: N'Pending'
|
|
10058
9866
|
* * Value List Type: List
|
|
10059
9867
|
* * Possible Values
|
|
10060
9868
|
* * Failed
|
|
@@ -10083,14 +9891,12 @@ export declare class DuplicateRunEntity extends BaseEntity {
|
|
|
10083
9891
|
* * Field Name: CreatedAt
|
|
10084
9892
|
* * Display Name: Created At
|
|
10085
9893
|
* * SQL Data Type: datetime
|
|
10086
|
-
* * Default Value: getdate()
|
|
10087
9894
|
*/
|
|
10088
9895
|
get CreatedAt(): Date;
|
|
10089
9896
|
/**
|
|
10090
9897
|
* * Field Name: UpdatedAt
|
|
10091
9898
|
* * Display Name: Updated At
|
|
10092
9899
|
* * SQL Data Type: datetime
|
|
10093
|
-
* * Default Value: getdate()
|
|
10094
9900
|
*/
|
|
10095
9901
|
get UpdatedAt(): Date;
|
|
10096
9902
|
/**
|
|
@@ -10175,7 +9981,6 @@ export declare class DuplicateRunDetailEntity extends BaseEntity {
|
|
|
10175
9981
|
* * Field Name: MatchStatus
|
|
10176
9982
|
* * Display Name: Match Status
|
|
10177
9983
|
* * SQL Data Type: nvarchar(20)
|
|
10178
|
-
* * Default Value: N'Pending'
|
|
10179
9984
|
* * Value List Type: List
|
|
10180
9985
|
* * Possible Values
|
|
10181
9986
|
* * Error
|
|
@@ -10205,7 +10010,6 @@ export declare class DuplicateRunDetailEntity extends BaseEntity {
|
|
|
10205
10010
|
* * Field Name: MergeStatus
|
|
10206
10011
|
* * Display Name: Merge Status
|
|
10207
10012
|
* * SQL Data Type: nvarchar(20)
|
|
10208
|
-
* * Default Value: N'Not Applicable'
|
|
10209
10013
|
* * Value List Type: List
|
|
10210
10014
|
* * Possible Values
|
|
10211
10015
|
* * Error
|
|
@@ -10226,14 +10030,2277 @@ export declare class DuplicateRunDetailEntity extends BaseEntity {
|
|
|
10226
10030
|
* * Field Name: CreatedAt
|
|
10227
10031
|
* * Display Name: Created At
|
|
10228
10032
|
* * SQL Data Type: datetime
|
|
10229
|
-
* * Default Value: getdate()
|
|
10230
10033
|
*/
|
|
10231
10034
|
get CreatedAt(): Date;
|
|
10232
10035
|
/**
|
|
10233
10036
|
* * Field Name: UpdatedAt
|
|
10234
10037
|
* * Display Name: Updated At
|
|
10235
10038
|
* * SQL Data Type: datetime
|
|
10236
|
-
|
|
10039
|
+
*/
|
|
10040
|
+
get UpdatedAt(): Date;
|
|
10041
|
+
}
|
|
10042
|
+
/**
|
|
10043
|
+
* Entity Behaviors - strongly typed entity sub-class
|
|
10044
|
+
* * Schema: __mj
|
|
10045
|
+
* * Base Table: EntityBehavior
|
|
10046
|
+
* * Base View: vwEntityBehaviors
|
|
10047
|
+
* * @description Stores the behaviors for each entity and is used for code generation and injection of behavior code into various areas of the system.
|
|
10048
|
+
* * Primary Key: ID
|
|
10049
|
+
* @extends {BaseEntity}
|
|
10050
|
+
* @class
|
|
10051
|
+
* @public
|
|
10052
|
+
*/
|
|
10053
|
+
export declare class EntityBehaviorEntity extends BaseEntity {
|
|
10054
|
+
/**
|
|
10055
|
+
* Loads the Entity Behaviors record from the database
|
|
10056
|
+
* @param ID: number - primary key value to load the Entity Behaviors record.
|
|
10057
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10058
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10059
|
+
* @public
|
|
10060
|
+
* @async
|
|
10061
|
+
* @memberof EntityBehaviorEntity
|
|
10062
|
+
* @method
|
|
10063
|
+
* @override
|
|
10064
|
+
*/
|
|
10065
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10066
|
+
/**
|
|
10067
|
+
* * Field Name: ID
|
|
10068
|
+
* * Display Name: ID
|
|
10069
|
+
* * SQL Data Type: int
|
|
10070
|
+
*/
|
|
10071
|
+
get ID(): number;
|
|
10072
|
+
/**
|
|
10073
|
+
* * Field Name: EntityID
|
|
10074
|
+
* * Display Name: Entity ID
|
|
10075
|
+
* * SQL Data Type: int
|
|
10076
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
10077
|
+
*/
|
|
10078
|
+
get EntityID(): number;
|
|
10079
|
+
set EntityID(value: number);
|
|
10080
|
+
/**
|
|
10081
|
+
* * Field Name: BehaviorTypeID
|
|
10082
|
+
* * Display Name: Behavior Type ID
|
|
10083
|
+
* * SQL Data Type: int
|
|
10084
|
+
* * Related Entity/Foreign Key: Entity Behavior Types (vwEntityBehaviorTypes.ID)
|
|
10085
|
+
*/
|
|
10086
|
+
get BehaviorTypeID(): number;
|
|
10087
|
+
set BehaviorTypeID(value: number);
|
|
10088
|
+
/**
|
|
10089
|
+
* * Field Name: Description
|
|
10090
|
+
* * Display Name: Description
|
|
10091
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10092
|
+
* * Description: This field will be used by the AI system to generate code that corresponds to the requested behavior and inject the code into the appropriate part(s) of the system.
|
|
10093
|
+
*/
|
|
10094
|
+
get Description(): string;
|
|
10095
|
+
set Description(value: string);
|
|
10096
|
+
/**
|
|
10097
|
+
* * Field Name: RegenerateCode
|
|
10098
|
+
* * Display Name: Regenerate Code
|
|
10099
|
+
* * SQL Data Type: bit
|
|
10100
|
+
* * 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
|
+
*/
|
|
10102
|
+
get RegenerateCode(): boolean;
|
|
10103
|
+
set RegenerateCode(value: boolean);
|
|
10104
|
+
/**
|
|
10105
|
+
* * Field Name: Code
|
|
10106
|
+
* * Display Name: Code
|
|
10107
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10108
|
+
* * Description: This is the code that implements the desired behavior. If the CodeGenerated bit is set to 1, each time CodeGen runs, it will use the Code specified here in the appropriate place(s). To override the generated code and prevent it from being changed in the future, set CodeGenerated = 0
|
|
10109
|
+
*/
|
|
10110
|
+
get Code(): string | null;
|
|
10111
|
+
set Code(value: string | null);
|
|
10112
|
+
/**
|
|
10113
|
+
* * Field Name: CodeExplanation
|
|
10114
|
+
* * Display Name: Code Explanation
|
|
10115
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10116
|
+
* * Description: When an AI model generates code this will be populated with the AI's explanation of how the code works to meet the requirements of the behavior. For a non-generated piece of code a developer could manually place an explanation in this field.
|
|
10117
|
+
*/
|
|
10118
|
+
get CodeExplanation(): string | null;
|
|
10119
|
+
set CodeExplanation(value: string | null);
|
|
10120
|
+
/**
|
|
10121
|
+
* * Field Name: CodeGenerated
|
|
10122
|
+
* * Display Name: Code Generated
|
|
10123
|
+
* * SQL Data Type: bit
|
|
10124
|
+
*/
|
|
10125
|
+
get CodeGenerated(): boolean;
|
|
10126
|
+
set CodeGenerated(value: boolean);
|
|
10127
|
+
/**
|
|
10128
|
+
* * Field Name: CreatedAt
|
|
10129
|
+
* * Display Name: Created At
|
|
10130
|
+
* * SQL Data Type: datetime
|
|
10131
|
+
*/
|
|
10132
|
+
get CreatedAt(): Date;
|
|
10133
|
+
/**
|
|
10134
|
+
* * Field Name: UpdatedAt
|
|
10135
|
+
* * Display Name: Updated At
|
|
10136
|
+
* * SQL Data Type: datetime
|
|
10137
|
+
*/
|
|
10138
|
+
get UpdatedAt(): Date;
|
|
10139
|
+
/**
|
|
10140
|
+
* * Field Name: Entity
|
|
10141
|
+
* * Display Name: Entity
|
|
10142
|
+
* * SQL Data Type: nvarchar(255)
|
|
10143
|
+
*/
|
|
10144
|
+
get Entity(): string;
|
|
10145
|
+
}
|
|
10146
|
+
/**
|
|
10147
|
+
* Entity Behavior Types - strongly typed entity sub-class
|
|
10148
|
+
* * Schema: __mj
|
|
10149
|
+
* * Base Table: EntityBehaviorType
|
|
10150
|
+
* * Base View: vwEntityBehaviorTypes
|
|
10151
|
+
* * @description This table stores the list of possible behavior types to use in the Entity Behavior Types entity.
|
|
10152
|
+
* * Primary Key: ID
|
|
10153
|
+
* @extends {BaseEntity}
|
|
10154
|
+
* @class
|
|
10155
|
+
* @public
|
|
10156
|
+
*/
|
|
10157
|
+
export declare class EntityBehaviorTypeEntity extends BaseEntity {
|
|
10158
|
+
/**
|
|
10159
|
+
* Loads the Entity Behavior Types record from the database
|
|
10160
|
+
* @param ID: number - primary key value to load the Entity Behavior Types record.
|
|
10161
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10162
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10163
|
+
* @public
|
|
10164
|
+
* @async
|
|
10165
|
+
* @memberof EntityBehaviorTypeEntity
|
|
10166
|
+
* @method
|
|
10167
|
+
* @override
|
|
10168
|
+
*/
|
|
10169
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10170
|
+
/**
|
|
10171
|
+
* * Field Name: ID
|
|
10172
|
+
* * Display Name: ID
|
|
10173
|
+
* * SQL Data Type: int
|
|
10174
|
+
*/
|
|
10175
|
+
get ID(): number;
|
|
10176
|
+
/**
|
|
10177
|
+
* * Field Name: Name
|
|
10178
|
+
* * Display Name: Name
|
|
10179
|
+
* * SQL Data Type: nvarchar(100)
|
|
10180
|
+
* * Description: The name of the behavior, a unique column for the table.
|
|
10181
|
+
*/
|
|
10182
|
+
get Name(): string;
|
|
10183
|
+
set Name(value: string);
|
|
10184
|
+
/**
|
|
10185
|
+
* * Field Name: Description
|
|
10186
|
+
* * Display Name: Description
|
|
10187
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10188
|
+
*/
|
|
10189
|
+
get Description(): string | null;
|
|
10190
|
+
set Description(value: string | null);
|
|
10191
|
+
/**
|
|
10192
|
+
* * Field Name: CreatedAt
|
|
10193
|
+
* * Display Name: Created At
|
|
10194
|
+
* * SQL Data Type: datetime
|
|
10195
|
+
*/
|
|
10196
|
+
get CreatedAt(): Date;
|
|
10197
|
+
/**
|
|
10198
|
+
* * Field Name: UpdatedAt
|
|
10199
|
+
* * Display Name: Updated At
|
|
10200
|
+
* * SQL Data Type: datetime
|
|
10201
|
+
*/
|
|
10202
|
+
get UpdatedAt(): Date;
|
|
10203
|
+
}
|
|
10204
|
+
/**
|
|
10205
|
+
* Application Settings - strongly typed entity sub-class
|
|
10206
|
+
* * Schema: __mj
|
|
10207
|
+
* * Base Table: ApplicationSetting
|
|
10208
|
+
* * Base View: vwApplicationSettings
|
|
10209
|
+
* * Primary Key: ID
|
|
10210
|
+
* @extends {BaseEntity}
|
|
10211
|
+
* @class
|
|
10212
|
+
* @public
|
|
10213
|
+
*/
|
|
10214
|
+
export declare class ApplicationSettingEntity extends BaseEntity {
|
|
10215
|
+
/**
|
|
10216
|
+
* Loads the Application Settings record from the database
|
|
10217
|
+
* @param ID: number - primary key value to load the Application Settings record.
|
|
10218
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10219
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10220
|
+
* @public
|
|
10221
|
+
* @async
|
|
10222
|
+
* @memberof ApplicationSettingEntity
|
|
10223
|
+
* @method
|
|
10224
|
+
* @override
|
|
10225
|
+
*/
|
|
10226
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10227
|
+
/**
|
|
10228
|
+
* * Field Name: ID
|
|
10229
|
+
* * Display Name: ID
|
|
10230
|
+
* * SQL Data Type: int
|
|
10231
|
+
*/
|
|
10232
|
+
get ID(): number;
|
|
10233
|
+
/**
|
|
10234
|
+
* * Field Name: ApplicationName
|
|
10235
|
+
* * Display Name: Application Name
|
|
10236
|
+
* * SQL Data Type: nvarchar(50)
|
|
10237
|
+
* * Related Entity/Foreign Key: Applications (vwApplications.Name)
|
|
10238
|
+
*/
|
|
10239
|
+
get ApplicationName(): string;
|
|
10240
|
+
set ApplicationName(value: string);
|
|
10241
|
+
/**
|
|
10242
|
+
* * Field Name: Name
|
|
10243
|
+
* * Display Name: Name
|
|
10244
|
+
* * SQL Data Type: nvarchar(100)
|
|
10245
|
+
*/
|
|
10246
|
+
get Name(): string;
|
|
10247
|
+
set Name(value: string);
|
|
10248
|
+
/**
|
|
10249
|
+
* * Field Name: Value
|
|
10250
|
+
* * Display Name: Value
|
|
10251
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10252
|
+
*/
|
|
10253
|
+
get Value(): string;
|
|
10254
|
+
set Value(value: string);
|
|
10255
|
+
/**
|
|
10256
|
+
* * Field Name: Comments
|
|
10257
|
+
* * Display Name: Comments
|
|
10258
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10259
|
+
*/
|
|
10260
|
+
get Comments(): string | null;
|
|
10261
|
+
set Comments(value: string | null);
|
|
10262
|
+
/**
|
|
10263
|
+
* * Field Name: CreatedAt
|
|
10264
|
+
* * Display Name: Created At
|
|
10265
|
+
* * SQL Data Type: datetime
|
|
10266
|
+
*/
|
|
10267
|
+
get CreatedAt(): Date;
|
|
10268
|
+
/**
|
|
10269
|
+
* * Field Name: UpdatedAt
|
|
10270
|
+
* * Display Name: Updated At
|
|
10271
|
+
* * SQL Data Type: datetime
|
|
10272
|
+
*/
|
|
10273
|
+
get UpdatedAt(): Date;
|
|
10274
|
+
}
|
|
10275
|
+
/**
|
|
10276
|
+
* Action Categories - strongly typed entity sub-class
|
|
10277
|
+
* * Schema: __mj
|
|
10278
|
+
* * Base Table: ActionCategory
|
|
10279
|
+
* * Base View: vwActionCategories
|
|
10280
|
+
* * @description Organizes actions into categories, including name, description, and optional parent category for hierarchy.
|
|
10281
|
+
* * Primary Key: ID
|
|
10282
|
+
* @extends {BaseEntity}
|
|
10283
|
+
* @class
|
|
10284
|
+
* @public
|
|
10285
|
+
*/
|
|
10286
|
+
export declare class ActionCategoryEntity extends BaseEntity {
|
|
10287
|
+
/**
|
|
10288
|
+
* Loads the Action Categories record from the database
|
|
10289
|
+
* @param ID: number - primary key value to load the Action Categories record.
|
|
10290
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10291
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10292
|
+
* @public
|
|
10293
|
+
* @async
|
|
10294
|
+
* @memberof ActionCategoryEntity
|
|
10295
|
+
* @method
|
|
10296
|
+
* @override
|
|
10297
|
+
*/
|
|
10298
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10299
|
+
/**
|
|
10300
|
+
* * Field Name: ID
|
|
10301
|
+
* * Display Name: ID
|
|
10302
|
+
* * SQL Data Type: int
|
|
10303
|
+
*/
|
|
10304
|
+
get ID(): number;
|
|
10305
|
+
/**
|
|
10306
|
+
* * Field Name: Name
|
|
10307
|
+
* * Display Name: Name
|
|
10308
|
+
* * SQL Data Type: nvarchar(255)
|
|
10309
|
+
* * Description: Name of the action category.
|
|
10310
|
+
*/
|
|
10311
|
+
get Name(): string;
|
|
10312
|
+
set Name(value: string);
|
|
10313
|
+
/**
|
|
10314
|
+
* * Field Name: Description
|
|
10315
|
+
* * Display Name: Description
|
|
10316
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10317
|
+
* * Description: Description of the action category.
|
|
10318
|
+
*/
|
|
10319
|
+
get Description(): string | null;
|
|
10320
|
+
set Description(value: string | null);
|
|
10321
|
+
/**
|
|
10322
|
+
* * Field Name: ParentID
|
|
10323
|
+
* * Display Name: Parent ID
|
|
10324
|
+
* * SQL Data Type: int
|
|
10325
|
+
* * Related Entity/Foreign Key: Action Categories (vwActionCategories.ID)
|
|
10326
|
+
* * Description: Parent category ID for hierarchical organization.
|
|
10327
|
+
*/
|
|
10328
|
+
get ParentID(): number | null;
|
|
10329
|
+
set ParentID(value: number | null);
|
|
10330
|
+
/**
|
|
10331
|
+
* * Field Name: Status
|
|
10332
|
+
* * Display Name: Status
|
|
10333
|
+
* * SQL Data Type: nvarchar(20)
|
|
10334
|
+
* * Value List Type: List
|
|
10335
|
+
* * Possible Values
|
|
10336
|
+
* * Disabled
|
|
10337
|
+
* * Active
|
|
10338
|
+
* * Pending
|
|
10339
|
+
* * Description: Status of the action category (Pending, Active, Disabled).
|
|
10340
|
+
*/
|
|
10341
|
+
get Status(): 'Disabled' | 'Active' | 'Pending';
|
|
10342
|
+
set Status(value: 'Disabled' | 'Active' | 'Pending');
|
|
10343
|
+
/**
|
|
10344
|
+
* * Field Name: CreatedAt
|
|
10345
|
+
* * Display Name: Created At
|
|
10346
|
+
* * SQL Data Type: datetime
|
|
10347
|
+
*/
|
|
10348
|
+
get CreatedAt(): Date;
|
|
10349
|
+
/**
|
|
10350
|
+
* * Field Name: UpdatedAt
|
|
10351
|
+
* * Display Name: Updated At
|
|
10352
|
+
* * SQL Data Type: datetime
|
|
10353
|
+
*/
|
|
10354
|
+
get UpdatedAt(): Date;
|
|
10355
|
+
/**
|
|
10356
|
+
* * Field Name: Parent
|
|
10357
|
+
* * Display Name: Parent
|
|
10358
|
+
* * SQL Data Type: nvarchar(255)
|
|
10359
|
+
*/
|
|
10360
|
+
get Parent(): string | null;
|
|
10361
|
+
}
|
|
10362
|
+
/**
|
|
10363
|
+
* Entity Actions - strongly typed entity sub-class
|
|
10364
|
+
* * Schema: __mj
|
|
10365
|
+
* * Base Table: EntityAction
|
|
10366
|
+
* * Base View: vwEntityActions
|
|
10367
|
+
* * @description Links entities to actions - this is the main place where you define the actions that part of, or available, for a given entity.
|
|
10368
|
+
* * Primary Key: ID
|
|
10369
|
+
* @extends {BaseEntity}
|
|
10370
|
+
* @class
|
|
10371
|
+
* @public
|
|
10372
|
+
*/
|
|
10373
|
+
export declare class EntityActionEntity extends BaseEntity {
|
|
10374
|
+
/**
|
|
10375
|
+
* Loads the Entity Actions record from the database
|
|
10376
|
+
* @param ID: number - primary key value to load the Entity Actions record.
|
|
10377
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10378
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10379
|
+
* @public
|
|
10380
|
+
* @async
|
|
10381
|
+
* @memberof EntityActionEntity
|
|
10382
|
+
* @method
|
|
10383
|
+
* @override
|
|
10384
|
+
*/
|
|
10385
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10386
|
+
/**
|
|
10387
|
+
* * Field Name: ID
|
|
10388
|
+
* * Display Name: ID
|
|
10389
|
+
* * SQL Data Type: int
|
|
10390
|
+
*/
|
|
10391
|
+
get ID(): number;
|
|
10392
|
+
/**
|
|
10393
|
+
* * Field Name: EntityID
|
|
10394
|
+
* * Display Name: Entity ID
|
|
10395
|
+
* * SQL Data Type: int
|
|
10396
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
10397
|
+
*/
|
|
10398
|
+
get EntityID(): number;
|
|
10399
|
+
set EntityID(value: number);
|
|
10400
|
+
/**
|
|
10401
|
+
* * Field Name: ActionID
|
|
10402
|
+
* * Display Name: Action ID
|
|
10403
|
+
* * SQL Data Type: int
|
|
10404
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
10405
|
+
*/
|
|
10406
|
+
get ActionID(): number;
|
|
10407
|
+
set ActionID(value: number);
|
|
10408
|
+
/**
|
|
10409
|
+
* * Field Name: Status
|
|
10410
|
+
* * Display Name: Status
|
|
10411
|
+
* * SQL Data Type: nvarchar(20)
|
|
10412
|
+
* * Value List Type: List
|
|
10413
|
+
* * Possible Values
|
|
10414
|
+
* * Disabled
|
|
10415
|
+
* * Active
|
|
10416
|
+
* * Pending
|
|
10417
|
+
* * Description: Status of the entity action (Pending, Active, Disabled).
|
|
10418
|
+
*/
|
|
10419
|
+
get Status(): 'Disabled' | 'Active' | 'Pending';
|
|
10420
|
+
set Status(value: 'Disabled' | 'Active' | 'Pending');
|
|
10421
|
+
/**
|
|
10422
|
+
* * Field Name: CreatedAt
|
|
10423
|
+
* * Display Name: Created At
|
|
10424
|
+
* * SQL Data Type: datetime
|
|
10425
|
+
*/
|
|
10426
|
+
get CreatedAt(): Date;
|
|
10427
|
+
/**
|
|
10428
|
+
* * Field Name: UpdatedAt
|
|
10429
|
+
* * Display Name: Updated At
|
|
10430
|
+
* * SQL Data Type: datetime
|
|
10431
|
+
*/
|
|
10432
|
+
get UpdatedAt(): Date;
|
|
10433
|
+
/**
|
|
10434
|
+
* * Field Name: Entity
|
|
10435
|
+
* * Display Name: Entity
|
|
10436
|
+
* * SQL Data Type: nvarchar(255)
|
|
10437
|
+
*/
|
|
10438
|
+
get Entity(): string;
|
|
10439
|
+
/**
|
|
10440
|
+
* * Field Name: Action
|
|
10441
|
+
* * Display Name: Action
|
|
10442
|
+
* * SQL Data Type: nvarchar(425)
|
|
10443
|
+
*/
|
|
10444
|
+
get Action(): string;
|
|
10445
|
+
}
|
|
10446
|
+
/**
|
|
10447
|
+
* Entity Action Invocations - strongly typed entity sub-class
|
|
10448
|
+
* * Schema: __mj
|
|
10449
|
+
* * Base Table: EntityActionInvocation
|
|
10450
|
+
* * Base View: vwEntityActionInvocations
|
|
10451
|
+
* * @description Links invocation types to entity actions – for example you might link a particular EntityAction to just “Create Record” and you might also have a second item in this table allowing the same Entity Action to be invoked from a User View or List, on demand.
|
|
10452
|
+
* * Primary Key: ID
|
|
10453
|
+
* @extends {BaseEntity}
|
|
10454
|
+
* @class
|
|
10455
|
+
* @public
|
|
10456
|
+
*/
|
|
10457
|
+
export declare class EntityActionInvocationEntity extends BaseEntity {
|
|
10458
|
+
/**
|
|
10459
|
+
* Loads the Entity Action Invocations record from the database
|
|
10460
|
+
* @param ID: number - primary key value to load the Entity Action Invocations record.
|
|
10461
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10462
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10463
|
+
* @public
|
|
10464
|
+
* @async
|
|
10465
|
+
* @memberof EntityActionInvocationEntity
|
|
10466
|
+
* @method
|
|
10467
|
+
* @override
|
|
10468
|
+
*/
|
|
10469
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10470
|
+
/**
|
|
10471
|
+
* * Field Name: ID
|
|
10472
|
+
* * Display Name: ID
|
|
10473
|
+
* * SQL Data Type: int
|
|
10474
|
+
*/
|
|
10475
|
+
get ID(): number;
|
|
10476
|
+
/**
|
|
10477
|
+
* * Field Name: EntityActionID
|
|
10478
|
+
* * Display Name: Entity Action ID
|
|
10479
|
+
* * SQL Data Type: int
|
|
10480
|
+
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
|
|
10481
|
+
*/
|
|
10482
|
+
get EntityActionID(): number;
|
|
10483
|
+
set EntityActionID(value: number);
|
|
10484
|
+
/**
|
|
10485
|
+
* * Field Name: InvocationTypeID
|
|
10486
|
+
* * Display Name: Invocation Type ID
|
|
10487
|
+
* * SQL Data Type: int
|
|
10488
|
+
* * Related Entity/Foreign Key: Entity Action Invocation Types (vwEntityActionInvocationTypes.ID)
|
|
10489
|
+
*/
|
|
10490
|
+
get InvocationTypeID(): number;
|
|
10491
|
+
set InvocationTypeID(value: number);
|
|
10492
|
+
/**
|
|
10493
|
+
* * Field Name: Status
|
|
10494
|
+
* * Display Name: Status
|
|
10495
|
+
* * SQL Data Type: nvarchar(20)
|
|
10496
|
+
* * Value List Type: List
|
|
10497
|
+
* * Possible Values
|
|
10498
|
+
* * Disabled
|
|
10499
|
+
* * Active
|
|
10500
|
+
* * Pending
|
|
10501
|
+
* * Description: Status of the entity action invocation (Pending, Active, Disabled).
|
|
10502
|
+
*/
|
|
10503
|
+
get Status(): 'Disabled' | 'Active' | 'Pending';
|
|
10504
|
+
set Status(value: 'Disabled' | 'Active' | 'Pending');
|
|
10505
|
+
/**
|
|
10506
|
+
* * Field Name: CreatedAt
|
|
10507
|
+
* * Display Name: Created At
|
|
10508
|
+
* * SQL Data Type: datetime
|
|
10509
|
+
*/
|
|
10510
|
+
get CreatedAt(): Date;
|
|
10511
|
+
/**
|
|
10512
|
+
* * Field Name: UpdatedAt
|
|
10513
|
+
* * Display Name: Updated At
|
|
10514
|
+
* * SQL Data Type: datetime
|
|
10515
|
+
*/
|
|
10516
|
+
get UpdatedAt(): Date;
|
|
10517
|
+
/**
|
|
10518
|
+
* * Field Name: InvocationType
|
|
10519
|
+
* * Display Name: Invocation Type
|
|
10520
|
+
* * SQL Data Type: nvarchar(255)
|
|
10521
|
+
*/
|
|
10522
|
+
get InvocationType(): string;
|
|
10523
|
+
}
|
|
10524
|
+
/**
|
|
10525
|
+
* Action Authorizations - strongly typed entity sub-class
|
|
10526
|
+
* * Schema: __mj
|
|
10527
|
+
* * Base Table: ActionAuthorization
|
|
10528
|
+
* * Base View: vwActionAuthorizations
|
|
10529
|
+
* * @description Links actions to authorizations, one or more of these must be possessed by a user in order to execute the action.
|
|
10530
|
+
* * Primary Key: ID
|
|
10531
|
+
* @extends {BaseEntity}
|
|
10532
|
+
* @class
|
|
10533
|
+
* @public
|
|
10534
|
+
*/
|
|
10535
|
+
export declare class ActionAuthorizationEntity extends BaseEntity {
|
|
10536
|
+
/**
|
|
10537
|
+
* Loads the Action Authorizations record from the database
|
|
10538
|
+
* @param ID: number - primary key value to load the Action Authorizations record.
|
|
10539
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10540
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10541
|
+
* @public
|
|
10542
|
+
* @async
|
|
10543
|
+
* @memberof ActionAuthorizationEntity
|
|
10544
|
+
* @method
|
|
10545
|
+
* @override
|
|
10546
|
+
*/
|
|
10547
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10548
|
+
/**
|
|
10549
|
+
* * Field Name: ID
|
|
10550
|
+
* * Display Name: ID
|
|
10551
|
+
* * SQL Data Type: int
|
|
10552
|
+
*/
|
|
10553
|
+
get ID(): number;
|
|
10554
|
+
/**
|
|
10555
|
+
* * Field Name: ActionID
|
|
10556
|
+
* * Display Name: Action ID
|
|
10557
|
+
* * SQL Data Type: int
|
|
10558
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
10559
|
+
*/
|
|
10560
|
+
get ActionID(): number;
|
|
10561
|
+
set ActionID(value: number);
|
|
10562
|
+
/**
|
|
10563
|
+
* * Field Name: AuthorizationName
|
|
10564
|
+
* * Display Name: Authorization Name
|
|
10565
|
+
* * SQL Data Type: nvarchar(100)
|
|
10566
|
+
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
|
|
10567
|
+
*/
|
|
10568
|
+
get AuthorizationName(): string;
|
|
10569
|
+
set AuthorizationName(value: string);
|
|
10570
|
+
/**
|
|
10571
|
+
* * Field Name: Comments
|
|
10572
|
+
* * Display Name: Comments
|
|
10573
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10574
|
+
*/
|
|
10575
|
+
get Comments(): string | null;
|
|
10576
|
+
set Comments(value: string | null);
|
|
10577
|
+
/**
|
|
10578
|
+
* * Field Name: CreatedAt
|
|
10579
|
+
* * Display Name: Created At
|
|
10580
|
+
* * SQL Data Type: datetime
|
|
10581
|
+
*/
|
|
10582
|
+
get CreatedAt(): Date;
|
|
10583
|
+
/**
|
|
10584
|
+
* * Field Name: UpdatedAt
|
|
10585
|
+
* * Display Name: Updated At
|
|
10586
|
+
* * SQL Data Type: datetime
|
|
10587
|
+
*/
|
|
10588
|
+
get UpdatedAt(): Date;
|
|
10589
|
+
/**
|
|
10590
|
+
* * Field Name: Action
|
|
10591
|
+
* * Display Name: Action
|
|
10592
|
+
* * SQL Data Type: nvarchar(425)
|
|
10593
|
+
*/
|
|
10594
|
+
get Action(): string;
|
|
10595
|
+
}
|
|
10596
|
+
/**
|
|
10597
|
+
* Entity Action Invocation Types - strongly typed entity sub-class
|
|
10598
|
+
* * Schema: __mj
|
|
10599
|
+
* * Base Table: EntityActionInvocationType
|
|
10600
|
+
* * Base View: vwEntityActionInvocationTypes
|
|
10601
|
+
* * @description Stores the possible invocation types of an action within the context of an entity. Examples would be: Record Created/Updated/Deleted/Accessed as well as things like “View” or “List” where you could run an EntityAction against an entire set of records in a view or list – either by user click or programmatically.
|
|
10602
|
+
* * Primary Key: ID
|
|
10603
|
+
* @extends {BaseEntity}
|
|
10604
|
+
* @class
|
|
10605
|
+
* @public
|
|
10606
|
+
*/
|
|
10607
|
+
export declare class EntityActionInvocationTypeEntity extends BaseEntity {
|
|
10608
|
+
/**
|
|
10609
|
+
* Loads the Entity Action Invocation Types record from the database
|
|
10610
|
+
* @param ID: number - primary key value to load the Entity Action Invocation Types record.
|
|
10611
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10612
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10613
|
+
* @public
|
|
10614
|
+
* @async
|
|
10615
|
+
* @memberof EntityActionInvocationTypeEntity
|
|
10616
|
+
* @method
|
|
10617
|
+
* @override
|
|
10618
|
+
*/
|
|
10619
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10620
|
+
/**
|
|
10621
|
+
* * Field Name: ID
|
|
10622
|
+
* * Display Name: ID
|
|
10623
|
+
* * SQL Data Type: int
|
|
10624
|
+
*/
|
|
10625
|
+
get ID(): number;
|
|
10626
|
+
/**
|
|
10627
|
+
* * Field Name: Name
|
|
10628
|
+
* * Display Name: Name
|
|
10629
|
+
* * SQL Data Type: nvarchar(255)
|
|
10630
|
+
* * Description: Name of the invocation type such as Record Created/Updated/etc.
|
|
10631
|
+
*/
|
|
10632
|
+
get Name(): string;
|
|
10633
|
+
set Name(value: string);
|
|
10634
|
+
/**
|
|
10635
|
+
* * Field Name: Description
|
|
10636
|
+
* * Display Name: Description
|
|
10637
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10638
|
+
* * Description: Description of the invocation type.
|
|
10639
|
+
*/
|
|
10640
|
+
get Description(): string | null;
|
|
10641
|
+
set Description(value: string | null);
|
|
10642
|
+
/**
|
|
10643
|
+
* * Field Name: DisplaySequence
|
|
10644
|
+
* * Display Name: Display Sequence
|
|
10645
|
+
* * SQL Data Type: int
|
|
10646
|
+
*/
|
|
10647
|
+
get DisplaySequence(): number;
|
|
10648
|
+
set DisplaySequence(value: number);
|
|
10649
|
+
/**
|
|
10650
|
+
* * Field Name: CreatedAt
|
|
10651
|
+
* * Display Name: Created At
|
|
10652
|
+
* * SQL Data Type: datetime
|
|
10653
|
+
*/
|
|
10654
|
+
get CreatedAt(): Date;
|
|
10655
|
+
/**
|
|
10656
|
+
* * Field Name: UpdatedAt
|
|
10657
|
+
* * Display Name: Updated At
|
|
10658
|
+
* * SQL Data Type: datetime
|
|
10659
|
+
*/
|
|
10660
|
+
get UpdatedAt(): Date;
|
|
10661
|
+
}
|
|
10662
|
+
/**
|
|
10663
|
+
* Actions - strongly typed entity sub-class
|
|
10664
|
+
* * Schema: __mj
|
|
10665
|
+
* * Base Table: Action
|
|
10666
|
+
* * Base View: vwActions
|
|
10667
|
+
* * @description Stores action definitions, including prompts, generated code, user comments, and status.
|
|
10668
|
+
* * Primary Key: ID
|
|
10669
|
+
* @extends {BaseEntity}
|
|
10670
|
+
* @class
|
|
10671
|
+
* @public
|
|
10672
|
+
*/
|
|
10673
|
+
export declare class ActionEntity extends BaseEntity {
|
|
10674
|
+
/**
|
|
10675
|
+
* Loads the Actions record from the database
|
|
10676
|
+
* @param ID: number - primary key value to load the Actions record.
|
|
10677
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10678
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10679
|
+
* @public
|
|
10680
|
+
* @async
|
|
10681
|
+
* @memberof ActionEntity
|
|
10682
|
+
* @method
|
|
10683
|
+
* @override
|
|
10684
|
+
*/
|
|
10685
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10686
|
+
/**
|
|
10687
|
+
* * Field Name: ID
|
|
10688
|
+
* * Display Name: ID
|
|
10689
|
+
* * SQL Data Type: int
|
|
10690
|
+
*/
|
|
10691
|
+
get ID(): number;
|
|
10692
|
+
/**
|
|
10693
|
+
* * Field Name: CategoryID
|
|
10694
|
+
* * Display Name: Category ID
|
|
10695
|
+
* * SQL Data Type: int
|
|
10696
|
+
* * Related Entity/Foreign Key: Action Categories (vwActionCategories.ID)
|
|
10697
|
+
*/
|
|
10698
|
+
get CategoryID(): number | null;
|
|
10699
|
+
set CategoryID(value: number | null);
|
|
10700
|
+
/**
|
|
10701
|
+
* * Field Name: Name
|
|
10702
|
+
* * Display Name: Name
|
|
10703
|
+
* * SQL Data Type: nvarchar(425)
|
|
10704
|
+
*/
|
|
10705
|
+
get Name(): string;
|
|
10706
|
+
set Name(value: string);
|
|
10707
|
+
/**
|
|
10708
|
+
* * Field Name: UserPrompt
|
|
10709
|
+
* * Display Name: User Prompt
|
|
10710
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10711
|
+
*/
|
|
10712
|
+
get UserPrompt(): string;
|
|
10713
|
+
set UserPrompt(value: string);
|
|
10714
|
+
/**
|
|
10715
|
+
* * Field Name: UserComments
|
|
10716
|
+
* * Display Name: User Comments
|
|
10717
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10718
|
+
* * Description: User's comments not shared with the LLM.
|
|
10719
|
+
*/
|
|
10720
|
+
get UserComments(): string | null;
|
|
10721
|
+
set UserComments(value: string | null);
|
|
10722
|
+
/**
|
|
10723
|
+
* * Field Name: Code
|
|
10724
|
+
* * Display Name: Code
|
|
10725
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10726
|
+
*/
|
|
10727
|
+
get Code(): string | null;
|
|
10728
|
+
set Code(value: string | null);
|
|
10729
|
+
/**
|
|
10730
|
+
* * Field Name: CodeComments
|
|
10731
|
+
* * Display Name: Code Comments
|
|
10732
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10733
|
+
* * Description: AI's explanation of the code.
|
|
10734
|
+
*/
|
|
10735
|
+
get CodeComments(): string | null;
|
|
10736
|
+
set CodeComments(value: string | null);
|
|
10737
|
+
/**
|
|
10738
|
+
* * Field Name: CodeApprovalStatus
|
|
10739
|
+
* * Display Name: Code Approval Status
|
|
10740
|
+
* * SQL Data Type: nvarchar(20)
|
|
10741
|
+
* * Value List Type: List
|
|
10742
|
+
* * Possible Values
|
|
10743
|
+
* * Rejected
|
|
10744
|
+
* * Approved
|
|
10745
|
+
* * Pending
|
|
10746
|
+
* * Description: An action won't be usable until the code is approved.
|
|
10747
|
+
*/
|
|
10748
|
+
get CodeApprovalStatus(): 'Rejected' | 'Approved' | 'Pending';
|
|
10749
|
+
set CodeApprovalStatus(value: 'Rejected' | 'Approved' | 'Pending');
|
|
10750
|
+
/**
|
|
10751
|
+
* * Field Name: CodeApprovalComments
|
|
10752
|
+
* * Display Name: Code Approval Comments
|
|
10753
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10754
|
+
* * Description: Optional comments when an individual (or an AI) reviews and approves the code.
|
|
10755
|
+
*/
|
|
10756
|
+
get CodeApprovalComments(): string | null;
|
|
10757
|
+
set CodeApprovalComments(value: string | null);
|
|
10758
|
+
/**
|
|
10759
|
+
* * Field Name: CodeApprovedByUserID
|
|
10760
|
+
* * Display Name: Code Approved By User ID
|
|
10761
|
+
* * SQL Data Type: int
|
|
10762
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
10763
|
+
* * Description: UserID who approved the code.
|
|
10764
|
+
*/
|
|
10765
|
+
get CodeApprovedByUserID(): number | null;
|
|
10766
|
+
set CodeApprovedByUserID(value: number | null);
|
|
10767
|
+
/**
|
|
10768
|
+
* * Field Name: CodeApprovedAt
|
|
10769
|
+
* * Display Name: Code Approved At
|
|
10770
|
+
* * SQL Data Type: datetime
|
|
10771
|
+
* * Description: When the code was approved.
|
|
10772
|
+
*/
|
|
10773
|
+
get CodeApprovedAt(): Date | null;
|
|
10774
|
+
set CodeApprovedAt(value: Date | null);
|
|
10775
|
+
/**
|
|
10776
|
+
* * Field Name: ForceCodeGeneration
|
|
10777
|
+
* * Display Name: Force Code Generation
|
|
10778
|
+
* * SQL Data Type: bit
|
|
10779
|
+
* * 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
|
+
*/
|
|
10781
|
+
get ForceCodeGeneration(): boolean;
|
|
10782
|
+
set ForceCodeGeneration(value: boolean);
|
|
10783
|
+
/**
|
|
10784
|
+
* * Field Name: RetentionPeriod
|
|
10785
|
+
* * Display Name: Retention Period
|
|
10786
|
+
* * SQL Data Type: int
|
|
10787
|
+
* * Description: Number of days to retain execution logs; NULL for indefinite.
|
|
10788
|
+
*/
|
|
10789
|
+
get RetentionPeriod(): number | null;
|
|
10790
|
+
set RetentionPeriod(value: number | null);
|
|
10791
|
+
/**
|
|
10792
|
+
* * Field Name: Status
|
|
10793
|
+
* * Display Name: Status
|
|
10794
|
+
* * SQL Data Type: nvarchar(20)
|
|
10795
|
+
* * Value List Type: List
|
|
10796
|
+
* * Possible Values
|
|
10797
|
+
* * Disabled
|
|
10798
|
+
* * Active
|
|
10799
|
+
* * Pending
|
|
10800
|
+
* * Description: Status of the action (Pending, Active, Disabled).
|
|
10801
|
+
*/
|
|
10802
|
+
get Status(): 'Disabled' | 'Active' | 'Pending';
|
|
10803
|
+
set Status(value: 'Disabled' | 'Active' | 'Pending');
|
|
10804
|
+
/**
|
|
10805
|
+
* * Field Name: CreatedAt
|
|
10806
|
+
* * Display Name: Created At
|
|
10807
|
+
* * SQL Data Type: datetime
|
|
10808
|
+
*/
|
|
10809
|
+
get CreatedAt(): Date;
|
|
10810
|
+
/**
|
|
10811
|
+
* * Field Name: UpdatedAt
|
|
10812
|
+
* * Display Name: Updated At
|
|
10813
|
+
* * SQL Data Type: datetime
|
|
10814
|
+
*/
|
|
10815
|
+
get UpdatedAt(): Date;
|
|
10816
|
+
/**
|
|
10817
|
+
* * Field Name: Category
|
|
10818
|
+
* * Display Name: Category
|
|
10819
|
+
* * SQL Data Type: nvarchar(255)
|
|
10820
|
+
*/
|
|
10821
|
+
get Category(): string | null;
|
|
10822
|
+
/**
|
|
10823
|
+
* * Field Name: CodeApprovedByUser
|
|
10824
|
+
* * Display Name: Code Approved By User
|
|
10825
|
+
* * SQL Data Type: nvarchar(100)
|
|
10826
|
+
*/
|
|
10827
|
+
get CodeApprovedByUser(): string | null;
|
|
10828
|
+
}
|
|
10829
|
+
/**
|
|
10830
|
+
* Entity Action Filters - strongly typed entity sub-class
|
|
10831
|
+
* * Schema: __mj
|
|
10832
|
+
* * Base Table: EntityActionFilter
|
|
10833
|
+
* * Base View: vwEntityActionFilters
|
|
10834
|
+
* * @description Optional use. Maps Action Filters to specific EntityAction instances, specifying execution order and status. This allows for “pre-processing” before an Action actually is fired off, to check for various state/dirty/value conditions.
|
|
10835
|
+
* * Primary Key: ID
|
|
10836
|
+
* @extends {BaseEntity}
|
|
10837
|
+
* @class
|
|
10838
|
+
* @public
|
|
10839
|
+
*/
|
|
10840
|
+
export declare class EntityActionFilterEntity extends BaseEntity {
|
|
10841
|
+
/**
|
|
10842
|
+
* Loads the Entity Action Filters record from the database
|
|
10843
|
+
* @param ID: number - primary key value to load the Entity Action Filters record.
|
|
10844
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10845
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10846
|
+
* @public
|
|
10847
|
+
* @async
|
|
10848
|
+
* @memberof EntityActionFilterEntity
|
|
10849
|
+
* @method
|
|
10850
|
+
* @override
|
|
10851
|
+
*/
|
|
10852
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10853
|
+
/**
|
|
10854
|
+
* * Field Name: ID
|
|
10855
|
+
* * Display Name: ID
|
|
10856
|
+
* * SQL Data Type: int
|
|
10857
|
+
*/
|
|
10858
|
+
get ID(): number;
|
|
10859
|
+
/**
|
|
10860
|
+
* * Field Name: EntityActionID
|
|
10861
|
+
* * Display Name: Entity Action ID
|
|
10862
|
+
* * SQL Data Type: int
|
|
10863
|
+
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
|
|
10864
|
+
*/
|
|
10865
|
+
get EntityActionID(): number;
|
|
10866
|
+
set EntityActionID(value: number);
|
|
10867
|
+
/**
|
|
10868
|
+
* * Field Name: ActionFilterID
|
|
10869
|
+
* * Display Name: Action Filter ID
|
|
10870
|
+
* * SQL Data Type: int
|
|
10871
|
+
* * Related Entity/Foreign Key: Action Filters (vwActionFilters.ID)
|
|
10872
|
+
*/
|
|
10873
|
+
get ActionFilterID(): number;
|
|
10874
|
+
set ActionFilterID(value: number);
|
|
10875
|
+
/**
|
|
10876
|
+
* * Field Name: Sequence
|
|
10877
|
+
* * Display Name: Sequence
|
|
10878
|
+
* * SQL Data Type: int
|
|
10879
|
+
* * Description: Order of filter execution.
|
|
10880
|
+
*/
|
|
10881
|
+
get Sequence(): number;
|
|
10882
|
+
set Sequence(value: number);
|
|
10883
|
+
/**
|
|
10884
|
+
* * Field Name: Status
|
|
10885
|
+
* * Display Name: Status
|
|
10886
|
+
* * SQL Data Type: nvarchar(20)
|
|
10887
|
+
* * Value List Type: List
|
|
10888
|
+
* * Possible Values
|
|
10889
|
+
* * Disabled
|
|
10890
|
+
* * Active
|
|
10891
|
+
* * Pending
|
|
10892
|
+
* * Description: Status of the entity action filter (Pending, Active, Disabled).
|
|
10893
|
+
*/
|
|
10894
|
+
get Status(): 'Disabled' | 'Active' | 'Pending';
|
|
10895
|
+
set Status(value: 'Disabled' | 'Active' | 'Pending');
|
|
10896
|
+
/**
|
|
10897
|
+
* * Field Name: CreatedAt
|
|
10898
|
+
* * Display Name: Created At
|
|
10899
|
+
* * SQL Data Type: datetime
|
|
10900
|
+
*/
|
|
10901
|
+
get CreatedAt(): Date;
|
|
10902
|
+
/**
|
|
10903
|
+
* * Field Name: UpdatedAt
|
|
10904
|
+
* * Display Name: Updated At
|
|
10905
|
+
* * SQL Data Type: datetime
|
|
10906
|
+
*/
|
|
10907
|
+
get UpdatedAt(): Date;
|
|
10908
|
+
}
|
|
10909
|
+
/**
|
|
10910
|
+
* Action Filters - strongly typed entity sub-class
|
|
10911
|
+
* * Schema: __mj
|
|
10912
|
+
* * Base Table: ActionFilter
|
|
10913
|
+
* * Base View: vwActionFilters
|
|
10914
|
+
* * @description Defines filters that can be evaluated ahead of executing an action. Action Filters are usable in any code pipeline you can execute them with the same context as the action itself and use the outcome to determine if the action should execute or not.
|
|
10915
|
+
* * Primary Key: ID
|
|
10916
|
+
* @extends {BaseEntity}
|
|
10917
|
+
* @class
|
|
10918
|
+
* @public
|
|
10919
|
+
*/
|
|
10920
|
+
export declare class ActionFilterEntity extends BaseEntity {
|
|
10921
|
+
/**
|
|
10922
|
+
* Loads the Action Filters record from the database
|
|
10923
|
+
* @param ID: number - primary key value to load the Action Filters record.
|
|
10924
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10925
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10926
|
+
* @public
|
|
10927
|
+
* @async
|
|
10928
|
+
* @memberof ActionFilterEntity
|
|
10929
|
+
* @method
|
|
10930
|
+
* @override
|
|
10931
|
+
*/
|
|
10932
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
10933
|
+
/**
|
|
10934
|
+
* * Field Name: ID
|
|
10935
|
+
* * Display Name: ID
|
|
10936
|
+
* * SQL Data Type: int
|
|
10937
|
+
*/
|
|
10938
|
+
get ID(): number;
|
|
10939
|
+
/**
|
|
10940
|
+
* * Field Name: UserDescription
|
|
10941
|
+
* * Display Name: User Description
|
|
10942
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10943
|
+
*/
|
|
10944
|
+
get UserDescription(): string;
|
|
10945
|
+
set UserDescription(value: string);
|
|
10946
|
+
/**
|
|
10947
|
+
* * Field Name: UserComments
|
|
10948
|
+
* * Display Name: User Comments
|
|
10949
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10950
|
+
*/
|
|
10951
|
+
get UserComments(): string | null;
|
|
10952
|
+
set UserComments(value: string | null);
|
|
10953
|
+
/**
|
|
10954
|
+
* * Field Name: Code
|
|
10955
|
+
* * Display Name: Code
|
|
10956
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10957
|
+
*/
|
|
10958
|
+
get Code(): string;
|
|
10959
|
+
set Code(value: string);
|
|
10960
|
+
/**
|
|
10961
|
+
* * Field Name: CodeExplanation
|
|
10962
|
+
* * Display Name: Code Explanation
|
|
10963
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
10964
|
+
*/
|
|
10965
|
+
get CodeExplanation(): string | null;
|
|
10966
|
+
set CodeExplanation(value: string | null);
|
|
10967
|
+
/**
|
|
10968
|
+
* * Field Name: CreatedAt
|
|
10969
|
+
* * Display Name: Created At
|
|
10970
|
+
* * SQL Data Type: datetime
|
|
10971
|
+
*/
|
|
10972
|
+
get CreatedAt(): Date;
|
|
10973
|
+
/**
|
|
10974
|
+
* * Field Name: UpdatedAt
|
|
10975
|
+
* * Display Name: Updated At
|
|
10976
|
+
* * SQL Data Type: datetime
|
|
10977
|
+
*/
|
|
10978
|
+
get UpdatedAt(): Date;
|
|
10979
|
+
}
|
|
10980
|
+
/**
|
|
10981
|
+
* Action Context Types - strongly typed entity sub-class
|
|
10982
|
+
* * Schema: __mj
|
|
10983
|
+
* * Base Table: ActionContextType
|
|
10984
|
+
* * Base View: vwActionContextTypes
|
|
10985
|
+
* * @description Lists possible contexts for action execution with optional descriptions.
|
|
10986
|
+
* * Primary Key: ID
|
|
10987
|
+
* @extends {BaseEntity}
|
|
10988
|
+
* @class
|
|
10989
|
+
* @public
|
|
10990
|
+
*/
|
|
10991
|
+
export declare class ActionContextTypeEntity extends BaseEntity {
|
|
10992
|
+
/**
|
|
10993
|
+
* Loads the Action Context Types record from the database
|
|
10994
|
+
* @param ID: number - primary key value to load the Action Context Types record.
|
|
10995
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
10996
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
10997
|
+
* @public
|
|
10998
|
+
* @async
|
|
10999
|
+
* @memberof ActionContextTypeEntity
|
|
11000
|
+
* @method
|
|
11001
|
+
* @override
|
|
11002
|
+
*/
|
|
11003
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11004
|
+
/**
|
|
11005
|
+
* * Field Name: ID
|
|
11006
|
+
* * Display Name: ID
|
|
11007
|
+
* * SQL Data Type: int
|
|
11008
|
+
*/
|
|
11009
|
+
get ID(): number;
|
|
11010
|
+
/**
|
|
11011
|
+
* * Field Name: Name
|
|
11012
|
+
* * Display Name: Name
|
|
11013
|
+
* * SQL Data Type: nvarchar(255)
|
|
11014
|
+
* * Description: Name of the context type.
|
|
11015
|
+
*/
|
|
11016
|
+
get Name(): string;
|
|
11017
|
+
set Name(value: string);
|
|
11018
|
+
/**
|
|
11019
|
+
* * Field Name: Description
|
|
11020
|
+
* * Display Name: Description
|
|
11021
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11022
|
+
* * Description: Description of the context type.
|
|
11023
|
+
*/
|
|
11024
|
+
get Description(): string | null;
|
|
11025
|
+
set Description(value: string | null);
|
|
11026
|
+
/**
|
|
11027
|
+
* * Field Name: CreatedAt
|
|
11028
|
+
* * Display Name: Created At
|
|
11029
|
+
* * SQL Data Type: datetime
|
|
11030
|
+
*/
|
|
11031
|
+
get CreatedAt(): Date;
|
|
11032
|
+
/**
|
|
11033
|
+
* * Field Name: UpdatedAt
|
|
11034
|
+
* * Display Name: Updated At
|
|
11035
|
+
* * SQL Data Type: datetime
|
|
11036
|
+
*/
|
|
11037
|
+
get UpdatedAt(): Date;
|
|
11038
|
+
}
|
|
11039
|
+
/**
|
|
11040
|
+
* Action Result Codes - strongly typed entity sub-class
|
|
11041
|
+
* * Schema: __mj
|
|
11042
|
+
* * Base Table: ActionResultCode
|
|
11043
|
+
* * Base View: vwActionResultCodes
|
|
11044
|
+
* * @description Defines the possible result codes for each action.
|
|
11045
|
+
* * Primary Key: ID
|
|
11046
|
+
* @extends {BaseEntity}
|
|
11047
|
+
* @class
|
|
11048
|
+
* @public
|
|
11049
|
+
*/
|
|
11050
|
+
export declare class ActionResultCodeEntity extends BaseEntity {
|
|
11051
|
+
/**
|
|
11052
|
+
* Loads the Action Result Codes record from the database
|
|
11053
|
+
* @param ID: number - primary key value to load the Action Result Codes record.
|
|
11054
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11055
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11056
|
+
* @public
|
|
11057
|
+
* @async
|
|
11058
|
+
* @memberof ActionResultCodeEntity
|
|
11059
|
+
* @method
|
|
11060
|
+
* @override
|
|
11061
|
+
*/
|
|
11062
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11063
|
+
/**
|
|
11064
|
+
* * Field Name: ID
|
|
11065
|
+
* * Display Name: ID
|
|
11066
|
+
* * SQL Data Type: int
|
|
11067
|
+
*/
|
|
11068
|
+
get ID(): number;
|
|
11069
|
+
/**
|
|
11070
|
+
* * Field Name: ActionID
|
|
11071
|
+
* * Display Name: Action ID
|
|
11072
|
+
* * SQL Data Type: int
|
|
11073
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
11074
|
+
*/
|
|
11075
|
+
get ActionID(): number;
|
|
11076
|
+
set ActionID(value: number);
|
|
11077
|
+
/**
|
|
11078
|
+
* * Field Name: ResultCode
|
|
11079
|
+
* * Display Name: Result Code
|
|
11080
|
+
* * SQL Data Type: nvarchar(255)
|
|
11081
|
+
*/
|
|
11082
|
+
get ResultCode(): string;
|
|
11083
|
+
set ResultCode(value: string);
|
|
11084
|
+
/**
|
|
11085
|
+
* * Field Name: Description
|
|
11086
|
+
* * Display Name: Description
|
|
11087
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11088
|
+
* * Description: Description of the result code.
|
|
11089
|
+
*/
|
|
11090
|
+
get Description(): string | null;
|
|
11091
|
+
set Description(value: string | null);
|
|
11092
|
+
/**
|
|
11093
|
+
* * Field Name: CreatedAt
|
|
11094
|
+
* * Display Name: Created At
|
|
11095
|
+
* * SQL Data Type: datetime
|
|
11096
|
+
*/
|
|
11097
|
+
get CreatedAt(): Date;
|
|
11098
|
+
/**
|
|
11099
|
+
* * Field Name: UpdatedAt
|
|
11100
|
+
* * Display Name: Updated At
|
|
11101
|
+
* * SQL Data Type: datetime
|
|
11102
|
+
*/
|
|
11103
|
+
get UpdatedAt(): Date;
|
|
11104
|
+
/**
|
|
11105
|
+
* * Field Name: Action
|
|
11106
|
+
* * Display Name: Action
|
|
11107
|
+
* * SQL Data Type: nvarchar(425)
|
|
11108
|
+
*/
|
|
11109
|
+
get Action(): string;
|
|
11110
|
+
}
|
|
11111
|
+
/**
|
|
11112
|
+
* Action Contexts - strongly typed entity sub-class
|
|
11113
|
+
* * Schema: __mj
|
|
11114
|
+
* * Base Table: ActionContext
|
|
11115
|
+
* * Base View: vwActionContexts
|
|
11116
|
+
* * @description Links actions to their supported context types enabling a given action to be executable in more than one context.
|
|
11117
|
+
* * Primary Key: ID
|
|
11118
|
+
* @extends {BaseEntity}
|
|
11119
|
+
* @class
|
|
11120
|
+
* @public
|
|
11121
|
+
*/
|
|
11122
|
+
export declare class ActionContextEntity extends BaseEntity {
|
|
11123
|
+
/**
|
|
11124
|
+
* Loads the Action Contexts record from the database
|
|
11125
|
+
* @param ID: number - primary key value to load the Action Contexts record.
|
|
11126
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11127
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11128
|
+
* @public
|
|
11129
|
+
* @async
|
|
11130
|
+
* @memberof ActionContextEntity
|
|
11131
|
+
* @method
|
|
11132
|
+
* @override
|
|
11133
|
+
*/
|
|
11134
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11135
|
+
/**
|
|
11136
|
+
* * Field Name: ID
|
|
11137
|
+
* * Display Name: ID
|
|
11138
|
+
* * SQL Data Type: int
|
|
11139
|
+
*/
|
|
11140
|
+
get ID(): number;
|
|
11141
|
+
/**
|
|
11142
|
+
* * Field Name: ActionID
|
|
11143
|
+
* * Display Name: Action ID
|
|
11144
|
+
* * SQL Data Type: int
|
|
11145
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
11146
|
+
*/
|
|
11147
|
+
get ActionID(): number;
|
|
11148
|
+
set ActionID(value: number);
|
|
11149
|
+
/**
|
|
11150
|
+
* * Field Name: ContextTypeID
|
|
11151
|
+
* * Display Name: Context Type ID
|
|
11152
|
+
* * SQL Data Type: int
|
|
11153
|
+
* * Related Entity/Foreign Key: Action Context Types (vwActionContextTypes.ID)
|
|
11154
|
+
*/
|
|
11155
|
+
get ContextTypeID(): number;
|
|
11156
|
+
set ContextTypeID(value: number);
|
|
11157
|
+
/**
|
|
11158
|
+
* * Field Name: Status
|
|
11159
|
+
* * Display Name: Status
|
|
11160
|
+
* * SQL Data Type: nvarchar(20)
|
|
11161
|
+
* * Value List Type: List
|
|
11162
|
+
* * Possible Values
|
|
11163
|
+
* * Disabled
|
|
11164
|
+
* * Active
|
|
11165
|
+
* * Pending
|
|
11166
|
+
* * Description: Status of the action context (Pending, Active, Disabled).
|
|
11167
|
+
*/
|
|
11168
|
+
get Status(): 'Disabled' | 'Active' | 'Pending';
|
|
11169
|
+
set Status(value: 'Disabled' | 'Active' | 'Pending');
|
|
11170
|
+
/**
|
|
11171
|
+
* * Field Name: CreatedAt
|
|
11172
|
+
* * Display Name: Created At
|
|
11173
|
+
* * SQL Data Type: datetime
|
|
11174
|
+
*/
|
|
11175
|
+
get CreatedAt(): Date;
|
|
11176
|
+
/**
|
|
11177
|
+
* * Field Name: UpdatedAt
|
|
11178
|
+
* * Display Name: Updated At
|
|
11179
|
+
* * SQL Data Type: datetime
|
|
11180
|
+
*/
|
|
11181
|
+
get UpdatedAt(): Date;
|
|
11182
|
+
/**
|
|
11183
|
+
* * Field Name: Action
|
|
11184
|
+
* * Display Name: Action
|
|
11185
|
+
* * SQL Data Type: nvarchar(425)
|
|
11186
|
+
*/
|
|
11187
|
+
get Action(): string;
|
|
11188
|
+
/**
|
|
11189
|
+
* * Field Name: ContextType
|
|
11190
|
+
* * Display Name: Context Type
|
|
11191
|
+
* * SQL Data Type: nvarchar(255)
|
|
11192
|
+
*/
|
|
11193
|
+
get ContextType(): string;
|
|
11194
|
+
}
|
|
11195
|
+
/**
|
|
11196
|
+
* Action Execution Logs - strongly typed entity sub-class
|
|
11197
|
+
* * Schema: __mj
|
|
11198
|
+
* * Base Table: ActionExecutionLog
|
|
11199
|
+
* * Base View: vwActionExecutionLogs
|
|
11200
|
+
* * @description Tracks every execution of an action, including start and end times, inputs, outputs, and result codes.
|
|
11201
|
+
* * Primary Key: ID
|
|
11202
|
+
* @extends {BaseEntity}
|
|
11203
|
+
* @class
|
|
11204
|
+
* @public
|
|
11205
|
+
*/
|
|
11206
|
+
export declare class ActionExecutionLogEntity extends BaseEntity {
|
|
11207
|
+
/**
|
|
11208
|
+
* Loads the Action Execution Logs record from the database
|
|
11209
|
+
* @param ID: number - primary key value to load the Action Execution Logs record.
|
|
11210
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11211
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11212
|
+
* @public
|
|
11213
|
+
* @async
|
|
11214
|
+
* @memberof ActionExecutionLogEntity
|
|
11215
|
+
* @method
|
|
11216
|
+
* @override
|
|
11217
|
+
*/
|
|
11218
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11219
|
+
/**
|
|
11220
|
+
* * Field Name: ID
|
|
11221
|
+
* * Display Name: ID
|
|
11222
|
+
* * SQL Data Type: int
|
|
11223
|
+
*/
|
|
11224
|
+
get ID(): number;
|
|
11225
|
+
/**
|
|
11226
|
+
* * Field Name: ActionID
|
|
11227
|
+
* * Display Name: Action ID
|
|
11228
|
+
* * SQL Data Type: int
|
|
11229
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
11230
|
+
*/
|
|
11231
|
+
get ActionID(): number;
|
|
11232
|
+
set ActionID(value: number);
|
|
11233
|
+
/**
|
|
11234
|
+
* * Field Name: StartedAt
|
|
11235
|
+
* * Display Name: Started At
|
|
11236
|
+
* * SQL Data Type: datetime
|
|
11237
|
+
* * Description: Timestamp of when the action started execution.
|
|
11238
|
+
*/
|
|
11239
|
+
get StartedAt(): Date;
|
|
11240
|
+
set StartedAt(value: Date);
|
|
11241
|
+
/**
|
|
11242
|
+
* * Field Name: EndedAt
|
|
11243
|
+
* * Display Name: Ended At
|
|
11244
|
+
* * SQL Data Type: datetime
|
|
11245
|
+
* * Description: Timestamp of when the action ended execution.
|
|
11246
|
+
*/
|
|
11247
|
+
get EndedAt(): Date | null;
|
|
11248
|
+
set EndedAt(value: Date | null);
|
|
11249
|
+
/**
|
|
11250
|
+
* * Field Name: Params
|
|
11251
|
+
* * Display Name: Params
|
|
11252
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11253
|
+
*/
|
|
11254
|
+
get Params(): string | null;
|
|
11255
|
+
set Params(value: string | null);
|
|
11256
|
+
/**
|
|
11257
|
+
* * Field Name: ResultCode
|
|
11258
|
+
* * Display Name: Result Code
|
|
11259
|
+
* * SQL Data Type: nvarchar(255)
|
|
11260
|
+
*/
|
|
11261
|
+
get ResultCode(): string | null;
|
|
11262
|
+
set ResultCode(value: string | null);
|
|
11263
|
+
/**
|
|
11264
|
+
* * Field Name: UserID
|
|
11265
|
+
* * Display Name: User ID
|
|
11266
|
+
* * SQL Data Type: int
|
|
11267
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
11268
|
+
*/
|
|
11269
|
+
get UserID(): number;
|
|
11270
|
+
set UserID(value: number);
|
|
11271
|
+
/**
|
|
11272
|
+
* * Field Name: RetentionPeriod
|
|
11273
|
+
* * Display Name: Retention Period
|
|
11274
|
+
* * SQL Data Type: int
|
|
11275
|
+
* * Description: Number of days to retain the log; NULL for indefinite retention.
|
|
11276
|
+
*/
|
|
11277
|
+
get RetentionPeriod(): number | null;
|
|
11278
|
+
set RetentionPeriod(value: number | null);
|
|
11279
|
+
/**
|
|
11280
|
+
* * Field Name: CreatedAt
|
|
11281
|
+
* * Display Name: Created At
|
|
11282
|
+
* * SQL Data Type: datetime
|
|
11283
|
+
*/
|
|
11284
|
+
get CreatedAt(): Date;
|
|
11285
|
+
/**
|
|
11286
|
+
* * Field Name: UpdatedAt
|
|
11287
|
+
* * Display Name: Updated At
|
|
11288
|
+
* * SQL Data Type: datetime
|
|
11289
|
+
*/
|
|
11290
|
+
get UpdatedAt(): Date;
|
|
11291
|
+
/**
|
|
11292
|
+
* * Field Name: Action
|
|
11293
|
+
* * Display Name: Action
|
|
11294
|
+
* * SQL Data Type: nvarchar(425)
|
|
11295
|
+
*/
|
|
11296
|
+
get Action(): string;
|
|
11297
|
+
/**
|
|
11298
|
+
* * Field Name: User
|
|
11299
|
+
* * Display Name: User
|
|
11300
|
+
* * SQL Data Type: nvarchar(100)
|
|
11301
|
+
*/
|
|
11302
|
+
get User(): string;
|
|
11303
|
+
}
|
|
11304
|
+
/**
|
|
11305
|
+
* Action Params - strongly typed entity sub-class
|
|
11306
|
+
* * Schema: __mj
|
|
11307
|
+
* * Base Table: ActionParam
|
|
11308
|
+
* * Base View: vwActionParams
|
|
11309
|
+
* * @description Tracks the input and output parameters for Actions.
|
|
11310
|
+
* * Primary Key: ID
|
|
11311
|
+
* @extends {BaseEntity}
|
|
11312
|
+
* @class
|
|
11313
|
+
* @public
|
|
11314
|
+
*/
|
|
11315
|
+
export declare class ActionParamEntity extends BaseEntity {
|
|
11316
|
+
/**
|
|
11317
|
+
* Loads the Action Params record from the database
|
|
11318
|
+
* @param ID: number - primary key value to load the Action Params record.
|
|
11319
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11320
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11321
|
+
* @public
|
|
11322
|
+
* @async
|
|
11323
|
+
* @memberof ActionParamEntity
|
|
11324
|
+
* @method
|
|
11325
|
+
* @override
|
|
11326
|
+
*/
|
|
11327
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11328
|
+
/**
|
|
11329
|
+
* * Field Name: ID
|
|
11330
|
+
* * Display Name: ID
|
|
11331
|
+
* * SQL Data Type: int
|
|
11332
|
+
*/
|
|
11333
|
+
get ID(): number;
|
|
11334
|
+
/**
|
|
11335
|
+
* * Field Name: ActionID
|
|
11336
|
+
* * Display Name: Action ID
|
|
11337
|
+
* * SQL Data Type: int
|
|
11338
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
11339
|
+
*/
|
|
11340
|
+
get ActionID(): number;
|
|
11341
|
+
set ActionID(value: number);
|
|
11342
|
+
/**
|
|
11343
|
+
* * Field Name: Name
|
|
11344
|
+
* * Display Name: Name
|
|
11345
|
+
* * SQL Data Type: nvarchar(255)
|
|
11346
|
+
*/
|
|
11347
|
+
get Name(): string;
|
|
11348
|
+
set Name(value: string);
|
|
11349
|
+
/**
|
|
11350
|
+
* * Field Name: DefaultValue
|
|
11351
|
+
* * Display Name: Default Value
|
|
11352
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11353
|
+
*/
|
|
11354
|
+
get DefaultValue(): string | null;
|
|
11355
|
+
set DefaultValue(value: string | null);
|
|
11356
|
+
/**
|
|
11357
|
+
* * Field Name: Type
|
|
11358
|
+
* * Display Name: Type
|
|
11359
|
+
* * SQL Data Type: nchar(10)
|
|
11360
|
+
* * Value List Type: List
|
|
11361
|
+
* * Possible Values
|
|
11362
|
+
* * Input
|
|
11363
|
+
* * Output
|
|
11364
|
+
* * Both
|
|
11365
|
+
*/
|
|
11366
|
+
get Type(): 'Input' | 'Output' | 'Both';
|
|
11367
|
+
set Type(value: 'Input' | 'Output' | 'Both');
|
|
11368
|
+
/**
|
|
11369
|
+
* * Field Name: ValueType
|
|
11370
|
+
* * Display Name: Value Type
|
|
11371
|
+
* * SQL Data Type: nvarchar(30)
|
|
11372
|
+
* * Value List Type: List
|
|
11373
|
+
* * Possible Values
|
|
11374
|
+
* * Scalar
|
|
11375
|
+
* * Simple Object
|
|
11376
|
+
* * BaseEntity Sub-Class
|
|
11377
|
+
* * Other
|
|
11378
|
+
* * Description: Tracks the basic value type of the parameter, additional information can be provided in the Description field
|
|
11379
|
+
*/
|
|
11380
|
+
get ValueType(): 'Scalar' | 'Simple Object' | 'BaseEntity Sub-Class' | 'Other';
|
|
11381
|
+
set ValueType(value: 'Scalar' | 'Simple Object' | 'BaseEntity Sub-Class' | 'Other');
|
|
11382
|
+
/**
|
|
11383
|
+
* * Field Name: IsArray
|
|
11384
|
+
* * Display Name: Is Array
|
|
11385
|
+
* * SQL Data Type: bit
|
|
11386
|
+
*/
|
|
11387
|
+
get IsArray(): boolean;
|
|
11388
|
+
set IsArray(value: boolean);
|
|
11389
|
+
/**
|
|
11390
|
+
* * Field Name: Description
|
|
11391
|
+
* * Display Name: Description
|
|
11392
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11393
|
+
*/
|
|
11394
|
+
get Description(): string | null;
|
|
11395
|
+
set Description(value: string | null);
|
|
11396
|
+
/**
|
|
11397
|
+
* * Field Name: IsRequired
|
|
11398
|
+
* * Display Name: Is Required
|
|
11399
|
+
* * SQL Data Type: bit
|
|
11400
|
+
*/
|
|
11401
|
+
get IsRequired(): boolean;
|
|
11402
|
+
set IsRequired(value: boolean);
|
|
11403
|
+
/**
|
|
11404
|
+
* * Field Name: CreatedAt
|
|
11405
|
+
* * Display Name: Created At
|
|
11406
|
+
* * SQL Data Type: datetime
|
|
11407
|
+
*/
|
|
11408
|
+
get CreatedAt(): Date;
|
|
11409
|
+
/**
|
|
11410
|
+
* * Field Name: UpdatedAt
|
|
11411
|
+
* * Display Name: Updated At
|
|
11412
|
+
* * SQL Data Type: datetime
|
|
11413
|
+
*/
|
|
11414
|
+
get UpdatedAt(): Date;
|
|
11415
|
+
/**
|
|
11416
|
+
* * Field Name: Action
|
|
11417
|
+
* * Display Name: Action
|
|
11418
|
+
* * SQL Data Type: nvarchar(425)
|
|
11419
|
+
*/
|
|
11420
|
+
get Action(): string;
|
|
11421
|
+
}
|
|
11422
|
+
/**
|
|
11423
|
+
* Action Libraries - strongly typed entity sub-class
|
|
11424
|
+
* * Schema: __mj
|
|
11425
|
+
* * Base Table: ActionLibrary
|
|
11426
|
+
* * Base View: vwActionLibraries
|
|
11427
|
+
* * @description Tracks the list of libraries that a given Action uses, including a list of classes/functions for each library.
|
|
11428
|
+
* * Primary Key: ID
|
|
11429
|
+
* @extends {BaseEntity}
|
|
11430
|
+
* @class
|
|
11431
|
+
* @public
|
|
11432
|
+
*/
|
|
11433
|
+
export declare class ActionLibraryEntity extends BaseEntity {
|
|
11434
|
+
/**
|
|
11435
|
+
* Loads the Action Libraries record from the database
|
|
11436
|
+
* @param ID: number - primary key value to load the Action Libraries record.
|
|
11437
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11438
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11439
|
+
* @public
|
|
11440
|
+
* @async
|
|
11441
|
+
* @memberof ActionLibraryEntity
|
|
11442
|
+
* @method
|
|
11443
|
+
* @override
|
|
11444
|
+
*/
|
|
11445
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11446
|
+
/**
|
|
11447
|
+
* * Field Name: ID
|
|
11448
|
+
* * Display Name: ID
|
|
11449
|
+
* * SQL Data Type: int
|
|
11450
|
+
*/
|
|
11451
|
+
get ID(): number;
|
|
11452
|
+
/**
|
|
11453
|
+
* * Field Name: ActionID
|
|
11454
|
+
* * Display Name: Action ID
|
|
11455
|
+
* * SQL Data Type: int
|
|
11456
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
11457
|
+
*/
|
|
11458
|
+
get ActionID(): number;
|
|
11459
|
+
set ActionID(value: number);
|
|
11460
|
+
/**
|
|
11461
|
+
* * Field Name: LibraryID
|
|
11462
|
+
* * Display Name: Library ID
|
|
11463
|
+
* * SQL Data Type: int
|
|
11464
|
+
* * Related Entity/Foreign Key: Libraries (vwLibraries.ID)
|
|
11465
|
+
*/
|
|
11466
|
+
get LibraryID(): number;
|
|
11467
|
+
set LibraryID(value: number);
|
|
11468
|
+
/**
|
|
11469
|
+
* * Field Name: ItemsUsed
|
|
11470
|
+
* * Display Name: Items Used
|
|
11471
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11472
|
+
* * Description: List of classes and functions used by the action from the library.
|
|
11473
|
+
*/
|
|
11474
|
+
get ItemsUsed(): string | null;
|
|
11475
|
+
set ItemsUsed(value: string | null);
|
|
11476
|
+
/**
|
|
11477
|
+
* * Field Name: CreatedAt
|
|
11478
|
+
* * Display Name: Created At
|
|
11479
|
+
* * SQL Data Type: datetime
|
|
11480
|
+
*/
|
|
11481
|
+
get CreatedAt(): Date;
|
|
11482
|
+
/**
|
|
11483
|
+
* * Field Name: UpdatedAt
|
|
11484
|
+
* * Display Name: Updated At
|
|
11485
|
+
* * SQL Data Type: datetime
|
|
11486
|
+
*/
|
|
11487
|
+
get UpdatedAt(): Date;
|
|
11488
|
+
/**
|
|
11489
|
+
* * Field Name: Action
|
|
11490
|
+
* * Display Name: Action
|
|
11491
|
+
* * SQL Data Type: nvarchar(425)
|
|
11492
|
+
*/
|
|
11493
|
+
get Action(): string;
|
|
11494
|
+
/**
|
|
11495
|
+
* * Field Name: Library
|
|
11496
|
+
* * Display Name: Library
|
|
11497
|
+
* * SQL Data Type: nvarchar(255)
|
|
11498
|
+
*/
|
|
11499
|
+
get Library(): string;
|
|
11500
|
+
}
|
|
11501
|
+
/**
|
|
11502
|
+
* Libraries - strongly typed entity sub-class
|
|
11503
|
+
* * Schema: __mj
|
|
11504
|
+
* * Base Table: Library
|
|
11505
|
+
* * Base View: vwLibraries
|
|
11506
|
+
* * @description Stores information about the available libraries, including a list of classes/functions, type definitions, and sample code. You can add additional custom libraries here to make them avaialable to code generation features within the system.
|
|
11507
|
+
* * Primary Key: ID
|
|
11508
|
+
* @extends {BaseEntity}
|
|
11509
|
+
* @class
|
|
11510
|
+
* @public
|
|
11511
|
+
*/
|
|
11512
|
+
export declare class LibraryEntity extends BaseEntity {
|
|
11513
|
+
/**
|
|
11514
|
+
* Loads the Libraries record from the database
|
|
11515
|
+
* @param ID: number - primary key value to load the Libraries record.
|
|
11516
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11517
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11518
|
+
* @public
|
|
11519
|
+
* @async
|
|
11520
|
+
* @memberof LibraryEntity
|
|
11521
|
+
* @method
|
|
11522
|
+
* @override
|
|
11523
|
+
*/
|
|
11524
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11525
|
+
/**
|
|
11526
|
+
* Libraries - 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.
|
|
11527
|
+
* @public
|
|
11528
|
+
* @method
|
|
11529
|
+
* @override
|
|
11530
|
+
* @memberof LibraryEntity
|
|
11531
|
+
* @throws {Error} - Delete is not allowed for Libraries, to enable it set AllowDeleteAPI to 1 in the database.
|
|
11532
|
+
*/
|
|
11533
|
+
Delete(): Promise<boolean>;
|
|
11534
|
+
/**
|
|
11535
|
+
* * Field Name: ID
|
|
11536
|
+
* * Display Name: ID
|
|
11537
|
+
* * SQL Data Type: int
|
|
11538
|
+
*/
|
|
11539
|
+
get ID(): number;
|
|
11540
|
+
/**
|
|
11541
|
+
* * Field Name: Name
|
|
11542
|
+
* * Display Name: Name
|
|
11543
|
+
* * SQL Data Type: nvarchar(255)
|
|
11544
|
+
*/
|
|
11545
|
+
get Name(): string;
|
|
11546
|
+
set Name(value: string);
|
|
11547
|
+
/**
|
|
11548
|
+
* * Field Name: Description
|
|
11549
|
+
* * Display Name: Description
|
|
11550
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11551
|
+
*/
|
|
11552
|
+
get Description(): string | null;
|
|
11553
|
+
set Description(value: string | null);
|
|
11554
|
+
/**
|
|
11555
|
+
* * Field Name: Status
|
|
11556
|
+
* * Display Name: Status
|
|
11557
|
+
* * SQL Data Type: nvarchar(20)
|
|
11558
|
+
* * Value List Type: List
|
|
11559
|
+
* * Possible Values
|
|
11560
|
+
* * Pending
|
|
11561
|
+
* * Active
|
|
11562
|
+
* * Disabled
|
|
11563
|
+
* * Description: Status of the library, only libraries marked as Active will be available for use by generated code. If a library was once active but no longer is, existing code that used the library will not be affected.
|
|
11564
|
+
*/
|
|
11565
|
+
get Status(): 'Pending' | 'Active' | 'Disabled';
|
|
11566
|
+
set Status(value: 'Pending' | 'Active' | 'Disabled');
|
|
11567
|
+
/**
|
|
11568
|
+
* * Field Name: ExportedItems
|
|
11569
|
+
* * Display Name: Exported Items
|
|
11570
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11571
|
+
* * Description: List of classes and functions exported by the library.
|
|
11572
|
+
*/
|
|
11573
|
+
get ExportedItems(): string | null;
|
|
11574
|
+
set ExportedItems(value: string | null);
|
|
11575
|
+
/**
|
|
11576
|
+
* * Field Name: TypeDefinitions
|
|
11577
|
+
* * Display Name: Type Definitions
|
|
11578
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11579
|
+
* * Description: Code showing the types and functions defined in the library to be used for reference by humans and AI
|
|
11580
|
+
*/
|
|
11581
|
+
get TypeDefinitions(): string | null;
|
|
11582
|
+
set TypeDefinitions(value: string | null);
|
|
11583
|
+
/**
|
|
11584
|
+
* * Field Name: SampleCode
|
|
11585
|
+
* * Display Name: Sample Code
|
|
11586
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11587
|
+
* * Description: Examples of code use of the classes and/or functions from within the library
|
|
11588
|
+
*/
|
|
11589
|
+
get SampleCode(): string | null;
|
|
11590
|
+
set SampleCode(value: string | null);
|
|
11591
|
+
/**
|
|
11592
|
+
* * Field Name: CreatedAt
|
|
11593
|
+
* * Display Name: Created At
|
|
11594
|
+
* * SQL Data Type: datetime
|
|
11595
|
+
*/
|
|
11596
|
+
get CreatedAt(): Date;
|
|
11597
|
+
/**
|
|
11598
|
+
* * Field Name: UpdatedAt
|
|
11599
|
+
* * Display Name: Updated At
|
|
11600
|
+
* * SQL Data Type: datetime
|
|
11601
|
+
*/
|
|
11602
|
+
get UpdatedAt(): Date;
|
|
11603
|
+
}
|
|
11604
|
+
/**
|
|
11605
|
+
* List Categories - strongly typed entity sub-class
|
|
11606
|
+
* * Schema: __mj
|
|
11607
|
+
* * Base Table: ListCategory
|
|
11608
|
+
* * Base View: vwListCategories
|
|
11609
|
+
* * Primary Key: ID
|
|
11610
|
+
* @extends {BaseEntity}
|
|
11611
|
+
* @class
|
|
11612
|
+
* @public
|
|
11613
|
+
*/
|
|
11614
|
+
export declare class ListCategoryEntity extends BaseEntity {
|
|
11615
|
+
/**
|
|
11616
|
+
* Loads the List Categories record from the database
|
|
11617
|
+
* @param ID: number - primary key value to load the List Categories record.
|
|
11618
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11619
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11620
|
+
* @public
|
|
11621
|
+
* @async
|
|
11622
|
+
* @memberof ListCategoryEntity
|
|
11623
|
+
* @method
|
|
11624
|
+
* @override
|
|
11625
|
+
*/
|
|
11626
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11627
|
+
/**
|
|
11628
|
+
* List 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.
|
|
11629
|
+
* @public
|
|
11630
|
+
* @method
|
|
11631
|
+
* @override
|
|
11632
|
+
* @memberof ListCategoryEntity
|
|
11633
|
+
* @throws {Error} - Delete is not allowed for List Categories, to enable it set AllowDeleteAPI to 1 in the database.
|
|
11634
|
+
*/
|
|
11635
|
+
Delete(): Promise<boolean>;
|
|
11636
|
+
/**
|
|
11637
|
+
* * Field Name: ID
|
|
11638
|
+
* * Display Name: ID
|
|
11639
|
+
* * SQL Data Type: int
|
|
11640
|
+
*/
|
|
11641
|
+
get ID(): number;
|
|
11642
|
+
/**
|
|
11643
|
+
* * Field Name: Name
|
|
11644
|
+
* * Display Name: Name
|
|
11645
|
+
* * SQL Data Type: nvarchar(100)
|
|
11646
|
+
*/
|
|
11647
|
+
get Name(): string;
|
|
11648
|
+
set Name(value: string);
|
|
11649
|
+
/**
|
|
11650
|
+
* * Field Name: Description
|
|
11651
|
+
* * Display Name: Description
|
|
11652
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11653
|
+
*/
|
|
11654
|
+
get Description(): string | null;
|
|
11655
|
+
set Description(value: string | null);
|
|
11656
|
+
/**
|
|
11657
|
+
* * Field Name: ParentID
|
|
11658
|
+
* * Display Name: Parent ID
|
|
11659
|
+
* * SQL Data Type: int
|
|
11660
|
+
*/
|
|
11661
|
+
get ParentID(): number | null;
|
|
11662
|
+
set ParentID(value: number | null);
|
|
11663
|
+
/**
|
|
11664
|
+
* * Field Name: CreatedAt
|
|
11665
|
+
* * Display Name: Created At
|
|
11666
|
+
* * SQL Data Type: datetime
|
|
11667
|
+
*/
|
|
11668
|
+
get CreatedAt(): Date;
|
|
11669
|
+
/**
|
|
11670
|
+
* * Field Name: UpdatedAt
|
|
11671
|
+
* * Display Name: Updated At
|
|
11672
|
+
* * SQL Data Type: datetime
|
|
11673
|
+
*/
|
|
11674
|
+
get UpdatedAt(): Date;
|
|
11675
|
+
/**
|
|
11676
|
+
* * Field Name: UserID
|
|
11677
|
+
* * Display Name: User ID
|
|
11678
|
+
* * SQL Data Type: int
|
|
11679
|
+
*/
|
|
11680
|
+
get UserID(): number;
|
|
11681
|
+
set UserID(value: number);
|
|
11682
|
+
}
|
|
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
|
+
/**
|
|
11771
|
+
* Communication Providers - strongly typed entity sub-class
|
|
11772
|
+
* * Schema: __mj
|
|
11773
|
+
* * Base Table: CommunicationProvider
|
|
11774
|
+
* * Base View: vwCommunicationProviders
|
|
11775
|
+
* * @description All supported communication providers.
|
|
11776
|
+
* * Primary Key: ID
|
|
11777
|
+
* @extends {BaseEntity}
|
|
11778
|
+
* @class
|
|
11779
|
+
* @public
|
|
11780
|
+
*/
|
|
11781
|
+
export declare class CommunicationProviderEntity extends BaseEntity {
|
|
11782
|
+
/**
|
|
11783
|
+
* Loads the Communication Providers record from the database
|
|
11784
|
+
* @param ID: number - primary key value to load the Communication Providers record.
|
|
11785
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11786
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11787
|
+
* @public
|
|
11788
|
+
* @async
|
|
11789
|
+
* @memberof CommunicationProviderEntity
|
|
11790
|
+
* @method
|
|
11791
|
+
* @override
|
|
11792
|
+
*/
|
|
11793
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11794
|
+
/**
|
|
11795
|
+
* Communication 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.
|
|
11796
|
+
* @public
|
|
11797
|
+
* @method
|
|
11798
|
+
* @override
|
|
11799
|
+
* @memberof CommunicationProviderEntity
|
|
11800
|
+
* @throws {Error} - Delete is not allowed for Communication Providers, to enable it set AllowDeleteAPI to 1 in the database.
|
|
11801
|
+
*/
|
|
11802
|
+
Delete(): Promise<boolean>;
|
|
11803
|
+
/**
|
|
11804
|
+
* * Field Name: ID
|
|
11805
|
+
* * Display Name: ID
|
|
11806
|
+
* * SQL Data Type: int
|
|
11807
|
+
*/
|
|
11808
|
+
get ID(): number;
|
|
11809
|
+
/**
|
|
11810
|
+
* * Field Name: Name
|
|
11811
|
+
* * Display Name: Name
|
|
11812
|
+
* * SQL Data Type: nvarchar(255)
|
|
11813
|
+
*/
|
|
11814
|
+
get Name(): string;
|
|
11815
|
+
set Name(value: string);
|
|
11816
|
+
/**
|
|
11817
|
+
* * Field Name: Description
|
|
11818
|
+
* * Display Name: Description
|
|
11819
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11820
|
+
*/
|
|
11821
|
+
get Description(): string | null;
|
|
11822
|
+
set Description(value: string | null);
|
|
11823
|
+
/**
|
|
11824
|
+
* * Field Name: Status
|
|
11825
|
+
* * Display Name: Status
|
|
11826
|
+
* * SQL Data Type: nvarchar(20)
|
|
11827
|
+
* * Value List Type: List
|
|
11828
|
+
* * Possible Values
|
|
11829
|
+
* * Disabled
|
|
11830
|
+
* * Active
|
|
11831
|
+
* * Description: The status of the communication provider (Disabled or Active).
|
|
11832
|
+
*/
|
|
11833
|
+
get Status(): 'Disabled' | 'Active';
|
|
11834
|
+
set Status(value: 'Disabled' | 'Active');
|
|
11835
|
+
/**
|
|
11836
|
+
* * Field Name: SupportsSending
|
|
11837
|
+
* * Display Name: Supports Sending
|
|
11838
|
+
* * SQL Data Type: bit
|
|
11839
|
+
* * Description: Indicates if the provider supports sending messages.
|
|
11840
|
+
*/
|
|
11841
|
+
get SupportsSending(): boolean;
|
|
11842
|
+
set SupportsSending(value: boolean);
|
|
11843
|
+
/**
|
|
11844
|
+
* * Field Name: SupportsReceiving
|
|
11845
|
+
* * Display Name: Supports Receiving
|
|
11846
|
+
* * SQL Data Type: bit
|
|
11847
|
+
* * Description: Indicates if the provider supports receiving messages.
|
|
11848
|
+
*/
|
|
11849
|
+
get SupportsReceiving(): boolean;
|
|
11850
|
+
set SupportsReceiving(value: boolean);
|
|
11851
|
+
/**
|
|
11852
|
+
* * Field Name: CreatedAt
|
|
11853
|
+
* * Display Name: Created At
|
|
11854
|
+
* * SQL Data Type: datetime
|
|
11855
|
+
*/
|
|
11856
|
+
get CreatedAt(): Date;
|
|
11857
|
+
/**
|
|
11858
|
+
* * Field Name: UpdatedAt
|
|
11859
|
+
* * Display Name: Updated At
|
|
11860
|
+
* * SQL Data Type: datetime
|
|
11861
|
+
*/
|
|
11862
|
+
get UpdatedAt(): Date;
|
|
11863
|
+
}
|
|
11864
|
+
/**
|
|
11865
|
+
* Communication Runs - strongly typed entity sub-class
|
|
11866
|
+
* * Schema: __mj
|
|
11867
|
+
* * Base Table: CommunicationRun
|
|
11868
|
+
* * Base View: vwCommunicationRuns
|
|
11869
|
+
* * @description Runs of bulk message sends and receives.
|
|
11870
|
+
* * Primary Key: ID
|
|
11871
|
+
* @extends {BaseEntity}
|
|
11872
|
+
* @class
|
|
11873
|
+
* @public
|
|
11874
|
+
*/
|
|
11875
|
+
export declare class CommunicationRunEntity extends BaseEntity {
|
|
11876
|
+
/**
|
|
11877
|
+
* Loads the Communication Runs record from the database
|
|
11878
|
+
* @param ID: number - primary key value to load the Communication Runs record.
|
|
11879
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11880
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11881
|
+
* @public
|
|
11882
|
+
* @async
|
|
11883
|
+
* @memberof CommunicationRunEntity
|
|
11884
|
+
* @method
|
|
11885
|
+
* @override
|
|
11886
|
+
*/
|
|
11887
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11888
|
+
/**
|
|
11889
|
+
* Communication 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.
|
|
11890
|
+
* @public
|
|
11891
|
+
* @method
|
|
11892
|
+
* @override
|
|
11893
|
+
* @memberof CommunicationRunEntity
|
|
11894
|
+
* @throws {Error} - Delete is not allowed for Communication Runs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
11895
|
+
*/
|
|
11896
|
+
Delete(): Promise<boolean>;
|
|
11897
|
+
/**
|
|
11898
|
+
* * Field Name: ID
|
|
11899
|
+
* * Display Name: ID
|
|
11900
|
+
* * SQL Data Type: int
|
|
11901
|
+
*/
|
|
11902
|
+
get ID(): number;
|
|
11903
|
+
/**
|
|
11904
|
+
* * Field Name: UserID
|
|
11905
|
+
* * Display Name: User ID
|
|
11906
|
+
* * SQL Data Type: int
|
|
11907
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
11908
|
+
*/
|
|
11909
|
+
get UserID(): number;
|
|
11910
|
+
set UserID(value: number);
|
|
11911
|
+
/**
|
|
11912
|
+
* * Field Name: Direction
|
|
11913
|
+
* * Display Name: Direction
|
|
11914
|
+
* * SQL Data Type: nvarchar(20)
|
|
11915
|
+
* * Value List Type: List
|
|
11916
|
+
* * Possible Values
|
|
11917
|
+
* * Sending
|
|
11918
|
+
* * Receiving
|
|
11919
|
+
* * Description: The direction of the communication run (Sending or Receiving).
|
|
11920
|
+
*/
|
|
11921
|
+
get Direction(): 'Sending' | 'Receiving';
|
|
11922
|
+
set Direction(value: 'Sending' | 'Receiving');
|
|
11923
|
+
/**
|
|
11924
|
+
* * Field Name: Status
|
|
11925
|
+
* * Display Name: Status
|
|
11926
|
+
* * SQL Data Type: nvarchar(20)
|
|
11927
|
+
* * Value List Type: List
|
|
11928
|
+
* * Possible Values
|
|
11929
|
+
* * Pending
|
|
11930
|
+
* * In-Progress
|
|
11931
|
+
* * Complete
|
|
11932
|
+
* * Failed
|
|
11933
|
+
* * Description: The status of the communication run (Pending, In-Progress, Complete, Failed).
|
|
11934
|
+
*/
|
|
11935
|
+
get Status(): 'Pending' | 'In-Progress' | 'Complete' | 'Failed';
|
|
11936
|
+
set Status(value: 'Pending' | 'In-Progress' | 'Complete' | 'Failed');
|
|
11937
|
+
/**
|
|
11938
|
+
* * Field Name: Comments
|
|
11939
|
+
* * Display Name: Comments
|
|
11940
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11941
|
+
*/
|
|
11942
|
+
get Comments(): string | null;
|
|
11943
|
+
set Comments(value: string | null);
|
|
11944
|
+
/**
|
|
11945
|
+
* * Field Name: ErrorMessage
|
|
11946
|
+
* * Display Name: Error Message
|
|
11947
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11948
|
+
* * Description: The error message if the communication run failed.
|
|
11949
|
+
*/
|
|
11950
|
+
get ErrorMessage(): string | null;
|
|
11951
|
+
set ErrorMessage(value: string | null);
|
|
11952
|
+
/**
|
|
11953
|
+
* * Field Name: CreatedAt
|
|
11954
|
+
* * Display Name: Created At
|
|
11955
|
+
* * SQL Data Type: datetime
|
|
11956
|
+
*/
|
|
11957
|
+
get CreatedAt(): Date;
|
|
11958
|
+
/**
|
|
11959
|
+
* * Field Name: UpdatedAt
|
|
11960
|
+
* * Display Name: Updated At
|
|
11961
|
+
* * SQL Data Type: datetime
|
|
11962
|
+
*/
|
|
11963
|
+
get UpdatedAt(): Date;
|
|
11964
|
+
/**
|
|
11965
|
+
* * Field Name: User
|
|
11966
|
+
* * Display Name: User
|
|
11967
|
+
* * SQL Data Type: nvarchar(100)
|
|
11968
|
+
*/
|
|
11969
|
+
get User(): string;
|
|
11970
|
+
}
|
|
11971
|
+
/**
|
|
11972
|
+
* Communication Provider Message Types - strongly typed entity sub-class
|
|
11973
|
+
* * Schema: __mj
|
|
11974
|
+
* * Base Table: CommunicationProviderMessageType
|
|
11975
|
+
* * Base View: vwCommunicationProviderMessageTypes
|
|
11976
|
+
* * @description Providers and their supported message types with additional attributes.
|
|
11977
|
+
* * Primary Key: ID
|
|
11978
|
+
* @extends {BaseEntity}
|
|
11979
|
+
* @class
|
|
11980
|
+
* @public
|
|
11981
|
+
*/
|
|
11982
|
+
export declare class CommunicationProviderMessageTypeEntity extends BaseEntity {
|
|
11983
|
+
/**
|
|
11984
|
+
* Loads the Communication Provider Message Types record from the database
|
|
11985
|
+
* @param ID: number - primary key value to load the Communication Provider Message Types record.
|
|
11986
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
11987
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
11988
|
+
* @public
|
|
11989
|
+
* @async
|
|
11990
|
+
* @memberof CommunicationProviderMessageTypeEntity
|
|
11991
|
+
* @method
|
|
11992
|
+
* @override
|
|
11993
|
+
*/
|
|
11994
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
11995
|
+
/**
|
|
11996
|
+
* Communication Provider Message Types - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
11997
|
+
* @public
|
|
11998
|
+
* @method
|
|
11999
|
+
* @override
|
|
12000
|
+
* @memberof CommunicationProviderMessageTypeEntity
|
|
12001
|
+
* @throws {Error} - Delete is not allowed for Communication Provider Message Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
12002
|
+
*/
|
|
12003
|
+
Delete(): Promise<boolean>;
|
|
12004
|
+
/**
|
|
12005
|
+
* * Field Name: ID
|
|
12006
|
+
* * Display Name: ID
|
|
12007
|
+
* * SQL Data Type: int
|
|
12008
|
+
*/
|
|
12009
|
+
get ID(): number;
|
|
12010
|
+
/**
|
|
12011
|
+
* * Field Name: CommunicationProviderID
|
|
12012
|
+
* * Display Name: Communication Provider ID
|
|
12013
|
+
* * SQL Data Type: int
|
|
12014
|
+
* * Related Entity/Foreign Key: Communication Providers (vwCommunicationProviders.ID)
|
|
12015
|
+
*/
|
|
12016
|
+
get CommunicationProviderID(): number;
|
|
12017
|
+
set CommunicationProviderID(value: number);
|
|
12018
|
+
/**
|
|
12019
|
+
* * Field Name: CommunicationBaseMessageTypeID
|
|
12020
|
+
* * Display Name: Communication Base Message Type ID
|
|
12021
|
+
* * SQL Data Type: int
|
|
12022
|
+
* * Related Entity/Foreign Key: Communication Base Message Types (vwCommunicationBaseMessageTypes.ID)
|
|
12023
|
+
*/
|
|
12024
|
+
get CommunicationBaseMessageTypeID(): number;
|
|
12025
|
+
set CommunicationBaseMessageTypeID(value: number);
|
|
12026
|
+
/**
|
|
12027
|
+
* * Field Name: Name
|
|
12028
|
+
* * Display Name: Name
|
|
12029
|
+
* * SQL Data Type: nvarchar(255)
|
|
12030
|
+
*/
|
|
12031
|
+
get Name(): string;
|
|
12032
|
+
set Name(value: string);
|
|
12033
|
+
/**
|
|
12034
|
+
* * Field Name: Status
|
|
12035
|
+
* * Display Name: Status
|
|
12036
|
+
* * SQL Data Type: nvarchar(20)
|
|
12037
|
+
* * Value List Type: List
|
|
12038
|
+
* * Possible Values
|
|
12039
|
+
* * Disabled
|
|
12040
|
+
* * Active
|
|
12041
|
+
* * Description: The status of the provider message type (Disabled or Active).
|
|
12042
|
+
*/
|
|
12043
|
+
get Status(): 'Disabled' | 'Active';
|
|
12044
|
+
set Status(value: 'Disabled' | 'Active');
|
|
12045
|
+
/**
|
|
12046
|
+
* * Field Name: AdditionalAttributes
|
|
12047
|
+
* * Display Name: Additional Attributes
|
|
12048
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12049
|
+
* * Description: Additional attributes specific to the provider message type.
|
|
12050
|
+
*/
|
|
12051
|
+
get AdditionalAttributes(): string | null;
|
|
12052
|
+
set AdditionalAttributes(value: string | null);
|
|
12053
|
+
/**
|
|
12054
|
+
* * Field Name: CreatedAt
|
|
12055
|
+
* * Display Name: Created At
|
|
12056
|
+
* * SQL Data Type: datetime
|
|
12057
|
+
*/
|
|
12058
|
+
get CreatedAt(): Date;
|
|
12059
|
+
/**
|
|
12060
|
+
* * Field Name: UpdatedAt
|
|
12061
|
+
* * Display Name: Updated At
|
|
12062
|
+
* * SQL Data Type: datetime
|
|
12063
|
+
*/
|
|
12064
|
+
get UpdatedAt(): Date;
|
|
12065
|
+
/**
|
|
12066
|
+
* * Field Name: CommunicationProvider
|
|
12067
|
+
* * Display Name: Communication Provider
|
|
12068
|
+
* * SQL Data Type: nvarchar(255)
|
|
12069
|
+
*/
|
|
12070
|
+
get CommunicationProvider(): string;
|
|
12071
|
+
/**
|
|
12072
|
+
* * Field Name: CommunicationBaseMessageType
|
|
12073
|
+
* * Display Name: Communication Base Message Type
|
|
12074
|
+
* * SQL Data Type: nvarchar(100)
|
|
12075
|
+
*/
|
|
12076
|
+
get CommunicationBaseMessageType(): string;
|
|
12077
|
+
}
|
|
12078
|
+
/**
|
|
12079
|
+
* Communication Logs - strongly typed entity sub-class
|
|
12080
|
+
* * Schema: __mj
|
|
12081
|
+
* * Base Table: CommunicationLog
|
|
12082
|
+
* * Base View: vwCommunicationLogs
|
|
12083
|
+
* * @description Logs of sent and received messages.
|
|
12084
|
+
* * Primary Key: ID
|
|
12085
|
+
* @extends {BaseEntity}
|
|
12086
|
+
* @class
|
|
12087
|
+
* @public
|
|
12088
|
+
*/
|
|
12089
|
+
export declare class CommunicationLogEntity extends BaseEntity {
|
|
12090
|
+
/**
|
|
12091
|
+
* Loads the Communication Logs record from the database
|
|
12092
|
+
* @param ID: number - primary key value to load the Communication Logs record.
|
|
12093
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12094
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12095
|
+
* @public
|
|
12096
|
+
* @async
|
|
12097
|
+
* @memberof CommunicationLogEntity
|
|
12098
|
+
* @method
|
|
12099
|
+
* @override
|
|
12100
|
+
*/
|
|
12101
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
12102
|
+
/**
|
|
12103
|
+
* Communication Logs - 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.
|
|
12104
|
+
* @public
|
|
12105
|
+
* @method
|
|
12106
|
+
* @override
|
|
12107
|
+
* @memberof CommunicationLogEntity
|
|
12108
|
+
* @throws {Error} - Delete is not allowed for Communication Logs, to enable it set AllowDeleteAPI to 1 in the database.
|
|
12109
|
+
*/
|
|
12110
|
+
Delete(): Promise<boolean>;
|
|
12111
|
+
/**
|
|
12112
|
+
* * Field Name: ID
|
|
12113
|
+
* * Display Name: ID
|
|
12114
|
+
* * SQL Data Type: int
|
|
12115
|
+
*/
|
|
12116
|
+
get ID(): number;
|
|
12117
|
+
/**
|
|
12118
|
+
* * Field Name: CommunicationProviderID
|
|
12119
|
+
* * Display Name: Communication Provider ID
|
|
12120
|
+
* * SQL Data Type: int
|
|
12121
|
+
* * Related Entity/Foreign Key: Communication Providers (vwCommunicationProviders.ID)
|
|
12122
|
+
*/
|
|
12123
|
+
get CommunicationProviderID(): number;
|
|
12124
|
+
set CommunicationProviderID(value: number);
|
|
12125
|
+
/**
|
|
12126
|
+
* * Field Name: CommunicationProviderMessageTypeID
|
|
12127
|
+
* * Display Name: Communication Provider Message Type ID
|
|
12128
|
+
* * SQL Data Type: int
|
|
12129
|
+
* * Related Entity/Foreign Key: Communication Provider Message Types (vwCommunicationProviderMessageTypes.ID)
|
|
12130
|
+
*/
|
|
12131
|
+
get CommunicationProviderMessageTypeID(): number;
|
|
12132
|
+
set CommunicationProviderMessageTypeID(value: number);
|
|
12133
|
+
/**
|
|
12134
|
+
* * Field Name: CommunicationRunID
|
|
12135
|
+
* * Display Name: Communication Run ID
|
|
12136
|
+
* * SQL Data Type: int
|
|
12137
|
+
* * Related Entity/Foreign Key: Communication Runs (vwCommunicationRuns.ID)
|
|
12138
|
+
*/
|
|
12139
|
+
get CommunicationRunID(): number | null;
|
|
12140
|
+
set CommunicationRunID(value: number | null);
|
|
12141
|
+
/**
|
|
12142
|
+
* * Field Name: Direction
|
|
12143
|
+
* * Display Name: Direction
|
|
12144
|
+
* * SQL Data Type: nvarchar(20)
|
|
12145
|
+
* * Value List Type: List
|
|
12146
|
+
* * Possible Values
|
|
12147
|
+
* * Sending
|
|
12148
|
+
* * Receiving
|
|
12149
|
+
* * Description: The direction of the communication log (Sending or Receiving).
|
|
12150
|
+
*/
|
|
12151
|
+
get Direction(): 'Sending' | 'Receiving';
|
|
12152
|
+
set Direction(value: 'Sending' | 'Receiving');
|
|
12153
|
+
/**
|
|
12154
|
+
* * Field Name: MessageDate
|
|
12155
|
+
* * Display Name: Message Date
|
|
12156
|
+
* * SQL Data Type: datetime
|
|
12157
|
+
* * Description: The date and time when the message was logged.
|
|
12158
|
+
*/
|
|
12159
|
+
get MessageDate(): Date;
|
|
12160
|
+
set MessageDate(value: Date);
|
|
12161
|
+
/**
|
|
12162
|
+
* * Field Name: Status
|
|
12163
|
+
* * Display Name: Status
|
|
12164
|
+
* * SQL Data Type: nvarchar(50)
|
|
12165
|
+
* * Value List Type: List
|
|
12166
|
+
* * Possible Values
|
|
12167
|
+
* * Pending
|
|
12168
|
+
* * In-Progress
|
|
12169
|
+
* * Complete
|
|
12170
|
+
* * Failed
|
|
12171
|
+
* * Description: The status of the logged message (Pending, In-Progress, Complete, Failed).
|
|
12172
|
+
*/
|
|
12173
|
+
get Status(): 'Pending' | 'In-Progress' | 'Complete' | 'Failed';
|
|
12174
|
+
set Status(value: 'Pending' | 'In-Progress' | 'Complete' | 'Failed');
|
|
12175
|
+
/**
|
|
12176
|
+
* * Field Name: MessageContent
|
|
12177
|
+
* * Display Name: Message Content
|
|
12178
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12179
|
+
* * Description: The content of the logged message.
|
|
12180
|
+
*/
|
|
12181
|
+
get MessageContent(): string | null;
|
|
12182
|
+
set MessageContent(value: string | null);
|
|
12183
|
+
/**
|
|
12184
|
+
* * Field Name: ErrorMessage
|
|
12185
|
+
* * Display Name: Error Message
|
|
12186
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12187
|
+
* * Description: The error message if the message sending failed.
|
|
12188
|
+
*/
|
|
12189
|
+
get ErrorMessage(): string | null;
|
|
12190
|
+
set ErrorMessage(value: string | null);
|
|
12191
|
+
/**
|
|
12192
|
+
* * Field Name: CreatedAt
|
|
12193
|
+
* * Display Name: Created At
|
|
12194
|
+
* * SQL Data Type: datetime
|
|
12195
|
+
*/
|
|
12196
|
+
get CreatedAt(): Date;
|
|
12197
|
+
/**
|
|
12198
|
+
* * Field Name: UpdatedAt
|
|
12199
|
+
* * Display Name: Updated At
|
|
12200
|
+
* * SQL Data Type: datetime
|
|
12201
|
+
*/
|
|
12202
|
+
get UpdatedAt(): Date;
|
|
12203
|
+
/**
|
|
12204
|
+
* * Field Name: CommunicationProvider
|
|
12205
|
+
* * Display Name: Communication Provider
|
|
12206
|
+
* * SQL Data Type: nvarchar(255)
|
|
12207
|
+
*/
|
|
12208
|
+
get CommunicationProvider(): string;
|
|
12209
|
+
/**
|
|
12210
|
+
* * Field Name: CommunicationProviderMessageType
|
|
12211
|
+
* * Display Name: Communication Provider Message Type
|
|
12212
|
+
* * SQL Data Type: nvarchar(255)
|
|
12213
|
+
*/
|
|
12214
|
+
get CommunicationProviderMessageType(): string;
|
|
12215
|
+
}
|
|
12216
|
+
/**
|
|
12217
|
+
* Communication Base Message Types - strongly typed entity sub-class
|
|
12218
|
+
* * Schema: __mj
|
|
12219
|
+
* * Base Table: CommunicationBaseMessageType
|
|
12220
|
+
* * Base View: vwCommunicationBaseMessageTypes
|
|
12221
|
+
* * @description Base message types and their supported functionalities.
|
|
12222
|
+
* * Primary Key: ID
|
|
12223
|
+
* @extends {BaseEntity}
|
|
12224
|
+
* @class
|
|
12225
|
+
* @public
|
|
12226
|
+
*/
|
|
12227
|
+
export declare class CommunicationBaseMessageTypeEntity extends BaseEntity {
|
|
12228
|
+
/**
|
|
12229
|
+
* Loads the Communication Base Message Types record from the database
|
|
12230
|
+
* @param ID: number - primary key value to load the Communication Base Message Types record.
|
|
12231
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
12232
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
12233
|
+
* @public
|
|
12234
|
+
* @async
|
|
12235
|
+
* @memberof CommunicationBaseMessageTypeEntity
|
|
12236
|
+
* @method
|
|
12237
|
+
* @override
|
|
12238
|
+
*/
|
|
12239
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
12240
|
+
/**
|
|
12241
|
+
* Communication Base 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.
|
|
12242
|
+
* @public
|
|
12243
|
+
* @method
|
|
12244
|
+
* @override
|
|
12245
|
+
* @memberof CommunicationBaseMessageTypeEntity
|
|
12246
|
+
* @throws {Error} - Delete is not allowed for Communication Base Message Types, to enable it set AllowDeleteAPI to 1 in the database.
|
|
12247
|
+
*/
|
|
12248
|
+
Delete(): Promise<boolean>;
|
|
12249
|
+
/**
|
|
12250
|
+
* * Field Name: ID
|
|
12251
|
+
* * Display Name: ID
|
|
12252
|
+
* * SQL Data Type: int
|
|
12253
|
+
*/
|
|
12254
|
+
get ID(): number;
|
|
12255
|
+
/**
|
|
12256
|
+
* * Field Name: Type
|
|
12257
|
+
* * Display Name: Type
|
|
12258
|
+
* * SQL Data Type: nvarchar(100)
|
|
12259
|
+
*/
|
|
12260
|
+
get Type(): string;
|
|
12261
|
+
set Type(value: string);
|
|
12262
|
+
/**
|
|
12263
|
+
* * Field Name: SupportsAttachments
|
|
12264
|
+
* * Display Name: Supports Attachments
|
|
12265
|
+
* * SQL Data Type: bit
|
|
12266
|
+
* * Description: Indicates if attachments are supported.
|
|
12267
|
+
*/
|
|
12268
|
+
get SupportsAttachments(): boolean;
|
|
12269
|
+
set SupportsAttachments(value: boolean);
|
|
12270
|
+
/**
|
|
12271
|
+
* * Field Name: SupportsSubjectLine
|
|
12272
|
+
* * Display Name: Supports Subject Line
|
|
12273
|
+
* * SQL Data Type: bit
|
|
12274
|
+
* * Description: Indicates if a subject line is supported.
|
|
12275
|
+
*/
|
|
12276
|
+
get SupportsSubjectLine(): boolean;
|
|
12277
|
+
set SupportsSubjectLine(value: boolean);
|
|
12278
|
+
/**
|
|
12279
|
+
* * Field Name: SupportsHtml
|
|
12280
|
+
* * Display Name: Supports Html
|
|
12281
|
+
* * SQL Data Type: bit
|
|
12282
|
+
* * Description: Indicates if HTML content is supported.
|
|
12283
|
+
*/
|
|
12284
|
+
get SupportsHtml(): boolean;
|
|
12285
|
+
set SupportsHtml(value: boolean);
|
|
12286
|
+
/**
|
|
12287
|
+
* * Field Name: MaxBytes
|
|
12288
|
+
* * Display Name: Max Bytes
|
|
12289
|
+
* * SQL Data Type: int
|
|
12290
|
+
* * Description: The maximum size in bytes for the message.
|
|
12291
|
+
*/
|
|
12292
|
+
get MaxBytes(): number | null;
|
|
12293
|
+
set MaxBytes(value: number | null);
|
|
12294
|
+
/**
|
|
12295
|
+
* * Field Name: CreatedAt
|
|
12296
|
+
* * Display Name: Created At
|
|
12297
|
+
* * SQL Data Type: datetime
|
|
12298
|
+
*/
|
|
12299
|
+
get CreatedAt(): Date;
|
|
12300
|
+
/**
|
|
12301
|
+
* * Field Name: UpdatedAt
|
|
12302
|
+
* * Display Name: Updated At
|
|
12303
|
+
* * SQL Data Type: datetime
|
|
10237
12304
|
*/
|
|
10238
12305
|
get UpdatedAt(): Date;
|
|
10239
12306
|
}
|