@memberjunction/core-entities 0.9.155 → 0.9.157

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.
@@ -43,15 +43,15 @@ export declare class CompanyEntity extends BaseEntity {
43
43
  * * Field Name: Website
44
44
  * * SQL Data Type: nvarchar(100)
45
45
  */
46
- get Website(): string;
47
- set Website(value: string);
46
+ get Website(): string | null;
47
+ set Website(value: string | null);
48
48
  /**
49
49
  * * Field Name: LogoURL
50
50
  * * Display Name: Logo URL
51
51
  * * SQL Data Type: nvarchar(500)
52
52
  */
53
- get LogoURL(): string;
54
- set LogoURL(value: string);
53
+ get LogoURL(): string | null;
54
+ set LogoURL(value: string | null);
55
55
  /**
56
56
  * * Field Name: CreatedAt
57
57
  * * Display Name: Created At
@@ -71,8 +71,8 @@ export declare class CompanyEntity extends BaseEntity {
71
71
  * * Display Name: Domain
72
72
  * * SQL Data Type: nvarchar(255)
73
73
  */
74
- get Domain(): string;
75
- set Domain(value: string);
74
+ get Domain(): string | null;
75
+ set Domain(value: string | null);
76
76
  }
77
77
  /**
78
78
  * Employees - strongly typed entity sub-class
@@ -127,8 +127,8 @@ export declare class EmployeeEntity extends BaseEntity {
127
127
  * * Field Name: Title
128
128
  * * SQL Data Type: nvarchar(50)
129
129
  */
130
- get Title(): string;
131
- set Title(value: string);
130
+ get Title(): string | null;
131
+ set Title(value: string | null);
132
132
  /**
133
133
  * * Field Name: Email
134
134
  * * SQL Data Type: nvarchar(100)
@@ -139,8 +139,8 @@ export declare class EmployeeEntity extends BaseEntity {
139
139
  * * Field Name: Phone
140
140
  * * SQL Data Type: nvarchar(20)
141
141
  */
142
- get Phone(): string;
143
- set Phone(value: string);
142
+ get Phone(): string | null;
143
+ set Phone(value: string | null);
144
144
  /**
145
145
  * * Field Name: Active
146
146
  * * SQL Data Type: bit
@@ -162,8 +162,8 @@ export declare class EmployeeEntity extends BaseEntity {
162
162
  * * SQL Data Type: int
163
163
  * * Related Entity/Foreign Key: Employees (vwEmployees.ID)
164
164
  */
165
- get SupervisorID(): number;
166
- set SupervisorID(value: number);
165
+ get SupervisorID(): number | null;
166
+ set SupervisorID(value: number | null);
167
167
  /**
168
168
  * * Field Name: CreatedAt
169
169
  * * Display Name: Created At
@@ -183,31 +183,31 @@ export declare class EmployeeEntity extends BaseEntity {
183
183
  * * Display Name: First Last
184
184
  * * SQL Data Type: nvarchar(81)
185
185
  */
186
- get FirstLast(): string;
186
+ get FirstLast(): string | null;
187
187
  /**
188
188
  * * Field Name: Supervisor
189
189
  * * Display Name: Supervisor
190
190
  * * SQL Data Type: nvarchar(81)
191
191
  */
192
- get Supervisor(): string;
192
+ get Supervisor(): string | null;
193
193
  /**
194
194
  * * Field Name: SupervisorFirstName
195
195
  * * Display Name: Supervisor First Name
196
196
  * * SQL Data Type: nvarchar(30)
197
197
  */
198
- get SupervisorFirstName(): string;
198
+ get SupervisorFirstName(): string | null;
199
199
  /**
200
200
  * * Field Name: SupervisorLastName
201
201
  * * Display Name: Supervisor Last Name
202
202
  * * SQL Data Type: nvarchar(50)
203
203
  */
204
- get SupervisorLastName(): string;
204
+ get SupervisorLastName(): string | null;
205
205
  /**
206
206
  * * Field Name: SupervisorEmail
207
207
  * * Display Name: Supervisor Email
208
208
  * * SQL Data Type: nvarchar(100)
209
209
  */
210
- get SupervisorEmail(): string;
210
+ get SupervisorEmail(): string | null;
211
211
  }
212
212
  /**
213
213
  * User Favorites - strongly typed entity sub-class
@@ -572,15 +572,15 @@ export declare class RoleEntity extends BaseEntity {
572
572
  * * Field Name: Description
573
573
  * * SQL Data Type: nvarchar(500)
574
574
  */
575
- get Description(): string;
576
- set Description(value: string);
575
+ get Description(): string | null;
576
+ set Description(value: string | null);
577
577
  /**
578
578
  * * Field Name: AzureID
579
579
  * * Display Name: Azure
580
580
  * * SQL Data Type: nvarchar(50)
581
581
  */
582
- get AzureID(): string;
583
- set AzureID(value: string);
582
+ get AzureID(): string | null;
583
+ set AzureID(value: string | null);
584
584
  /**
585
585
  * * Field Name: SQLName
586
586
  * * SQL Data Type: nvarchar(50)
@@ -660,8 +660,8 @@ export declare class SkillEntity extends BaseEntity {
660
660
  * * SQL Data Type: int
661
661
  * * Related Entity/Foreign Key: Skills (vwSkills.ID)
662
662
  */
663
- get ParentID(): number;
664
- set ParentID(value: number);
663
+ get ParentID(): number | null;
664
+ set ParentID(value: number | null);
665
665
  /**
666
666
  * * Field Name: CreatedAt
667
667
  * * Display Name: Created At
@@ -681,7 +681,7 @@ export declare class SkillEntity extends BaseEntity {
681
681
  * * Display Name: Parent
682
682
  * * SQL Data Type: nvarchar(50)
683
683
  */
684
- get Parent(): string;
684
+ get Parent(): string | null;
685
685
  }
686
686
  /**
687
687
  * Integration URL Formats - strongly typed entity sub-class
@@ -726,8 +726,8 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
726
726
  * * SQL Data Type: nvarchar(100)
727
727
  * * Related Entity/Foreign Key: Integrations (vwIntegrations.Name)
728
728
  */
729
- get IntegrationName(): string;
730
- set IntegrationName(value: string);
729
+ get IntegrationName(): string | null;
730
+ set IntegrationName(value: string | null);
731
731
  /**
732
732
  * * Field Name: EntityID
733
733
  * * Display Name: Entity ID
@@ -759,13 +759,13 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
759
759
  * * Display Name: Navigation Base URL
760
760
  * * SQL Data Type: nvarchar(500)
761
761
  */
762
- get NavigationBaseURL(): string;
762
+ get NavigationBaseURL(): string | null;
763
763
  /**
764
764
  * * Field Name: FullURLFormat
765
765
  * * Display Name: Full URLFormat
766
766
  * * SQL Data Type: nvarchar(1000)
767
767
  */
768
- get FullURLFormat(): string;
768
+ get FullURLFormat(): string | null;
769
769
  }
770
770
  /**
771
771
  * Integrations - strongly typed entity sub-class
@@ -814,29 +814,29 @@ export declare class IntegrationEntity extends BaseEntity {
814
814
  * * Field Name: Description
815
815
  * * SQL Data Type: nvarchar(255)
816
816
  */
817
- get Description(): string;
818
- set Description(value: string);
817
+ get Description(): string | null;
818
+ set Description(value: string | null);
819
819
  /**
820
820
  * * Field Name: NavigationBaseURL
821
821
  * * Display Name: Navigation Base URL
822
822
  * * SQL Data Type: nvarchar(500)
823
823
  */
824
- get NavigationBaseURL(): string;
825
- set NavigationBaseURL(value: string);
824
+ get NavigationBaseURL(): string | null;
825
+ set NavigationBaseURL(value: string | null);
826
826
  /**
827
827
  * * Field Name: ClassName
828
828
  * * Display Name: Class Name
829
829
  * * SQL Data Type: nvarchar(100)
830
830
  */
831
- get ClassName(): string;
832
- set ClassName(value: string);
831
+ get ClassName(): string | null;
832
+ set ClassName(value: string | null);
833
833
  /**
834
834
  * * Field Name: ImportPath
835
835
  * * Display Name: Import Path
836
836
  * * SQL Data Type: nvarchar(100)
837
837
  */
838
- get ImportPath(): string;
839
- set ImportPath(value: string);
838
+ get ImportPath(): string | null;
839
+ set ImportPath(value: string | null);
840
840
  /**
841
841
  * * Field Name: BatchMaxRequestCount
842
842
  * * Display Name: Batch Max Request Count
@@ -926,35 +926,35 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
926
926
  * * Display Name: Is Active
927
927
  * * SQL Data Type: bit
928
928
  */
929
- get IsActive(): boolean;
930
- set IsActive(value: boolean);
929
+ get IsActive(): boolean | null;
930
+ set IsActive(value: boolean | null);
931
931
  /**
932
932
  * * Field Name: AccessToken
933
933
  * * Display Name: Access Token
934
934
  * * SQL Data Type: nvarchar(255)
935
935
  */
936
- get AccessToken(): string;
937
- set AccessToken(value: string);
936
+ get AccessToken(): string | null;
937
+ set AccessToken(value: string | null);
938
938
  /**
939
939
  * * Field Name: RefreshToken
940
940
  * * Display Name: Refresh Token
941
941
  * * SQL Data Type: nvarchar(255)
942
942
  */
943
- get RefreshToken(): string;
944
- set RefreshToken(value: string);
943
+ get RefreshToken(): string | null;
944
+ set RefreshToken(value: string | null);
945
945
  /**
946
946
  * * Field Name: TokenExpirationDate
947
947
  * * Display Name: Token Expiration Date
948
948
  * * SQL Data Type: datetime
949
949
  */
950
- get TokenExpirationDate(): Date;
951
- set TokenExpirationDate(value: Date);
950
+ get TokenExpirationDate(): Date | null;
951
+ set TokenExpirationDate(value: Date | null);
952
952
  /**
953
953
  * * Field Name: APIKey
954
954
  * * SQL Data Type: nvarchar(255)
955
955
  */
956
- get APIKey(): string;
957
- set APIKey(value: string);
956
+ get APIKey(): string | null;
957
+ set APIKey(value: string | null);
958
958
  /**
959
959
  * * Field Name: CreatedAt
960
960
  * * Display Name: Created At
@@ -974,8 +974,8 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
974
974
  * * Display Name: ExternalSystem
975
975
  * * SQL Data Type: nvarchar(100)
976
976
  */
977
- get ExternalSystemID(): string;
978
- set ExternalSystemID(value: string);
977
+ get ExternalSystemID(): string | null;
978
+ set ExternalSystemID(value: string | null);
979
979
  /**
980
980
  * * Field Name: IsExternalSystemReadOnly
981
981
  * * Display Name: Is External System Read Only
@@ -989,22 +989,22 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
989
989
  * * Display Name: Client
990
990
  * * SQL Data Type: nvarchar(255)
991
991
  */
992
- get ClientID(): string;
993
- set ClientID(value: string);
992
+ get ClientID(): string | null;
993
+ set ClientID(value: string | null);
994
994
  /**
995
995
  * * Field Name: ClientSecret
996
996
  * * Display Name: Client Secret
997
997
  * * SQL Data Type: nvarchar(255)
998
998
  */
999
- get ClientSecret(): string;
1000
- set ClientSecret(value: string);
999
+ get ClientSecret(): string | null;
1000
+ set ClientSecret(value: string | null);
1001
1001
  /**
1002
1002
  * * Field Name: CustomAttribute1
1003
1003
  * * Display Name: Custom Attribute 1
1004
1004
  * * SQL Data Type: nvarchar(255)
1005
1005
  */
1006
- get CustomAttribute1(): string;
1007
- set CustomAttribute1(value: string);
1006
+ get CustomAttribute1(): string | null;
1007
+ set CustomAttribute1(value: string | null);
1008
1008
  /**
1009
1009
  * * Field Name: CompanyID
1010
1010
  * * Display Name: Company ID
@@ -1032,31 +1032,31 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
1032
1032
  * * Display Name: Driver Class Name
1033
1033
  * * SQL Data Type: nvarchar(100)
1034
1034
  */
1035
- get DriverClassName(): string;
1035
+ get DriverClassName(): string | null;
1036
1036
  /**
1037
1037
  * * Field Name: DriverImportPath
1038
1038
  * * Display Name: Driver Import Path
1039
1039
  * * SQL Data Type: nvarchar(100)
1040
1040
  */
1041
- get DriverImportPath(): string;
1041
+ get DriverImportPath(): string | null;
1042
1042
  /**
1043
1043
  * * Field Name: LastRunID
1044
1044
  * * Display Name: LastRun
1045
1045
  * * SQL Data Type: int
1046
1046
  */
1047
- get LastRunID(): number;
1047
+ get LastRunID(): number | null;
1048
1048
  /**
1049
1049
  * * Field Name: LastRunStartedAt
1050
1050
  * * Display Name: Last Run Started At
1051
1051
  * * SQL Data Type: datetime
1052
1052
  */
1053
- get LastRunStartedAt(): Date;
1053
+ get LastRunStartedAt(): Date | null;
1054
1054
  /**
1055
1055
  * * Field Name: LastRunEndedAt
1056
1056
  * * Display Name: Last Run Ended At
1057
1057
  * * SQL Data Type: datetime
1058
1058
  */
1059
- get LastRunEndedAt(): Date;
1059
+ get LastRunEndedAt(): Date | null;
1060
1060
  }
1061
1061
  /**
1062
1062
  * Entity Fields - strongly typed entity sub-class
@@ -1109,14 +1109,14 @@ export declare class EntityFieldEntity extends BaseEntity {
1109
1109
  * * Display Name: Display Name
1110
1110
  * * SQL Data Type: nvarchar(255)
1111
1111
  */
1112
- get DisplayName(): string;
1113
- set DisplayName(value: string);
1112
+ get DisplayName(): string | null;
1113
+ set DisplayName(value: string | null);
1114
1114
  /**
1115
1115
  * * Field Name: Description
1116
1116
  * * SQL Data Type: nvarchar(MAX)
1117
1117
  */
1118
- get Description(): string;
1119
- set Description(value: string);
1118
+ get Description(): string | null;
1119
+ set Description(value: string | null);
1120
1120
  /**
1121
1121
  * * Field Name: AutoUpdateDescription
1122
1122
  * * Display Name: Auto Update Description
@@ -1147,8 +1147,8 @@ export declare class EntityFieldEntity extends BaseEntity {
1147
1147
  * * Display Name: Category
1148
1148
  * * SQL Data Type: nvarchar(255)
1149
1149
  */
1150
- get Category(): string;
1151
- set Category(value: string);
1150
+ get Category(): string | null;
1151
+ set Category(value: string | null);
1152
1152
  /**
1153
1153
  * * Field Name: Type
1154
1154
  * * SQL Data Type: nvarchar(100)
@@ -1158,17 +1158,17 @@ export declare class EntityFieldEntity extends BaseEntity {
1158
1158
  * * Field Name: Length
1159
1159
  * * SQL Data Type: int
1160
1160
  */
1161
- get Length(): number;
1161
+ get Length(): number | null;
1162
1162
  /**
1163
1163
  * * Field Name: Precision
1164
1164
  * * SQL Data Type: int
1165
1165
  */
1166
- get Precision(): number;
1166
+ get Precision(): number | null;
1167
1167
  /**
1168
1168
  * * Field Name: Scale
1169
1169
  * * SQL Data Type: int
1170
1170
  */
1171
- get Scale(): number;
1171
+ get Scale(): number | null;
1172
1172
  /**
1173
1173
  * * Field Name: AllowsNull
1174
1174
  * * Display Name: Allows Null
@@ -1181,7 +1181,7 @@ export declare class EntityFieldEntity extends BaseEntity {
1181
1181
  * * Display Name: Default Value
1182
1182
  * * SQL Data Type: nvarchar(255)
1183
1183
  */
1184
- get DefaultValue(): string;
1184
+ get DefaultValue(): string | null;
1185
1185
  /**
1186
1186
  * * Field Name: AutoIncrement
1187
1187
  * * Display Name: Auto Increment
@@ -1202,8 +1202,8 @@ export declare class EntityFieldEntity extends BaseEntity {
1202
1202
  * * Display Name: Extended Type
1203
1203
  * * SQL Data Type: nvarchar(50)
1204
1204
  */
1205
- get ExtendedType(): string;
1206
- set ExtendedType(value: string);
1205
+ get ExtendedType(): string | null;
1206
+ set ExtendedType(value: string | null);
1207
1207
  /**
1208
1208
  * * Field Name: DefaultInView
1209
1209
  * * Display Name: Default In View
@@ -1217,15 +1217,15 @@ export declare class EntityFieldEntity extends BaseEntity {
1217
1217
  * * Display Name: View Cell Template
1218
1218
  * * SQL Data Type: nvarchar(MAX)
1219
1219
  */
1220
- get ViewCellTemplate(): string;
1221
- set ViewCellTemplate(value: string);
1220
+ get ViewCellTemplate(): string | null;
1221
+ set ViewCellTemplate(value: string | null);
1222
1222
  /**
1223
1223
  * * Field Name: DefaultColumnWidth
1224
1224
  * * Display Name: Default Column Width
1225
1225
  * * SQL Data Type: int
1226
1226
  */
1227
- get DefaultColumnWidth(): number;
1228
- set DefaultColumnWidth(value: number);
1227
+ get DefaultColumnWidth(): number | null;
1228
+ set DefaultColumnWidth(value: number | null);
1229
1229
  /**
1230
1230
  * * Field Name: AllowUpdateAPI
1231
1231
  * * Display Name: Allow Update API
@@ -1263,8 +1263,8 @@ export declare class EntityFieldEntity extends BaseEntity {
1263
1263
  * * Display Name: User Search Param Format API
1264
1264
  * * SQL Data Type: nvarchar(500)
1265
1265
  */
1266
- get UserSearchParamFormatAPI(): string;
1267
- set UserSearchParamFormatAPI(value: string);
1266
+ get UserSearchParamFormatAPI(): string | null;
1267
+ set UserSearchParamFormatAPI(value: string | null);
1268
1268
  /**
1269
1269
  * * Field Name: IncludeInGeneratedForm
1270
1270
  * * Display Name: Include In Generated Form
@@ -1302,15 +1302,15 @@ export declare class EntityFieldEntity extends BaseEntity {
1302
1302
  * * SQL Data Type: int
1303
1303
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
1304
1304
  */
1305
- get RelatedEntityID(): number;
1306
- set RelatedEntityID(value: number);
1305
+ get RelatedEntityID(): number | null;
1306
+ set RelatedEntityID(value: number | null);
1307
1307
  /**
1308
1308
  * * Field Name: RelatedEntityFieldName
1309
1309
  * * Display Name: Related Entity Field Name
1310
1310
  * * SQL Data Type: nvarchar(255)
1311
1311
  */
1312
- get RelatedEntityFieldName(): string;
1313
- set RelatedEntityFieldName(value: string);
1312
+ get RelatedEntityFieldName(): string | null;
1313
+ set RelatedEntityFieldName(value: string | null);
1314
1314
  /**
1315
1315
  * * Field Name: IncludeRelatedEntityNameFieldInBaseView
1316
1316
  * * Display Name: Include Related Entity Name Field In Base View
@@ -1324,8 +1324,8 @@ export declare class EntityFieldEntity extends BaseEntity {
1324
1324
  * * Display Name: Related Entity Name Field Map
1325
1325
  * * SQL Data Type: nvarchar(255)
1326
1326
  */
1327
- get RelatedEntityNameFieldMap(): string;
1328
- set RelatedEntityNameFieldMap(value: string);
1327
+ get RelatedEntityNameFieldMap(): string | null;
1328
+ set RelatedEntityNameFieldMap(value: string | null);
1329
1329
  /**
1330
1330
  * * Field Name: CreatedAt
1331
1331
  * * Display Name: Created At
@@ -1368,49 +1368,49 @@ export declare class EntityFieldEntity extends BaseEntity {
1368
1368
  * * Display Name: Entity Code Name
1369
1369
  * * SQL Data Type: nvarchar(4000)
1370
1370
  */
1371
- get EntityCodeName(): string;
1371
+ get EntityCodeName(): string | null;
1372
1372
  /**
1373
1373
  * * Field Name: EntityClassName
1374
1374
  * * Display Name: Entity Class Name
1375
1375
  * * SQL Data Type: nvarchar(4000)
1376
1376
  */
1377
- get EntityClassName(): string;
1377
+ get EntityClassName(): string | null;
1378
1378
  /**
1379
1379
  * * Field Name: RelatedEntity
1380
1380
  * * Display Name: Related Entity
1381
1381
  * * SQL Data Type: nvarchar(255)
1382
1382
  */
1383
- get RelatedEntity(): string;
1383
+ get RelatedEntity(): string | null;
1384
1384
  /**
1385
1385
  * * Field Name: RelatedEntitySchemaName
1386
1386
  * * Display Name: Related Entity Schema Name
1387
1387
  * * SQL Data Type: nvarchar(255)
1388
1388
  */
1389
- get RelatedEntitySchemaName(): string;
1389
+ get RelatedEntitySchemaName(): string | null;
1390
1390
  /**
1391
1391
  * * Field Name: RelatedEntityBaseTable
1392
1392
  * * Display Name: Related Entity Base Table
1393
1393
  * * SQL Data Type: nvarchar(255)
1394
1394
  */
1395
- get RelatedEntityBaseTable(): string;
1395
+ get RelatedEntityBaseTable(): string | null;
1396
1396
  /**
1397
1397
  * * Field Name: RelatedEntityBaseView
1398
1398
  * * Display Name: Related Entity Base View
1399
1399
  * * SQL Data Type: nvarchar(255)
1400
1400
  */
1401
- get RelatedEntityBaseView(): string;
1401
+ get RelatedEntityBaseView(): string | null;
1402
1402
  /**
1403
1403
  * * Field Name: RelatedEntityCodeName
1404
1404
  * * Display Name: Related Entity Code Name
1405
1405
  * * SQL Data Type: nvarchar(4000)
1406
1406
  */
1407
- get RelatedEntityCodeName(): string;
1407
+ get RelatedEntityCodeName(): string | null;
1408
1408
  /**
1409
1409
  * * Field Name: RelatedEntityClassName
1410
1410
  * * Display Name: Related Entity Class Name
1411
1411
  * * SQL Data Type: nvarchar(4000)
1412
1412
  */
1413
- get RelatedEntityClassName(): string;
1413
+ get RelatedEntityClassName(): string | null;
1414
1414
  }
1415
1415
  /**
1416
1416
  * Entities - strongly typed entity sub-class
@@ -1446,8 +1446,8 @@ export declare class EntityEntity extends BaseEntity {
1446
1446
  * * SQL Data Type: int
1447
1447
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
1448
1448
  */
1449
- get ParentID(): number;
1450
- set ParentID(value: number);
1449
+ get ParentID(): number | null;
1450
+ set ParentID(value: number | null);
1451
1451
  /**
1452
1452
  * * Field Name: Name
1453
1453
  * * SQL Data Type: nvarchar(255)
@@ -1459,14 +1459,14 @@ export declare class EntityEntity extends BaseEntity {
1459
1459
  * * Display Name: Name Suffix
1460
1460
  * * SQL Data Type: nvarchar(255)
1461
1461
  */
1462
- get NameSuffix(): string;
1463
- set NameSuffix(value: string);
1462
+ get NameSuffix(): string | null;
1463
+ set NameSuffix(value: string | null);
1464
1464
  /**
1465
1465
  * * Field Name: Description
1466
1466
  * * SQL Data Type: nvarchar(MAX)
1467
1467
  */
1468
- get Description(): string;
1469
- set Description(value: string);
1468
+ get Description(): string | null;
1469
+ set Description(value: string | null);
1470
1470
  /**
1471
1471
  * * Field Name: AutoUpdateDescription
1472
1472
  * * Display Name: Auto Update Description
@@ -1605,8 +1605,8 @@ export declare class EntityEntity extends BaseEntity {
1605
1605
  * * Display Name: Full Text Catalog
1606
1606
  * * SQL Data Type: nvarchar(255)
1607
1607
  */
1608
- get FullTextCatalog(): string;
1609
- set FullTextCatalog(value: string);
1608
+ get FullTextCatalog(): string | null;
1609
+ set FullTextCatalog(value: string | null);
1610
1610
  /**
1611
1611
  * * Field Name: FullTextCatalogGenerated
1612
1612
  * * Display Name: Full Text Catalog Generated
@@ -1620,8 +1620,8 @@ export declare class EntityEntity extends BaseEntity {
1620
1620
  * * Display Name: Full Text Index
1621
1621
  * * SQL Data Type: nvarchar(255)
1622
1622
  */
1623
- get FullTextIndex(): string;
1624
- set FullTextIndex(value: string);
1623
+ get FullTextIndex(): string | null;
1624
+ set FullTextIndex(value: string | null);
1625
1625
  /**
1626
1626
  * * Field Name: FullTextIndexGenerated
1627
1627
  * * Display Name: Full Text Index Generated
@@ -1635,8 +1635,8 @@ export declare class EntityEntity extends BaseEntity {
1635
1635
  * * Display Name: Full Text Search Function
1636
1636
  * * SQL Data Type: nvarchar(255)
1637
1637
  */
1638
- get FullTextSearchFunction(): string;
1639
- set FullTextSearchFunction(value: string);
1638
+ get FullTextSearchFunction(): string | null;
1639
+ set FullTextSearchFunction(value: string | null);
1640
1640
  /**
1641
1641
  * * Field Name: FullTextSearchFunctionGenerated
1642
1642
  * * Display Name: Full Text Search Function Generated
@@ -1651,29 +1651,29 @@ export declare class EntityEntity extends BaseEntity {
1651
1651
  * * SQL Data Type: int
1652
1652
  * * Default Value: 1000
1653
1653
  */
1654
- get UserViewMaxRows(): number;
1655
- set UserViewMaxRows(value: number);
1654
+ get UserViewMaxRows(): number | null;
1655
+ set UserViewMaxRows(value: number | null);
1656
1656
  /**
1657
1657
  * * Field Name: spCreate
1658
1658
  * * Display Name: spCreate
1659
1659
  * * SQL Data Type: nvarchar(255)
1660
1660
  */
1661
- get spCreate(): string;
1662
- set spCreate(value: string);
1661
+ get spCreate(): string | null;
1662
+ set spCreate(value: string | null);
1663
1663
  /**
1664
1664
  * * Field Name: spUpdate
1665
1665
  * * Display Name: spUpdate
1666
1666
  * * SQL Data Type: nvarchar(255)
1667
1667
  */
1668
- get spUpdate(): string;
1669
- set spUpdate(value: string);
1668
+ get spUpdate(): string | null;
1669
+ set spUpdate(value: string | null);
1670
1670
  /**
1671
1671
  * * Field Name: spDelete
1672
1672
  * * Display Name: spDelete
1673
1673
  * * SQL Data Type: nvarchar(255)
1674
1674
  */
1675
- get spDelete(): string;
1676
- set spDelete(value: string);
1675
+ get spDelete(): string | null;
1676
+ set spDelete(value: string | null);
1677
1677
  /**
1678
1678
  * * Field Name: spCreateGenerated
1679
1679
  * * Display Name: sp CreateGenerated
@@ -1719,15 +1719,15 @@ export declare class EntityEntity extends BaseEntity {
1719
1719
  * * Display Name: Entity Object Subclass Name
1720
1720
  * * SQL Data Type: nvarchar(255)
1721
1721
  */
1722
- get EntityObjectSubclassName(): string;
1723
- set EntityObjectSubclassName(value: string);
1722
+ get EntityObjectSubclassName(): string | null;
1723
+ set EntityObjectSubclassName(value: string | null);
1724
1724
  /**
1725
1725
  * * Field Name: EntityObjectSubclassImport
1726
1726
  * * Display Name: Entity Object Subclass Import
1727
1727
  * * SQL Data Type: nvarchar(255)
1728
1728
  */
1729
- get EntityObjectSubclassImport(): string;
1730
- set EntityObjectSubclassImport(value: string);
1729
+ get EntityObjectSubclassImport(): string | null;
1730
+ set EntityObjectSubclassImport(value: string | null);
1731
1731
  /**
1732
1732
  * * Field Name: CreatedAt
1733
1733
  * * Display Name: Created At
@@ -1747,37 +1747,37 @@ export declare class EntityEntity extends BaseEntity {
1747
1747
  * * Display Name: Code Name
1748
1748
  * * SQL Data Type: nvarchar(4000)
1749
1749
  */
1750
- get CodeName(): string;
1750
+ get CodeName(): string | null;
1751
1751
  /**
1752
1752
  * * Field Name: ClassName
1753
1753
  * * Display Name: Class Name
1754
1754
  * * SQL Data Type: nvarchar(4000)
1755
1755
  */
1756
- get ClassName(): string;
1756
+ get ClassName(): string | null;
1757
1757
  /**
1758
1758
  * * Field Name: BaseTableCodeName
1759
1759
  * * Display Name: Base Table Code Name
1760
1760
  * * SQL Data Type: nvarchar(4000)
1761
1761
  */
1762
- get BaseTableCodeName(): string;
1762
+ get BaseTableCodeName(): string | null;
1763
1763
  /**
1764
1764
  * * Field Name: ParentEntity
1765
1765
  * * Display Name: Parent Entity
1766
1766
  * * SQL Data Type: nvarchar(255)
1767
1767
  */
1768
- get ParentEntity(): string;
1768
+ get ParentEntity(): string | null;
1769
1769
  /**
1770
1770
  * * Field Name: ParentBaseTable
1771
1771
  * * Display Name: Parent Base Table
1772
1772
  * * SQL Data Type: nvarchar(255)
1773
1773
  */
1774
- get ParentBaseTable(): string;
1774
+ get ParentBaseTable(): string | null;
1775
1775
  /**
1776
1776
  * * Field Name: ParentBaseView
1777
1777
  * * Display Name: Parent Base View
1778
1778
  * * SQL Data Type: nvarchar(255)
1779
1779
  */
1780
- get ParentBaseView(): string;
1780
+ get ParentBaseView(): string | null;
1781
1781
  }
1782
1782
  /**
1783
1783
  * Users - strongly typed entity sub-class
@@ -1803,15 +1803,6 @@ export declare class UserEntity extends BaseEntity {
1803
1803
  */
1804
1804
  Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
1805
1805
  /**
1806
- * Users - 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.
1807
- * @public
1808
- * @method
1809
- * @override
1810
- * @memberof UserEntity
1811
- * @throws {Error} - Delete is not allowed for Users, to enable it set AllowDeleteAPI to 1 in the database.
1812
- */
1813
- Delete(): Promise<boolean>;
1814
- /**
1815
1806
  * * Field Name: ID
1816
1807
  * * SQL Data Type: int
1817
1808
  */
@@ -1827,22 +1818,22 @@ export declare class UserEntity extends BaseEntity {
1827
1818
  * * Display Name: First Name
1828
1819
  * * SQL Data Type: nvarchar(50)
1829
1820
  */
1830
- get FirstName(): string;
1831
- set FirstName(value: string);
1821
+ get FirstName(): string | null;
1822
+ set FirstName(value: string | null);
1832
1823
  /**
1833
1824
  * * Field Name: LastName
1834
1825
  * * Display Name: Last Name
1835
1826
  * * SQL Data Type: nvarchar(50)
1836
1827
  */
1837
- get LastName(): string;
1838
- set LastName(value: string);
1828
+ get LastName(): string | null;
1829
+ set LastName(value: string | null);
1839
1830
  /**
1840
1831
  * * Field Name: Title
1841
1832
  * * Display Name: Title
1842
1833
  * * SQL Data Type: nvarchar(50)
1843
1834
  */
1844
- get Title(): string;
1845
- set Title(value: string);
1835
+ get Title(): string | null;
1836
+ set Title(value: string | null);
1846
1837
  /**
1847
1838
  * * Field Name: Email
1848
1839
  * * SQL Data Type: nvarchar(100)
@@ -1876,23 +1867,23 @@ export declare class UserEntity extends BaseEntity {
1876
1867
  * * Display Name: Employee
1877
1868
  * * SQL Data Type: int
1878
1869
  */
1879
- get EmployeeID(): number;
1880
- set EmployeeID(value: number);
1870
+ get EmployeeID(): number | null;
1871
+ set EmployeeID(value: number | null);
1881
1872
  /**
1882
1873
  * * Field Name: LinkedEntityID
1883
1874
  * * Display Name: Linked Entity ID
1884
1875
  * * SQL Data Type: int
1885
1876
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
1886
1877
  */
1887
- get LinkedEntityID(): number;
1888
- set LinkedEntityID(value: number);
1878
+ get LinkedEntityID(): number | null;
1879
+ set LinkedEntityID(value: number | null);
1889
1880
  /**
1890
1881
  * * Field Name: LinkedEntityRecordID
1891
1882
  * * Display Name: Linked Entity Record ID
1892
1883
  * * SQL Data Type: int
1893
1884
  */
1894
- get LinkedEntityRecordID(): number;
1895
- set LinkedEntityRecordID(value: number);
1885
+ get LinkedEntityRecordID(): number | null;
1886
+ set LinkedEntityRecordID(value: number | null);
1896
1887
  /**
1897
1888
  * * Field Name: CreatedAt
1898
1889
  * * Display Name: Created At
@@ -1912,37 +1903,37 @@ export declare class UserEntity extends BaseEntity {
1912
1903
  * * Display Name: First Last
1913
1904
  * * SQL Data Type: nvarchar(101)
1914
1905
  */
1915
- get FirstLast(): string;
1906
+ get FirstLast(): string | null;
1916
1907
  /**
1917
1908
  * * Field Name: EmployeeFirstLast
1918
1909
  * * Display Name: Employee First Last
1919
1910
  * * SQL Data Type: nvarchar(81)
1920
1911
  */
1921
- get EmployeeFirstLast(): string;
1912
+ get EmployeeFirstLast(): string | null;
1922
1913
  /**
1923
1914
  * * Field Name: EmployeeEmail
1924
1915
  * * Display Name: Employee Email
1925
1916
  * * SQL Data Type: nvarchar(100)
1926
1917
  */
1927
- get EmployeeEmail(): string;
1918
+ get EmployeeEmail(): string | null;
1928
1919
  /**
1929
1920
  * * Field Name: EmployeeTitle
1930
1921
  * * Display Name: Employee Title
1931
1922
  * * SQL Data Type: nvarchar(50)
1932
1923
  */
1933
- get EmployeeTitle(): string;
1924
+ get EmployeeTitle(): string | null;
1934
1925
  /**
1935
1926
  * * Field Name: EmployeeSupervisor
1936
1927
  * * Display Name: Employee Supervisor
1937
1928
  * * SQL Data Type: nvarchar(81)
1938
1929
  */
1939
- get EmployeeSupervisor(): string;
1930
+ get EmployeeSupervisor(): string | null;
1940
1931
  /**
1941
1932
  * * Field Name: EmployeeSupervisorEmail
1942
1933
  * * Display Name: Employee Supervisor Email
1943
1934
  * * SQL Data Type: nvarchar(100)
1944
1935
  */
1945
- get EmployeeSupervisorEmail(): string;
1936
+ get EmployeeSupervisorEmail(): string | null;
1946
1937
  }
1947
1938
  /**
1948
1939
  * Entity Relationships - strongly typed entity sub-class
@@ -2016,8 +2007,8 @@ export declare class EntityRelationshipEntity extends BaseEntity {
2016
2007
  * * Display Name: Entity Key Field
2017
2008
  * * SQL Data Type: nvarchar(255)
2018
2009
  */
2019
- get EntityKeyField(): string;
2020
- set EntityKeyField(value: string);
2010
+ get EntityKeyField(): string | null;
2011
+ set EntityKeyField(value: string | null);
2021
2012
  /**
2022
2013
  * * Field Name: RelatedEntityJoinField
2023
2014
  * * Display Name: Related Entity Join Field
@@ -2030,22 +2021,22 @@ export declare class EntityRelationshipEntity extends BaseEntity {
2030
2021
  * * Display Name: Join View
2031
2022
  * * SQL Data Type: nvarchar(255)
2032
2023
  */
2033
- get JoinView(): string;
2034
- set JoinView(value: string);
2024
+ get JoinView(): string | null;
2025
+ set JoinView(value: string | null);
2035
2026
  /**
2036
2027
  * * Field Name: JoinEntityJoinField
2037
2028
  * * Display Name: Join Entity Join Field
2038
2029
  * * SQL Data Type: nvarchar(255)
2039
2030
  */
2040
- get JoinEntityJoinField(): string;
2041
- set JoinEntityJoinField(value: string);
2031
+ get JoinEntityJoinField(): string | null;
2032
+ set JoinEntityJoinField(value: string | null);
2042
2033
  /**
2043
2034
  * * Field Name: JoinEntityInverseJoinField
2044
2035
  * * Display Name: Join Entity Inverse Join Field
2045
2036
  * * SQL Data Type: nvarchar(255)
2046
2037
  */
2047
- get JoinEntityInverseJoinField(): string;
2048
- set JoinEntityInverseJoinField(value: string);
2038
+ get JoinEntityInverseJoinField(): string | null;
2039
+ set JoinEntityInverseJoinField(value: string | null);
2049
2040
  /**
2050
2041
  * * Field Name: DisplayInForm
2051
2042
  * * Display Name: Display In Form
@@ -2059,15 +2050,15 @@ export declare class EntityRelationshipEntity extends BaseEntity {
2059
2050
  * * Display Name: Display Name
2060
2051
  * * SQL Data Type: nvarchar(255)
2061
2052
  */
2062
- get DisplayName(): string;
2063
- set DisplayName(value: string);
2053
+ get DisplayName(): string | null;
2054
+ set DisplayName(value: string | null);
2064
2055
  /**
2065
2056
  * * Field Name: DisplayUserViewGUID
2066
2057
  * * Display Name: Display User View GUID
2067
2058
  * * SQL Data Type: uniqueidentifier
2068
2059
  * * Related Entity/Foreign Key: User Views (vwUserViews.GUID)
2069
2060
  */
2070
- get DisplayUserViewGUID(): string;
2061
+ get DisplayUserViewGUID(): string | null;
2071
2062
  /**
2072
2063
  * * Field Name: CreatedAt
2073
2064
  * * Display Name: Created At
@@ -2122,31 +2113,31 @@ export declare class EntityRelationshipEntity extends BaseEntity {
2122
2113
  * * Display Name: Related Entity Class Name
2123
2114
  * * SQL Data Type: nvarchar(4000)
2124
2115
  */
2125
- get RelatedEntityClassName(): string;
2116
+ get RelatedEntityClassName(): string | null;
2126
2117
  /**
2127
2118
  * * Field Name: RelatedEntityCodeName
2128
2119
  * * Display Name: Related Entity Code Name
2129
2120
  * * SQL Data Type: nvarchar(4000)
2130
2121
  */
2131
- get RelatedEntityCodeName(): string;
2122
+ get RelatedEntityCodeName(): string | null;
2132
2123
  /**
2133
2124
  * * Field Name: RelatedEntityBaseTableCodeName
2134
2125
  * * Display Name: Related Entity Base Table Code Name
2135
2126
  * * SQL Data Type: nvarchar(4000)
2136
2127
  */
2137
- get RelatedEntityBaseTableCodeName(): string;
2128
+ get RelatedEntityBaseTableCodeName(): string | null;
2138
2129
  /**
2139
2130
  * * Field Name: DisplayUserViewName
2140
2131
  * * Display Name: Display User View Name
2141
2132
  * * SQL Data Type: nvarchar(100)
2142
2133
  */
2143
- get DisplayUserViewName(): string;
2134
+ get DisplayUserViewName(): string | null;
2144
2135
  /**
2145
2136
  * * Field Name: DisplayUserViewID
2146
2137
  * * Display Name: Display User View ID
2147
2138
  * * SQL Data Type: int
2148
2139
  */
2149
- get DisplayUserViewID(): number;
2140
+ get DisplayUserViewID(): number | null;
2150
2141
  }
2151
2142
  /**
2152
2143
  * User Record Logs - strongly typed entity sub-class
@@ -2249,7 +2240,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
2249
2240
  * * Display Name: User First Last
2250
2241
  * * SQL Data Type: nvarchar(101)
2251
2242
  */
2252
- get UserFirstLast(): string;
2243
+ get UserFirstLast(): string | null;
2253
2244
  /**
2254
2245
  * * Field Name: UserEmail
2255
2246
  * * Display Name: User Email
@@ -2261,13 +2252,13 @@ export declare class UserRecordLogEntity extends BaseEntity {
2261
2252
  * * Display Name: User Supervisor
2262
2253
  * * SQL Data Type: nvarchar(81)
2263
2254
  */
2264
- get UserSupervisor(): string;
2255
+ get UserSupervisor(): string | null;
2265
2256
  /**
2266
2257
  * * Field Name: UserSupervisorEmail
2267
2258
  * * Display Name: User Supervisor Email
2268
2259
  * * SQL Data Type: nvarchar(100)
2269
2260
  */
2270
- get UserSupervisorEmail(): string;
2261
+ get UserSupervisorEmail(): string | null;
2271
2262
  }
2272
2263
  /**
2273
2264
  * User Views - strongly typed entity sub-class
@@ -2330,16 +2321,16 @@ export declare class UserViewEntity extends BaseEntity {
2330
2321
  * * Field Name: Description
2331
2322
  * * SQL Data Type: nvarchar(MAX)
2332
2323
  */
2333
- get Description(): string;
2334
- set Description(value: string);
2324
+ get Description(): string | null;
2325
+ set Description(value: string | null);
2335
2326
  /**
2336
2327
  * * Field Name: CategoryID
2337
2328
  * * Display Name: Category ID
2338
2329
  * * SQL Data Type: int
2339
2330
  * * Related Entity/Foreign Key: User View Categories (vwUserViewCategories.ID)
2340
2331
  */
2341
- get CategoryID(): number;
2342
- set CategoryID(value: number);
2332
+ get CategoryID(): number | null;
2333
+ set CategoryID(value: number | null);
2343
2334
  /**
2344
2335
  * * Field Name: IsShared
2345
2336
  * * Display Name: Is Shared
@@ -2361,15 +2352,15 @@ export declare class UserViewEntity extends BaseEntity {
2361
2352
  * * Display Name: Grid State
2362
2353
  * * SQL Data Type: nvarchar(MAX)
2363
2354
  */
2364
- get GridState(): string;
2365
- set GridState(value: string);
2355
+ get GridState(): string | null;
2356
+ set GridState(value: string | null);
2366
2357
  /**
2367
2358
  * * Field Name: FilterState
2368
2359
  * * Display Name: Filter State
2369
2360
  * * SQL Data Type: nvarchar(MAX)
2370
2361
  */
2371
- get FilterState(): string;
2372
- set FilterState(value: string);
2362
+ get FilterState(): string | null;
2363
+ set FilterState(value: string | null);
2373
2364
  /**
2374
2365
  * * Field Name: CustomFilterState
2375
2366
  * * Display Name: Custom Filter State
@@ -2391,29 +2382,29 @@ export declare class UserViewEntity extends BaseEntity {
2391
2382
  * * Display Name: Smart Filter Prompt
2392
2383
  * * SQL Data Type: nvarchar(MAX)
2393
2384
  */
2394
- get SmartFilterPrompt(): string;
2395
- set SmartFilterPrompt(value: string);
2385
+ get SmartFilterPrompt(): string | null;
2386
+ set SmartFilterPrompt(value: string | null);
2396
2387
  /**
2397
2388
  * * Field Name: SmartFilterWhereClause
2398
2389
  * * Display Name: Smart Filter Where Clause
2399
2390
  * * SQL Data Type: nvarchar(MAX)
2400
2391
  */
2401
- get SmartFilterWhereClause(): string;
2402
- set SmartFilterWhereClause(value: string);
2392
+ get SmartFilterWhereClause(): string | null;
2393
+ set SmartFilterWhereClause(value: string | null);
2403
2394
  /**
2404
2395
  * * Field Name: SmartFilterExplanation
2405
2396
  * * Display Name: Smart Filter Explanation
2406
2397
  * * SQL Data Type: nvarchar(MAX)
2407
2398
  */
2408
- get SmartFilterExplanation(): string;
2409
- set SmartFilterExplanation(value: string);
2399
+ get SmartFilterExplanation(): string | null;
2400
+ set SmartFilterExplanation(value: string | null);
2410
2401
  /**
2411
2402
  * * Field Name: WhereClause
2412
2403
  * * Display Name: Where Clause
2413
2404
  * * SQL Data Type: nvarchar(MAX)
2414
2405
  */
2415
- get WhereClause(): string;
2416
- set WhereClause(value: string);
2406
+ get WhereClause(): string | null;
2407
+ set WhereClause(value: string | null);
2417
2408
  /**
2418
2409
  * * Field Name: CustomWhereClause
2419
2410
  * * Display Name: Custom Where Clause
@@ -2427,22 +2418,22 @@ export declare class UserViewEntity extends BaseEntity {
2427
2418
  * * Display Name: Sort State
2428
2419
  * * SQL Data Type: nvarchar(MAX)
2429
2420
  */
2430
- get SortState(): string;
2431
- set SortState(value: string);
2421
+ get SortState(): string | null;
2422
+ set SortState(value: string | null);
2432
2423
  /**
2433
2424
  * * Field Name: CreatedAt
2434
2425
  * * Display Name: Created At
2435
2426
  * * SQL Data Type: datetime
2436
2427
  * * Default Value: getdate()
2437
2428
  */
2438
- get CreatedAt(): Date;
2429
+ get CreatedAt(): Date | null;
2439
2430
  /**
2440
2431
  * * Field Name: UpdatedAt
2441
2432
  * * Display Name: Updated At
2442
2433
  * * SQL Data Type: datetime
2443
2434
  * * Default Value: getdate()
2444
2435
  */
2445
- get UpdatedAt(): Date;
2436
+ get UpdatedAt(): Date | null;
2446
2437
  /**
2447
2438
  * * Field Name: UserName
2448
2439
  * * Display Name: User Name
@@ -2454,7 +2445,7 @@ export declare class UserViewEntity extends BaseEntity {
2454
2445
  * * Display Name: User First Last
2455
2446
  * * SQL Data Type: nvarchar(101)
2456
2447
  */
2457
- get UserFirstLast(): string;
2448
+ get UserFirstLast(): string | null;
2458
2449
  /**
2459
2450
  * * Field Name: UserEmail
2460
2451
  * * Display Name: User Email
@@ -2538,15 +2529,15 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
2538
2529
  * * Display Name: Started At
2539
2530
  * * SQL Data Type: datetime
2540
2531
  */
2541
- get StartedAt(): Date;
2542
- set StartedAt(value: Date);
2532
+ get StartedAt(): Date | null;
2533
+ set StartedAt(value: Date | null);
2543
2534
  /**
2544
2535
  * * Field Name: EndedAt
2545
2536
  * * Display Name: Ended At
2546
2537
  * * SQL Data Type: datetime
2547
2538
  */
2548
- get EndedAt(): Date;
2549
- set EndedAt(value: Date);
2539
+ get EndedAt(): Date | null;
2540
+ set EndedAt(value: Date | null);
2550
2541
  /**
2551
2542
  * * Field Name: TotalRecords
2552
2543
  * * Display Name: Total Records
@@ -2558,8 +2549,8 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
2558
2549
  * * Field Name: Comments
2559
2550
  * * SQL Data Type: nvarchar(MAX)
2560
2551
  */
2561
- get Comments(): string;
2562
- set Comments(value: string);
2552
+ get Comments(): string | null;
2553
+ set Comments(value: string | null);
2563
2554
  /**
2564
2555
  * * Field Name: RunByUser
2565
2556
  * * Display Name: Run By User
@@ -2659,13 +2650,13 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
2659
2650
  * * Display Name: Run Started At
2660
2651
  * * SQL Data Type: datetime
2661
2652
  */
2662
- get RunStartedAt(): Date;
2653
+ get RunStartedAt(): Date | null;
2663
2654
  /**
2664
2655
  * * Field Name: RunEndedAt
2665
2656
  * * Display Name: Run Ended At
2666
2657
  * * SQL Data Type: datetime
2667
2658
  */
2668
- get RunEndedAt(): Date;
2659
+ get RunEndedAt(): Date | null;
2669
2660
  }
2670
2661
  /**
2671
2662
  * Error Logs - strongly typed entity sub-class
@@ -2710,28 +2701,28 @@ export declare class ErrorLogEntity extends BaseEntity {
2710
2701
  * * SQL Data Type: int
2711
2702
  * * Related Entity/Foreign Key: Company Integration Runs (vwCompanyIntegrationRuns.ID)
2712
2703
  */
2713
- get CompanyIntegrationRunID(): number;
2714
- set CompanyIntegrationRunID(value: number);
2704
+ get CompanyIntegrationRunID(): number | null;
2705
+ set CompanyIntegrationRunID(value: number | null);
2715
2706
  /**
2716
2707
  * * Field Name: CompanyIntegrationRunDetailID
2717
2708
  * * Display Name: CompanyIntegrationRunDetail ID
2718
2709
  * * SQL Data Type: int
2719
2710
  * * Related Entity/Foreign Key: Company Integration Run Details (vwCompanyIntegrationRunDetails.ID)
2720
2711
  */
2721
- get CompanyIntegrationRunDetailID(): number;
2722
- set CompanyIntegrationRunDetailID(value: number);
2712
+ get CompanyIntegrationRunDetailID(): number | null;
2713
+ set CompanyIntegrationRunDetailID(value: number | null);
2723
2714
  /**
2724
2715
  * * Field Name: Code
2725
2716
  * * SQL Data Type: nchar(20)
2726
2717
  */
2727
- get Code(): string;
2728
- set Code(value: string);
2718
+ get Code(): string | null;
2719
+ set Code(value: string | null);
2729
2720
  /**
2730
2721
  * * Field Name: Message
2731
2722
  * * SQL Data Type: nvarchar(MAX)
2732
2723
  */
2733
- get Message(): string;
2734
- set Message(value: string);
2724
+ get Message(): string | null;
2725
+ set Message(value: string | null);
2735
2726
  /**
2736
2727
  * * Field Name: CreatedAt
2737
2728
  * * Display Name: Created At
@@ -2745,26 +2736,26 @@ export declare class ErrorLogEntity extends BaseEntity {
2745
2736
  * * SQL Data Type: nvarchar(50)
2746
2737
  * * Default Value: suser_name()
2747
2738
  */
2748
- get CreatedBy(): string;
2749
- set CreatedBy(value: string);
2739
+ get CreatedBy(): string | null;
2740
+ set CreatedBy(value: string | null);
2750
2741
  /**
2751
2742
  * * Field Name: Status
2752
2743
  * * SQL Data Type: nvarchar(10)
2753
2744
  */
2754
- get Status(): string;
2755
- set Status(value: string);
2745
+ get Status(): string | null;
2746
+ set Status(value: string | null);
2756
2747
  /**
2757
2748
  * * Field Name: Category
2758
2749
  * * SQL Data Type: nvarchar(20)
2759
2750
  */
2760
- get Category(): string;
2761
- set Category(value: string);
2751
+ get Category(): string | null;
2752
+ set Category(value: string | null);
2762
2753
  /**
2763
2754
  * * Field Name: Details
2764
2755
  * * SQL Data Type: nvarchar(MAX)
2765
2756
  */
2766
- get Details(): string;
2767
- set Details(value: string);
2757
+ get Details(): string | null;
2758
+ set Details(value: string | null);
2768
2759
  }
2769
2760
  /**
2770
2761
  * Applications - strongly typed entity sub-class
@@ -2813,8 +2804,8 @@ export declare class ApplicationEntity extends BaseEntity {
2813
2804
  * * Field Name: Description
2814
2805
  * * SQL Data Type: nvarchar(500)
2815
2806
  */
2816
- get Description(): string;
2817
- set Description(value: string);
2807
+ get Description(): string | null;
2808
+ set Description(value: string | null);
2818
2809
  /**
2819
2810
  * * Field Name: CreatedAt
2820
2811
  * * Display Name: Created At
@@ -2864,8 +2855,8 @@ export declare class ApplicationEntityEntity extends BaseEntity {
2864
2855
  * * SQL Data Type: nvarchar(50)
2865
2856
  * * Related Entity/Foreign Key: Applications (vwApplications.Name)
2866
2857
  */
2867
- get ApplicationName(): string;
2868
- set ApplicationName(value: string);
2858
+ get ApplicationName(): string | null;
2859
+ set ApplicationName(value: string | null);
2869
2860
  /**
2870
2861
  * * Field Name: EntityID
2871
2862
  * * Display Name: Entity ID
@@ -2923,19 +2914,19 @@ export declare class ApplicationEntityEntity extends BaseEntity {
2923
2914
  * * Display Name: Entity Code Name
2924
2915
  * * SQL Data Type: nvarchar(4000)
2925
2916
  */
2926
- get EntityCodeName(): string;
2917
+ get EntityCodeName(): string | null;
2927
2918
  /**
2928
2919
  * * Field Name: EntityClassName
2929
2920
  * * Display Name: Entity Class Name
2930
2921
  * * SQL Data Type: nvarchar(4000)
2931
2922
  */
2932
- get EntityClassName(): string;
2923
+ get EntityClassName(): string | null;
2933
2924
  /**
2934
2925
  * * Field Name: EntityBaseTableCodeName
2935
2926
  * * Display Name: Entity Base Table Code Name
2936
2927
  * * SQL Data Type: nvarchar(4000)
2937
2928
  */
2938
- get EntityBaseTableCodeName(): string;
2929
+ get EntityBaseTableCodeName(): string | null;
2939
2930
  }
2940
2931
  /**
2941
2932
  * Entity Permissions - strongly typed entity sub-class
@@ -2979,8 +2970,8 @@ export declare class EntityPermissionEntity extends BaseEntity {
2979
2970
  * * SQL Data Type: nvarchar(50)
2980
2971
  * * Related Entity/Foreign Key: Roles (vwRoles.Name)
2981
2972
  */
2982
- get RoleName(): string;
2983
- set RoleName(value: string);
2973
+ get RoleName(): string | null;
2974
+ set RoleName(value: string | null);
2984
2975
  /**
2985
2976
  * * Field Name: CanCreate
2986
2977
  * * Display Name: Can Create
@@ -3019,32 +3010,32 @@ export declare class EntityPermissionEntity extends BaseEntity {
3019
3010
  * * SQL Data Type: int
3020
3011
  * * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
3021
3012
  */
3022
- get ReadRLSFilterID(): number;
3023
- set ReadRLSFilterID(value: number);
3013
+ get ReadRLSFilterID(): number | null;
3014
+ set ReadRLSFilterID(value: number | null);
3024
3015
  /**
3025
3016
  * * Field Name: CreateRLSFilterID
3026
3017
  * * Display Name: Create RLSFilter ID
3027
3018
  * * SQL Data Type: int
3028
3019
  * * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
3029
3020
  */
3030
- get CreateRLSFilterID(): number;
3031
- set CreateRLSFilterID(value: number);
3021
+ get CreateRLSFilterID(): number | null;
3022
+ set CreateRLSFilterID(value: number | null);
3032
3023
  /**
3033
3024
  * * Field Name: UpdateRLSFilterID
3034
3025
  * * Display Name: Update RLSFilter ID
3035
3026
  * * SQL Data Type: int
3036
3027
  * * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
3037
3028
  */
3038
- get UpdateRLSFilterID(): number;
3039
- set UpdateRLSFilterID(value: number);
3029
+ get UpdateRLSFilterID(): number | null;
3030
+ set UpdateRLSFilterID(value: number | null);
3040
3031
  /**
3041
3032
  * * Field Name: DeleteRLSFilterID
3042
3033
  * * Display Name: Delete RLSFilter ID
3043
3034
  * * SQL Data Type: int
3044
3035
  * * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
3045
3036
  */
3046
- get DeleteRLSFilterID(): number;
3047
- set DeleteRLSFilterID(value: number);
3037
+ get DeleteRLSFilterID(): number | null;
3038
+ set DeleteRLSFilterID(value: number | null);
3048
3039
  /**
3049
3040
  * * Field Name: CreatedAt
3050
3041
  * * Display Name: Created At
@@ -3075,25 +3066,25 @@ export declare class EntityPermissionEntity extends BaseEntity {
3075
3066
  * * Display Name: Create RLSFilter
3076
3067
  * * SQL Data Type: nvarchar(100)
3077
3068
  */
3078
- get CreateRLSFilter(): string;
3069
+ get CreateRLSFilter(): string | null;
3079
3070
  /**
3080
3071
  * * Field Name: ReadRLSFilter
3081
3072
  * * Display Name: Read RLSFilter
3082
3073
  * * SQL Data Type: nvarchar(100)
3083
3074
  */
3084
- get ReadRLSFilter(): string;
3075
+ get ReadRLSFilter(): string | null;
3085
3076
  /**
3086
3077
  * * Field Name: UpdateRLSFilter
3087
3078
  * * Display Name: Update RLSFilter
3088
3079
  * * SQL Data Type: nvarchar(100)
3089
3080
  */
3090
- get UpdateRLSFilter(): string;
3081
+ get UpdateRLSFilter(): string | null;
3091
3082
  /**
3092
3083
  * * Field Name: DeleteRLSFilter
3093
3084
  * * Display Name: Delete RLSFilter
3094
3085
  * * SQL Data Type: nvarchar(100)
3095
3086
  */
3096
- get DeleteRLSFilter(): string;
3087
+ get DeleteRLSFilter(): string | null;
3097
3088
  }
3098
3089
  /**
3099
3090
  * User Application Entities - strongly typed entity sub-class
@@ -3189,15 +3180,6 @@ export declare class UserApplicationEntity extends BaseEntity {
3189
3180
  */
3190
3181
  Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
3191
3182
  /**
3192
- * User Applications - 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.
3193
- * @public
3194
- * @method
3195
- * @override
3196
- * @memberof UserApplicationEntity
3197
- * @throws {Error} - Delete is not allowed for User Applications, to enable it set AllowDeleteAPI to 1 in the database.
3198
- */
3199
- Delete(): Promise<boolean>;
3200
- /**
3201
3183
  * * Field Name: ID
3202
3184
  * * SQL Data Type: int
3203
3185
  */
@@ -3312,20 +3294,20 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
3312
3294
  * * Display Name: Request Method
3313
3295
  * * SQL Data Type: nvarchar(12)
3314
3296
  */
3315
- get RequestMethod(): string;
3316
- set RequestMethod(value: string);
3297
+ get RequestMethod(): string | null;
3298
+ set RequestMethod(value: string | null);
3317
3299
  /**
3318
3300
  * * Field Name: URL
3319
3301
  * * SQL Data Type: nvarchar(MAX)
3320
3302
  */
3321
- get URL(): string;
3322
- set URL(value: string);
3303
+ get URL(): string | null;
3304
+ set URL(value: string | null);
3323
3305
  /**
3324
3306
  * * Field Name: Parameters
3325
3307
  * * SQL Data Type: nvarchar(MAX)
3326
3308
  */
3327
- get Parameters(): string;
3328
- set Parameters(value: string);
3309
+ get Parameters(): string | null;
3310
+ set Parameters(value: string | null);
3329
3311
  }
3330
3312
  /**
3331
3313
  * Lists - strongly typed entity sub-class
@@ -3365,16 +3347,16 @@ export declare class ListEntity extends BaseEntity {
3365
3347
  * * Field Name: Description
3366
3348
  * * SQL Data Type: nvarchar(MAX)
3367
3349
  */
3368
- get Description(): string;
3369
- set Description(value: string);
3350
+ get Description(): string | null;
3351
+ set Description(value: string | null);
3370
3352
  /**
3371
3353
  * * Field Name: EntityID
3372
3354
  * * Display Name: Entity ID
3373
3355
  * * SQL Data Type: int
3374
3356
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
3375
3357
  */
3376
- get EntityID(): number;
3377
- set EntityID(value: number);
3358
+ get EntityID(): number | null;
3359
+ set EntityID(value: number | null);
3378
3360
  /**
3379
3361
  * * Field Name: UserID
3380
3362
  * * Display Name: User ID
@@ -3388,16 +3370,16 @@ export declare class ListEntity extends BaseEntity {
3388
3370
  * * Display Name: External System Record ID
3389
3371
  * * SQL Data Type: nvarchar(100)
3390
3372
  */
3391
- get ExternalSystemRecordID(): string;
3392
- set ExternalSystemRecordID(value: string);
3373
+ get ExternalSystemRecordID(): string | null;
3374
+ set ExternalSystemRecordID(value: string | null);
3393
3375
  /**
3394
3376
  * * Field Name: CompanyIntegrationID
3395
3377
  * * Display Name: Company Integration ID
3396
3378
  * * SQL Data Type: int
3397
3379
  * * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)
3398
3380
  */
3399
- get CompanyIntegrationID(): number;
3400
- set CompanyIntegrationID(value: number);
3381
+ get CompanyIntegrationID(): number | null;
3382
+ set CompanyIntegrationID(value: number | null);
3401
3383
  /**
3402
3384
  * * Field Name: CreatedAt
3403
3385
  * * Display Name: Created At
@@ -3417,7 +3399,7 @@ export declare class ListEntity extends BaseEntity {
3417
3399
  * * Display Name: Entity
3418
3400
  * * SQL Data Type: nvarchar(255)
3419
3401
  */
3420
- get Entity(): string;
3402
+ get Entity(): string | null;
3421
3403
  /**
3422
3404
  * * Field Name: User
3423
3405
  * * Display Name: User
@@ -3678,8 +3660,8 @@ export declare class WorkflowRunEntity extends BaseEntity {
3678
3660
  * * Display Name: Ended At
3679
3661
  * * SQL Data Type: datetime
3680
3662
  */
3681
- get EndedAt(): Date;
3682
- set EndedAt(value: Date);
3663
+ get EndedAt(): Date | null;
3664
+ set EndedAt(value: Date | null);
3683
3665
  /**
3684
3666
  * * Field Name: Status
3685
3667
  * * SQL Data Type: nchar(10)
@@ -3691,8 +3673,8 @@ export declare class WorkflowRunEntity extends BaseEntity {
3691
3673
  * * Field Name: Results
3692
3674
  * * SQL Data Type: nvarchar(MAX)
3693
3675
  */
3694
- get Results(): string;
3695
- set Results(value: string);
3676
+ get Results(): string | null;
3677
+ set Results(value: string | null);
3696
3678
  /**
3697
3679
  * * Field Name: Workflow
3698
3680
  * * Display Name: Workflow
@@ -3753,8 +3735,8 @@ export declare class WorkflowEntity extends BaseEntity {
3753
3735
  * * Field Name: Description
3754
3736
  * * SQL Data Type: nvarchar(MAX)
3755
3737
  */
3756
- get Description(): string;
3757
- set Description(value: string);
3738
+ get Description(): string | null;
3739
+ set Description(value: string | null);
3758
3740
  /**
3759
3741
  * * Field Name: WorkflowEngineName
3760
3742
  * * Display Name: Workflow Engine Name
@@ -3840,8 +3822,8 @@ export declare class WorkflowEngineEntity extends BaseEntity {
3840
3822
  * * Field Name: Description
3841
3823
  * * SQL Data Type: nvarchar(MAX)
3842
3824
  */
3843
- get Description(): string;
3844
- set Description(value: string);
3825
+ get Description(): string | null;
3826
+ set Description(value: string | null);
3845
3827
  /**
3846
3828
  * * Field Name: DriverPath
3847
3829
  * * Display Name: Driver Path
@@ -3971,8 +3953,8 @@ export declare class RecordChangeEntity extends BaseEntity {
3971
3953
  * * Field Name: Comments
3972
3954
  * * SQL Data Type: nvarchar(MAX)
3973
3955
  */
3974
- get Comments(): string;
3975
- set Comments(value: string);
3956
+ get Comments(): string | null;
3957
+ set Comments(value: string | null);
3976
3958
  /**
3977
3959
  * * Field Name: Entity
3978
3960
  * * Display Name: Entity
@@ -4010,15 +3992,6 @@ export declare class UserRoleEntity extends BaseEntity {
4010
3992
  */
4011
3993
  Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
4012
3994
  /**
4013
- * User Roles - 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.
4014
- * @public
4015
- * @method
4016
- * @override
4017
- * @memberof UserRoleEntity
4018
- * @throws {Error} - Delete is not allowed for User Roles, to enable it set AllowDeleteAPI to 1 in the database.
4019
- */
4020
- Delete(): Promise<boolean>;
4021
- /**
4022
3995
  * * Field Name: ID
4023
3996
  * * Display Name: ID
4024
3997
  * * SQL Data Type: int
@@ -4120,15 +4093,15 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity {
4120
4093
  * * Display Name: Description
4121
4094
  * * SQL Data Type: nvarchar(MAX)
4122
4095
  */
4123
- get Description(): string;
4124
- set Description(value: string);
4096
+ get Description(): string | null;
4097
+ set Description(value: string | null);
4125
4098
  /**
4126
4099
  * * Field Name: FilterText
4127
4100
  * * Display Name: Filter Text
4128
4101
  * * SQL Data Type: nvarchar(MAX)
4129
4102
  */
4130
- get FilterText(): string;
4131
- set FilterText(value: string);
4103
+ get FilterText(): string | null;
4104
+ set FilterText(value: string | null);
4132
4105
  /**
4133
4106
  * * Field Name: CreatedAt
4134
4107
  * * Display Name: Created At
@@ -4188,8 +4161,8 @@ export declare class AuditLogEntity extends BaseEntity {
4188
4161
  * * SQL Data Type: nvarchar(50)
4189
4162
  * * Related Entity/Foreign Key: Audit Log Types (vwAuditLogTypes.Name)
4190
4163
  */
4191
- get AuditLogTypeName(): string;
4192
- set AuditLogTypeName(value: string);
4164
+ get AuditLogTypeName(): string | null;
4165
+ set AuditLogTypeName(value: string | null);
4193
4166
  /**
4194
4167
  * * Field Name: UserID
4195
4168
  * * Display Name: User ID
@@ -4204,8 +4177,8 @@ export declare class AuditLogEntity extends BaseEntity {
4204
4177
  * * SQL Data Type: nvarchar(100)
4205
4178
  * * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
4206
4179
  */
4207
- get AuthorizationName(): string;
4208
- set AuthorizationName(value: string);
4180
+ get AuthorizationName(): string | null;
4181
+ set AuthorizationName(value: string | null);
4209
4182
  /**
4210
4183
  * * Field Name: Status
4211
4184
  * * Display Name: Status
@@ -4219,30 +4192,30 @@ export declare class AuditLogEntity extends BaseEntity {
4219
4192
  * * Display Name: Description
4220
4193
  * * SQL Data Type: nvarchar(MAX)
4221
4194
  */
4222
- get Description(): string;
4223
- set Description(value: string);
4195
+ get Description(): string | null;
4196
+ set Description(value: string | null);
4224
4197
  /**
4225
4198
  * * Field Name: Details
4226
4199
  * * Display Name: Details
4227
4200
  * * SQL Data Type: nvarchar(MAX)
4228
4201
  */
4229
- get Details(): string;
4230
- set Details(value: string);
4202
+ get Details(): string | null;
4203
+ set Details(value: string | null);
4231
4204
  /**
4232
4205
  * * Field Name: EntityID
4233
4206
  * * Display Name: Entity ID
4234
4207
  * * SQL Data Type: int
4235
4208
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
4236
4209
  */
4237
- get EntityID(): number;
4238
- set EntityID(value: number);
4210
+ get EntityID(): number | null;
4211
+ set EntityID(value: number | null);
4239
4212
  /**
4240
4213
  * * Field Name: RecordID
4241
4214
  * * Display Name: Record
4242
4215
  * * SQL Data Type: nvarchar(255)
4243
4216
  */
4244
- get RecordID(): string;
4245
- set RecordID(value: string);
4217
+ get RecordID(): string | null;
4218
+ set RecordID(value: string | null);
4246
4219
  /**
4247
4220
  * * Field Name: CreatedAt
4248
4221
  * * Display Name: Created At
@@ -4268,7 +4241,7 @@ export declare class AuditLogEntity extends BaseEntity {
4268
4241
  * * Display Name: Entity
4269
4242
  * * SQL Data Type: nvarchar(255)
4270
4243
  */
4271
- get Entity(): string;
4244
+ get Entity(): string | null;
4272
4245
  }
4273
4246
  /**
4274
4247
  * Authorizations - strongly typed entity sub-class
@@ -4323,8 +4296,8 @@ export declare class AuthorizationEntity extends BaseEntity {
4323
4296
  * * SQL Data Type: int
4324
4297
  * * Related Entity/Foreign Key: Authorizations (vwAuthorizations.ID)
4325
4298
  */
4326
- get ParentID(): number;
4327
- set ParentID(value: number);
4299
+ get ParentID(): number | null;
4300
+ set ParentID(value: number | null);
4328
4301
  /**
4329
4302
  * * Field Name: Name
4330
4303
  * * Display Name: Name
@@ -4353,8 +4326,8 @@ export declare class AuthorizationEntity extends BaseEntity {
4353
4326
  * * Display Name: Description
4354
4327
  * * SQL Data Type: nvarchar(MAX)
4355
4328
  */
4356
- get Description(): string;
4357
- set Description(value: string);
4329
+ get Description(): string | null;
4330
+ set Description(value: string | null);
4358
4331
  /**
4359
4332
  * * Field Name: CreatedAt
4360
4333
  * * Display Name: Created At
@@ -4423,16 +4396,16 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
4423
4396
  * * SQL Data Type: nvarchar(100)
4424
4397
  * * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
4425
4398
  */
4426
- get AuthorizationName(): string;
4427
- set AuthorizationName(value: string);
4399
+ get AuthorizationName(): string | null;
4400
+ set AuthorizationName(value: string | null);
4428
4401
  /**
4429
4402
  * * Field Name: RoleName
4430
4403
  * * Display Name: Role Name
4431
4404
  * * SQL Data Type: nvarchar(50)
4432
4405
  * * Related Entity/Foreign Key: Roles (vwRoles.Name)
4433
4406
  */
4434
- get RoleName(): string;
4435
- set RoleName(value: string);
4407
+ get RoleName(): string | null;
4408
+ set RoleName(value: string | null);
4436
4409
  /**
4437
4410
  * * Field Name: Type
4438
4411
  * * Display Name: Type
@@ -4523,8 +4496,8 @@ export declare class AuditLogTypeEntity extends BaseEntity {
4523
4496
  * * SQL Data Type: int
4524
4497
  * * Related Entity/Foreign Key: Audit Log Types (vwAuditLogTypes.ID)
4525
4498
  */
4526
- get ParentID(): number;
4527
- set ParentID(value: number);
4499
+ get ParentID(): number | null;
4500
+ set ParentID(value: number | null);
4528
4501
  /**
4529
4502
  * * Field Name: Name
4530
4503
  * * Display Name: Name
@@ -4537,16 +4510,16 @@ export declare class AuditLogTypeEntity extends BaseEntity {
4537
4510
  * * Display Name: Description
4538
4511
  * * SQL Data Type: nvarchar(MAX)
4539
4512
  */
4540
- get Description(): string;
4541
- set Description(value: string);
4513
+ get Description(): string | null;
4514
+ set Description(value: string | null);
4542
4515
  /**
4543
4516
  * * Field Name: AuthorizationName
4544
4517
  * * Display Name: Authorization Name
4545
4518
  * * SQL Data Type: nvarchar(100)
4546
4519
  * * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
4547
4520
  */
4548
- get AuthorizationName(): string;
4549
- set AuthorizationName(value: string);
4521
+ get AuthorizationName(): string | null;
4522
+ set AuthorizationName(value: string | null);
4550
4523
  /**
4551
4524
  * * Field Name: CreatedAt
4552
4525
  * * Display Name: Created At
@@ -4566,7 +4539,7 @@ export declare class AuditLogTypeEntity extends BaseEntity {
4566
4539
  * * Display Name: Parent
4567
4540
  * * SQL Data Type: nvarchar(50)
4568
4541
  */
4569
- get Parent(): string;
4542
+ get Parent(): string | null;
4570
4543
  }
4571
4544
  /**
4572
4545
  * Entity Field Values - strongly typed entity sub-class
@@ -4650,15 +4623,15 @@ export declare class EntityFieldValueEntity extends BaseEntity {
4650
4623
  * * Display Name: Code
4651
4624
  * * SQL Data Type: nvarchar(50)
4652
4625
  */
4653
- get Code(): string;
4654
- set Code(value: string);
4626
+ get Code(): string | null;
4627
+ set Code(value: string | null);
4655
4628
  /**
4656
4629
  * * Field Name: Description
4657
4630
  * * Display Name: Description
4658
4631
  * * SQL Data Type: nvarchar(MAX)
4659
4632
  */
4660
- get Description(): string;
4661
- set Description(value: string);
4633
+ get Description(): string | null;
4634
+ set Description(value: string | null);
4662
4635
  /**
4663
4636
  * * Field Name: CreatedAt
4664
4637
  * * Display Name: Created At
@@ -4730,8 +4703,8 @@ export declare class AIModelEntity extends BaseEntity {
4730
4703
  * * Display Name: Vendor
4731
4704
  * * SQL Data Type: nvarchar(50)
4732
4705
  */
4733
- get Vendor(): string;
4734
- set Vendor(value: string);
4706
+ get Vendor(): string | null;
4707
+ set Vendor(value: string | null);
4735
4708
  /**
4736
4709
  * * Field Name: AIModelTypeID
4737
4710
  * * Display Name: AI Model Type ID
@@ -4745,22 +4718,22 @@ export declare class AIModelEntity extends BaseEntity {
4745
4718
  * * Display Name: Description
4746
4719
  * * SQL Data Type: nvarchar(MAX)
4747
4720
  */
4748
- get Description(): string;
4749
- set Description(value: string);
4721
+ get Description(): string | null;
4722
+ set Description(value: string | null);
4750
4723
  /**
4751
4724
  * * Field Name: DriverClass
4752
4725
  * * Display Name: Driver Class
4753
4726
  * * SQL Data Type: nvarchar(100)
4754
4727
  */
4755
- get DriverClass(): string;
4756
- set DriverClass(value: string);
4728
+ get DriverClass(): string | null;
4729
+ set DriverClass(value: string | null);
4757
4730
  /**
4758
4731
  * * Field Name: DriverImportPath
4759
4732
  * * Display Name: Driver Import Path
4760
4733
  * * SQL Data Type: nvarchar(255)
4761
4734
  */
4762
- get DriverImportPath(): string;
4763
- set DriverImportPath(value: string);
4735
+ get DriverImportPath(): string | null;
4736
+ set DriverImportPath(value: string | null);
4764
4737
  /**
4765
4738
  * * Field Name: IsActive
4766
4739
  * * Display Name: Is Active
@@ -4834,23 +4807,23 @@ export declare class AIActionEntity extends BaseEntity {
4834
4807
  * * Display Name: Description
4835
4808
  * * SQL Data Type: nvarchar(MAX)
4836
4809
  */
4837
- get Description(): string;
4838
- set Description(value: string);
4810
+ get Description(): string | null;
4811
+ set Description(value: string | null);
4839
4812
  /**
4840
4813
  * * Field Name: DefaultModelID
4841
4814
  * * Display Name: Default Model ID
4842
4815
  * * SQL Data Type: int
4843
4816
  * * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
4844
4817
  */
4845
- get DefaultModelID(): number;
4846
- set DefaultModelID(value: number);
4818
+ get DefaultModelID(): number | null;
4819
+ set DefaultModelID(value: number | null);
4847
4820
  /**
4848
4821
  * * Field Name: DefaultPrompt
4849
4822
  * * Display Name: Default Prompt
4850
4823
  * * SQL Data Type: nvarchar(MAX)
4851
4824
  */
4852
- get DefaultPrompt(): string;
4853
- set DefaultPrompt(value: string);
4825
+ get DefaultPrompt(): string | null;
4826
+ set DefaultPrompt(value: string | null);
4854
4827
  /**
4855
4828
  * * Field Name: IsActive
4856
4829
  * * Display Name: Is Active
@@ -4878,7 +4851,7 @@ export declare class AIActionEntity extends BaseEntity {
4878
4851
  * * Display Name: Default Model
4879
4852
  * * SQL Data Type: nvarchar(50)
4880
4853
  */
4881
- get DefaultModel(): string;
4854
+ get DefaultModel(): string | null;
4882
4855
  }
4883
4856
  /**
4884
4857
  * AI Model Actions - strongly typed entity sub-class
@@ -5029,8 +5002,8 @@ export declare class EntityAIActionEntity extends BaseEntity {
5029
5002
  * * SQL Data Type: int
5030
5003
  * * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
5031
5004
  */
5032
- get AIModelID(): number;
5033
- set AIModelID(value: number);
5005
+ get AIModelID(): number | null;
5006
+ set AIModelID(value: number | null);
5034
5007
  /**
5035
5008
  * * Field Name: Name
5036
5009
  * * Display Name: Name
@@ -5043,8 +5016,8 @@ export declare class EntityAIActionEntity extends BaseEntity {
5043
5016
  * * Display Name: Prompt
5044
5017
  * * SQL Data Type: nvarchar(MAX)
5045
5018
  */
5046
- get Prompt(): string;
5047
- set Prompt(value: string);
5019
+ get Prompt(): string | null;
5020
+ set Prompt(value: string | null);
5048
5021
  /**
5049
5022
  * * Field Name: TriggerEvent
5050
5023
  * * Display Name: Trigger Event
@@ -5073,8 +5046,8 @@ export declare class EntityAIActionEntity extends BaseEntity {
5073
5046
  * * Display Name: Output Field
5074
5047
  * * SQL Data Type: nvarchar(50)
5075
5048
  */
5076
- get OutputField(): string;
5077
- set OutputField(value: string);
5049
+ get OutputField(): string | null;
5050
+ set OutputField(value: string | null);
5078
5051
  /**
5079
5052
  * * Field Name: SkipIfOutputFieldNotEmpty
5080
5053
  * * Display Name: Skip If Output Field Not Empty
@@ -5089,15 +5062,15 @@ export declare class EntityAIActionEntity extends BaseEntity {
5089
5062
  * * SQL Data Type: int
5090
5063
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
5091
5064
  */
5092
- get OutputEntityID(): number;
5093
- set OutputEntityID(value: number);
5065
+ get OutputEntityID(): number | null;
5066
+ set OutputEntityID(value: number | null);
5094
5067
  /**
5095
5068
  * * Field Name: Comments
5096
5069
  * * Display Name: Comments
5097
5070
  * * SQL Data Type: nvarchar(MAX)
5098
5071
  */
5099
- get Comments(): string;
5100
- set Comments(value: string);
5072
+ get Comments(): string | null;
5073
+ set Comments(value: string | null);
5101
5074
  /**
5102
5075
  * * Field Name: Entity
5103
5076
  * * Display Name: Entity
@@ -5115,13 +5088,13 @@ export declare class EntityAIActionEntity extends BaseEntity {
5115
5088
  * * Display Name: AIModel
5116
5089
  * * SQL Data Type: nvarchar(50)
5117
5090
  */
5118
- get AIModel(): string;
5091
+ get AIModel(): string | null;
5119
5092
  /**
5120
5093
  * * Field Name: OutputEntity
5121
5094
  * * Display Name: Output Entity
5122
5095
  * * SQL Data Type: nvarchar(255)
5123
5096
  */
5124
- get OutputEntity(): string;
5097
+ get OutputEntity(): string | null;
5125
5098
  }
5126
5099
  /**
5127
5100
  * AI Model Types - strongly typed entity sub-class
@@ -5173,8 +5146,8 @@ export declare class AIModelTypeEntity extends BaseEntity {
5173
5146
  * * Display Name: Description
5174
5147
  * * SQL Data Type: nvarchar(MAX)
5175
5148
  */
5176
- get Description(): string;
5177
- set Description(value: string);
5149
+ get Description(): string | null;
5150
+ set Description(value: string | null);
5178
5151
  }
5179
5152
  /**
5180
5153
  * Queue Types - strongly typed entity sub-class
@@ -5235,8 +5208,8 @@ export declare class QueueTypeEntity extends BaseEntity {
5235
5208
  * * Display Name: Description
5236
5209
  * * SQL Data Type: nvarchar(MAX)
5237
5210
  */
5238
- get Description(): string;
5239
- set Description(value: string);
5211
+ get Description(): string | null;
5212
+ set Description(value: string | null);
5240
5213
  /**
5241
5214
  * * Field Name: DriverClass
5242
5215
  * * Display Name: Driver Class
@@ -5249,8 +5222,8 @@ export declare class QueueTypeEntity extends BaseEntity {
5249
5222
  * * Display Name: Driver Import Path
5250
5223
  * * SQL Data Type: nvarchar(200)
5251
5224
  */
5252
- get DriverImportPath(): string;
5253
- set DriverImportPath(value: string);
5225
+ get DriverImportPath(): string | null;
5226
+ set DriverImportPath(value: string | null);
5254
5227
  /**
5255
5228
  * * Field Name: IsActive
5256
5229
  * * Display Name: Is Active
@@ -5310,8 +5283,8 @@ export declare class QueueEntity extends BaseEntity {
5310
5283
  * * Display Name: Description
5311
5284
  * * SQL Data Type: nvarchar(MAX)
5312
5285
  */
5313
- get Description(): string;
5314
- set Description(value: string);
5286
+ get Description(): string | null;
5287
+ set Description(value: string | null);
5315
5288
  /**
5316
5289
  * * Field Name: QueueTypeID
5317
5290
  * * Display Name: Queue Type ID
@@ -5333,78 +5306,78 @@ export declare class QueueEntity extends BaseEntity {
5333
5306
  * * Display Name: Process PID
5334
5307
  * * SQL Data Type: int
5335
5308
  */
5336
- get ProcessPID(): number;
5337
- set ProcessPID(value: number);
5309
+ get ProcessPID(): number | null;
5310
+ set ProcessPID(value: number | null);
5338
5311
  /**
5339
5312
  * * Field Name: ProcessPlatform
5340
5313
  * * Display Name: Process Platform
5341
5314
  * * SQL Data Type: nvarchar(30)
5342
5315
  */
5343
- get ProcessPlatform(): string;
5344
- set ProcessPlatform(value: string);
5316
+ get ProcessPlatform(): string | null;
5317
+ set ProcessPlatform(value: string | null);
5345
5318
  /**
5346
5319
  * * Field Name: ProcessVersion
5347
5320
  * * Display Name: Process Version
5348
5321
  * * SQL Data Type: nvarchar(15)
5349
5322
  */
5350
- get ProcessVersion(): string;
5351
- set ProcessVersion(value: string);
5323
+ get ProcessVersion(): string | null;
5324
+ set ProcessVersion(value: string | null);
5352
5325
  /**
5353
5326
  * * Field Name: ProcessCwd
5354
5327
  * * Display Name: Process Cwd
5355
5328
  * * SQL Data Type: nvarchar(100)
5356
5329
  */
5357
- get ProcessCwd(): string;
5358
- set ProcessCwd(value: string);
5330
+ get ProcessCwd(): string | null;
5331
+ set ProcessCwd(value: string | null);
5359
5332
  /**
5360
5333
  * * Field Name: ProcessIPAddress
5361
5334
  * * Display Name: Process IPAddress
5362
5335
  * * SQL Data Type: nvarchar(50)
5363
5336
  */
5364
- get ProcessIPAddress(): string;
5365
- set ProcessIPAddress(value: string);
5337
+ get ProcessIPAddress(): string | null;
5338
+ set ProcessIPAddress(value: string | null);
5366
5339
  /**
5367
5340
  * * Field Name: ProcessMacAddress
5368
5341
  * * Display Name: Process Mac Address
5369
5342
  * * SQL Data Type: nvarchar(50)
5370
5343
  */
5371
- get ProcessMacAddress(): string;
5372
- set ProcessMacAddress(value: string);
5344
+ get ProcessMacAddress(): string | null;
5345
+ set ProcessMacAddress(value: string | null);
5373
5346
  /**
5374
5347
  * * Field Name: ProcessOSName
5375
5348
  * * Display Name: Process OSName
5376
5349
  * * SQL Data Type: nvarchar(25)
5377
5350
  */
5378
- get ProcessOSName(): string;
5379
- set ProcessOSName(value: string);
5351
+ get ProcessOSName(): string | null;
5352
+ set ProcessOSName(value: string | null);
5380
5353
  /**
5381
5354
  * * Field Name: ProcessOSVersion
5382
5355
  * * Display Name: Process OSVersion
5383
5356
  * * SQL Data Type: nvarchar(10)
5384
5357
  */
5385
- get ProcessOSVersion(): string;
5386
- set ProcessOSVersion(value: string);
5358
+ get ProcessOSVersion(): string | null;
5359
+ set ProcessOSVersion(value: string | null);
5387
5360
  /**
5388
5361
  * * Field Name: ProcessHostName
5389
5362
  * * Display Name: Process Host Name
5390
5363
  * * SQL Data Type: nvarchar(50)
5391
5364
  */
5392
- get ProcessHostName(): string;
5393
- set ProcessHostName(value: string);
5365
+ get ProcessHostName(): string | null;
5366
+ set ProcessHostName(value: string | null);
5394
5367
  /**
5395
5368
  * * Field Name: ProcessUserID
5396
5369
  * * Display Name: Process User ID
5397
5370
  * * SQL Data Type: nvarchar(25)
5398
5371
  */
5399
- get ProcessUserID(): string;
5400
- set ProcessUserID(value: string);
5372
+ get ProcessUserID(): string | null;
5373
+ set ProcessUserID(value: string | null);
5401
5374
  /**
5402
5375
  * * Field Name: ProcessUserName
5403
5376
  * * Display Name: Process User Name
5404
5377
  * * SQL Data Type: nvarchar(50)
5405
5378
  */
5406
- get ProcessUserName(): string;
5407
- set ProcessUserName(value: string);
5379
+ get ProcessUserName(): string | null;
5380
+ set ProcessUserName(value: string | null);
5408
5381
  /**
5409
5382
  * * Field Name: LastHeartbeat
5410
5383
  * * Display Name: Last Heartbeat
@@ -5493,50 +5466,50 @@ export declare class QueueTaskEntity extends BaseEntity {
5493
5466
  * * Display Name: Started At
5494
5467
  * * SQL Data Type: datetime
5495
5468
  */
5496
- get StartedAt(): Date;
5497
- set StartedAt(value: Date);
5469
+ get StartedAt(): Date | null;
5470
+ set StartedAt(value: Date | null);
5498
5471
  /**
5499
5472
  * * Field Name: EndedAt
5500
5473
  * * Display Name: Ended At
5501
5474
  * * SQL Data Type: datetime
5502
5475
  */
5503
- get EndedAt(): Date;
5504
- set EndedAt(value: Date);
5476
+ get EndedAt(): Date | null;
5477
+ set EndedAt(value: Date | null);
5505
5478
  /**
5506
5479
  * * Field Name: Data
5507
5480
  * * Display Name: Data
5508
5481
  * * SQL Data Type: nvarchar(MAX)
5509
5482
  */
5510
- get Data(): string;
5511
- set Data(value: string);
5483
+ get Data(): string | null;
5484
+ set Data(value: string | null);
5512
5485
  /**
5513
5486
  * * Field Name: Options
5514
5487
  * * Display Name: Options
5515
5488
  * * SQL Data Type: nvarchar(MAX)
5516
5489
  */
5517
- get Options(): string;
5518
- set Options(value: string);
5490
+ get Options(): string | null;
5491
+ set Options(value: string | null);
5519
5492
  /**
5520
5493
  * * Field Name: Output
5521
5494
  * * Display Name: Output
5522
5495
  * * SQL Data Type: nvarchar(MAX)
5523
5496
  */
5524
- get Output(): string;
5525
- set Output(value: string);
5497
+ get Output(): string | null;
5498
+ set Output(value: string | null);
5526
5499
  /**
5527
5500
  * * Field Name: ErrorMessage
5528
5501
  * * Display Name: Error Message
5529
5502
  * * SQL Data Type: nvarchar(MAX)
5530
5503
  */
5531
- get ErrorMessage(): string;
5532
- set ErrorMessage(value: string);
5504
+ get ErrorMessage(): string | null;
5505
+ set ErrorMessage(value: string | null);
5533
5506
  /**
5534
5507
  * * Field Name: Comments
5535
5508
  * * Display Name: Comments
5536
5509
  * * SQL Data Type: nvarchar(MAX)
5537
5510
  */
5538
- get Comments(): string;
5539
- set Comments(value: string);
5511
+ get Comments(): string | null;
5512
+ set Comments(value: string | null);
5540
5513
  }
5541
5514
  /**
5542
5515
  * Dashboards - strongly typed entity sub-class
@@ -5579,16 +5552,16 @@ export declare class DashboardEntity extends BaseEntity {
5579
5552
  * * Display Name: Description
5580
5553
  * * SQL Data Type: nvarchar(MAX)
5581
5554
  */
5582
- get Description(): string;
5583
- set Description(value: string);
5555
+ get Description(): string | null;
5556
+ set Description(value: string | null);
5584
5557
  /**
5585
5558
  * * Field Name: CategoryID
5586
5559
  * * Display Name: Category ID
5587
5560
  * * SQL Data Type: int
5588
5561
  * * Related Entity/Foreign Key: Dashboard Categories (vwDashboardCategories.ID)
5589
5562
  */
5590
- get CategoryID(): number;
5591
- set CategoryID(value: number);
5563
+ get CategoryID(): number | null;
5564
+ set CategoryID(value: number | null);
5592
5565
  /**
5593
5566
  * * Field Name: UIConfigDetails
5594
5567
  * * Display Name: UIConfig Details
@@ -5602,20 +5575,20 @@ export declare class DashboardEntity extends BaseEntity {
5602
5575
  * * SQL Data Type: int
5603
5576
  * * Related Entity/Foreign Key: Users (vwUsers.ID)
5604
5577
  */
5605
- get UserID(): number;
5606
- set UserID(value: number);
5578
+ get UserID(): number | null;
5579
+ set UserID(value: number | null);
5607
5580
  /**
5608
5581
  * * Field Name: Category
5609
5582
  * * Display Name: Category
5610
5583
  * * SQL Data Type: nvarchar(100)
5611
5584
  */
5612
- get Category(): string;
5585
+ get Category(): string | null;
5613
5586
  /**
5614
5587
  * * Field Name: User
5615
5588
  * * Display Name: User
5616
5589
  * * SQL Data Type: nvarchar(100)
5617
5590
  */
5618
- get User(): string;
5591
+ get User(): string | null;
5619
5592
  }
5620
5593
  /**
5621
5594
  * Output Trigger Types - strongly typed entity sub-class
@@ -5676,8 +5649,8 @@ export declare class OutputTriggerTypeEntity extends BaseEntity {
5676
5649
  * * Display Name: Description
5677
5650
  * * SQL Data Type: nvarchar(MAX)
5678
5651
  */
5679
- get Description(): string;
5680
- set Description(value: string);
5652
+ get Description(): string | null;
5653
+ set Description(value: string | null);
5681
5654
  }
5682
5655
  /**
5683
5656
  * Output Format Types - strongly typed entity sub-class
@@ -5738,15 +5711,15 @@ export declare class OutputFormatTypeEntity extends BaseEntity {
5738
5711
  * * Display Name: Description
5739
5712
  * * SQL Data Type: nvarchar(MAX)
5740
5713
  */
5741
- get Description(): string;
5742
- set Description(value: string);
5714
+ get Description(): string | null;
5715
+ set Description(value: string | null);
5743
5716
  /**
5744
5717
  * * Field Name: DisplayFormat
5745
5718
  * * Display Name: Display Format
5746
5719
  * * SQL Data Type: nvarchar(MAX)
5747
5720
  */
5748
- get DisplayFormat(): string;
5749
- set DisplayFormat(value: string);
5721
+ get DisplayFormat(): string | null;
5722
+ set DisplayFormat(value: string | null);
5750
5723
  }
5751
5724
  /**
5752
5725
  * Output Delivery Types - strongly typed entity sub-class
@@ -5807,8 +5780,8 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity {
5807
5780
  * * Display Name: Description
5808
5781
  * * SQL Data Type: nvarchar(MAX)
5809
5782
  */
5810
- get Description(): string;
5811
- set Description(value: string);
5783
+ get Description(): string | null;
5784
+ set Description(value: string | null);
5812
5785
  }
5813
5786
  /**
5814
5787
  * Reports - strongly typed entity sub-class
@@ -5851,16 +5824,16 @@ export declare class ReportEntity extends BaseEntity {
5851
5824
  * * Display Name: Description
5852
5825
  * * SQL Data Type: nvarchar(MAX)
5853
5826
  */
5854
- get Description(): string;
5855
- set Description(value: string);
5827
+ get Description(): string | null;
5828
+ set Description(value: string | null);
5856
5829
  /**
5857
5830
  * * Field Name: CategoryID
5858
5831
  * * Display Name: Category ID
5859
5832
  * * SQL Data Type: int
5860
5833
  * * Related Entity/Foreign Key: Report Categories (vwReportCategories.ID)
5861
5834
  */
5862
- get CategoryID(): number;
5863
- set CategoryID(value: number);
5835
+ get CategoryID(): number | null;
5836
+ set CategoryID(value: number | null);
5864
5837
  /**
5865
5838
  * * Field Name: UserID
5866
5839
  * * Display Name: User ID
@@ -5883,85 +5856,85 @@ export declare class ReportEntity extends BaseEntity {
5883
5856
  * * SQL Data Type: int
5884
5857
  * * Related Entity/Foreign Key: Conversations (vwConversations.ID)
5885
5858
  */
5886
- get ConversationID(): number;
5887
- set ConversationID(value: number);
5859
+ get ConversationID(): number | null;
5860
+ set ConversationID(value: number | null);
5888
5861
  /**
5889
5862
  * * Field Name: ConversationDetailID
5890
5863
  * * Display Name: Conversation Detail ID
5891
5864
  * * SQL Data Type: int
5892
5865
  * * Related Entity/Foreign Key: Conversation Details (vwConversationDetails.ID)
5893
5866
  */
5894
- get ConversationDetailID(): number;
5895
- set ConversationDetailID(value: number);
5867
+ get ConversationDetailID(): number | null;
5868
+ set ConversationDetailID(value: number | null);
5896
5869
  /**
5897
5870
  * * Field Name: DataContextID
5898
5871
  * * Display Name: Data Context ID
5899
5872
  * * SQL Data Type: int
5900
5873
  * * Related Entity/Foreign Key: Data Contexts (vwDataContexts.ID)
5901
5874
  */
5902
- get DataContextID(): number;
5903
- set DataContextID(value: number);
5875
+ get DataContextID(): number | null;
5876
+ set DataContextID(value: number | null);
5904
5877
  /**
5905
5878
  * * Field Name: Configuration
5906
5879
  * * Display Name: Configuration
5907
5880
  * * SQL Data Type: nvarchar(MAX)
5908
5881
  */
5909
- get Configuration(): string;
5910
- set Configuration(value: string);
5882
+ get Configuration(): string | null;
5883
+ set Configuration(value: string | null);
5911
5884
  /**
5912
5885
  * * Field Name: OutputTriggerTypeID
5913
5886
  * * Display Name: Output Trigger Type ID
5914
5887
  * * SQL Data Type: int
5915
5888
  * * Related Entity/Foreign Key: Output Trigger Types (vwOutputTriggerTypes.ID)
5916
5889
  */
5917
- get OutputTriggerTypeID(): number;
5918
- set OutputTriggerTypeID(value: number);
5890
+ get OutputTriggerTypeID(): number | null;
5891
+ set OutputTriggerTypeID(value: number | null);
5919
5892
  /**
5920
5893
  * * Field Name: OutputFormatTypeID
5921
5894
  * * Display Name: Output Format Type ID
5922
5895
  * * SQL Data Type: int
5923
5896
  * * Related Entity/Foreign Key: Output Format Types (vwOutputFormatTypes.ID)
5924
5897
  */
5925
- get OutputFormatTypeID(): number;
5926
- set OutputFormatTypeID(value: number);
5898
+ get OutputFormatTypeID(): number | null;
5899
+ set OutputFormatTypeID(value: number | null);
5927
5900
  /**
5928
5901
  * * Field Name: OutputDeliveryTypeID
5929
5902
  * * Display Name: Output Delivery Type ID
5930
5903
  * * SQL Data Type: int
5931
5904
  * * Related Entity/Foreign Key: Output Delivery Types (vwOutputDeliveryTypes.ID)
5932
5905
  */
5933
- get OutputDeliveryTypeID(): number;
5934
- set OutputDeliveryTypeID(value: number);
5906
+ get OutputDeliveryTypeID(): number | null;
5907
+ set OutputDeliveryTypeID(value: number | null);
5935
5908
  /**
5936
5909
  * * Field Name: OutputEventID
5937
5910
  * * Display Name: Output Event ID
5938
5911
  * * SQL Data Type: int
5939
5912
  * * Related Entity/Foreign Key: Output Delivery Types (vwOutputDeliveryTypes.ID)
5940
5913
  */
5941
- get OutputEventID(): number;
5942
- set OutputEventID(value: number);
5914
+ get OutputEventID(): number | null;
5915
+ set OutputEventID(value: number | null);
5943
5916
  /**
5944
5917
  * * Field Name: OutputFrequency
5945
5918
  * * Display Name: Output Frequency
5946
5919
  * * SQL Data Type: nvarchar(50)
5947
5920
  */
5948
- get OutputFrequency(): string;
5949
- set OutputFrequency(value: string);
5921
+ get OutputFrequency(): string | null;
5922
+ set OutputFrequency(value: string | null);
5950
5923
  /**
5951
5924
  * * Field Name: OutputTargetEmail
5952
5925
  * * Display Name: Output Target Email
5953
5926
  * * SQL Data Type: nvarchar(255)
5954
5927
  */
5955
- get OutputTargetEmail(): string;
5956
- set OutputTargetEmail(value: string);
5928
+ get OutputTargetEmail(): string | null;
5929
+ set OutputTargetEmail(value: string | null);
5957
5930
  /**
5958
5931
  * * Field Name: OutputWorkflowID
5959
5932
  * * Display Name: Output Workflow ID
5960
5933
  * * SQL Data Type: int
5961
5934
  * * Related Entity/Foreign Key: Workflows (vwWorkflows.ID)
5962
5935
  */
5963
- get OutputWorkflowID(): number;
5964
- set OutputWorkflowID(value: number);
5936
+ get OutputWorkflowID(): number | null;
5937
+ set OutputWorkflowID(value: number | null);
5965
5938
  /**
5966
5939
  * * Field Name: CreatedAt
5967
5940
  * * Display Name: Created At
@@ -5981,7 +5954,7 @@ export declare class ReportEntity extends BaseEntity {
5981
5954
  * * Display Name: Category
5982
5955
  * * SQL Data Type: nvarchar(100)
5983
5956
  */
5984
- get Category(): string;
5957
+ get Category(): string | null;
5985
5958
  /**
5986
5959
  * * Field Name: User
5987
5960
  * * Display Name: User
@@ -5993,37 +5966,37 @@ export declare class ReportEntity extends BaseEntity {
5993
5966
  * * Display Name: Conversation
5994
5967
  * * SQL Data Type: nvarchar(100)
5995
5968
  */
5996
- get Conversation(): string;
5969
+ get Conversation(): string | null;
5997
5970
  /**
5998
5971
  * * Field Name: DataContext
5999
5972
  * * Display Name: Data Context
6000
5973
  * * SQL Data Type: nvarchar(255)
6001
5974
  */
6002
- get DataContext(): string;
5975
+ get DataContext(): string | null;
6003
5976
  /**
6004
5977
  * * Field Name: OutputTriggerType
6005
5978
  * * Display Name: Output Trigger Type
6006
5979
  * * SQL Data Type: nvarchar(255)
6007
5980
  */
6008
- get OutputTriggerType(): string;
5981
+ get OutputTriggerType(): string | null;
6009
5982
  /**
6010
5983
  * * Field Name: OutputFormatType
6011
5984
  * * Display Name: Output Format Type
6012
5985
  * * SQL Data Type: nvarchar(255)
6013
5986
  */
6014
- get OutputFormatType(): string;
5987
+ get OutputFormatType(): string | null;
6015
5988
  /**
6016
5989
  * * Field Name: OutputDeliveryType
6017
5990
  * * Display Name: Output Delivery Type
6018
5991
  * * SQL Data Type: nvarchar(255)
6019
5992
  */
6020
- get OutputDeliveryType(): string;
5993
+ get OutputDeliveryType(): string | null;
6021
5994
  /**
6022
5995
  * * Field Name: OutputEvent
6023
5996
  * * Display Name: Output Event
6024
5997
  * * SQL Data Type: nvarchar(255)
6025
5998
  */
6026
- get OutputEvent(): string;
5999
+ get OutputEvent(): string | null;
6027
6000
  }
6028
6001
  /**
6029
6002
  * Report Snapshots - strongly typed entity sub-class
@@ -6082,8 +6055,8 @@ export declare class ReportSnapshotEntity extends BaseEntity {
6082
6055
  * * SQL Data Type: int
6083
6056
  * * Related Entity/Foreign Key: Users (vwUsers.ID)
6084
6057
  */
6085
- get UserID(): number;
6086
- set UserID(value: number);
6058
+ get UserID(): number | null;
6059
+ set UserID(value: number | null);
6087
6060
  /**
6088
6061
  * * Field Name: Report
6089
6062
  * * Display Name: Report
@@ -6095,7 +6068,7 @@ export declare class ReportSnapshotEntity extends BaseEntity {
6095
6068
  * * Display Name: User
6096
6069
  * * SQL Data Type: nvarchar(100)
6097
6070
  */
6098
- get User(): string;
6071
+ get User(): string | null;
6099
6072
  }
6100
6073
  /**
6101
6074
  * Resource Types - strongly typed entity sub-class
@@ -6163,23 +6136,23 @@ export declare class ResourceTypeEntity extends BaseEntity {
6163
6136
  * * Display Name: Description
6164
6137
  * * SQL Data Type: nvarchar(MAX)
6165
6138
  */
6166
- get Description(): string;
6167
- set Description(value: string);
6139
+ get Description(): string | null;
6140
+ set Description(value: string | null);
6168
6141
  /**
6169
6142
  * * Field Name: Icon
6170
6143
  * * Display Name: Icon
6171
6144
  * * SQL Data Type: nvarchar(100)
6172
6145
  */
6173
- get Icon(): string;
6174
- set Icon(value: string);
6146
+ get Icon(): string | null;
6147
+ set Icon(value: string | null);
6175
6148
  /**
6176
6149
  * * Field Name: EntityID
6177
6150
  * * Display Name: Entity ID
6178
6151
  * * SQL Data Type: int
6179
6152
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
6180
6153
  */
6181
- get EntityID(): number;
6182
- set EntityID(value: number);
6154
+ get EntityID(): number | null;
6155
+ set EntityID(value: number | null);
6183
6156
  /**
6184
6157
  * * Field Name: CreatedAt
6185
6158
  * * Display Name: Created At
@@ -6199,7 +6172,7 @@ export declare class ResourceTypeEntity extends BaseEntity {
6199
6172
  * * Display Name: Entity
6200
6173
  * * SQL Data Type: nvarchar(255)
6201
6174
  */
6202
- get Entity(): string;
6175
+ get Entity(): string | null;
6203
6176
  }
6204
6177
  /**
6205
6178
  * Tags - strongly typed entity sub-class
@@ -6267,22 +6240,22 @@ export declare class TagEntity extends BaseEntity {
6267
6240
  * * Display Name: Description
6268
6241
  * * SQL Data Type: nvarchar(MAX)
6269
6242
  */
6270
- get Description(): string;
6271
- set Description(value: string);
6243
+ get Description(): string | null;
6244
+ set Description(value: string | null);
6272
6245
  /**
6273
6246
  * * Field Name: ParentID
6274
6247
  * * Display Name: Parent ID
6275
6248
  * * SQL Data Type: int
6276
6249
  * * Related Entity/Foreign Key: Tags (vwTags.ID)
6277
6250
  */
6278
- get ParentID(): number;
6279
- set ParentID(value: number);
6251
+ get ParentID(): number | null;
6252
+ set ParentID(value: number | null);
6280
6253
  /**
6281
6254
  * * Field Name: Parent
6282
6255
  * * Display Name: Parent
6283
6256
  * * SQL Data Type: nvarchar(255)
6284
6257
  */
6285
- get Parent(): string;
6258
+ get Parent(): string | null;
6286
6259
  }
6287
6260
  /**
6288
6261
  * Tagged Items - strongly typed entity sub-class
@@ -6317,15 +6290,6 @@ export declare class TaggedItemEntity extends BaseEntity {
6317
6290
  */
6318
6291
  Save(options?: EntitySaveOptions): Promise<boolean>;
6319
6292
  /**
6320
- * Tagged Items - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
6321
- * @public
6322
- * @method
6323
- * @override
6324
- * @memberof TaggedItemEntity
6325
- * @throws {Error} - Delete is not allowed for Tagged Items, to enable it set AllowDeleteAPI to 1 in the database.
6326
- */
6327
- Delete(): Promise<boolean>;
6328
- /**
6329
6293
  * * Field Name: ID
6330
6294
  * * Display Name: ID
6331
6295
  * * SQL Data Type: int
@@ -6408,8 +6372,8 @@ export declare class WorkspaceEntity extends BaseEntity {
6408
6372
  * * Display Name: Description
6409
6373
  * * SQL Data Type: nvarchar(MAX)
6410
6374
  */
6411
- get Description(): string;
6412
- set Description(value: string);
6375
+ get Description(): string | null;
6376
+ set Description(value: string | null);
6413
6377
  /**
6414
6378
  * * Field Name: UserID
6415
6379
  * * Display Name: User ID
@@ -6466,8 +6430,8 @@ export declare class WorkspaceItemEntity extends BaseEntity {
6466
6430
  * * Display Name: Description
6467
6431
  * * SQL Data Type: nvarchar(MAX)
6468
6432
  */
6469
- get Description(): string;
6470
- set Description(value: string);
6433
+ get Description(): string | null;
6434
+ set Description(value: string | null);
6471
6435
  /**
6472
6436
  * * Field Name: WorkSpaceID
6473
6437
  * * Display Name: Work Space ID
@@ -6489,8 +6453,8 @@ export declare class WorkspaceItemEntity extends BaseEntity {
6489
6453
  * * Display Name: Resource Record ID
6490
6454
  * * SQL Data Type: nvarchar(255)
6491
6455
  */
6492
- get ResourceRecordID(): string;
6493
- set ResourceRecordID(value: string);
6456
+ get ResourceRecordID(): string | null;
6457
+ set ResourceRecordID(value: string | null);
6494
6458
  /**
6495
6459
  * * Field Name: Sequence
6496
6460
  * * Display Name: Sequence
@@ -6503,8 +6467,8 @@ export declare class WorkspaceItemEntity extends BaseEntity {
6503
6467
  * * Display Name: Configuration
6504
6468
  * * SQL Data Type: nvarchar(MAX)
6505
6469
  */
6506
- get Configuration(): string;
6507
- set Configuration(value: string);
6470
+ get Configuration(): string | null;
6471
+ set Configuration(value: string | null);
6508
6472
  /**
6509
6473
  * * Field Name: WorkSpace
6510
6474
  * * Display Name: Work Space
@@ -6577,8 +6541,8 @@ export declare class DatasetEntity extends BaseEntity {
6577
6541
  * * Display Name: Description
6578
6542
  * * SQL Data Type: nvarchar(MAX)
6579
6543
  */
6580
- get Description(): string;
6581
- set Description(value: string);
6544
+ get Description(): string | null;
6545
+ set Description(value: string | null);
6582
6546
  /**
6583
6547
  * * Field Name: CreatedAt
6584
6548
  * * Display Name: Created At
@@ -6654,8 +6618,8 @@ export declare class DatasetItemEntity extends BaseEntity {
6654
6618
  * * SQL Data Type: nvarchar(50)
6655
6619
  * * Related Entity/Foreign Key: Datasets (vwDatasets.Name)
6656
6620
  */
6657
- get DatasetName(): string;
6658
- set DatasetName(value: string);
6621
+ get DatasetName(): string | null;
6622
+ set DatasetName(value: string | null);
6659
6623
  /**
6660
6624
  * * Field Name: Sequence
6661
6625
  * * Display Name: Sequence
@@ -6677,8 +6641,8 @@ export declare class DatasetItemEntity extends BaseEntity {
6677
6641
  * * Display Name: Where Clause
6678
6642
  * * SQL Data Type: nvarchar(MAX)
6679
6643
  */
6680
- get WhereClause(): string;
6681
- set WhereClause(value: string);
6644
+ get WhereClause(): string | null;
6645
+ set WhereClause(value: string | null);
6682
6646
  /**
6683
6647
  * * Field Name: DateFieldToCheck
6684
6648
  * * Display Name: Date Field To Check
@@ -6691,8 +6655,8 @@ export declare class DatasetItemEntity extends BaseEntity {
6691
6655
  * * Display Name: Description
6692
6656
  * * SQL Data Type: nvarchar(MAX)
6693
6657
  */
6694
- get Description(): string;
6695
- set Description(value: string);
6658
+ get Description(): string | null;
6659
+ set Description(value: string | null);
6696
6660
  /**
6697
6661
  * * Field Name: CreatedAt
6698
6662
  * * Display Name: Created At
@@ -6756,8 +6720,8 @@ export declare class ConversationDetailEntity extends BaseEntity {
6756
6720
  * * Display Name: External ID
6757
6721
  * * SQL Data Type: nvarchar(100)
6758
6722
  */
6759
- get ExternalID(): string;
6760
- set ExternalID(value: string);
6723
+ get ExternalID(): string | null;
6724
+ set ExternalID(value: string | null);
6761
6725
  /**
6762
6726
  * * Field Name: Role
6763
6727
  * * Display Name: Role
@@ -6778,8 +6742,8 @@ export declare class ConversationDetailEntity extends BaseEntity {
6778
6742
  * * Display Name: Error
6779
6743
  * * SQL Data Type: nvarchar(MAX)
6780
6744
  */
6781
- get Error(): string;
6782
- set Error(value: string);
6745
+ get Error(): string | null;
6746
+ set Error(value: string | null);
6783
6747
  /**
6784
6748
  * * Field Name: HiddenToUser
6785
6749
  * * Display Name: Hidden To User
@@ -6807,7 +6771,7 @@ export declare class ConversationDetailEntity extends BaseEntity {
6807
6771
  * * Display Name: Conversation
6808
6772
  * * SQL Data Type: nvarchar(100)
6809
6773
  */
6810
- get Conversation(): string;
6774
+ get Conversation(): string | null;
6811
6775
  }
6812
6776
  /**
6813
6777
  * Conversations - strongly typed entity sub-class
@@ -6851,22 +6815,22 @@ export declare class ConversationEntity extends BaseEntity {
6851
6815
  * * Display Name: External ID
6852
6816
  * * SQL Data Type: nvarchar(100)
6853
6817
  */
6854
- get ExternalID(): string;
6855
- set ExternalID(value: string);
6818
+ get ExternalID(): string | null;
6819
+ set ExternalID(value: string | null);
6856
6820
  /**
6857
6821
  * * Field Name: Name
6858
6822
  * * Display Name: Name
6859
6823
  * * SQL Data Type: nvarchar(100)
6860
6824
  */
6861
- get Name(): string;
6862
- set Name(value: string);
6825
+ get Name(): string | null;
6826
+ set Name(value: string | null);
6863
6827
  /**
6864
6828
  * * Field Name: Description
6865
6829
  * * Display Name: Description
6866
6830
  * * SQL Data Type: nvarchar(MAX)
6867
6831
  */
6868
- get Description(): string;
6869
- set Description(value: string);
6832
+ get Description(): string | null;
6833
+ set Description(value: string | null);
6870
6834
  /**
6871
6835
  * * Field Name: Type
6872
6836
  * * Display Name: Type
@@ -6889,22 +6853,22 @@ export declare class ConversationEntity extends BaseEntity {
6889
6853
  * * SQL Data Type: int
6890
6854
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
6891
6855
  */
6892
- get LinkedEntityID(): number;
6893
- set LinkedEntityID(value: number);
6856
+ get LinkedEntityID(): number | null;
6857
+ set LinkedEntityID(value: number | null);
6894
6858
  /**
6895
6859
  * * Field Name: LinkedRecordID
6896
6860
  * * Display Name: Linked Record ID
6897
6861
  * * SQL Data Type: int
6898
6862
  */
6899
- get LinkedRecordID(): number;
6900
- set LinkedRecordID(value: number);
6863
+ get LinkedRecordID(): number | null;
6864
+ set LinkedRecordID(value: number | null);
6901
6865
  /**
6902
6866
  * * Field Name: DataContextID
6903
6867
  * * Display Name: Data Context ID
6904
6868
  * * SQL Data Type: int
6905
6869
  */
6906
- get DataContextID(): number;
6907
- set DataContextID(value: number);
6870
+ get DataContextID(): number | null;
6871
+ set DataContextID(value: number | null);
6908
6872
  /**
6909
6873
  * * Field Name: CreatedAt
6910
6874
  * * Display Name: Created At
@@ -6930,7 +6894,7 @@ export declare class ConversationEntity extends BaseEntity {
6930
6894
  * * Display Name: Linked Entity
6931
6895
  * * SQL Data Type: nvarchar(255)
6932
6896
  */
6933
- get LinkedEntity(): string;
6897
+ get LinkedEntity(): string | null;
6934
6898
  }
6935
6899
  /**
6936
6900
  * User Notifications - strongly typed entity sub-class
@@ -6956,15 +6920,6 @@ export declare class UserNotificationEntity extends BaseEntity {
6956
6920
  */
6957
6921
  Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6958
6922
  /**
6959
- * User Notifications - 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.
6960
- * @public
6961
- * @method
6962
- * @override
6963
- * @memberof UserNotificationEntity
6964
- * @throws {Error} - Delete is not allowed for User Notifications, to enable it set AllowDeleteAPI to 1 in the database.
6965
- */
6966
- Delete(): Promise<boolean>;
6967
- /**
6968
6923
  * * Field Name: ID
6969
6924
  * * Display Name: ID
6970
6925
  * * SQL Data Type: int
@@ -6983,36 +6938,36 @@ export declare class UserNotificationEntity extends BaseEntity {
6983
6938
  * * Display Name: Title
6984
6939
  * * SQL Data Type: nvarchar(255)
6985
6940
  */
6986
- get Title(): string;
6987
- set Title(value: string);
6941
+ get Title(): string | null;
6942
+ set Title(value: string | null);
6988
6943
  /**
6989
6944
  * * Field Name: Message
6990
6945
  * * Display Name: Message
6991
6946
  * * SQL Data Type: nvarchar(MAX)
6992
6947
  */
6993
- get Message(): string;
6994
- set Message(value: string);
6948
+ get Message(): string | null;
6949
+ set Message(value: string | null);
6995
6950
  /**
6996
6951
  * * Field Name: ResourceTypeID
6997
6952
  * * Display Name: Resource Type ID
6998
6953
  * * SQL Data Type: int
6999
6954
  */
7000
- get ResourceTypeID(): number;
7001
- set ResourceTypeID(value: number);
6955
+ get ResourceTypeID(): number | null;
6956
+ set ResourceTypeID(value: number | null);
7002
6957
  /**
7003
6958
  * * Field Name: ResourceRecordID
7004
6959
  * * Display Name: Resource Record ID
7005
6960
  * * SQL Data Type: int
7006
6961
  */
7007
- get ResourceRecordID(): number;
7008
- set ResourceRecordID(value: number);
6962
+ get ResourceRecordID(): number | null;
6963
+ set ResourceRecordID(value: number | null);
7009
6964
  /**
7010
6965
  * * Field Name: ResourceConfiguration
7011
6966
  * * Display Name: Resource Configuration
7012
6967
  * * SQL Data Type: nvarchar(MAX)
7013
6968
  */
7014
- get ResourceConfiguration(): string;
7015
- set ResourceConfiguration(value: string);
6969
+ get ResourceConfiguration(): string | null;
6970
+ set ResourceConfiguration(value: string | null);
7016
6971
  /**
7017
6972
  * * Field Name: Unread
7018
6973
  * * Display Name: Unread
@@ -7026,8 +6981,8 @@ export declare class UserNotificationEntity extends BaseEntity {
7026
6981
  * * Display Name: Read At
7027
6982
  * * SQL Data Type: datetime
7028
6983
  */
7029
- get ReadAt(): Date;
7030
- set ReadAt(value: Date);
6984
+ get ReadAt(): Date | null;
6985
+ set ReadAt(value: Date | null);
7031
6986
  /**
7032
6987
  * * Field Name: CreatedAt
7033
6988
  * * Display Name: Created At
@@ -7113,8 +7068,8 @@ export declare class SchemaInfoEntity extends BaseEntity {
7113
7068
  * * Display Name: Comments
7114
7069
  * * SQL Data Type: nvarchar(MAX)
7115
7070
  */
7116
- get Comments(): string;
7117
- set Comments(value: string);
7071
+ get Comments(): string | null;
7072
+ set Comments(value: string | null);
7118
7073
  /**
7119
7074
  * * Field Name: CreatedAt
7120
7075
  * * Display Name: Created At
@@ -7293,8 +7248,8 @@ export declare class RecordMergeLogEntity extends BaseEntity {
7293
7248
  * * Display Name: Approved By User ID
7294
7249
  * * SQL Data Type: int
7295
7250
  */
7296
- get ApprovedByUserID(): number;
7297
- set ApprovedByUserID(value: number);
7251
+ get ApprovedByUserID(): number | null;
7252
+ set ApprovedByUserID(value: number | null);
7298
7253
  /**
7299
7254
  * * Field Name: ProcessingStatus
7300
7255
  * * Display Name: Processing Status
@@ -7316,22 +7271,22 @@ export declare class RecordMergeLogEntity extends BaseEntity {
7316
7271
  * * Display Name: Processing Ended At
7317
7272
  * * SQL Data Type: datetime
7318
7273
  */
7319
- get ProcessingEndedAt(): Date;
7320
- set ProcessingEndedAt(value: Date);
7274
+ get ProcessingEndedAt(): Date | null;
7275
+ set ProcessingEndedAt(value: Date | null);
7321
7276
  /**
7322
7277
  * * Field Name: ProcessingLog
7323
7278
  * * Display Name: Processing Log
7324
7279
  * * SQL Data Type: nvarchar(MAX)
7325
7280
  */
7326
- get ProcessingLog(): string;
7327
- set ProcessingLog(value: string);
7281
+ get ProcessingLog(): string | null;
7282
+ set ProcessingLog(value: string | null);
7328
7283
  /**
7329
7284
  * * Field Name: Comments
7330
7285
  * * Display Name: Comments
7331
7286
  * * SQL Data Type: nvarchar(MAX)
7332
7287
  */
7333
- get Comments(): string;
7334
- set Comments(value: string);
7288
+ get Comments(): string | null;
7289
+ set Comments(value: string | null);
7335
7290
  /**
7336
7291
  * * Field Name: CreatedAt
7337
7292
  * * Display Name: Created At
@@ -7345,7 +7300,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
7345
7300
  * * SQL Data Type: datetime
7346
7301
  * * Default Value: getdate()
7347
7302
  */
7348
- get UpdatedAt(): Date;
7303
+ get UpdatedAt(): Date | null;
7349
7304
  /**
7350
7305
  * * Field Name: Entity
7351
7306
  * * Display Name: Entity
@@ -7425,8 +7380,8 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
7425
7380
  * * Display Name: Processing Log
7426
7381
  * * SQL Data Type: nvarchar(MAX)
7427
7382
  */
7428
- get ProcessingLog(): string;
7429
- set ProcessingLog(value: string);
7383
+ get ProcessingLog(): string | null;
7384
+ set ProcessingLog(value: string | null);
7430
7385
  /**
7431
7386
  * * Field Name: CreatedAt
7432
7387
  * * Display Name: Created At
@@ -7500,8 +7455,8 @@ export declare class QueryFieldEntity extends BaseEntity {
7500
7455
  * * Display Name: Description
7501
7456
  * * SQL Data Type: nvarchar(MAX)
7502
7457
  */
7503
- get Description(): string;
7504
- set Description(value: string);
7458
+ get Description(): string | null;
7459
+ set Description(value: string | null);
7505
7460
  /**
7506
7461
  * * Field Name: Sequence
7507
7462
  * * Display Name: Sequence
@@ -7531,15 +7486,15 @@ export declare class QueryFieldEntity extends BaseEntity {
7531
7486
  * * SQL Data Type: int
7532
7487
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
7533
7488
  */
7534
- get SourceEntityID(): number;
7535
- set SourceEntityID(value: number);
7489
+ get SourceEntityID(): number | null;
7490
+ set SourceEntityID(value: number | null);
7536
7491
  /**
7537
7492
  * * Field Name: SourceFieldName
7538
7493
  * * Display Name: Source Field Name
7539
7494
  * * SQL Data Type: nvarchar(255)
7540
7495
  */
7541
- get SourceFieldName(): string;
7542
- set SourceFieldName(value: string);
7496
+ get SourceFieldName(): string | null;
7497
+ set SourceFieldName(value: string | null);
7543
7498
  /**
7544
7499
  * * Field Name: IsComputed
7545
7500
  * * Display Name: Is Computed
@@ -7553,8 +7508,8 @@ export declare class QueryFieldEntity extends BaseEntity {
7553
7508
  * * Display Name: Computation Description
7554
7509
  * * SQL Data Type: nvarchar(MAX)
7555
7510
  */
7556
- get ComputationDescription(): string;
7557
- set ComputationDescription(value: string);
7511
+ get ComputationDescription(): string | null;
7512
+ set ComputationDescription(value: string | null);
7558
7513
  /**
7559
7514
  * * Field Name: IsSummary
7560
7515
  * * Display Name: Is Summary
@@ -7568,8 +7523,8 @@ export declare class QueryFieldEntity extends BaseEntity {
7568
7523
  * * Display Name: Summary Description
7569
7524
  * * SQL Data Type: nvarchar(MAX)
7570
7525
  */
7571
- get SummaryDescription(): string;
7572
- set SummaryDescription(value: string);
7526
+ get SummaryDescription(): string | null;
7527
+ set SummaryDescription(value: string | null);
7573
7528
  /**
7574
7529
  * * Field Name: CreatedAt
7575
7530
  * * Display Name: Created At
@@ -7595,7 +7550,7 @@ export declare class QueryFieldEntity extends BaseEntity {
7595
7550
  * * Display Name: Source Entity
7596
7551
  * * SQL Data Type: nvarchar(255)
7597
7552
  */
7598
- get SourceEntity(): string;
7553
+ get SourceEntity(): string | null;
7599
7554
  }
7600
7555
  /**
7601
7556
  * Query Categories - strongly typed entity sub-class
@@ -7621,15 +7576,6 @@ export declare class QueryCategoryEntity extends BaseEntity {
7621
7576
  */
7622
7577
  Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7623
7578
  /**
7624
- * Query 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.
7625
- * @public
7626
- * @method
7627
- * @override
7628
- * @memberof QueryCategoryEntity
7629
- * @throws {Error} - Delete is not allowed for Query Categories, to enable it set AllowDeleteAPI to 1 in the database.
7630
- */
7631
- Delete(): Promise<boolean>;
7632
- /**
7633
7579
  * * Field Name: ID
7634
7580
  * * Display Name: ID
7635
7581
  * * SQL Data Type: int
@@ -7648,15 +7594,15 @@ export declare class QueryCategoryEntity extends BaseEntity {
7648
7594
  * * SQL Data Type: int
7649
7595
  * * Related Entity/Foreign Key: Query Categories (vwQueryCategories.ID)
7650
7596
  */
7651
- get ParentID(): number;
7652
- set ParentID(value: number);
7597
+ get ParentID(): number | null;
7598
+ set ParentID(value: number | null);
7653
7599
  /**
7654
7600
  * * Field Name: Description
7655
7601
  * * Display Name: Description
7656
7602
  * * SQL Data Type: nvarchar(MAX)
7657
7603
  */
7658
- get Description(): string;
7659
- set Description(value: string);
7604
+ get Description(): string | null;
7605
+ set Description(value: string | null);
7660
7606
  /**
7661
7607
  * * Field Name: CreatedAt
7662
7608
  * * Display Name: Created At
@@ -7676,7 +7622,7 @@ export declare class QueryCategoryEntity extends BaseEntity {
7676
7622
  * * Display Name: Parent
7677
7623
  * * SQL Data Type: nvarchar(50)
7678
7624
  */
7679
- get Parent(): string;
7625
+ get Parent(): string | null;
7680
7626
  }
7681
7627
  /**
7682
7628
  * Queries - strongly typed entity sub-class
@@ -7728,8 +7674,8 @@ export declare class QueryEntity extends BaseEntity {
7728
7674
  * * Display Name: Description
7729
7675
  * * SQL Data Type: nvarchar(MAX)
7730
7676
  */
7731
- get Description(): string;
7732
- set Description(value: string);
7677
+ get Description(): string | null;
7678
+ set Description(value: string | null);
7733
7679
  /**
7734
7680
  * * Field Name: CategoryID
7735
7681
  * * Display Name: Category ID
@@ -7743,22 +7689,22 @@ export declare class QueryEntity extends BaseEntity {
7743
7689
  * * Display Name: SQL
7744
7690
  * * SQL Data Type: nvarchar(MAX)
7745
7691
  */
7746
- get SQL(): string;
7747
- set SQL(value: string);
7692
+ get SQL(): string | null;
7693
+ set SQL(value: string | null);
7748
7694
  /**
7749
7695
  * * Field Name: OriginalSQL
7750
7696
  * * Display Name: Original SQL
7751
7697
  * * SQL Data Type: nvarchar(MAX)
7752
7698
  */
7753
- get OriginalSQL(): string;
7754
- set OriginalSQL(value: string);
7699
+ get OriginalSQL(): string | null;
7700
+ set OriginalSQL(value: string | null);
7755
7701
  /**
7756
7702
  * * Field Name: Feedback
7757
7703
  * * Display Name: Feedback
7758
7704
  * * SQL Data Type: nvarchar(MAX)
7759
7705
  */
7760
- get Feedback(): string;
7761
- set Feedback(value: string);
7706
+ get Feedback(): string | null;
7707
+ set Feedback(value: string | null);
7762
7708
  /**
7763
7709
  * * Field Name: Status
7764
7710
  * * Display Name: Status
@@ -7773,8 +7719,8 @@ export declare class QueryEntity extends BaseEntity {
7773
7719
  * * SQL Data Type: int
7774
7720
  * * Default Value: 0
7775
7721
  */
7776
- get QualityRank(): number;
7777
- set QualityRank(value: number);
7722
+ get QualityRank(): number | null;
7723
+ set QualityRank(value: number | null);
7778
7724
  /**
7779
7725
  * * Field Name: CreatedAt
7780
7726
  * * Display Name: Created At
@@ -7915,8 +7861,8 @@ export declare class VectorIndexEntity extends BaseEntity {
7915
7861
  * * Display Name: Description
7916
7862
  * * SQL Data Type: nvarchar(MAX)
7917
7863
  */
7918
- get Description(): string;
7919
- set Description(value: string);
7864
+ get Description(): string | null;
7865
+ set Description(value: string | null);
7920
7866
  /**
7921
7867
  * * Field Name: VectorDatabaseID
7922
7868
  * * Display Name: Vector Database ID
@@ -8010,8 +7956,8 @@ export declare class EntityDocumentTypeEntity extends BaseEntity {
8010
7956
  * * Display Name: Description
8011
7957
  * * SQL Data Type: nvarchar(MAX)
8012
7958
  */
8013
- get Description(): string;
8014
- set Description(value: string);
7959
+ get Description(): string | null;
7960
+ set Description(value: string | null);
8015
7961
  /**
8016
7962
  * * Field Name: CreatedAt
8017
7963
  * * Display Name: Created At
@@ -8078,15 +8024,15 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
8078
8024
  * * Display Name: Started At
8079
8025
  * * SQL Data Type: datetime
8080
8026
  */
8081
- get StartedAt(): Date;
8082
- set StartedAt(value: Date);
8027
+ get StartedAt(): Date | null;
8028
+ set StartedAt(value: Date | null);
8083
8029
  /**
8084
8030
  * * Field Name: EndedAt
8085
8031
  * * Display Name: Ended At
8086
8032
  * * SQL Data Type: datetime
8087
8033
  */
8088
- get EndedAt(): Date;
8089
- set EndedAt(value: Date);
8034
+ get EndedAt(): Date | null;
8035
+ set EndedAt(value: Date | null);
8090
8036
  /**
8091
8037
  * * Field Name: Status
8092
8038
  * * Display Name: Status
@@ -8167,22 +8113,22 @@ export declare class VectorDatabaseEntity extends BaseEntity {
8167
8113
  * * Display Name: Description
8168
8114
  * * SQL Data Type: nvarchar(MAX)
8169
8115
  */
8170
- get Description(): string;
8171
- set Description(value: string);
8116
+ get Description(): string | null;
8117
+ set Description(value: string | null);
8172
8118
  /**
8173
8119
  * * Field Name: DefaultURL
8174
8120
  * * Display Name: Default URL
8175
8121
  * * SQL Data Type: nvarchar(255)
8176
8122
  */
8177
- get DefaultURL(): string;
8178
- set DefaultURL(value: string);
8123
+ get DefaultURL(): string | null;
8124
+ set DefaultURL(value: string | null);
8179
8125
  /**
8180
8126
  * * Field Name: ClassKey
8181
8127
  * * Display Name: Class Key
8182
8128
  * * SQL Data Type: nvarchar(100)
8183
8129
  */
8184
- get ClassKey(): string;
8185
- set ClassKey(value: string);
8130
+ get ClassKey(): string | null;
8131
+ set ClassKey(value: string | null);
8186
8132
  /**
8187
8133
  * * Field Name: CreatedAt
8188
8134
  * * Display Name: Created At
@@ -8256,8 +8202,8 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
8256
8202
  * * Display Name: Document Text
8257
8203
  * * SQL Data Type: nvarchar(MAX)
8258
8204
  */
8259
- get DocumentText(): string;
8260
- set DocumentText(value: string);
8205
+ get DocumentText(): string | null;
8206
+ set DocumentText(value: string | null);
8261
8207
  /**
8262
8208
  * * Field Name: VectorIndexID
8263
8209
  * * Display Name: Vector Index ID
@@ -8270,15 +8216,15 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
8270
8216
  * * Display Name: Vector ID
8271
8217
  * * SQL Data Type: nvarchar(50)
8272
8218
  */
8273
- get VectorID(): string;
8274
- set VectorID(value: string);
8219
+ get VectorID(): string | null;
8220
+ set VectorID(value: string | null);
8275
8221
  /**
8276
8222
  * * Field Name: VectorJSON
8277
8223
  * * Display Name: Vector JSON
8278
8224
  * * SQL Data Type: nvarchar(MAX)
8279
8225
  */
8280
- get VectorJSON(): string;
8281
- set VectorJSON(value: string);
8226
+ get VectorJSON(): string | null;
8227
+ set VectorJSON(value: string | null);
8282
8228
  /**
8283
8229
  * * Field Name: EntityRecordUpdatedAt
8284
8230
  * * Display Name: Entity Record Updated At
@@ -8375,8 +8321,8 @@ export declare class EntityDocumentEntity extends BaseEntity {
8375
8321
  * * Display Name: Template
8376
8322
  * * SQL Data Type: nvarchar(MAX)
8377
8323
  */
8378
- get Template(): string;
8379
- set Template(value: string);
8324
+ get Template(): string | null;
8325
+ set Template(value: string | null);
8380
8326
  /**
8381
8327
  * * Field Name: CreatedAt
8382
8328
  * * Display Name: Created At
@@ -8467,8 +8413,8 @@ export declare class DataContextItemEntity extends BaseEntity {
8467
8413
  * * Related Entity/Foreign Key: User Views (vwUserViews.ID)
8468
8414
  * * Description: Only used if Type='view'
8469
8415
  */
8470
- get ViewID(): number;
8471
- set ViewID(value: number);
8416
+ get ViewID(): number | null;
8417
+ set ViewID(value: number | null);
8472
8418
  /**
8473
8419
  * * Field Name: QueryID
8474
8420
  * * Display Name: Query ID
@@ -8476,8 +8422,8 @@ export declare class DataContextItemEntity extends BaseEntity {
8476
8422
  * * Related Entity/Foreign Key: Queries (vwQueries.ID)
8477
8423
  * * Description: Only used if Type='query'
8478
8424
  */
8479
- get QueryID(): number;
8480
- set QueryID(value: number);
8425
+ get QueryID(): number | null;
8426
+ set QueryID(value: number | null);
8481
8427
  /**
8482
8428
  * * Field Name: EntityID
8483
8429
  * * Display Name: Entity ID
@@ -8485,40 +8431,40 @@ export declare class DataContextItemEntity extends BaseEntity {
8485
8431
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
8486
8432
  * * Description: Used if type='full_entity' or type='single_record'
8487
8433
  */
8488
- get EntityID(): number;
8489
- set EntityID(value: number);
8434
+ get EntityID(): number | null;
8435
+ set EntityID(value: number | null);
8490
8436
  /**
8491
8437
  * * Field Name: RecordID
8492
8438
  * * Display Name: Record ID
8493
8439
  * * SQL Data Type: nvarchar(255)
8494
8440
  * * Description: The Primary Key value for the record, only used when Type='single_record'
8495
8441
  */
8496
- get RecordID(): string;
8497
- set RecordID(value: string);
8442
+ get RecordID(): string | null;
8443
+ set RecordID(value: string | null);
8498
8444
  /**
8499
8445
  * * Field Name: SQL
8500
8446
  * * Display Name: SQL
8501
8447
  * * SQL Data Type: nvarchar(MAX)
8502
8448
  * * Description: Only used when Type=sql
8503
8449
  */
8504
- get SQL(): string;
8505
- set SQL(value: string);
8450
+ get SQL(): string | null;
8451
+ set SQL(value: string | null);
8506
8452
  /**
8507
8453
  * * Field Name: DataJSON
8508
8454
  * * Display Name: Data JSON
8509
8455
  * * SQL Data Type: nvarchar(MAX)
8510
8456
  * * Description: Optionally used to cache results of an item. This can be used for performance optimization, and also for having snapshots of data for historical comparisons.
8511
8457
  */
8512
- get DataJSON(): string;
8513
- set DataJSON(value: string);
8458
+ get DataJSON(): string | null;
8459
+ set DataJSON(value: string | null);
8514
8460
  /**
8515
8461
  * * Field Name: LastRefreshedAt
8516
8462
  * * Display Name: Last Refreshed At
8517
8463
  * * SQL Data Type: datetime
8518
8464
  * * Description: If DataJSON is populated, this field will show the date the the data was captured
8519
8465
  */
8520
- get LastRefreshedAt(): Date;
8521
- set LastRefreshedAt(value: Date);
8466
+ get LastRefreshedAt(): Date | null;
8467
+ set LastRefreshedAt(value: Date | null);
8522
8468
  /**
8523
8469
  * * Field Name: CreatedAt
8524
8470
  * * Display Name: Created At
@@ -8544,19 +8490,19 @@ export declare class DataContextItemEntity extends BaseEntity {
8544
8490
  * * Display Name: View
8545
8491
  * * SQL Data Type: nvarchar(100)
8546
8492
  */
8547
- get View(): string;
8493
+ get View(): string | null;
8548
8494
  /**
8549
8495
  * * Field Name: Query
8550
8496
  * * Display Name: Query
8551
8497
  * * SQL Data Type: nvarchar(255)
8552
8498
  */
8553
- get Query(): string;
8499
+ get Query(): string | null;
8554
8500
  /**
8555
8501
  * * Field Name: Entity
8556
8502
  * * Display Name: Entity
8557
8503
  * * SQL Data Type: nvarchar(255)
8558
8504
  */
8559
- get Entity(): string;
8505
+ get Entity(): string | null;
8560
8506
  }
8561
8507
  /**
8562
8508
  * Data Contexts - strongly typed entity sub-class
@@ -8617,15 +8563,15 @@ export declare class DataContextEntity extends BaseEntity {
8617
8563
  * * Display Name: Description
8618
8564
  * * SQL Data Type: nvarchar(MAX)
8619
8565
  */
8620
- get Description(): string;
8621
- set Description(value: string);
8566
+ get Description(): string | null;
8567
+ set Description(value: string | null);
8622
8568
  /**
8623
8569
  * * Field Name: LastRefreshedAt
8624
8570
  * * Display Name: Last Refreshed At
8625
8571
  * * SQL Data Type: datetime
8626
8572
  */
8627
- get LastRefreshedAt(): Date;
8628
- set LastRefreshedAt(value: Date);
8573
+ get LastRefreshedAt(): Date | null;
8574
+ set LastRefreshedAt(value: Date | null);
8629
8575
  /**
8630
8576
  * * Field Name: CreatedAt
8631
8577
  * * Display Name: Created At
@@ -8671,15 +8617,6 @@ export declare class UserViewCategoryEntity extends BaseEntity {
8671
8617
  */
8672
8618
  Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8673
8619
  /**
8674
- * User View 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.
8675
- * @public
8676
- * @method
8677
- * @override
8678
- * @memberof UserViewCategoryEntity
8679
- * @throws {Error} - Delete is not allowed for User View Categories, to enable it set AllowDeleteAPI to 1 in the database.
8680
- */
8681
- Delete(): Promise<boolean>;
8682
- /**
8683
8620
  * * Field Name: ID
8684
8621
  * * Display Name: ID
8685
8622
  * * SQL Data Type: int
@@ -8697,16 +8634,16 @@ export declare class UserViewCategoryEntity extends BaseEntity {
8697
8634
  * * Display Name: Description
8698
8635
  * * SQL Data Type: nvarchar(MAX)
8699
8636
  */
8700
- get Description(): string;
8701
- set Description(value: string);
8637
+ get Description(): string | null;
8638
+ set Description(value: string | null);
8702
8639
  /**
8703
8640
  * * Field Name: ParentID
8704
8641
  * * Display Name: Parent ID
8705
8642
  * * SQL Data Type: int
8706
8643
  * * Related Entity/Foreign Key: User View Categories (vwUserViewCategories.ID)
8707
8644
  */
8708
- get ParentID(): number;
8709
- set ParentID(value: number);
8645
+ get ParentID(): number | null;
8646
+ set ParentID(value: number | null);
8710
8647
  /**
8711
8648
  * * Field Name: CreatedAt
8712
8649
  * * Display Name: Created At
@@ -8726,7 +8663,7 @@ export declare class UserViewCategoryEntity extends BaseEntity {
8726
8663
  * * Display Name: Parent
8727
8664
  * * SQL Data Type: nvarchar(100)
8728
8665
  */
8729
- get Parent(): string;
8666
+ get Parent(): string | null;
8730
8667
  }
8731
8668
  /**
8732
8669
  * Dashboard Categories - strongly typed entity sub-class
@@ -8752,15 +8689,6 @@ export declare class DashboardCategoryEntity extends BaseEntity {
8752
8689
  */
8753
8690
  Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8754
8691
  /**
8755
- * Dashboard 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.
8756
- * @public
8757
- * @method
8758
- * @override
8759
- * @memberof DashboardCategoryEntity
8760
- * @throws {Error} - Delete is not allowed for Dashboard Categories, to enable it set AllowDeleteAPI to 1 in the database.
8761
- */
8762
- Delete(): Promise<boolean>;
8763
- /**
8764
8692
  * * Field Name: ID
8765
8693
  * * Display Name: ID
8766
8694
  * * SQL Data Type: int
@@ -8778,16 +8706,16 @@ export declare class DashboardCategoryEntity extends BaseEntity {
8778
8706
  * * Display Name: Description
8779
8707
  * * SQL Data Type: nvarchar(MAX)
8780
8708
  */
8781
- get Description(): string;
8782
- set Description(value: string);
8709
+ get Description(): string | null;
8710
+ set Description(value: string | null);
8783
8711
  /**
8784
8712
  * * Field Name: ParentID
8785
8713
  * * Display Name: Parent ID
8786
8714
  * * SQL Data Type: int
8787
8715
  * * Related Entity/Foreign Key: Dashboard Categories (vwDashboardCategories.ID)
8788
8716
  */
8789
- get ParentID(): number;
8790
- set ParentID(value: number);
8717
+ get ParentID(): number | null;
8718
+ set ParentID(value: number | null);
8791
8719
  /**
8792
8720
  * * Field Name: CreatedAt
8793
8721
  * * Display Name: Created At
@@ -8807,7 +8735,7 @@ export declare class DashboardCategoryEntity extends BaseEntity {
8807
8735
  * * Display Name: Parent
8808
8736
  * * SQL Data Type: nvarchar(100)
8809
8737
  */
8810
- get Parent(): string;
8738
+ get Parent(): string | null;
8811
8739
  }
8812
8740
  /**
8813
8741
  * Report Categories - strongly typed entity sub-class
@@ -8833,12 +8761,84 @@ export declare class ReportCategoryEntity extends BaseEntity {
8833
8761
  */
8834
8762
  Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8835
8763
  /**
8836
- * Report 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.
8764
+ * * Field Name: ID
8765
+ * * Display Name: ID
8766
+ * * SQL Data Type: int
8767
+ */
8768
+ get ID(): number;
8769
+ /**
8770
+ * * Field Name: Name
8771
+ * * Display Name: Name
8772
+ * * SQL Data Type: nvarchar(100)
8773
+ */
8774
+ get Name(): string;
8775
+ set Name(value: string);
8776
+ /**
8777
+ * * Field Name: Description
8778
+ * * Display Name: Description
8779
+ * * SQL Data Type: nvarchar(MAX)
8780
+ */
8781
+ get Description(): string | null;
8782
+ set Description(value: string | null);
8783
+ /**
8784
+ * * Field Name: ParentID
8785
+ * * Display Name: Parent ID
8786
+ * * SQL Data Type: int
8787
+ * * Related Entity/Foreign Key: Report Categories (vwReportCategories.ID)
8788
+ */
8789
+ get ParentID(): number;
8790
+ set ParentID(value: number);
8791
+ /**
8792
+ * * Field Name: CreatedAt
8793
+ * * Display Name: Created At
8794
+ * * SQL Data Type: datetime
8795
+ * * Default Value: getdate()
8796
+ */
8797
+ get CreatedAt(): Date;
8798
+ /**
8799
+ * * Field Name: UpdatedAt
8800
+ * * Display Name: Updated At
8801
+ * * SQL Data Type: datetime
8802
+ * * Default Value: getdate()
8803
+ */
8804
+ get UpdatedAt(): Date;
8805
+ /**
8806
+ * * Field Name: Parent
8807
+ * * Display Name: Parent
8808
+ * * SQL Data Type: nvarchar(100)
8809
+ */
8810
+ get Parent(): string;
8811
+ }
8812
+ /**
8813
+ * File Storage Providers - strongly typed entity sub-class
8814
+ * * Schema: __mj
8815
+ * * Base Table: FileStorageProvider
8816
+ * * Base View: vwFileStorageProviders
8817
+ * * Primary Key: ID
8818
+ * @extends {BaseEntity}
8819
+ * @class
8820
+ * @public
8821
+ */
8822
+ export declare class FileStorageProviderEntity extends BaseEntity {
8823
+ /**
8824
+ * Loads the File Storage Providers record from the database
8825
+ * @param ID: number - primary key value to load the File Storage Providers record.
8826
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
8827
+ * @returns {Promise<boolean>} - true if successful, false otherwise
8828
+ * @public
8829
+ * @async
8830
+ * @memberof FileStorageProviderEntity
8831
+ * @method
8832
+ * @override
8833
+ */
8834
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8835
+ /**
8836
+ * File Storage 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.
8837
8837
  * @public
8838
8838
  * @method
8839
8839
  * @override
8840
- * @memberof ReportCategoryEntity
8841
- * @throws {Error} - Delete is not allowed for Report Categories, to enable it set AllowDeleteAPI to 1 in the database.
8840
+ * @memberof FileStorageProviderEntity
8841
+ * @throws {Error} - Delete is not allowed for File Storage Providers, to enable it set AllowDeleteAPI to 1 in the database.
8842
8842
  */
8843
8843
  Delete(): Promise<boolean>;
8844
8844
  /**
@@ -8850,8 +8850,105 @@ export declare class ReportCategoryEntity extends BaseEntity {
8850
8850
  /**
8851
8851
  * * Field Name: Name
8852
8852
  * * Display Name: Name
8853
+ * * SQL Data Type: nvarchar(50)
8854
+ */
8855
+ get Name(): string;
8856
+ set Name(value: string);
8857
+ /**
8858
+ * * Field Name: Description
8859
+ * * Display Name: Description
8860
+ * * SQL Data Type: nvarchar(MAX)
8861
+ */
8862
+ get Description(): string | null;
8863
+ set Description(value: string | null);
8864
+ /**
8865
+ * * Field Name: ServerDriverKey
8866
+ * * Display Name: Server Driver Key
8853
8867
  * * SQL Data Type: nvarchar(100)
8854
8868
  */
8869
+ get ServerDriverKey(): string;
8870
+ set ServerDriverKey(value: string);
8871
+ /**
8872
+ * * Field Name: ClientDriverKey
8873
+ * * Display Name: Client Driver Key
8874
+ * * SQL Data Type: nvarchar(100)
8875
+ */
8876
+ get ClientDriverKey(): string;
8877
+ set ClientDriverKey(value: string);
8878
+ /**
8879
+ * * Field Name: Priority
8880
+ * * Display Name: Priority
8881
+ * * SQL Data Type: int
8882
+ * * Default Value: 0
8883
+ */
8884
+ get Priority(): number;
8885
+ set Priority(value: number);
8886
+ /**
8887
+ * * Field Name: IsActive
8888
+ * * Display Name: Is Active
8889
+ * * SQL Data Type: bit
8890
+ * * Default Value: 1
8891
+ */
8892
+ get IsActive(): boolean;
8893
+ set IsActive(value: boolean);
8894
+ /**
8895
+ * * Field Name: CreatedAt
8896
+ * * Display Name: Created At
8897
+ * * SQL Data Type: datetime
8898
+ * * Default Value: getdate()
8899
+ */
8900
+ get CreatedAt(): Date;
8901
+ /**
8902
+ * * Field Name: UpdatedAt
8903
+ * * Display Name: Updated At
8904
+ * * SQL Data Type: datetime
8905
+ * * Default Value: getdate()
8906
+ */
8907
+ get UpdatedAt(): Date;
8908
+ }
8909
+ /**
8910
+ * Files - strongly typed entity sub-class
8911
+ * * Schema: __mj
8912
+ * * Base Table: File
8913
+ * * Base View: vwFiles
8914
+ * * Primary Key: ID
8915
+ * @extends {BaseEntity}
8916
+ * @class
8917
+ * @public
8918
+ */
8919
+ export declare class FileEntity extends BaseEntity {
8920
+ /**
8921
+ * Loads the Files record from the database
8922
+ * @param ID: number - primary key value to load the Files record.
8923
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
8924
+ * @returns {Promise<boolean>} - true if successful, false otherwise
8925
+ * @public
8926
+ * @async
8927
+ * @memberof FileEntity
8928
+ * @method
8929
+ * @override
8930
+ */
8931
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
8932
+ /**
8933
+ * Files - 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.
8934
+ * @public
8935
+ * @method
8936
+ * @override
8937
+ * @memberof FileEntity
8938
+ * @throws {Error} - Delete is not allowed for Files, to enable it set AllowDeleteAPI to 1 in the database.
8939
+ */
8940
+ Delete(): Promise<boolean>;
8941
+ /**
8942
+ * * Field Name: ID
8943
+ * * Display Name: ID
8944
+ * * SQL Data Type: int
8945
+ */
8946
+ get ID(): number;
8947
+ /**
8948
+ * * Field Name: Name
8949
+ * * Display Name: Name
8950
+ * * SQL Data Type: nvarchar(500)
8951
+ */
8855
8952
  get Name(): string;
8856
8953
  set Name(value: string);
8857
8954
  /**
@@ -8859,16 +8956,125 @@ export declare class ReportCategoryEntity extends BaseEntity {
8859
8956
  * * Display Name: Description
8860
8957
  * * SQL Data Type: nvarchar(MAX)
8861
8958
  */
8862
- get Description(): string;
8863
- set Description(value: string);
8959
+ get Description(): string | null;
8960
+ set Description(value: string | null);
8961
+ /**
8962
+ * * Field Name: ProviderID
8963
+ * * Display Name: Provider ID
8964
+ * * SQL Data Type: int
8965
+ * * Related Entity/Foreign Key: File Storage Providers (vwFileStorageProviders.ID)
8966
+ */
8967
+ get ProviderID(): number;
8968
+ set ProviderID(value: number);
8969
+ /**
8970
+ * * Field Name: ContentType
8971
+ * * Display Name: Content Type
8972
+ * * SQL Data Type: nvarchar(50)
8973
+ */
8974
+ get ContentType(): string | null;
8975
+ set ContentType(value: string | null);
8976
+ /**
8977
+ * * Field Name: ProviderKey
8978
+ * * Display Name: Provider Key
8979
+ * * SQL Data Type: nvarchar(500)
8980
+ */
8981
+ get ProviderKey(): string | null;
8982
+ set ProviderKey(value: string | null);
8983
+ /**
8984
+ * * Field Name: CategoryID
8985
+ * * Display Name: Category ID
8986
+ * * SQL Data Type: int
8987
+ * * Related Entity/Foreign Key: File Categories (vwFileCategories.ID)
8988
+ */
8989
+ get CategoryID(): number | null;
8990
+ set CategoryID(value: number | null);
8991
+ /**
8992
+ * * Field Name: Status
8993
+ * * Display Name: Status
8994
+ * * SQL Data Type: nvarchar(20)
8995
+ * * Default Value: N'Pending'
8996
+ * * Description: Pending, Uploading, Uploaded, Deleting, Deleted
8997
+ */
8998
+ get Status(): string;
8999
+ set Status(value: string);
9000
+ /**
9001
+ * * Field Name: CreatedAt
9002
+ * * Display Name: Created At
9003
+ * * SQL Data Type: datetime
9004
+ * * Default Value: getdate()
9005
+ */
9006
+ get CreatedAt(): Date;
9007
+ /**
9008
+ * * Field Name: UpdatedAt
9009
+ * * Display Name: Updated At
9010
+ * * SQL Data Type: datetime
9011
+ * * Default Value: getdate()
9012
+ */
9013
+ get UpdatedAt(): Date;
9014
+ /**
9015
+ * * Field Name: Provider
9016
+ * * Display Name: Provider
9017
+ * * SQL Data Type: nvarchar(50)
9018
+ */
9019
+ get Provider(): string;
9020
+ /**
9021
+ * * Field Name: Category
9022
+ * * Display Name: Category
9023
+ * * SQL Data Type: nvarchar(255)
9024
+ */
9025
+ get Category(): string | null;
9026
+ }
9027
+ /**
9028
+ * File Categories - strongly typed entity sub-class
9029
+ * * Schema: __mj
9030
+ * * Base Table: FileCategory
9031
+ * * Base View: vwFileCategories
9032
+ * * Primary Key: ID
9033
+ * @extends {BaseEntity}
9034
+ * @class
9035
+ * @public
9036
+ */
9037
+ export declare class FileCategoryEntity extends BaseEntity {
9038
+ /**
9039
+ * Loads the File Categories record from the database
9040
+ * @param ID: number - primary key value to load the File Categories record.
9041
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
9042
+ * @returns {Promise<boolean>} - true if successful, false otherwise
9043
+ * @public
9044
+ * @async
9045
+ * @memberof FileCategoryEntity
9046
+ * @method
9047
+ * @override
9048
+ */
9049
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
9050
+ /**
9051
+ * * Field Name: ID
9052
+ * * Display Name: ID
9053
+ * * SQL Data Type: int
9054
+ */
9055
+ get ID(): number;
9056
+ /**
9057
+ * * Field Name: Name
9058
+ * * Display Name: Name
9059
+ * * SQL Data Type: nvarchar(255)
9060
+ */
9061
+ get Name(): string;
9062
+ set Name(value: string);
9063
+ /**
9064
+ * * Field Name: Description
9065
+ * * Display Name: Description
9066
+ * * SQL Data Type: nvarchar(MAX)
9067
+ */
9068
+ get Description(): string | null;
9069
+ set Description(value: string | null);
8864
9070
  /**
8865
9071
  * * Field Name: ParentID
8866
9072
  * * Display Name: Parent ID
8867
9073
  * * SQL Data Type: int
8868
- * * Related Entity/Foreign Key: Report Categories (vwReportCategories.ID)
9074
+ * * Related Entity/Foreign Key: File Categories (vwFileCategories.ID)
8869
9075
  */
8870
- get ParentID(): number;
8871
- set ParentID(value: number);
9076
+ get ParentID(): number | null;
9077
+ set ParentID(value: number | null);
8872
9078
  /**
8873
9079
  * * Field Name: CreatedAt
8874
9080
  * * Display Name: Created At
@@ -8886,7 +9092,96 @@ export declare class ReportCategoryEntity extends BaseEntity {
8886
9092
  /**
8887
9093
  * * Field Name: Parent
8888
9094
  * * Display Name: Parent
8889
- * * SQL Data Type: nvarchar(100)
9095
+ * * SQL Data Type: nvarchar(255)
8890
9096
  */
8891
- get Parent(): string;
9097
+ get Parent(): string | null;
9098
+ }
9099
+ /**
9100
+ * File Entity Record Links - strongly typed entity sub-class
9101
+ * * Schema: __mj
9102
+ * * Base Table: FileEntityRecordLink
9103
+ * * Base View: vwFileEntityRecordLinks
9104
+ * * Primary Key: ID
9105
+ * @extends {BaseEntity}
9106
+ * @class
9107
+ * @public
9108
+ */
9109
+ export declare class FileEntityRecordLinkEntity extends BaseEntity {
9110
+ /**
9111
+ * Loads the File Entity Record Links record from the database
9112
+ * @param ID: number - primary key value to load the File Entity Record Links record.
9113
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
9114
+ * @returns {Promise<boolean>} - true if successful, false otherwise
9115
+ * @public
9116
+ * @async
9117
+ * @memberof FileEntityRecordLinkEntity
9118
+ * @method
9119
+ * @override
9120
+ */
9121
+ Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
9122
+ /**
9123
+ * File Entity Record Links - 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.
9124
+ * @public
9125
+ * @method
9126
+ * @override
9127
+ * @memberof FileEntityRecordLinkEntity
9128
+ * @throws {Error} - Delete is not allowed for File Entity Record Links, to enable it set AllowDeleteAPI to 1 in the database.
9129
+ */
9130
+ Delete(): Promise<boolean>;
9131
+ /**
9132
+ * * Field Name: ID
9133
+ * * Display Name: ID
9134
+ * * SQL Data Type: int
9135
+ */
9136
+ get ID(): number;
9137
+ /**
9138
+ * * Field Name: FileID
9139
+ * * Display Name: File ID
9140
+ * * SQL Data Type: int
9141
+ * * Related Entity/Foreign Key: Files (vwFiles.ID)
9142
+ */
9143
+ get FileID(): number;
9144
+ set FileID(value: number);
9145
+ /**
9146
+ * * Field Name: EntityID
9147
+ * * Display Name: Entity ID
9148
+ * * SQL Data Type: int
9149
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
9150
+ */
9151
+ get EntityID(): number;
9152
+ set EntityID(value: number);
9153
+ /**
9154
+ * * Field Name: RecordID
9155
+ * * Display Name: Record ID
9156
+ * * SQL Data Type: nvarchar(255)
9157
+ */
9158
+ get RecordID(): string;
9159
+ set RecordID(value: string);
9160
+ /**
9161
+ * * Field Name: CreatedAt
9162
+ * * Display Name: Created At
9163
+ * * SQL Data Type: datetime
9164
+ * * Default Value: getdate()
9165
+ */
9166
+ get CreatedAt(): Date;
9167
+ /**
9168
+ * * Field Name: UpdatedAt
9169
+ * * Display Name: Updated At
9170
+ * * SQL Data Type: datetime
9171
+ * * Default Value: getdate()
9172
+ */
9173
+ get UpdatedAt(): Date;
9174
+ /**
9175
+ * * Field Name: File
9176
+ * * Display Name: File
9177
+ * * SQL Data Type: nvarchar(500)
9178
+ */
9179
+ get File(): string;
9180
+ /**
9181
+ * * Field Name: Entity
9182
+ * * Display Name: Entity
9183
+ * * SQL Data Type: nvarchar(255)
9184
+ */
9185
+ get Entity(): string;
8892
9186
  }
9187
+ //# sourceMappingURL=entity_subclasses.d.ts.map