@memberjunction/core-entities 0.9.156 → 0.9.159
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom/DashboardEntityExtended.d.ts +5 -0
- package/dist/custom/DashboardEntityExtended.d.ts.map +1 -0
- package/dist/custom/DashboardEntityExtended.js +39 -0
- package/dist/custom/DashboardEntityExtended.js.map +1 -0
- package/dist/custom/UserViewEntity.d.ts +1 -0
- package/dist/custom/UserViewEntity.d.ts.map +1 -0
- package/dist/generated/entity_subclasses.d.ts +930 -643
- package/dist/generated/entity_subclasses.d.ts.map +1 -0
- package/dist/generated/entity_subclasses.js +513 -99
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -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,12 +2549,13 @@ 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
|
|
2566
2557
|
* * SQL Data Type: nvarchar(100)
|
|
2558
|
+
* * Default Value: null
|
|
2567
2559
|
*/
|
|
2568
2560
|
get RunByUser(): string;
|
|
2569
2561
|
}
|
|
@@ -2659,13 +2651,13 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
|
|
|
2659
2651
|
* * Display Name: Run Started At
|
|
2660
2652
|
* * SQL Data Type: datetime
|
|
2661
2653
|
*/
|
|
2662
|
-
get RunStartedAt(): Date;
|
|
2654
|
+
get RunStartedAt(): Date | null;
|
|
2663
2655
|
/**
|
|
2664
2656
|
* * Field Name: RunEndedAt
|
|
2665
2657
|
* * Display Name: Run Ended At
|
|
2666
2658
|
* * SQL Data Type: datetime
|
|
2667
2659
|
*/
|
|
2668
|
-
get RunEndedAt(): Date;
|
|
2660
|
+
get RunEndedAt(): Date | null;
|
|
2669
2661
|
}
|
|
2670
2662
|
/**
|
|
2671
2663
|
* Error Logs - strongly typed entity sub-class
|
|
@@ -2710,28 +2702,28 @@ export declare class ErrorLogEntity extends BaseEntity {
|
|
|
2710
2702
|
* * SQL Data Type: int
|
|
2711
2703
|
* * Related Entity/Foreign Key: Company Integration Runs (vwCompanyIntegrationRuns.ID)
|
|
2712
2704
|
*/
|
|
2713
|
-
get CompanyIntegrationRunID(): number;
|
|
2714
|
-
set CompanyIntegrationRunID(value: number);
|
|
2705
|
+
get CompanyIntegrationRunID(): number | null;
|
|
2706
|
+
set CompanyIntegrationRunID(value: number | null);
|
|
2715
2707
|
/**
|
|
2716
2708
|
* * Field Name: CompanyIntegrationRunDetailID
|
|
2717
2709
|
* * Display Name: CompanyIntegrationRunDetail ID
|
|
2718
2710
|
* * SQL Data Type: int
|
|
2719
2711
|
* * Related Entity/Foreign Key: Company Integration Run Details (vwCompanyIntegrationRunDetails.ID)
|
|
2720
2712
|
*/
|
|
2721
|
-
get CompanyIntegrationRunDetailID(): number;
|
|
2722
|
-
set CompanyIntegrationRunDetailID(value: number);
|
|
2713
|
+
get CompanyIntegrationRunDetailID(): number | null;
|
|
2714
|
+
set CompanyIntegrationRunDetailID(value: number | null);
|
|
2723
2715
|
/**
|
|
2724
2716
|
* * Field Name: Code
|
|
2725
2717
|
* * SQL Data Type: nchar(20)
|
|
2726
2718
|
*/
|
|
2727
|
-
get Code(): string;
|
|
2728
|
-
set Code(value: string);
|
|
2719
|
+
get Code(): string | null;
|
|
2720
|
+
set Code(value: string | null);
|
|
2729
2721
|
/**
|
|
2730
2722
|
* * Field Name: Message
|
|
2731
2723
|
* * SQL Data Type: nvarchar(MAX)
|
|
2732
2724
|
*/
|
|
2733
|
-
get Message(): string;
|
|
2734
|
-
set Message(value: string);
|
|
2725
|
+
get Message(): string | null;
|
|
2726
|
+
set Message(value: string | null);
|
|
2735
2727
|
/**
|
|
2736
2728
|
* * Field Name: CreatedAt
|
|
2737
2729
|
* * Display Name: Created At
|
|
@@ -2745,26 +2737,26 @@ export declare class ErrorLogEntity extends BaseEntity {
|
|
|
2745
2737
|
* * SQL Data Type: nvarchar(50)
|
|
2746
2738
|
* * Default Value: suser_name()
|
|
2747
2739
|
*/
|
|
2748
|
-
get CreatedBy(): string;
|
|
2749
|
-
set CreatedBy(value: string);
|
|
2740
|
+
get CreatedBy(): string | null;
|
|
2741
|
+
set CreatedBy(value: string | null);
|
|
2750
2742
|
/**
|
|
2751
2743
|
* * Field Name: Status
|
|
2752
2744
|
* * SQL Data Type: nvarchar(10)
|
|
2753
2745
|
*/
|
|
2754
|
-
get Status(): string;
|
|
2755
|
-
set Status(value: string);
|
|
2746
|
+
get Status(): string | null;
|
|
2747
|
+
set Status(value: string | null);
|
|
2756
2748
|
/**
|
|
2757
2749
|
* * Field Name: Category
|
|
2758
2750
|
* * SQL Data Type: nvarchar(20)
|
|
2759
2751
|
*/
|
|
2760
|
-
get Category(): string;
|
|
2761
|
-
set Category(value: string);
|
|
2752
|
+
get Category(): string | null;
|
|
2753
|
+
set Category(value: string | null);
|
|
2762
2754
|
/**
|
|
2763
2755
|
* * Field Name: Details
|
|
2764
2756
|
* * SQL Data Type: nvarchar(MAX)
|
|
2765
2757
|
*/
|
|
2766
|
-
get Details(): string;
|
|
2767
|
-
set Details(value: string);
|
|
2758
|
+
get Details(): string | null;
|
|
2759
|
+
set Details(value: string | null);
|
|
2768
2760
|
}
|
|
2769
2761
|
/**
|
|
2770
2762
|
* Applications - strongly typed entity sub-class
|
|
@@ -2813,8 +2805,8 @@ export declare class ApplicationEntity extends BaseEntity {
|
|
|
2813
2805
|
* * Field Name: Description
|
|
2814
2806
|
* * SQL Data Type: nvarchar(500)
|
|
2815
2807
|
*/
|
|
2816
|
-
get Description(): string;
|
|
2817
|
-
set Description(value: string);
|
|
2808
|
+
get Description(): string | null;
|
|
2809
|
+
set Description(value: string | null);
|
|
2818
2810
|
/**
|
|
2819
2811
|
* * Field Name: CreatedAt
|
|
2820
2812
|
* * Display Name: Created At
|
|
@@ -2864,8 +2856,8 @@ export declare class ApplicationEntityEntity extends BaseEntity {
|
|
|
2864
2856
|
* * SQL Data Type: nvarchar(50)
|
|
2865
2857
|
* * Related Entity/Foreign Key: Applications (vwApplications.Name)
|
|
2866
2858
|
*/
|
|
2867
|
-
get ApplicationName(): string;
|
|
2868
|
-
set ApplicationName(value: string);
|
|
2859
|
+
get ApplicationName(): string | null;
|
|
2860
|
+
set ApplicationName(value: string | null);
|
|
2869
2861
|
/**
|
|
2870
2862
|
* * Field Name: EntityID
|
|
2871
2863
|
* * Display Name: Entity ID
|
|
@@ -2923,19 +2915,19 @@ export declare class ApplicationEntityEntity extends BaseEntity {
|
|
|
2923
2915
|
* * Display Name: Entity Code Name
|
|
2924
2916
|
* * SQL Data Type: nvarchar(4000)
|
|
2925
2917
|
*/
|
|
2926
|
-
get EntityCodeName(): string;
|
|
2918
|
+
get EntityCodeName(): string | null;
|
|
2927
2919
|
/**
|
|
2928
2920
|
* * Field Name: EntityClassName
|
|
2929
2921
|
* * Display Name: Entity Class Name
|
|
2930
2922
|
* * SQL Data Type: nvarchar(4000)
|
|
2931
2923
|
*/
|
|
2932
|
-
get EntityClassName(): string;
|
|
2924
|
+
get EntityClassName(): string | null;
|
|
2933
2925
|
/**
|
|
2934
2926
|
* * Field Name: EntityBaseTableCodeName
|
|
2935
2927
|
* * Display Name: Entity Base Table Code Name
|
|
2936
2928
|
* * SQL Data Type: nvarchar(4000)
|
|
2937
2929
|
*/
|
|
2938
|
-
get EntityBaseTableCodeName(): string;
|
|
2930
|
+
get EntityBaseTableCodeName(): string | null;
|
|
2939
2931
|
}
|
|
2940
2932
|
/**
|
|
2941
2933
|
* Entity Permissions - strongly typed entity sub-class
|
|
@@ -2979,8 +2971,8 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
2979
2971
|
* * SQL Data Type: nvarchar(50)
|
|
2980
2972
|
* * Related Entity/Foreign Key: Roles (vwRoles.Name)
|
|
2981
2973
|
*/
|
|
2982
|
-
get RoleName(): string;
|
|
2983
|
-
set RoleName(value: string);
|
|
2974
|
+
get RoleName(): string | null;
|
|
2975
|
+
set RoleName(value: string | null);
|
|
2984
2976
|
/**
|
|
2985
2977
|
* * Field Name: CanCreate
|
|
2986
2978
|
* * Display Name: Can Create
|
|
@@ -3019,32 +3011,32 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3019
3011
|
* * SQL Data Type: int
|
|
3020
3012
|
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
3021
3013
|
*/
|
|
3022
|
-
get ReadRLSFilterID(): number;
|
|
3023
|
-
set ReadRLSFilterID(value: number);
|
|
3014
|
+
get ReadRLSFilterID(): number | null;
|
|
3015
|
+
set ReadRLSFilterID(value: number | null);
|
|
3024
3016
|
/**
|
|
3025
3017
|
* * Field Name: CreateRLSFilterID
|
|
3026
3018
|
* * Display Name: Create RLSFilter ID
|
|
3027
3019
|
* * SQL Data Type: int
|
|
3028
3020
|
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
3029
3021
|
*/
|
|
3030
|
-
get CreateRLSFilterID(): number;
|
|
3031
|
-
set CreateRLSFilterID(value: number);
|
|
3022
|
+
get CreateRLSFilterID(): number | null;
|
|
3023
|
+
set CreateRLSFilterID(value: number | null);
|
|
3032
3024
|
/**
|
|
3033
3025
|
* * Field Name: UpdateRLSFilterID
|
|
3034
3026
|
* * Display Name: Update RLSFilter ID
|
|
3035
3027
|
* * SQL Data Type: int
|
|
3036
3028
|
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
3037
3029
|
*/
|
|
3038
|
-
get UpdateRLSFilterID(): number;
|
|
3039
|
-
set UpdateRLSFilterID(value: number);
|
|
3030
|
+
get UpdateRLSFilterID(): number | null;
|
|
3031
|
+
set UpdateRLSFilterID(value: number | null);
|
|
3040
3032
|
/**
|
|
3041
3033
|
* * Field Name: DeleteRLSFilterID
|
|
3042
3034
|
* * Display Name: Delete RLSFilter ID
|
|
3043
3035
|
* * SQL Data Type: int
|
|
3044
3036
|
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
3045
3037
|
*/
|
|
3046
|
-
get DeleteRLSFilterID(): number;
|
|
3047
|
-
set DeleteRLSFilterID(value: number);
|
|
3038
|
+
get DeleteRLSFilterID(): number | null;
|
|
3039
|
+
set DeleteRLSFilterID(value: number | null);
|
|
3048
3040
|
/**
|
|
3049
3041
|
* * Field Name: CreatedAt
|
|
3050
3042
|
* * Display Name: Created At
|
|
@@ -3075,25 +3067,25 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3075
3067
|
* * Display Name: Create RLSFilter
|
|
3076
3068
|
* * SQL Data Type: nvarchar(100)
|
|
3077
3069
|
*/
|
|
3078
|
-
get CreateRLSFilter(): string;
|
|
3070
|
+
get CreateRLSFilter(): string | null;
|
|
3079
3071
|
/**
|
|
3080
3072
|
* * Field Name: ReadRLSFilter
|
|
3081
3073
|
* * Display Name: Read RLSFilter
|
|
3082
3074
|
* * SQL Data Type: nvarchar(100)
|
|
3083
3075
|
*/
|
|
3084
|
-
get ReadRLSFilter(): string;
|
|
3076
|
+
get ReadRLSFilter(): string | null;
|
|
3085
3077
|
/**
|
|
3086
3078
|
* * Field Name: UpdateRLSFilter
|
|
3087
3079
|
* * Display Name: Update RLSFilter
|
|
3088
3080
|
* * SQL Data Type: nvarchar(100)
|
|
3089
3081
|
*/
|
|
3090
|
-
get UpdateRLSFilter(): string;
|
|
3082
|
+
get UpdateRLSFilter(): string | null;
|
|
3091
3083
|
/**
|
|
3092
3084
|
* * Field Name: DeleteRLSFilter
|
|
3093
3085
|
* * Display Name: Delete RLSFilter
|
|
3094
3086
|
* * SQL Data Type: nvarchar(100)
|
|
3095
3087
|
*/
|
|
3096
|
-
get DeleteRLSFilter(): string;
|
|
3088
|
+
get DeleteRLSFilter(): string | null;
|
|
3097
3089
|
}
|
|
3098
3090
|
/**
|
|
3099
3091
|
* User Application Entities - strongly typed entity sub-class
|
|
@@ -3189,15 +3181,6 @@ export declare class UserApplicationEntity extends BaseEntity {
|
|
|
3189
3181
|
*/
|
|
3190
3182
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
3191
3183
|
/**
|
|
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
3184
|
* * Field Name: ID
|
|
3202
3185
|
* * SQL Data Type: int
|
|
3203
3186
|
*/
|
|
@@ -3312,20 +3295,20 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
|
|
|
3312
3295
|
* * Display Name: Request Method
|
|
3313
3296
|
* * SQL Data Type: nvarchar(12)
|
|
3314
3297
|
*/
|
|
3315
|
-
get RequestMethod(): string;
|
|
3316
|
-
set RequestMethod(value: string);
|
|
3298
|
+
get RequestMethod(): string | null;
|
|
3299
|
+
set RequestMethod(value: string | null);
|
|
3317
3300
|
/**
|
|
3318
3301
|
* * Field Name: URL
|
|
3319
3302
|
* * SQL Data Type: nvarchar(MAX)
|
|
3320
3303
|
*/
|
|
3321
|
-
get URL(): string;
|
|
3322
|
-
set URL(value: string);
|
|
3304
|
+
get URL(): string | null;
|
|
3305
|
+
set URL(value: string | null);
|
|
3323
3306
|
/**
|
|
3324
3307
|
* * Field Name: Parameters
|
|
3325
3308
|
* * SQL Data Type: nvarchar(MAX)
|
|
3326
3309
|
*/
|
|
3327
|
-
get Parameters(): string;
|
|
3328
|
-
set Parameters(value: string);
|
|
3310
|
+
get Parameters(): string | null;
|
|
3311
|
+
set Parameters(value: string | null);
|
|
3329
3312
|
}
|
|
3330
3313
|
/**
|
|
3331
3314
|
* Lists - strongly typed entity sub-class
|
|
@@ -3365,16 +3348,16 @@ export declare class ListEntity extends BaseEntity {
|
|
|
3365
3348
|
* * Field Name: Description
|
|
3366
3349
|
* * SQL Data Type: nvarchar(MAX)
|
|
3367
3350
|
*/
|
|
3368
|
-
get Description(): string;
|
|
3369
|
-
set Description(value: string);
|
|
3351
|
+
get Description(): string | null;
|
|
3352
|
+
set Description(value: string | null);
|
|
3370
3353
|
/**
|
|
3371
3354
|
* * Field Name: EntityID
|
|
3372
3355
|
* * Display Name: Entity ID
|
|
3373
3356
|
* * SQL Data Type: int
|
|
3374
3357
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
3375
3358
|
*/
|
|
3376
|
-
get EntityID(): number;
|
|
3377
|
-
set EntityID(value: number);
|
|
3359
|
+
get EntityID(): number | null;
|
|
3360
|
+
set EntityID(value: number | null);
|
|
3378
3361
|
/**
|
|
3379
3362
|
* * Field Name: UserID
|
|
3380
3363
|
* * Display Name: User ID
|
|
@@ -3388,16 +3371,16 @@ export declare class ListEntity extends BaseEntity {
|
|
|
3388
3371
|
* * Display Name: External System Record ID
|
|
3389
3372
|
* * SQL Data Type: nvarchar(100)
|
|
3390
3373
|
*/
|
|
3391
|
-
get ExternalSystemRecordID(): string;
|
|
3392
|
-
set ExternalSystemRecordID(value: string);
|
|
3374
|
+
get ExternalSystemRecordID(): string | null;
|
|
3375
|
+
set ExternalSystemRecordID(value: string | null);
|
|
3393
3376
|
/**
|
|
3394
3377
|
* * Field Name: CompanyIntegrationID
|
|
3395
3378
|
* * Display Name: Company Integration ID
|
|
3396
3379
|
* * SQL Data Type: int
|
|
3397
3380
|
* * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)
|
|
3398
3381
|
*/
|
|
3399
|
-
get CompanyIntegrationID(): number;
|
|
3400
|
-
set CompanyIntegrationID(value: number);
|
|
3382
|
+
get CompanyIntegrationID(): number | null;
|
|
3383
|
+
set CompanyIntegrationID(value: number | null);
|
|
3401
3384
|
/**
|
|
3402
3385
|
* * Field Name: CreatedAt
|
|
3403
3386
|
* * Display Name: Created At
|
|
@@ -3417,7 +3400,7 @@ export declare class ListEntity extends BaseEntity {
|
|
|
3417
3400
|
* * Display Name: Entity
|
|
3418
3401
|
* * SQL Data Type: nvarchar(255)
|
|
3419
3402
|
*/
|
|
3420
|
-
get Entity(): string;
|
|
3403
|
+
get Entity(): string | null;
|
|
3421
3404
|
/**
|
|
3422
3405
|
* * Field Name: User
|
|
3423
3406
|
* * Display Name: User
|
|
@@ -3678,8 +3661,8 @@ export declare class WorkflowRunEntity extends BaseEntity {
|
|
|
3678
3661
|
* * Display Name: Ended At
|
|
3679
3662
|
* * SQL Data Type: datetime
|
|
3680
3663
|
*/
|
|
3681
|
-
get EndedAt(): Date;
|
|
3682
|
-
set EndedAt(value: Date);
|
|
3664
|
+
get EndedAt(): Date | null;
|
|
3665
|
+
set EndedAt(value: Date | null);
|
|
3683
3666
|
/**
|
|
3684
3667
|
* * Field Name: Status
|
|
3685
3668
|
* * SQL Data Type: nchar(10)
|
|
@@ -3691,8 +3674,8 @@ export declare class WorkflowRunEntity extends BaseEntity {
|
|
|
3691
3674
|
* * Field Name: Results
|
|
3692
3675
|
* * SQL Data Type: nvarchar(MAX)
|
|
3693
3676
|
*/
|
|
3694
|
-
get Results(): string;
|
|
3695
|
-
set Results(value: string);
|
|
3677
|
+
get Results(): string | null;
|
|
3678
|
+
set Results(value: string | null);
|
|
3696
3679
|
/**
|
|
3697
3680
|
* * Field Name: Workflow
|
|
3698
3681
|
* * Display Name: Workflow
|
|
@@ -3753,8 +3736,8 @@ export declare class WorkflowEntity extends BaseEntity {
|
|
|
3753
3736
|
* * Field Name: Description
|
|
3754
3737
|
* * SQL Data Type: nvarchar(MAX)
|
|
3755
3738
|
*/
|
|
3756
|
-
get Description(): string;
|
|
3757
|
-
set Description(value: string);
|
|
3739
|
+
get Description(): string | null;
|
|
3740
|
+
set Description(value: string | null);
|
|
3758
3741
|
/**
|
|
3759
3742
|
* * Field Name: WorkflowEngineName
|
|
3760
3743
|
* * Display Name: Workflow Engine Name
|
|
@@ -3840,8 +3823,8 @@ export declare class WorkflowEngineEntity extends BaseEntity {
|
|
|
3840
3823
|
* * Field Name: Description
|
|
3841
3824
|
* * SQL Data Type: nvarchar(MAX)
|
|
3842
3825
|
*/
|
|
3843
|
-
get Description(): string;
|
|
3844
|
-
set Description(value: string);
|
|
3826
|
+
get Description(): string | null;
|
|
3827
|
+
set Description(value: string | null);
|
|
3845
3828
|
/**
|
|
3846
3829
|
* * Field Name: DriverPath
|
|
3847
3830
|
* * Display Name: Driver Path
|
|
@@ -3971,8 +3954,8 @@ export declare class RecordChangeEntity extends BaseEntity {
|
|
|
3971
3954
|
* * Field Name: Comments
|
|
3972
3955
|
* * SQL Data Type: nvarchar(MAX)
|
|
3973
3956
|
*/
|
|
3974
|
-
get Comments(): string;
|
|
3975
|
-
set Comments(value: string);
|
|
3957
|
+
get Comments(): string | null;
|
|
3958
|
+
set Comments(value: string | null);
|
|
3976
3959
|
/**
|
|
3977
3960
|
* * Field Name: Entity
|
|
3978
3961
|
* * Display Name: Entity
|
|
@@ -4010,15 +3993,6 @@ export declare class UserRoleEntity extends BaseEntity {
|
|
|
4010
3993
|
*/
|
|
4011
3994
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
4012
3995
|
/**
|
|
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
3996
|
* * Field Name: ID
|
|
4023
3997
|
* * Display Name: ID
|
|
4024
3998
|
* * SQL Data Type: int
|
|
@@ -4120,15 +4094,15 @@ export declare class RowLevelSecurityFilterEntity extends BaseEntity {
|
|
|
4120
4094
|
* * Display Name: Description
|
|
4121
4095
|
* * SQL Data Type: nvarchar(MAX)
|
|
4122
4096
|
*/
|
|
4123
|
-
get Description(): string;
|
|
4124
|
-
set Description(value: string);
|
|
4097
|
+
get Description(): string | null;
|
|
4098
|
+
set Description(value: string | null);
|
|
4125
4099
|
/**
|
|
4126
4100
|
* * Field Name: FilterText
|
|
4127
4101
|
* * Display Name: Filter Text
|
|
4128
4102
|
* * SQL Data Type: nvarchar(MAX)
|
|
4129
4103
|
*/
|
|
4130
|
-
get FilterText(): string;
|
|
4131
|
-
set FilterText(value: string);
|
|
4104
|
+
get FilterText(): string | null;
|
|
4105
|
+
set FilterText(value: string | null);
|
|
4132
4106
|
/**
|
|
4133
4107
|
* * Field Name: CreatedAt
|
|
4134
4108
|
* * Display Name: Created At
|
|
@@ -4188,8 +4162,8 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4188
4162
|
* * SQL Data Type: nvarchar(50)
|
|
4189
4163
|
* * Related Entity/Foreign Key: Audit Log Types (vwAuditLogTypes.Name)
|
|
4190
4164
|
*/
|
|
4191
|
-
get AuditLogTypeName(): string;
|
|
4192
|
-
set AuditLogTypeName(value: string);
|
|
4165
|
+
get AuditLogTypeName(): string | null;
|
|
4166
|
+
set AuditLogTypeName(value: string | null);
|
|
4193
4167
|
/**
|
|
4194
4168
|
* * Field Name: UserID
|
|
4195
4169
|
* * Display Name: User ID
|
|
@@ -4204,8 +4178,8 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4204
4178
|
* * SQL Data Type: nvarchar(100)
|
|
4205
4179
|
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
|
|
4206
4180
|
*/
|
|
4207
|
-
get AuthorizationName(): string;
|
|
4208
|
-
set AuthorizationName(value: string);
|
|
4181
|
+
get AuthorizationName(): string | null;
|
|
4182
|
+
set AuthorizationName(value: string | null);
|
|
4209
4183
|
/**
|
|
4210
4184
|
* * Field Name: Status
|
|
4211
4185
|
* * Display Name: Status
|
|
@@ -4219,30 +4193,30 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4219
4193
|
* * Display Name: Description
|
|
4220
4194
|
* * SQL Data Type: nvarchar(MAX)
|
|
4221
4195
|
*/
|
|
4222
|
-
get Description(): string;
|
|
4223
|
-
set Description(value: string);
|
|
4196
|
+
get Description(): string | null;
|
|
4197
|
+
set Description(value: string | null);
|
|
4224
4198
|
/**
|
|
4225
4199
|
* * Field Name: Details
|
|
4226
4200
|
* * Display Name: Details
|
|
4227
4201
|
* * SQL Data Type: nvarchar(MAX)
|
|
4228
4202
|
*/
|
|
4229
|
-
get Details(): string;
|
|
4230
|
-
set Details(value: string);
|
|
4203
|
+
get Details(): string | null;
|
|
4204
|
+
set Details(value: string | null);
|
|
4231
4205
|
/**
|
|
4232
4206
|
* * Field Name: EntityID
|
|
4233
4207
|
* * Display Name: Entity ID
|
|
4234
4208
|
* * SQL Data Type: int
|
|
4235
4209
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
4236
4210
|
*/
|
|
4237
|
-
get EntityID(): number;
|
|
4238
|
-
set EntityID(value: number);
|
|
4211
|
+
get EntityID(): number | null;
|
|
4212
|
+
set EntityID(value: number | null);
|
|
4239
4213
|
/**
|
|
4240
4214
|
* * Field Name: RecordID
|
|
4241
4215
|
* * Display Name: Record
|
|
4242
4216
|
* * SQL Data Type: nvarchar(255)
|
|
4243
4217
|
*/
|
|
4244
|
-
get RecordID(): string;
|
|
4245
|
-
set RecordID(value: string);
|
|
4218
|
+
get RecordID(): string | null;
|
|
4219
|
+
set RecordID(value: string | null);
|
|
4246
4220
|
/**
|
|
4247
4221
|
* * Field Name: CreatedAt
|
|
4248
4222
|
* * Display Name: Created At
|
|
@@ -4268,7 +4242,7 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4268
4242
|
* * Display Name: Entity
|
|
4269
4243
|
* * SQL Data Type: nvarchar(255)
|
|
4270
4244
|
*/
|
|
4271
|
-
get Entity(): string;
|
|
4245
|
+
get Entity(): string | null;
|
|
4272
4246
|
}
|
|
4273
4247
|
/**
|
|
4274
4248
|
* Authorizations - strongly typed entity sub-class
|
|
@@ -4323,8 +4297,8 @@ export declare class AuthorizationEntity extends BaseEntity {
|
|
|
4323
4297
|
* * SQL Data Type: int
|
|
4324
4298
|
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.ID)
|
|
4325
4299
|
*/
|
|
4326
|
-
get ParentID(): number;
|
|
4327
|
-
set ParentID(value: number);
|
|
4300
|
+
get ParentID(): number | null;
|
|
4301
|
+
set ParentID(value: number | null);
|
|
4328
4302
|
/**
|
|
4329
4303
|
* * Field Name: Name
|
|
4330
4304
|
* * Display Name: Name
|
|
@@ -4353,8 +4327,8 @@ export declare class AuthorizationEntity extends BaseEntity {
|
|
|
4353
4327
|
* * Display Name: Description
|
|
4354
4328
|
* * SQL Data Type: nvarchar(MAX)
|
|
4355
4329
|
*/
|
|
4356
|
-
get Description(): string;
|
|
4357
|
-
set Description(value: string);
|
|
4330
|
+
get Description(): string | null;
|
|
4331
|
+
set Description(value: string | null);
|
|
4358
4332
|
/**
|
|
4359
4333
|
* * Field Name: CreatedAt
|
|
4360
4334
|
* * Display Name: Created At
|
|
@@ -4423,16 +4397,16 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
|
|
|
4423
4397
|
* * SQL Data Type: nvarchar(100)
|
|
4424
4398
|
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
|
|
4425
4399
|
*/
|
|
4426
|
-
get AuthorizationName(): string;
|
|
4427
|
-
set AuthorizationName(value: string);
|
|
4400
|
+
get AuthorizationName(): string | null;
|
|
4401
|
+
set AuthorizationName(value: string | null);
|
|
4428
4402
|
/**
|
|
4429
4403
|
* * Field Name: RoleName
|
|
4430
4404
|
* * Display Name: Role Name
|
|
4431
4405
|
* * SQL Data Type: nvarchar(50)
|
|
4432
4406
|
* * Related Entity/Foreign Key: Roles (vwRoles.Name)
|
|
4433
4407
|
*/
|
|
4434
|
-
get RoleName(): string;
|
|
4435
|
-
set RoleName(value: string);
|
|
4408
|
+
get RoleName(): string | null;
|
|
4409
|
+
set RoleName(value: string | null);
|
|
4436
4410
|
/**
|
|
4437
4411
|
* * Field Name: Type
|
|
4438
4412
|
* * Display Name: Type
|
|
@@ -4523,8 +4497,8 @@ export declare class AuditLogTypeEntity extends BaseEntity {
|
|
|
4523
4497
|
* * SQL Data Type: int
|
|
4524
4498
|
* * Related Entity/Foreign Key: Audit Log Types (vwAuditLogTypes.ID)
|
|
4525
4499
|
*/
|
|
4526
|
-
get ParentID(): number;
|
|
4527
|
-
set ParentID(value: number);
|
|
4500
|
+
get ParentID(): number | null;
|
|
4501
|
+
set ParentID(value: number | null);
|
|
4528
4502
|
/**
|
|
4529
4503
|
* * Field Name: Name
|
|
4530
4504
|
* * Display Name: Name
|
|
@@ -4537,16 +4511,16 @@ export declare class AuditLogTypeEntity extends BaseEntity {
|
|
|
4537
4511
|
* * Display Name: Description
|
|
4538
4512
|
* * SQL Data Type: nvarchar(MAX)
|
|
4539
4513
|
*/
|
|
4540
|
-
get Description(): string;
|
|
4541
|
-
set Description(value: string);
|
|
4514
|
+
get Description(): string | null;
|
|
4515
|
+
set Description(value: string | null);
|
|
4542
4516
|
/**
|
|
4543
4517
|
* * Field Name: AuthorizationName
|
|
4544
4518
|
* * Display Name: Authorization Name
|
|
4545
4519
|
* * SQL Data Type: nvarchar(100)
|
|
4546
4520
|
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
|
|
4547
4521
|
*/
|
|
4548
|
-
get AuthorizationName(): string;
|
|
4549
|
-
set AuthorizationName(value: string);
|
|
4522
|
+
get AuthorizationName(): string | null;
|
|
4523
|
+
set AuthorizationName(value: string | null);
|
|
4550
4524
|
/**
|
|
4551
4525
|
* * Field Name: CreatedAt
|
|
4552
4526
|
* * Display Name: Created At
|
|
@@ -4566,7 +4540,7 @@ export declare class AuditLogTypeEntity extends BaseEntity {
|
|
|
4566
4540
|
* * Display Name: Parent
|
|
4567
4541
|
* * SQL Data Type: nvarchar(50)
|
|
4568
4542
|
*/
|
|
4569
|
-
get Parent(): string;
|
|
4543
|
+
get Parent(): string | null;
|
|
4570
4544
|
}
|
|
4571
4545
|
/**
|
|
4572
4546
|
* Entity Field Values - strongly typed entity sub-class
|
|
@@ -4650,15 +4624,15 @@ export declare class EntityFieldValueEntity extends BaseEntity {
|
|
|
4650
4624
|
* * Display Name: Code
|
|
4651
4625
|
* * SQL Data Type: nvarchar(50)
|
|
4652
4626
|
*/
|
|
4653
|
-
get Code(): string;
|
|
4654
|
-
set Code(value: string);
|
|
4627
|
+
get Code(): string | null;
|
|
4628
|
+
set Code(value: string | null);
|
|
4655
4629
|
/**
|
|
4656
4630
|
* * Field Name: Description
|
|
4657
4631
|
* * Display Name: Description
|
|
4658
4632
|
* * SQL Data Type: nvarchar(MAX)
|
|
4659
4633
|
*/
|
|
4660
|
-
get Description(): string;
|
|
4661
|
-
set Description(value: string);
|
|
4634
|
+
get Description(): string | null;
|
|
4635
|
+
set Description(value: string | null);
|
|
4662
4636
|
/**
|
|
4663
4637
|
* * Field Name: CreatedAt
|
|
4664
4638
|
* * Display Name: Created At
|
|
@@ -4730,8 +4704,8 @@ export declare class AIModelEntity extends BaseEntity {
|
|
|
4730
4704
|
* * Display Name: Vendor
|
|
4731
4705
|
* * SQL Data Type: nvarchar(50)
|
|
4732
4706
|
*/
|
|
4733
|
-
get Vendor(): string;
|
|
4734
|
-
set Vendor(value: string);
|
|
4707
|
+
get Vendor(): string | null;
|
|
4708
|
+
set Vendor(value: string | null);
|
|
4735
4709
|
/**
|
|
4736
4710
|
* * Field Name: AIModelTypeID
|
|
4737
4711
|
* * Display Name: AI Model Type ID
|
|
@@ -4745,22 +4719,22 @@ export declare class AIModelEntity extends BaseEntity {
|
|
|
4745
4719
|
* * Display Name: Description
|
|
4746
4720
|
* * SQL Data Type: nvarchar(MAX)
|
|
4747
4721
|
*/
|
|
4748
|
-
get Description(): string;
|
|
4749
|
-
set Description(value: string);
|
|
4722
|
+
get Description(): string | null;
|
|
4723
|
+
set Description(value: string | null);
|
|
4750
4724
|
/**
|
|
4751
4725
|
* * Field Name: DriverClass
|
|
4752
4726
|
* * Display Name: Driver Class
|
|
4753
4727
|
* * SQL Data Type: nvarchar(100)
|
|
4754
4728
|
*/
|
|
4755
|
-
get DriverClass(): string;
|
|
4756
|
-
set DriverClass(value: string);
|
|
4729
|
+
get DriverClass(): string | null;
|
|
4730
|
+
set DriverClass(value: string | null);
|
|
4757
4731
|
/**
|
|
4758
4732
|
* * Field Name: DriverImportPath
|
|
4759
4733
|
* * Display Name: Driver Import Path
|
|
4760
4734
|
* * SQL Data Type: nvarchar(255)
|
|
4761
4735
|
*/
|
|
4762
|
-
get DriverImportPath(): string;
|
|
4763
|
-
set DriverImportPath(value: string);
|
|
4736
|
+
get DriverImportPath(): string | null;
|
|
4737
|
+
set DriverImportPath(value: string | null);
|
|
4764
4738
|
/**
|
|
4765
4739
|
* * Field Name: IsActive
|
|
4766
4740
|
* * Display Name: Is Active
|
|
@@ -4834,23 +4808,23 @@ export declare class AIActionEntity extends BaseEntity {
|
|
|
4834
4808
|
* * Display Name: Description
|
|
4835
4809
|
* * SQL Data Type: nvarchar(MAX)
|
|
4836
4810
|
*/
|
|
4837
|
-
get Description(): string;
|
|
4838
|
-
set Description(value: string);
|
|
4811
|
+
get Description(): string | null;
|
|
4812
|
+
set Description(value: string | null);
|
|
4839
4813
|
/**
|
|
4840
4814
|
* * Field Name: DefaultModelID
|
|
4841
4815
|
* * Display Name: Default Model ID
|
|
4842
4816
|
* * SQL Data Type: int
|
|
4843
4817
|
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
4844
4818
|
*/
|
|
4845
|
-
get DefaultModelID(): number;
|
|
4846
|
-
set DefaultModelID(value: number);
|
|
4819
|
+
get DefaultModelID(): number | null;
|
|
4820
|
+
set DefaultModelID(value: number | null);
|
|
4847
4821
|
/**
|
|
4848
4822
|
* * Field Name: DefaultPrompt
|
|
4849
4823
|
* * Display Name: Default Prompt
|
|
4850
4824
|
* * SQL Data Type: nvarchar(MAX)
|
|
4851
4825
|
*/
|
|
4852
|
-
get DefaultPrompt(): string;
|
|
4853
|
-
set DefaultPrompt(value: string);
|
|
4826
|
+
get DefaultPrompt(): string | null;
|
|
4827
|
+
set DefaultPrompt(value: string | null);
|
|
4854
4828
|
/**
|
|
4855
4829
|
* * Field Name: IsActive
|
|
4856
4830
|
* * Display Name: Is Active
|
|
@@ -4878,7 +4852,7 @@ export declare class AIActionEntity extends BaseEntity {
|
|
|
4878
4852
|
* * Display Name: Default Model
|
|
4879
4853
|
* * SQL Data Type: nvarchar(50)
|
|
4880
4854
|
*/
|
|
4881
|
-
get DefaultModel(): string;
|
|
4855
|
+
get DefaultModel(): string | null;
|
|
4882
4856
|
}
|
|
4883
4857
|
/**
|
|
4884
4858
|
* AI Model Actions - strongly typed entity sub-class
|
|
@@ -5029,8 +5003,8 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5029
5003
|
* * SQL Data Type: int
|
|
5030
5004
|
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
5031
5005
|
*/
|
|
5032
|
-
get AIModelID(): number;
|
|
5033
|
-
set AIModelID(value: number);
|
|
5006
|
+
get AIModelID(): number | null;
|
|
5007
|
+
set AIModelID(value: number | null);
|
|
5034
5008
|
/**
|
|
5035
5009
|
* * Field Name: Name
|
|
5036
5010
|
* * Display Name: Name
|
|
@@ -5043,8 +5017,8 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5043
5017
|
* * Display Name: Prompt
|
|
5044
5018
|
* * SQL Data Type: nvarchar(MAX)
|
|
5045
5019
|
*/
|
|
5046
|
-
get Prompt(): string;
|
|
5047
|
-
set Prompt(value: string);
|
|
5020
|
+
get Prompt(): string | null;
|
|
5021
|
+
set Prompt(value: string | null);
|
|
5048
5022
|
/**
|
|
5049
5023
|
* * Field Name: TriggerEvent
|
|
5050
5024
|
* * Display Name: Trigger Event
|
|
@@ -5073,8 +5047,8 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5073
5047
|
* * Display Name: Output Field
|
|
5074
5048
|
* * SQL Data Type: nvarchar(50)
|
|
5075
5049
|
*/
|
|
5076
|
-
get OutputField(): string;
|
|
5077
|
-
set OutputField(value: string);
|
|
5050
|
+
get OutputField(): string | null;
|
|
5051
|
+
set OutputField(value: string | null);
|
|
5078
5052
|
/**
|
|
5079
5053
|
* * Field Name: SkipIfOutputFieldNotEmpty
|
|
5080
5054
|
* * Display Name: Skip If Output Field Not Empty
|
|
@@ -5089,15 +5063,15 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5089
5063
|
* * SQL Data Type: int
|
|
5090
5064
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
5091
5065
|
*/
|
|
5092
|
-
get OutputEntityID(): number;
|
|
5093
|
-
set OutputEntityID(value: number);
|
|
5066
|
+
get OutputEntityID(): number | null;
|
|
5067
|
+
set OutputEntityID(value: number | null);
|
|
5094
5068
|
/**
|
|
5095
5069
|
* * Field Name: Comments
|
|
5096
5070
|
* * Display Name: Comments
|
|
5097
5071
|
* * SQL Data Type: nvarchar(MAX)
|
|
5098
5072
|
*/
|
|
5099
|
-
get Comments(): string;
|
|
5100
|
-
set Comments(value: string);
|
|
5073
|
+
get Comments(): string | null;
|
|
5074
|
+
set Comments(value: string | null);
|
|
5101
5075
|
/**
|
|
5102
5076
|
* * Field Name: Entity
|
|
5103
5077
|
* * Display Name: Entity
|
|
@@ -5115,13 +5089,13 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5115
5089
|
* * Display Name: AIModel
|
|
5116
5090
|
* * SQL Data Type: nvarchar(50)
|
|
5117
5091
|
*/
|
|
5118
|
-
get AIModel(): string;
|
|
5092
|
+
get AIModel(): string | null;
|
|
5119
5093
|
/**
|
|
5120
5094
|
* * Field Name: OutputEntity
|
|
5121
5095
|
* * Display Name: Output Entity
|
|
5122
5096
|
* * SQL Data Type: nvarchar(255)
|
|
5123
5097
|
*/
|
|
5124
|
-
get OutputEntity(): string;
|
|
5098
|
+
get OutputEntity(): string | null;
|
|
5125
5099
|
}
|
|
5126
5100
|
/**
|
|
5127
5101
|
* AI Model Types - strongly typed entity sub-class
|
|
@@ -5173,8 +5147,8 @@ export declare class AIModelTypeEntity extends BaseEntity {
|
|
|
5173
5147
|
* * Display Name: Description
|
|
5174
5148
|
* * SQL Data Type: nvarchar(MAX)
|
|
5175
5149
|
*/
|
|
5176
|
-
get Description(): string;
|
|
5177
|
-
set Description(value: string);
|
|
5150
|
+
get Description(): string | null;
|
|
5151
|
+
set Description(value: string | null);
|
|
5178
5152
|
}
|
|
5179
5153
|
/**
|
|
5180
5154
|
* Queue Types - strongly typed entity sub-class
|
|
@@ -5235,8 +5209,8 @@ export declare class QueueTypeEntity extends BaseEntity {
|
|
|
5235
5209
|
* * Display Name: Description
|
|
5236
5210
|
* * SQL Data Type: nvarchar(MAX)
|
|
5237
5211
|
*/
|
|
5238
|
-
get Description(): string;
|
|
5239
|
-
set Description(value: string);
|
|
5212
|
+
get Description(): string | null;
|
|
5213
|
+
set Description(value: string | null);
|
|
5240
5214
|
/**
|
|
5241
5215
|
* * Field Name: DriverClass
|
|
5242
5216
|
* * Display Name: Driver Class
|
|
@@ -5249,8 +5223,8 @@ export declare class QueueTypeEntity extends BaseEntity {
|
|
|
5249
5223
|
* * Display Name: Driver Import Path
|
|
5250
5224
|
* * SQL Data Type: nvarchar(200)
|
|
5251
5225
|
*/
|
|
5252
|
-
get DriverImportPath(): string;
|
|
5253
|
-
set DriverImportPath(value: string);
|
|
5226
|
+
get DriverImportPath(): string | null;
|
|
5227
|
+
set DriverImportPath(value: string | null);
|
|
5254
5228
|
/**
|
|
5255
5229
|
* * Field Name: IsActive
|
|
5256
5230
|
* * Display Name: Is Active
|
|
@@ -5310,8 +5284,8 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
5310
5284
|
* * Display Name: Description
|
|
5311
5285
|
* * SQL Data Type: nvarchar(MAX)
|
|
5312
5286
|
*/
|
|
5313
|
-
get Description(): string;
|
|
5314
|
-
set Description(value: string);
|
|
5287
|
+
get Description(): string | null;
|
|
5288
|
+
set Description(value: string | null);
|
|
5315
5289
|
/**
|
|
5316
5290
|
* * Field Name: QueueTypeID
|
|
5317
5291
|
* * Display Name: Queue Type ID
|
|
@@ -5333,78 +5307,78 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
5333
5307
|
* * Display Name: Process PID
|
|
5334
5308
|
* * SQL Data Type: int
|
|
5335
5309
|
*/
|
|
5336
|
-
get ProcessPID(): number;
|
|
5337
|
-
set ProcessPID(value: number);
|
|
5310
|
+
get ProcessPID(): number | null;
|
|
5311
|
+
set ProcessPID(value: number | null);
|
|
5338
5312
|
/**
|
|
5339
5313
|
* * Field Name: ProcessPlatform
|
|
5340
5314
|
* * Display Name: Process Platform
|
|
5341
5315
|
* * SQL Data Type: nvarchar(30)
|
|
5342
5316
|
*/
|
|
5343
|
-
get ProcessPlatform(): string;
|
|
5344
|
-
set ProcessPlatform(value: string);
|
|
5317
|
+
get ProcessPlatform(): string | null;
|
|
5318
|
+
set ProcessPlatform(value: string | null);
|
|
5345
5319
|
/**
|
|
5346
5320
|
* * Field Name: ProcessVersion
|
|
5347
5321
|
* * Display Name: Process Version
|
|
5348
5322
|
* * SQL Data Type: nvarchar(15)
|
|
5349
5323
|
*/
|
|
5350
|
-
get ProcessVersion(): string;
|
|
5351
|
-
set ProcessVersion(value: string);
|
|
5324
|
+
get ProcessVersion(): string | null;
|
|
5325
|
+
set ProcessVersion(value: string | null);
|
|
5352
5326
|
/**
|
|
5353
5327
|
* * Field Name: ProcessCwd
|
|
5354
5328
|
* * Display Name: Process Cwd
|
|
5355
5329
|
* * SQL Data Type: nvarchar(100)
|
|
5356
5330
|
*/
|
|
5357
|
-
get ProcessCwd(): string;
|
|
5358
|
-
set ProcessCwd(value: string);
|
|
5331
|
+
get ProcessCwd(): string | null;
|
|
5332
|
+
set ProcessCwd(value: string | null);
|
|
5359
5333
|
/**
|
|
5360
5334
|
* * Field Name: ProcessIPAddress
|
|
5361
5335
|
* * Display Name: Process IPAddress
|
|
5362
5336
|
* * SQL Data Type: nvarchar(50)
|
|
5363
5337
|
*/
|
|
5364
|
-
get ProcessIPAddress(): string;
|
|
5365
|
-
set ProcessIPAddress(value: string);
|
|
5338
|
+
get ProcessIPAddress(): string | null;
|
|
5339
|
+
set ProcessIPAddress(value: string | null);
|
|
5366
5340
|
/**
|
|
5367
5341
|
* * Field Name: ProcessMacAddress
|
|
5368
5342
|
* * Display Name: Process Mac Address
|
|
5369
5343
|
* * SQL Data Type: nvarchar(50)
|
|
5370
5344
|
*/
|
|
5371
|
-
get ProcessMacAddress(): string;
|
|
5372
|
-
set ProcessMacAddress(value: string);
|
|
5345
|
+
get ProcessMacAddress(): string | null;
|
|
5346
|
+
set ProcessMacAddress(value: string | null);
|
|
5373
5347
|
/**
|
|
5374
5348
|
* * Field Name: ProcessOSName
|
|
5375
5349
|
* * Display Name: Process OSName
|
|
5376
5350
|
* * SQL Data Type: nvarchar(25)
|
|
5377
5351
|
*/
|
|
5378
|
-
get ProcessOSName(): string;
|
|
5379
|
-
set ProcessOSName(value: string);
|
|
5352
|
+
get ProcessOSName(): string | null;
|
|
5353
|
+
set ProcessOSName(value: string | null);
|
|
5380
5354
|
/**
|
|
5381
5355
|
* * Field Name: ProcessOSVersion
|
|
5382
5356
|
* * Display Name: Process OSVersion
|
|
5383
5357
|
* * SQL Data Type: nvarchar(10)
|
|
5384
5358
|
*/
|
|
5385
|
-
get ProcessOSVersion(): string;
|
|
5386
|
-
set ProcessOSVersion(value: string);
|
|
5359
|
+
get ProcessOSVersion(): string | null;
|
|
5360
|
+
set ProcessOSVersion(value: string | null);
|
|
5387
5361
|
/**
|
|
5388
5362
|
* * Field Name: ProcessHostName
|
|
5389
5363
|
* * Display Name: Process Host Name
|
|
5390
5364
|
* * SQL Data Type: nvarchar(50)
|
|
5391
5365
|
*/
|
|
5392
|
-
get ProcessHostName(): string;
|
|
5393
|
-
set ProcessHostName(value: string);
|
|
5366
|
+
get ProcessHostName(): string | null;
|
|
5367
|
+
set ProcessHostName(value: string | null);
|
|
5394
5368
|
/**
|
|
5395
5369
|
* * Field Name: ProcessUserID
|
|
5396
5370
|
* * Display Name: Process User ID
|
|
5397
5371
|
* * SQL Data Type: nvarchar(25)
|
|
5398
5372
|
*/
|
|
5399
|
-
get ProcessUserID(): string;
|
|
5400
|
-
set ProcessUserID(value: string);
|
|
5373
|
+
get ProcessUserID(): string | null;
|
|
5374
|
+
set ProcessUserID(value: string | null);
|
|
5401
5375
|
/**
|
|
5402
5376
|
* * Field Name: ProcessUserName
|
|
5403
5377
|
* * Display Name: Process User Name
|
|
5404
5378
|
* * SQL Data Type: nvarchar(50)
|
|
5405
5379
|
*/
|
|
5406
|
-
get ProcessUserName(): string;
|
|
5407
|
-
set ProcessUserName(value: string);
|
|
5380
|
+
get ProcessUserName(): string | null;
|
|
5381
|
+
set ProcessUserName(value: string | null);
|
|
5408
5382
|
/**
|
|
5409
5383
|
* * Field Name: LastHeartbeat
|
|
5410
5384
|
* * Display Name: Last Heartbeat
|
|
@@ -5493,50 +5467,50 @@ export declare class QueueTaskEntity extends BaseEntity {
|
|
|
5493
5467
|
* * Display Name: Started At
|
|
5494
5468
|
* * SQL Data Type: datetime
|
|
5495
5469
|
*/
|
|
5496
|
-
get StartedAt(): Date;
|
|
5497
|
-
set StartedAt(value: Date);
|
|
5470
|
+
get StartedAt(): Date | null;
|
|
5471
|
+
set StartedAt(value: Date | null);
|
|
5498
5472
|
/**
|
|
5499
5473
|
* * Field Name: EndedAt
|
|
5500
5474
|
* * Display Name: Ended At
|
|
5501
5475
|
* * SQL Data Type: datetime
|
|
5502
5476
|
*/
|
|
5503
|
-
get EndedAt(): Date;
|
|
5504
|
-
set EndedAt(value: Date);
|
|
5477
|
+
get EndedAt(): Date | null;
|
|
5478
|
+
set EndedAt(value: Date | null);
|
|
5505
5479
|
/**
|
|
5506
5480
|
* * Field Name: Data
|
|
5507
5481
|
* * Display Name: Data
|
|
5508
5482
|
* * SQL Data Type: nvarchar(MAX)
|
|
5509
5483
|
*/
|
|
5510
|
-
get Data(): string;
|
|
5511
|
-
set Data(value: string);
|
|
5484
|
+
get Data(): string | null;
|
|
5485
|
+
set Data(value: string | null);
|
|
5512
5486
|
/**
|
|
5513
5487
|
* * Field Name: Options
|
|
5514
5488
|
* * Display Name: Options
|
|
5515
5489
|
* * SQL Data Type: nvarchar(MAX)
|
|
5516
5490
|
*/
|
|
5517
|
-
get Options(): string;
|
|
5518
|
-
set Options(value: string);
|
|
5491
|
+
get Options(): string | null;
|
|
5492
|
+
set Options(value: string | null);
|
|
5519
5493
|
/**
|
|
5520
5494
|
* * Field Name: Output
|
|
5521
5495
|
* * Display Name: Output
|
|
5522
5496
|
* * SQL Data Type: nvarchar(MAX)
|
|
5523
5497
|
*/
|
|
5524
|
-
get Output(): string;
|
|
5525
|
-
set Output(value: string);
|
|
5498
|
+
get Output(): string | null;
|
|
5499
|
+
set Output(value: string | null);
|
|
5526
5500
|
/**
|
|
5527
5501
|
* * Field Name: ErrorMessage
|
|
5528
5502
|
* * Display Name: Error Message
|
|
5529
5503
|
* * SQL Data Type: nvarchar(MAX)
|
|
5530
5504
|
*/
|
|
5531
|
-
get ErrorMessage(): string;
|
|
5532
|
-
set ErrorMessage(value: string);
|
|
5505
|
+
get ErrorMessage(): string | null;
|
|
5506
|
+
set ErrorMessage(value: string | null);
|
|
5533
5507
|
/**
|
|
5534
5508
|
* * Field Name: Comments
|
|
5535
5509
|
* * Display Name: Comments
|
|
5536
5510
|
* * SQL Data Type: nvarchar(MAX)
|
|
5537
5511
|
*/
|
|
5538
|
-
get Comments(): string;
|
|
5539
|
-
set Comments(value: string);
|
|
5512
|
+
get Comments(): string | null;
|
|
5513
|
+
set Comments(value: string | null);
|
|
5540
5514
|
}
|
|
5541
5515
|
/**
|
|
5542
5516
|
* Dashboards - strongly typed entity sub-class
|
|
@@ -5579,16 +5553,16 @@ export declare class DashboardEntity extends BaseEntity {
|
|
|
5579
5553
|
* * Display Name: Description
|
|
5580
5554
|
* * SQL Data Type: nvarchar(MAX)
|
|
5581
5555
|
*/
|
|
5582
|
-
get Description(): string;
|
|
5583
|
-
set Description(value: string);
|
|
5556
|
+
get Description(): string | null;
|
|
5557
|
+
set Description(value: string | null);
|
|
5584
5558
|
/**
|
|
5585
5559
|
* * Field Name: CategoryID
|
|
5586
5560
|
* * Display Name: Category ID
|
|
5587
5561
|
* * SQL Data Type: int
|
|
5588
5562
|
* * Related Entity/Foreign Key: Dashboard Categories (vwDashboardCategories.ID)
|
|
5589
5563
|
*/
|
|
5590
|
-
get CategoryID(): number;
|
|
5591
|
-
set CategoryID(value: number);
|
|
5564
|
+
get CategoryID(): number | null;
|
|
5565
|
+
set CategoryID(value: number | null);
|
|
5592
5566
|
/**
|
|
5593
5567
|
* * Field Name: UIConfigDetails
|
|
5594
5568
|
* * Display Name: UIConfig Details
|
|
@@ -5602,20 +5576,20 @@ export declare class DashboardEntity extends BaseEntity {
|
|
|
5602
5576
|
* * SQL Data Type: int
|
|
5603
5577
|
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
5604
5578
|
*/
|
|
5605
|
-
get UserID(): number;
|
|
5606
|
-
set UserID(value: number);
|
|
5579
|
+
get UserID(): number | null;
|
|
5580
|
+
set UserID(value: number | null);
|
|
5607
5581
|
/**
|
|
5608
5582
|
* * Field Name: Category
|
|
5609
5583
|
* * Display Name: Category
|
|
5610
5584
|
* * SQL Data Type: nvarchar(100)
|
|
5611
5585
|
*/
|
|
5612
|
-
get Category(): string;
|
|
5586
|
+
get Category(): string | null;
|
|
5613
5587
|
/**
|
|
5614
5588
|
* * Field Name: User
|
|
5615
5589
|
* * Display Name: User
|
|
5616
5590
|
* * SQL Data Type: nvarchar(100)
|
|
5617
5591
|
*/
|
|
5618
|
-
get User(): string;
|
|
5592
|
+
get User(): string | null;
|
|
5619
5593
|
}
|
|
5620
5594
|
/**
|
|
5621
5595
|
* Output Trigger Types - strongly typed entity sub-class
|
|
@@ -5676,8 +5650,8 @@ export declare class OutputTriggerTypeEntity extends BaseEntity {
|
|
|
5676
5650
|
* * Display Name: Description
|
|
5677
5651
|
* * SQL Data Type: nvarchar(MAX)
|
|
5678
5652
|
*/
|
|
5679
|
-
get Description(): string;
|
|
5680
|
-
set Description(value: string);
|
|
5653
|
+
get Description(): string | null;
|
|
5654
|
+
set Description(value: string | null);
|
|
5681
5655
|
}
|
|
5682
5656
|
/**
|
|
5683
5657
|
* Output Format Types - strongly typed entity sub-class
|
|
@@ -5738,15 +5712,15 @@ export declare class OutputFormatTypeEntity extends BaseEntity {
|
|
|
5738
5712
|
* * Display Name: Description
|
|
5739
5713
|
* * SQL Data Type: nvarchar(MAX)
|
|
5740
5714
|
*/
|
|
5741
|
-
get Description(): string;
|
|
5742
|
-
set Description(value: string);
|
|
5715
|
+
get Description(): string | null;
|
|
5716
|
+
set Description(value: string | null);
|
|
5743
5717
|
/**
|
|
5744
5718
|
* * Field Name: DisplayFormat
|
|
5745
5719
|
* * Display Name: Display Format
|
|
5746
5720
|
* * SQL Data Type: nvarchar(MAX)
|
|
5747
5721
|
*/
|
|
5748
|
-
get DisplayFormat(): string;
|
|
5749
|
-
set DisplayFormat(value: string);
|
|
5722
|
+
get DisplayFormat(): string | null;
|
|
5723
|
+
set DisplayFormat(value: string | null);
|
|
5750
5724
|
}
|
|
5751
5725
|
/**
|
|
5752
5726
|
* Output Delivery Types - strongly typed entity sub-class
|
|
@@ -5807,8 +5781,8 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity {
|
|
|
5807
5781
|
* * Display Name: Description
|
|
5808
5782
|
* * SQL Data Type: nvarchar(MAX)
|
|
5809
5783
|
*/
|
|
5810
|
-
get Description(): string;
|
|
5811
|
-
set Description(value: string);
|
|
5784
|
+
get Description(): string | null;
|
|
5785
|
+
set Description(value: string | null);
|
|
5812
5786
|
}
|
|
5813
5787
|
/**
|
|
5814
5788
|
* Reports - strongly typed entity sub-class
|
|
@@ -5851,16 +5825,16 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5851
5825
|
* * Display Name: Description
|
|
5852
5826
|
* * SQL Data Type: nvarchar(MAX)
|
|
5853
5827
|
*/
|
|
5854
|
-
get Description(): string;
|
|
5855
|
-
set Description(value: string);
|
|
5828
|
+
get Description(): string | null;
|
|
5829
|
+
set Description(value: string | null);
|
|
5856
5830
|
/**
|
|
5857
5831
|
* * Field Name: CategoryID
|
|
5858
5832
|
* * Display Name: Category ID
|
|
5859
5833
|
* * SQL Data Type: int
|
|
5860
5834
|
* * Related Entity/Foreign Key: Report Categories (vwReportCategories.ID)
|
|
5861
5835
|
*/
|
|
5862
|
-
get CategoryID(): number;
|
|
5863
|
-
set CategoryID(value: number);
|
|
5836
|
+
get CategoryID(): number | null;
|
|
5837
|
+
set CategoryID(value: number | null);
|
|
5864
5838
|
/**
|
|
5865
5839
|
* * Field Name: UserID
|
|
5866
5840
|
* * Display Name: User ID
|
|
@@ -5883,85 +5857,85 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5883
5857
|
* * SQL Data Type: int
|
|
5884
5858
|
* * Related Entity/Foreign Key: Conversations (vwConversations.ID)
|
|
5885
5859
|
*/
|
|
5886
|
-
get ConversationID(): number;
|
|
5887
|
-
set ConversationID(value: number);
|
|
5860
|
+
get ConversationID(): number | null;
|
|
5861
|
+
set ConversationID(value: number | null);
|
|
5888
5862
|
/**
|
|
5889
5863
|
* * Field Name: ConversationDetailID
|
|
5890
5864
|
* * Display Name: Conversation Detail ID
|
|
5891
5865
|
* * SQL Data Type: int
|
|
5892
5866
|
* * Related Entity/Foreign Key: Conversation Details (vwConversationDetails.ID)
|
|
5893
5867
|
*/
|
|
5894
|
-
get ConversationDetailID(): number;
|
|
5895
|
-
set ConversationDetailID(value: number);
|
|
5868
|
+
get ConversationDetailID(): number | null;
|
|
5869
|
+
set ConversationDetailID(value: number | null);
|
|
5896
5870
|
/**
|
|
5897
5871
|
* * Field Name: DataContextID
|
|
5898
5872
|
* * Display Name: Data Context ID
|
|
5899
5873
|
* * SQL Data Type: int
|
|
5900
5874
|
* * Related Entity/Foreign Key: Data Contexts (vwDataContexts.ID)
|
|
5901
5875
|
*/
|
|
5902
|
-
get DataContextID(): number;
|
|
5903
|
-
set DataContextID(value: number);
|
|
5876
|
+
get DataContextID(): number | null;
|
|
5877
|
+
set DataContextID(value: number | null);
|
|
5904
5878
|
/**
|
|
5905
5879
|
* * Field Name: Configuration
|
|
5906
5880
|
* * Display Name: Configuration
|
|
5907
5881
|
* * SQL Data Type: nvarchar(MAX)
|
|
5908
5882
|
*/
|
|
5909
|
-
get Configuration(): string;
|
|
5910
|
-
set Configuration(value: string);
|
|
5883
|
+
get Configuration(): string | null;
|
|
5884
|
+
set Configuration(value: string | null);
|
|
5911
5885
|
/**
|
|
5912
5886
|
* * Field Name: OutputTriggerTypeID
|
|
5913
5887
|
* * Display Name: Output Trigger Type ID
|
|
5914
5888
|
* * SQL Data Type: int
|
|
5915
5889
|
* * Related Entity/Foreign Key: Output Trigger Types (vwOutputTriggerTypes.ID)
|
|
5916
5890
|
*/
|
|
5917
|
-
get OutputTriggerTypeID(): number;
|
|
5918
|
-
set OutputTriggerTypeID(value: number);
|
|
5891
|
+
get OutputTriggerTypeID(): number | null;
|
|
5892
|
+
set OutputTriggerTypeID(value: number | null);
|
|
5919
5893
|
/**
|
|
5920
5894
|
* * Field Name: OutputFormatTypeID
|
|
5921
5895
|
* * Display Name: Output Format Type ID
|
|
5922
5896
|
* * SQL Data Type: int
|
|
5923
5897
|
* * Related Entity/Foreign Key: Output Format Types (vwOutputFormatTypes.ID)
|
|
5924
5898
|
*/
|
|
5925
|
-
get OutputFormatTypeID(): number;
|
|
5926
|
-
set OutputFormatTypeID(value: number);
|
|
5899
|
+
get OutputFormatTypeID(): number | null;
|
|
5900
|
+
set OutputFormatTypeID(value: number | null);
|
|
5927
5901
|
/**
|
|
5928
5902
|
* * Field Name: OutputDeliveryTypeID
|
|
5929
5903
|
* * Display Name: Output Delivery Type ID
|
|
5930
5904
|
* * SQL Data Type: int
|
|
5931
5905
|
* * Related Entity/Foreign Key: Output Delivery Types (vwOutputDeliveryTypes.ID)
|
|
5932
5906
|
*/
|
|
5933
|
-
get OutputDeliveryTypeID(): number;
|
|
5934
|
-
set OutputDeliveryTypeID(value: number);
|
|
5907
|
+
get OutputDeliveryTypeID(): number | null;
|
|
5908
|
+
set OutputDeliveryTypeID(value: number | null);
|
|
5935
5909
|
/**
|
|
5936
5910
|
* * Field Name: OutputEventID
|
|
5937
5911
|
* * Display Name: Output Event ID
|
|
5938
5912
|
* * SQL Data Type: int
|
|
5939
5913
|
* * Related Entity/Foreign Key: Output Delivery Types (vwOutputDeliveryTypes.ID)
|
|
5940
5914
|
*/
|
|
5941
|
-
get OutputEventID(): number;
|
|
5942
|
-
set OutputEventID(value: number);
|
|
5915
|
+
get OutputEventID(): number | null;
|
|
5916
|
+
set OutputEventID(value: number | null);
|
|
5943
5917
|
/**
|
|
5944
5918
|
* * Field Name: OutputFrequency
|
|
5945
5919
|
* * Display Name: Output Frequency
|
|
5946
5920
|
* * SQL Data Type: nvarchar(50)
|
|
5947
5921
|
*/
|
|
5948
|
-
get OutputFrequency(): string;
|
|
5949
|
-
set OutputFrequency(value: string);
|
|
5922
|
+
get OutputFrequency(): string | null;
|
|
5923
|
+
set OutputFrequency(value: string | null);
|
|
5950
5924
|
/**
|
|
5951
5925
|
* * Field Name: OutputTargetEmail
|
|
5952
5926
|
* * Display Name: Output Target Email
|
|
5953
5927
|
* * SQL Data Type: nvarchar(255)
|
|
5954
5928
|
*/
|
|
5955
|
-
get OutputTargetEmail(): string;
|
|
5956
|
-
set OutputTargetEmail(value: string);
|
|
5929
|
+
get OutputTargetEmail(): string | null;
|
|
5930
|
+
set OutputTargetEmail(value: string | null);
|
|
5957
5931
|
/**
|
|
5958
5932
|
* * Field Name: OutputWorkflowID
|
|
5959
5933
|
* * Display Name: Output Workflow ID
|
|
5960
5934
|
* * SQL Data Type: int
|
|
5961
5935
|
* * Related Entity/Foreign Key: Workflows (vwWorkflows.ID)
|
|
5962
5936
|
*/
|
|
5963
|
-
get OutputWorkflowID(): number;
|
|
5964
|
-
set OutputWorkflowID(value: number);
|
|
5937
|
+
get OutputWorkflowID(): number | null;
|
|
5938
|
+
set OutputWorkflowID(value: number | null);
|
|
5965
5939
|
/**
|
|
5966
5940
|
* * Field Name: CreatedAt
|
|
5967
5941
|
* * Display Name: Created At
|
|
@@ -5981,7 +5955,7 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5981
5955
|
* * Display Name: Category
|
|
5982
5956
|
* * SQL Data Type: nvarchar(100)
|
|
5983
5957
|
*/
|
|
5984
|
-
get Category(): string;
|
|
5958
|
+
get Category(): string | null;
|
|
5985
5959
|
/**
|
|
5986
5960
|
* * Field Name: User
|
|
5987
5961
|
* * Display Name: User
|
|
@@ -5993,37 +5967,37 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5993
5967
|
* * Display Name: Conversation
|
|
5994
5968
|
* * SQL Data Type: nvarchar(100)
|
|
5995
5969
|
*/
|
|
5996
|
-
get Conversation(): string;
|
|
5970
|
+
get Conversation(): string | null;
|
|
5997
5971
|
/**
|
|
5998
5972
|
* * Field Name: DataContext
|
|
5999
5973
|
* * Display Name: Data Context
|
|
6000
5974
|
* * SQL Data Type: nvarchar(255)
|
|
6001
5975
|
*/
|
|
6002
|
-
get DataContext(): string;
|
|
5976
|
+
get DataContext(): string | null;
|
|
6003
5977
|
/**
|
|
6004
5978
|
* * Field Name: OutputTriggerType
|
|
6005
5979
|
* * Display Name: Output Trigger Type
|
|
6006
5980
|
* * SQL Data Type: nvarchar(255)
|
|
6007
5981
|
*/
|
|
6008
|
-
get OutputTriggerType(): string;
|
|
5982
|
+
get OutputTriggerType(): string | null;
|
|
6009
5983
|
/**
|
|
6010
5984
|
* * Field Name: OutputFormatType
|
|
6011
5985
|
* * Display Name: Output Format Type
|
|
6012
5986
|
* * SQL Data Type: nvarchar(255)
|
|
6013
5987
|
*/
|
|
6014
|
-
get OutputFormatType(): string;
|
|
5988
|
+
get OutputFormatType(): string | null;
|
|
6015
5989
|
/**
|
|
6016
5990
|
* * Field Name: OutputDeliveryType
|
|
6017
5991
|
* * Display Name: Output Delivery Type
|
|
6018
5992
|
* * SQL Data Type: nvarchar(255)
|
|
6019
5993
|
*/
|
|
6020
|
-
get OutputDeliveryType(): string;
|
|
5994
|
+
get OutputDeliveryType(): string | null;
|
|
6021
5995
|
/**
|
|
6022
5996
|
* * Field Name: OutputEvent
|
|
6023
5997
|
* * Display Name: Output Event
|
|
6024
5998
|
* * SQL Data Type: nvarchar(255)
|
|
6025
5999
|
*/
|
|
6026
|
-
get OutputEvent(): string;
|
|
6000
|
+
get OutputEvent(): string | null;
|
|
6027
6001
|
}
|
|
6028
6002
|
/**
|
|
6029
6003
|
* Report Snapshots - strongly typed entity sub-class
|
|
@@ -6082,8 +6056,8 @@ export declare class ReportSnapshotEntity extends BaseEntity {
|
|
|
6082
6056
|
* * SQL Data Type: int
|
|
6083
6057
|
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
6084
6058
|
*/
|
|
6085
|
-
get UserID(): number;
|
|
6086
|
-
set UserID(value: number);
|
|
6059
|
+
get UserID(): number | null;
|
|
6060
|
+
set UserID(value: number | null);
|
|
6087
6061
|
/**
|
|
6088
6062
|
* * Field Name: Report
|
|
6089
6063
|
* * Display Name: Report
|
|
@@ -6095,7 +6069,7 @@ export declare class ReportSnapshotEntity extends BaseEntity {
|
|
|
6095
6069
|
* * Display Name: User
|
|
6096
6070
|
* * SQL Data Type: nvarchar(100)
|
|
6097
6071
|
*/
|
|
6098
|
-
get User(): string;
|
|
6072
|
+
get User(): string | null;
|
|
6099
6073
|
}
|
|
6100
6074
|
/**
|
|
6101
6075
|
* Resource Types - strongly typed entity sub-class
|
|
@@ -6163,23 +6137,23 @@ export declare class ResourceTypeEntity extends BaseEntity {
|
|
|
6163
6137
|
* * Display Name: Description
|
|
6164
6138
|
* * SQL Data Type: nvarchar(MAX)
|
|
6165
6139
|
*/
|
|
6166
|
-
get Description(): string;
|
|
6167
|
-
set Description(value: string);
|
|
6140
|
+
get Description(): string | null;
|
|
6141
|
+
set Description(value: string | null);
|
|
6168
6142
|
/**
|
|
6169
6143
|
* * Field Name: Icon
|
|
6170
6144
|
* * Display Name: Icon
|
|
6171
6145
|
* * SQL Data Type: nvarchar(100)
|
|
6172
6146
|
*/
|
|
6173
|
-
get Icon(): string;
|
|
6174
|
-
set Icon(value: string);
|
|
6147
|
+
get Icon(): string | null;
|
|
6148
|
+
set Icon(value: string | null);
|
|
6175
6149
|
/**
|
|
6176
6150
|
* * Field Name: EntityID
|
|
6177
6151
|
* * Display Name: Entity ID
|
|
6178
6152
|
* * SQL Data Type: int
|
|
6179
6153
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
6180
6154
|
*/
|
|
6181
|
-
get EntityID(): number;
|
|
6182
|
-
set EntityID(value: number);
|
|
6155
|
+
get EntityID(): number | null;
|
|
6156
|
+
set EntityID(value: number | null);
|
|
6183
6157
|
/**
|
|
6184
6158
|
* * Field Name: CreatedAt
|
|
6185
6159
|
* * Display Name: Created At
|
|
@@ -6199,7 +6173,7 @@ export declare class ResourceTypeEntity extends BaseEntity {
|
|
|
6199
6173
|
* * Display Name: Entity
|
|
6200
6174
|
* * SQL Data Type: nvarchar(255)
|
|
6201
6175
|
*/
|
|
6202
|
-
get Entity(): string;
|
|
6176
|
+
get Entity(): string | null;
|
|
6203
6177
|
}
|
|
6204
6178
|
/**
|
|
6205
6179
|
* Tags - strongly typed entity sub-class
|
|
@@ -6267,22 +6241,22 @@ export declare class TagEntity extends BaseEntity {
|
|
|
6267
6241
|
* * Display Name: Description
|
|
6268
6242
|
* * SQL Data Type: nvarchar(MAX)
|
|
6269
6243
|
*/
|
|
6270
|
-
get Description(): string;
|
|
6271
|
-
set Description(value: string);
|
|
6244
|
+
get Description(): string | null;
|
|
6245
|
+
set Description(value: string | null);
|
|
6272
6246
|
/**
|
|
6273
6247
|
* * Field Name: ParentID
|
|
6274
6248
|
* * Display Name: Parent ID
|
|
6275
6249
|
* * SQL Data Type: int
|
|
6276
6250
|
* * Related Entity/Foreign Key: Tags (vwTags.ID)
|
|
6277
6251
|
*/
|
|
6278
|
-
get ParentID(): number;
|
|
6279
|
-
set ParentID(value: number);
|
|
6252
|
+
get ParentID(): number | null;
|
|
6253
|
+
set ParentID(value: number | null);
|
|
6280
6254
|
/**
|
|
6281
6255
|
* * Field Name: Parent
|
|
6282
6256
|
* * Display Name: Parent
|
|
6283
6257
|
* * SQL Data Type: nvarchar(255)
|
|
6284
6258
|
*/
|
|
6285
|
-
get Parent(): string;
|
|
6259
|
+
get Parent(): string | null;
|
|
6286
6260
|
}
|
|
6287
6261
|
/**
|
|
6288
6262
|
* Tagged Items - strongly typed entity sub-class
|
|
@@ -6317,15 +6291,6 @@ export declare class TaggedItemEntity extends BaseEntity {
|
|
|
6317
6291
|
*/
|
|
6318
6292
|
Save(options?: EntitySaveOptions): Promise<boolean>;
|
|
6319
6293
|
/**
|
|
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
6294
|
* * Field Name: ID
|
|
6330
6295
|
* * Display Name: ID
|
|
6331
6296
|
* * SQL Data Type: int
|
|
@@ -6408,8 +6373,8 @@ export declare class WorkspaceEntity extends BaseEntity {
|
|
|
6408
6373
|
* * Display Name: Description
|
|
6409
6374
|
* * SQL Data Type: nvarchar(MAX)
|
|
6410
6375
|
*/
|
|
6411
|
-
get Description(): string;
|
|
6412
|
-
set Description(value: string);
|
|
6376
|
+
get Description(): string | null;
|
|
6377
|
+
set Description(value: string | null);
|
|
6413
6378
|
/**
|
|
6414
6379
|
* * Field Name: UserID
|
|
6415
6380
|
* * Display Name: User ID
|
|
@@ -6466,8 +6431,8 @@ export declare class WorkspaceItemEntity extends BaseEntity {
|
|
|
6466
6431
|
* * Display Name: Description
|
|
6467
6432
|
* * SQL Data Type: nvarchar(MAX)
|
|
6468
6433
|
*/
|
|
6469
|
-
get Description(): string;
|
|
6470
|
-
set Description(value: string);
|
|
6434
|
+
get Description(): string | null;
|
|
6435
|
+
set Description(value: string | null);
|
|
6471
6436
|
/**
|
|
6472
6437
|
* * Field Name: WorkSpaceID
|
|
6473
6438
|
* * Display Name: Work Space ID
|
|
@@ -6489,8 +6454,8 @@ export declare class WorkspaceItemEntity extends BaseEntity {
|
|
|
6489
6454
|
* * Display Name: Resource Record ID
|
|
6490
6455
|
* * SQL Data Type: nvarchar(255)
|
|
6491
6456
|
*/
|
|
6492
|
-
get ResourceRecordID(): string;
|
|
6493
|
-
set ResourceRecordID(value: string);
|
|
6457
|
+
get ResourceRecordID(): string | null;
|
|
6458
|
+
set ResourceRecordID(value: string | null);
|
|
6494
6459
|
/**
|
|
6495
6460
|
* * Field Name: Sequence
|
|
6496
6461
|
* * Display Name: Sequence
|
|
@@ -6503,8 +6468,8 @@ export declare class WorkspaceItemEntity extends BaseEntity {
|
|
|
6503
6468
|
* * Display Name: Configuration
|
|
6504
6469
|
* * SQL Data Type: nvarchar(MAX)
|
|
6505
6470
|
*/
|
|
6506
|
-
get Configuration(): string;
|
|
6507
|
-
set Configuration(value: string);
|
|
6471
|
+
get Configuration(): string | null;
|
|
6472
|
+
set Configuration(value: string | null);
|
|
6508
6473
|
/**
|
|
6509
6474
|
* * Field Name: WorkSpace
|
|
6510
6475
|
* * Display Name: Work Space
|
|
@@ -6577,8 +6542,8 @@ export declare class DatasetEntity extends BaseEntity {
|
|
|
6577
6542
|
* * Display Name: Description
|
|
6578
6543
|
* * SQL Data Type: nvarchar(MAX)
|
|
6579
6544
|
*/
|
|
6580
|
-
get Description(): string;
|
|
6581
|
-
set Description(value: string);
|
|
6545
|
+
get Description(): string | null;
|
|
6546
|
+
set Description(value: string | null);
|
|
6582
6547
|
/**
|
|
6583
6548
|
* * Field Name: CreatedAt
|
|
6584
6549
|
* * Display Name: Created At
|
|
@@ -6654,8 +6619,8 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
6654
6619
|
* * SQL Data Type: nvarchar(50)
|
|
6655
6620
|
* * Related Entity/Foreign Key: Datasets (vwDatasets.Name)
|
|
6656
6621
|
*/
|
|
6657
|
-
get DatasetName(): string;
|
|
6658
|
-
set DatasetName(value: string);
|
|
6622
|
+
get DatasetName(): string | null;
|
|
6623
|
+
set DatasetName(value: string | null);
|
|
6659
6624
|
/**
|
|
6660
6625
|
* * Field Name: Sequence
|
|
6661
6626
|
* * Display Name: Sequence
|
|
@@ -6677,8 +6642,8 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
6677
6642
|
* * Display Name: Where Clause
|
|
6678
6643
|
* * SQL Data Type: nvarchar(MAX)
|
|
6679
6644
|
*/
|
|
6680
|
-
get WhereClause(): string;
|
|
6681
|
-
set WhereClause(value: string);
|
|
6645
|
+
get WhereClause(): string | null;
|
|
6646
|
+
set WhereClause(value: string | null);
|
|
6682
6647
|
/**
|
|
6683
6648
|
* * Field Name: DateFieldToCheck
|
|
6684
6649
|
* * Display Name: Date Field To Check
|
|
@@ -6691,8 +6656,8 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
6691
6656
|
* * Display Name: Description
|
|
6692
6657
|
* * SQL Data Type: nvarchar(MAX)
|
|
6693
6658
|
*/
|
|
6694
|
-
get Description(): string;
|
|
6695
|
-
set Description(value: string);
|
|
6659
|
+
get Description(): string | null;
|
|
6660
|
+
set Description(value: string | null);
|
|
6696
6661
|
/**
|
|
6697
6662
|
* * Field Name: CreatedAt
|
|
6698
6663
|
* * Display Name: Created At
|
|
@@ -6756,8 +6721,8 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
6756
6721
|
* * Display Name: External ID
|
|
6757
6722
|
* * SQL Data Type: nvarchar(100)
|
|
6758
6723
|
*/
|
|
6759
|
-
get ExternalID(): string;
|
|
6760
|
-
set ExternalID(value: string);
|
|
6724
|
+
get ExternalID(): string | null;
|
|
6725
|
+
set ExternalID(value: string | null);
|
|
6761
6726
|
/**
|
|
6762
6727
|
* * Field Name: Role
|
|
6763
6728
|
* * Display Name: Role
|
|
@@ -6778,8 +6743,8 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
6778
6743
|
* * Display Name: Error
|
|
6779
6744
|
* * SQL Data Type: nvarchar(MAX)
|
|
6780
6745
|
*/
|
|
6781
|
-
get Error(): string;
|
|
6782
|
-
set Error(value: string);
|
|
6746
|
+
get Error(): string | null;
|
|
6747
|
+
set Error(value: string | null);
|
|
6783
6748
|
/**
|
|
6784
6749
|
* * Field Name: HiddenToUser
|
|
6785
6750
|
* * Display Name: Hidden To User
|
|
@@ -6807,7 +6772,7 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
6807
6772
|
* * Display Name: Conversation
|
|
6808
6773
|
* * SQL Data Type: nvarchar(100)
|
|
6809
6774
|
*/
|
|
6810
|
-
get Conversation(): string;
|
|
6775
|
+
get Conversation(): string | null;
|
|
6811
6776
|
}
|
|
6812
6777
|
/**
|
|
6813
6778
|
* Conversations - strongly typed entity sub-class
|
|
@@ -6851,22 +6816,22 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
6851
6816
|
* * Display Name: External ID
|
|
6852
6817
|
* * SQL Data Type: nvarchar(100)
|
|
6853
6818
|
*/
|
|
6854
|
-
get ExternalID(): string;
|
|
6855
|
-
set ExternalID(value: string);
|
|
6819
|
+
get ExternalID(): string | null;
|
|
6820
|
+
set ExternalID(value: string | null);
|
|
6856
6821
|
/**
|
|
6857
6822
|
* * Field Name: Name
|
|
6858
6823
|
* * Display Name: Name
|
|
6859
6824
|
* * SQL Data Type: nvarchar(100)
|
|
6860
6825
|
*/
|
|
6861
|
-
get Name(): string;
|
|
6862
|
-
set Name(value: string);
|
|
6826
|
+
get Name(): string | null;
|
|
6827
|
+
set Name(value: string | null);
|
|
6863
6828
|
/**
|
|
6864
6829
|
* * Field Name: Description
|
|
6865
6830
|
* * Display Name: Description
|
|
6866
6831
|
* * SQL Data Type: nvarchar(MAX)
|
|
6867
6832
|
*/
|
|
6868
|
-
get Description(): string;
|
|
6869
|
-
set Description(value: string);
|
|
6833
|
+
get Description(): string | null;
|
|
6834
|
+
set Description(value: string | null);
|
|
6870
6835
|
/**
|
|
6871
6836
|
* * Field Name: Type
|
|
6872
6837
|
* * Display Name: Type
|
|
@@ -6889,22 +6854,22 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
6889
6854
|
* * SQL Data Type: int
|
|
6890
6855
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
6891
6856
|
*/
|
|
6892
|
-
get LinkedEntityID(): number;
|
|
6893
|
-
set LinkedEntityID(value: number);
|
|
6857
|
+
get LinkedEntityID(): number | null;
|
|
6858
|
+
set LinkedEntityID(value: number | null);
|
|
6894
6859
|
/**
|
|
6895
6860
|
* * Field Name: LinkedRecordID
|
|
6896
6861
|
* * Display Name: Linked Record ID
|
|
6897
6862
|
* * SQL Data Type: int
|
|
6898
6863
|
*/
|
|
6899
|
-
get LinkedRecordID(): number;
|
|
6900
|
-
set LinkedRecordID(value: number);
|
|
6864
|
+
get LinkedRecordID(): number | null;
|
|
6865
|
+
set LinkedRecordID(value: number | null);
|
|
6901
6866
|
/**
|
|
6902
6867
|
* * Field Name: DataContextID
|
|
6903
6868
|
* * Display Name: Data Context ID
|
|
6904
6869
|
* * SQL Data Type: int
|
|
6905
6870
|
*/
|
|
6906
|
-
get DataContextID(): number;
|
|
6907
|
-
set DataContextID(value: number);
|
|
6871
|
+
get DataContextID(): number | null;
|
|
6872
|
+
set DataContextID(value: number | null);
|
|
6908
6873
|
/**
|
|
6909
6874
|
* * Field Name: CreatedAt
|
|
6910
6875
|
* * Display Name: Created At
|
|
@@ -6930,7 +6895,7 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
6930
6895
|
* * Display Name: Linked Entity
|
|
6931
6896
|
* * SQL Data Type: nvarchar(255)
|
|
6932
6897
|
*/
|
|
6933
|
-
get LinkedEntity(): string;
|
|
6898
|
+
get LinkedEntity(): string | null;
|
|
6934
6899
|
}
|
|
6935
6900
|
/**
|
|
6936
6901
|
* User Notifications - strongly typed entity sub-class
|
|
@@ -6956,15 +6921,6 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
6956
6921
|
*/
|
|
6957
6922
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
6958
6923
|
/**
|
|
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
6924
|
* * Field Name: ID
|
|
6969
6925
|
* * Display Name: ID
|
|
6970
6926
|
* * SQL Data Type: int
|
|
@@ -6983,36 +6939,36 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
6983
6939
|
* * Display Name: Title
|
|
6984
6940
|
* * SQL Data Type: nvarchar(255)
|
|
6985
6941
|
*/
|
|
6986
|
-
get Title(): string;
|
|
6987
|
-
set Title(value: string);
|
|
6942
|
+
get Title(): string | null;
|
|
6943
|
+
set Title(value: string | null);
|
|
6988
6944
|
/**
|
|
6989
6945
|
* * Field Name: Message
|
|
6990
6946
|
* * Display Name: Message
|
|
6991
6947
|
* * SQL Data Type: nvarchar(MAX)
|
|
6992
6948
|
*/
|
|
6993
|
-
get Message(): string;
|
|
6994
|
-
set Message(value: string);
|
|
6949
|
+
get Message(): string | null;
|
|
6950
|
+
set Message(value: string | null);
|
|
6995
6951
|
/**
|
|
6996
6952
|
* * Field Name: ResourceTypeID
|
|
6997
6953
|
* * Display Name: Resource Type ID
|
|
6998
6954
|
* * SQL Data Type: int
|
|
6999
6955
|
*/
|
|
7000
|
-
get ResourceTypeID(): number;
|
|
7001
|
-
set ResourceTypeID(value: number);
|
|
6956
|
+
get ResourceTypeID(): number | null;
|
|
6957
|
+
set ResourceTypeID(value: number | null);
|
|
7002
6958
|
/**
|
|
7003
6959
|
* * Field Name: ResourceRecordID
|
|
7004
6960
|
* * Display Name: Resource Record ID
|
|
7005
6961
|
* * SQL Data Type: int
|
|
7006
6962
|
*/
|
|
7007
|
-
get ResourceRecordID(): number;
|
|
7008
|
-
set ResourceRecordID(value: number);
|
|
6963
|
+
get ResourceRecordID(): number | null;
|
|
6964
|
+
set ResourceRecordID(value: number | null);
|
|
7009
6965
|
/**
|
|
7010
6966
|
* * Field Name: ResourceConfiguration
|
|
7011
6967
|
* * Display Name: Resource Configuration
|
|
7012
6968
|
* * SQL Data Type: nvarchar(MAX)
|
|
7013
6969
|
*/
|
|
7014
|
-
get ResourceConfiguration(): string;
|
|
7015
|
-
set ResourceConfiguration(value: string);
|
|
6970
|
+
get ResourceConfiguration(): string | null;
|
|
6971
|
+
set ResourceConfiguration(value: string | null);
|
|
7016
6972
|
/**
|
|
7017
6973
|
* * Field Name: Unread
|
|
7018
6974
|
* * Display Name: Unread
|
|
@@ -7026,8 +6982,8 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
7026
6982
|
* * Display Name: Read At
|
|
7027
6983
|
* * SQL Data Type: datetime
|
|
7028
6984
|
*/
|
|
7029
|
-
get ReadAt(): Date;
|
|
7030
|
-
set ReadAt(value: Date);
|
|
6985
|
+
get ReadAt(): Date | null;
|
|
6986
|
+
set ReadAt(value: Date | null);
|
|
7031
6987
|
/**
|
|
7032
6988
|
* * Field Name: CreatedAt
|
|
7033
6989
|
* * Display Name: Created At
|
|
@@ -7113,8 +7069,8 @@ export declare class SchemaInfoEntity extends BaseEntity {
|
|
|
7113
7069
|
* * Display Name: Comments
|
|
7114
7070
|
* * SQL Data Type: nvarchar(MAX)
|
|
7115
7071
|
*/
|
|
7116
|
-
get Comments(): string;
|
|
7117
|
-
set Comments(value: string);
|
|
7072
|
+
get Comments(): string | null;
|
|
7073
|
+
set Comments(value: string | null);
|
|
7118
7074
|
/**
|
|
7119
7075
|
* * Field Name: CreatedAt
|
|
7120
7076
|
* * Display Name: Created At
|
|
@@ -7293,8 +7249,8 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7293
7249
|
* * Display Name: Approved By User ID
|
|
7294
7250
|
* * SQL Data Type: int
|
|
7295
7251
|
*/
|
|
7296
|
-
get ApprovedByUserID(): number;
|
|
7297
|
-
set ApprovedByUserID(value: number);
|
|
7252
|
+
get ApprovedByUserID(): number | null;
|
|
7253
|
+
set ApprovedByUserID(value: number | null);
|
|
7298
7254
|
/**
|
|
7299
7255
|
* * Field Name: ProcessingStatus
|
|
7300
7256
|
* * Display Name: Processing Status
|
|
@@ -7316,22 +7272,22 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7316
7272
|
* * Display Name: Processing Ended At
|
|
7317
7273
|
* * SQL Data Type: datetime
|
|
7318
7274
|
*/
|
|
7319
|
-
get ProcessingEndedAt(): Date;
|
|
7320
|
-
set ProcessingEndedAt(value: Date);
|
|
7275
|
+
get ProcessingEndedAt(): Date | null;
|
|
7276
|
+
set ProcessingEndedAt(value: Date | null);
|
|
7321
7277
|
/**
|
|
7322
7278
|
* * Field Name: ProcessingLog
|
|
7323
7279
|
* * Display Name: Processing Log
|
|
7324
7280
|
* * SQL Data Type: nvarchar(MAX)
|
|
7325
7281
|
*/
|
|
7326
|
-
get ProcessingLog(): string;
|
|
7327
|
-
set ProcessingLog(value: string);
|
|
7282
|
+
get ProcessingLog(): string | null;
|
|
7283
|
+
set ProcessingLog(value: string | null);
|
|
7328
7284
|
/**
|
|
7329
7285
|
* * Field Name: Comments
|
|
7330
7286
|
* * Display Name: Comments
|
|
7331
7287
|
* * SQL Data Type: nvarchar(MAX)
|
|
7332
7288
|
*/
|
|
7333
|
-
get Comments(): string;
|
|
7334
|
-
set Comments(value: string);
|
|
7289
|
+
get Comments(): string | null;
|
|
7290
|
+
set Comments(value: string | null);
|
|
7335
7291
|
/**
|
|
7336
7292
|
* * Field Name: CreatedAt
|
|
7337
7293
|
* * Display Name: Created At
|
|
@@ -7345,7 +7301,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7345
7301
|
* * SQL Data Type: datetime
|
|
7346
7302
|
* * Default Value: getdate()
|
|
7347
7303
|
*/
|
|
7348
|
-
get UpdatedAt(): Date;
|
|
7304
|
+
get UpdatedAt(): Date | null;
|
|
7349
7305
|
/**
|
|
7350
7306
|
* * Field Name: Entity
|
|
7351
7307
|
* * Display Name: Entity
|
|
@@ -7425,8 +7381,8 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
|
|
|
7425
7381
|
* * Display Name: Processing Log
|
|
7426
7382
|
* * SQL Data Type: nvarchar(MAX)
|
|
7427
7383
|
*/
|
|
7428
|
-
get ProcessingLog(): string;
|
|
7429
|
-
set ProcessingLog(value: string);
|
|
7384
|
+
get ProcessingLog(): string | null;
|
|
7385
|
+
set ProcessingLog(value: string | null);
|
|
7430
7386
|
/**
|
|
7431
7387
|
* * Field Name: CreatedAt
|
|
7432
7388
|
* * Display Name: Created At
|
|
@@ -7500,8 +7456,8 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7500
7456
|
* * Display Name: Description
|
|
7501
7457
|
* * SQL Data Type: nvarchar(MAX)
|
|
7502
7458
|
*/
|
|
7503
|
-
get Description(): string;
|
|
7504
|
-
set Description(value: string);
|
|
7459
|
+
get Description(): string | null;
|
|
7460
|
+
set Description(value: string | null);
|
|
7505
7461
|
/**
|
|
7506
7462
|
* * Field Name: Sequence
|
|
7507
7463
|
* * Display Name: Sequence
|
|
@@ -7531,15 +7487,15 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7531
7487
|
* * SQL Data Type: int
|
|
7532
7488
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
7533
7489
|
*/
|
|
7534
|
-
get SourceEntityID(): number;
|
|
7535
|
-
set SourceEntityID(value: number);
|
|
7490
|
+
get SourceEntityID(): number | null;
|
|
7491
|
+
set SourceEntityID(value: number | null);
|
|
7536
7492
|
/**
|
|
7537
7493
|
* * Field Name: SourceFieldName
|
|
7538
7494
|
* * Display Name: Source Field Name
|
|
7539
7495
|
* * SQL Data Type: nvarchar(255)
|
|
7540
7496
|
*/
|
|
7541
|
-
get SourceFieldName(): string;
|
|
7542
|
-
set SourceFieldName(value: string);
|
|
7497
|
+
get SourceFieldName(): string | null;
|
|
7498
|
+
set SourceFieldName(value: string | null);
|
|
7543
7499
|
/**
|
|
7544
7500
|
* * Field Name: IsComputed
|
|
7545
7501
|
* * Display Name: Is Computed
|
|
@@ -7553,8 +7509,8 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7553
7509
|
* * Display Name: Computation Description
|
|
7554
7510
|
* * SQL Data Type: nvarchar(MAX)
|
|
7555
7511
|
*/
|
|
7556
|
-
get ComputationDescription(): string;
|
|
7557
|
-
set ComputationDescription(value: string);
|
|
7512
|
+
get ComputationDescription(): string | null;
|
|
7513
|
+
set ComputationDescription(value: string | null);
|
|
7558
7514
|
/**
|
|
7559
7515
|
* * Field Name: IsSummary
|
|
7560
7516
|
* * Display Name: Is Summary
|
|
@@ -7568,8 +7524,8 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7568
7524
|
* * Display Name: Summary Description
|
|
7569
7525
|
* * SQL Data Type: nvarchar(MAX)
|
|
7570
7526
|
*/
|
|
7571
|
-
get SummaryDescription(): string;
|
|
7572
|
-
set SummaryDescription(value: string);
|
|
7527
|
+
get SummaryDescription(): string | null;
|
|
7528
|
+
set SummaryDescription(value: string | null);
|
|
7573
7529
|
/**
|
|
7574
7530
|
* * Field Name: CreatedAt
|
|
7575
7531
|
* * Display Name: Created At
|
|
@@ -7595,7 +7551,7 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7595
7551
|
* * Display Name: Source Entity
|
|
7596
7552
|
* * SQL Data Type: nvarchar(255)
|
|
7597
7553
|
*/
|
|
7598
|
-
get SourceEntity(): string;
|
|
7554
|
+
get SourceEntity(): string | null;
|
|
7599
7555
|
}
|
|
7600
7556
|
/**
|
|
7601
7557
|
* Query Categories - strongly typed entity sub-class
|
|
@@ -7621,15 +7577,6 @@ export declare class QueryCategoryEntity extends BaseEntity {
|
|
|
7621
7577
|
*/
|
|
7622
7578
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
7623
7579
|
/**
|
|
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
7580
|
* * Field Name: ID
|
|
7634
7581
|
* * Display Name: ID
|
|
7635
7582
|
* * SQL Data Type: int
|
|
@@ -7648,15 +7595,15 @@ export declare class QueryCategoryEntity extends BaseEntity {
|
|
|
7648
7595
|
* * SQL Data Type: int
|
|
7649
7596
|
* * Related Entity/Foreign Key: Query Categories (vwQueryCategories.ID)
|
|
7650
7597
|
*/
|
|
7651
|
-
get ParentID(): number;
|
|
7652
|
-
set ParentID(value: number);
|
|
7598
|
+
get ParentID(): number | null;
|
|
7599
|
+
set ParentID(value: number | null);
|
|
7653
7600
|
/**
|
|
7654
7601
|
* * Field Name: Description
|
|
7655
7602
|
* * Display Name: Description
|
|
7656
7603
|
* * SQL Data Type: nvarchar(MAX)
|
|
7657
7604
|
*/
|
|
7658
|
-
get Description(): string;
|
|
7659
|
-
set Description(value: string);
|
|
7605
|
+
get Description(): string | null;
|
|
7606
|
+
set Description(value: string | null);
|
|
7660
7607
|
/**
|
|
7661
7608
|
* * Field Name: CreatedAt
|
|
7662
7609
|
* * Display Name: Created At
|
|
@@ -7676,7 +7623,7 @@ export declare class QueryCategoryEntity extends BaseEntity {
|
|
|
7676
7623
|
* * Display Name: Parent
|
|
7677
7624
|
* * SQL Data Type: nvarchar(50)
|
|
7678
7625
|
*/
|
|
7679
|
-
get Parent(): string;
|
|
7626
|
+
get Parent(): string | null;
|
|
7680
7627
|
}
|
|
7681
7628
|
/**
|
|
7682
7629
|
* Queries - strongly typed entity sub-class
|
|
@@ -7728,37 +7675,37 @@ export declare class QueryEntity extends BaseEntity {
|
|
|
7728
7675
|
* * Display Name: Description
|
|
7729
7676
|
* * SQL Data Type: nvarchar(MAX)
|
|
7730
7677
|
*/
|
|
7731
|
-
get Description(): string;
|
|
7732
|
-
set Description(value: string);
|
|
7678
|
+
get Description(): string | null;
|
|
7679
|
+
set Description(value: string | null);
|
|
7733
7680
|
/**
|
|
7734
7681
|
* * Field Name: CategoryID
|
|
7735
7682
|
* * Display Name: Category ID
|
|
7736
7683
|
* * SQL Data Type: int
|
|
7737
7684
|
* * Related Entity/Foreign Key: Query Categories (vwQueryCategories.ID)
|
|
7738
7685
|
*/
|
|
7739
|
-
get CategoryID(): number;
|
|
7740
|
-
set CategoryID(value: number);
|
|
7686
|
+
get CategoryID(): number | null;
|
|
7687
|
+
set CategoryID(value: number | null);
|
|
7741
7688
|
/**
|
|
7742
7689
|
* * Field Name: SQL
|
|
7743
7690
|
* * Display Name: SQL
|
|
7744
7691
|
* * SQL Data Type: nvarchar(MAX)
|
|
7745
7692
|
*/
|
|
7746
|
-
get SQL(): string;
|
|
7747
|
-
set SQL(value: string);
|
|
7693
|
+
get SQL(): string | null;
|
|
7694
|
+
set SQL(value: string | null);
|
|
7748
7695
|
/**
|
|
7749
7696
|
* * Field Name: OriginalSQL
|
|
7750
7697
|
* * Display Name: Original SQL
|
|
7751
7698
|
* * SQL Data Type: nvarchar(MAX)
|
|
7752
7699
|
*/
|
|
7753
|
-
get OriginalSQL(): string;
|
|
7754
|
-
set OriginalSQL(value: string);
|
|
7700
|
+
get OriginalSQL(): string | null;
|
|
7701
|
+
set OriginalSQL(value: string | null);
|
|
7755
7702
|
/**
|
|
7756
7703
|
* * Field Name: Feedback
|
|
7757
7704
|
* * Display Name: Feedback
|
|
7758
7705
|
* * SQL Data Type: nvarchar(MAX)
|
|
7759
7706
|
*/
|
|
7760
|
-
get Feedback(): string;
|
|
7761
|
-
set Feedback(value: string);
|
|
7707
|
+
get Feedback(): string | null;
|
|
7708
|
+
set Feedback(value: string | null);
|
|
7762
7709
|
/**
|
|
7763
7710
|
* * Field Name: Status
|
|
7764
7711
|
* * Display Name: Status
|
|
@@ -7773,8 +7720,8 @@ export declare class QueryEntity extends BaseEntity {
|
|
|
7773
7720
|
* * SQL Data Type: int
|
|
7774
7721
|
* * Default Value: 0
|
|
7775
7722
|
*/
|
|
7776
|
-
get QualityRank(): number;
|
|
7777
|
-
set QualityRank(value: number);
|
|
7723
|
+
get QualityRank(): number | null;
|
|
7724
|
+
set QualityRank(value: number | null);
|
|
7778
7725
|
/**
|
|
7779
7726
|
* * Field Name: CreatedAt
|
|
7780
7727
|
* * Display Name: Created At
|
|
@@ -7794,7 +7741,7 @@ export declare class QueryEntity extends BaseEntity {
|
|
|
7794
7741
|
* * Display Name: Category
|
|
7795
7742
|
* * SQL Data Type: nvarchar(50)
|
|
7796
7743
|
*/
|
|
7797
|
-
get Category(): string;
|
|
7744
|
+
get Category(): string | null;
|
|
7798
7745
|
}
|
|
7799
7746
|
/**
|
|
7800
7747
|
* Query Permissions - strongly typed entity sub-class
|
|
@@ -7915,8 +7862,8 @@ export declare class VectorIndexEntity extends BaseEntity {
|
|
|
7915
7862
|
* * Display Name: Description
|
|
7916
7863
|
* * SQL Data Type: nvarchar(MAX)
|
|
7917
7864
|
*/
|
|
7918
|
-
get Description(): string;
|
|
7919
|
-
set Description(value: string);
|
|
7865
|
+
get Description(): string | null;
|
|
7866
|
+
set Description(value: string | null);
|
|
7920
7867
|
/**
|
|
7921
7868
|
* * Field Name: VectorDatabaseID
|
|
7922
7869
|
* * Display Name: Vector Database ID
|
|
@@ -8010,8 +7957,8 @@ export declare class EntityDocumentTypeEntity extends BaseEntity {
|
|
|
8010
7957
|
* * Display Name: Description
|
|
8011
7958
|
* * SQL Data Type: nvarchar(MAX)
|
|
8012
7959
|
*/
|
|
8013
|
-
get Description(): string;
|
|
8014
|
-
set Description(value: string);
|
|
7960
|
+
get Description(): string | null;
|
|
7961
|
+
set Description(value: string | null);
|
|
8015
7962
|
/**
|
|
8016
7963
|
* * Field Name: CreatedAt
|
|
8017
7964
|
* * Display Name: Created At
|
|
@@ -8078,15 +8025,15 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
|
|
|
8078
8025
|
* * Display Name: Started At
|
|
8079
8026
|
* * SQL Data Type: datetime
|
|
8080
8027
|
*/
|
|
8081
|
-
get StartedAt(): Date;
|
|
8082
|
-
set StartedAt(value: Date);
|
|
8028
|
+
get StartedAt(): Date | null;
|
|
8029
|
+
set StartedAt(value: Date | null);
|
|
8083
8030
|
/**
|
|
8084
8031
|
* * Field Name: EndedAt
|
|
8085
8032
|
* * Display Name: Ended At
|
|
8086
8033
|
* * SQL Data Type: datetime
|
|
8087
8034
|
*/
|
|
8088
|
-
get EndedAt(): Date;
|
|
8089
|
-
set EndedAt(value: Date);
|
|
8035
|
+
get EndedAt(): Date | null;
|
|
8036
|
+
set EndedAt(value: Date | null);
|
|
8090
8037
|
/**
|
|
8091
8038
|
* * Field Name: Status
|
|
8092
8039
|
* * Display Name: Status
|
|
@@ -8167,22 +8114,22 @@ export declare class VectorDatabaseEntity extends BaseEntity {
|
|
|
8167
8114
|
* * Display Name: Description
|
|
8168
8115
|
* * SQL Data Type: nvarchar(MAX)
|
|
8169
8116
|
*/
|
|
8170
|
-
get Description(): string;
|
|
8171
|
-
set Description(value: string);
|
|
8117
|
+
get Description(): string | null;
|
|
8118
|
+
set Description(value: string | null);
|
|
8172
8119
|
/**
|
|
8173
8120
|
* * Field Name: DefaultURL
|
|
8174
8121
|
* * Display Name: Default URL
|
|
8175
8122
|
* * SQL Data Type: nvarchar(255)
|
|
8176
8123
|
*/
|
|
8177
|
-
get DefaultURL(): string;
|
|
8178
|
-
set DefaultURL(value: string);
|
|
8124
|
+
get DefaultURL(): string | null;
|
|
8125
|
+
set DefaultURL(value: string | null);
|
|
8179
8126
|
/**
|
|
8180
8127
|
* * Field Name: ClassKey
|
|
8181
8128
|
* * Display Name: Class Key
|
|
8182
8129
|
* * SQL Data Type: nvarchar(100)
|
|
8183
8130
|
*/
|
|
8184
|
-
get ClassKey(): string;
|
|
8185
|
-
set ClassKey(value: string);
|
|
8131
|
+
get ClassKey(): string | null;
|
|
8132
|
+
set ClassKey(value: string | null);
|
|
8186
8133
|
/**
|
|
8187
8134
|
* * Field Name: CreatedAt
|
|
8188
8135
|
* * Display Name: Created At
|
|
@@ -8256,8 +8203,8 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
|
|
|
8256
8203
|
* * Display Name: Document Text
|
|
8257
8204
|
* * SQL Data Type: nvarchar(MAX)
|
|
8258
8205
|
*/
|
|
8259
|
-
get DocumentText(): string;
|
|
8260
|
-
set DocumentText(value: string);
|
|
8206
|
+
get DocumentText(): string | null;
|
|
8207
|
+
set DocumentText(value: string | null);
|
|
8261
8208
|
/**
|
|
8262
8209
|
* * Field Name: VectorIndexID
|
|
8263
8210
|
* * Display Name: Vector Index ID
|
|
@@ -8270,15 +8217,15 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
|
|
|
8270
8217
|
* * Display Name: Vector ID
|
|
8271
8218
|
* * SQL Data Type: nvarchar(50)
|
|
8272
8219
|
*/
|
|
8273
|
-
get VectorID(): string;
|
|
8274
|
-
set VectorID(value: string);
|
|
8220
|
+
get VectorID(): string | null;
|
|
8221
|
+
set VectorID(value: string | null);
|
|
8275
8222
|
/**
|
|
8276
8223
|
* * Field Name: VectorJSON
|
|
8277
8224
|
* * Display Name: Vector JSON
|
|
8278
8225
|
* * SQL Data Type: nvarchar(MAX)
|
|
8279
8226
|
*/
|
|
8280
|
-
get VectorJSON(): string;
|
|
8281
|
-
set VectorJSON(value: string);
|
|
8227
|
+
get VectorJSON(): string | null;
|
|
8228
|
+
set VectorJSON(value: string | null);
|
|
8282
8229
|
/**
|
|
8283
8230
|
* * Field Name: EntityRecordUpdatedAt
|
|
8284
8231
|
* * Display Name: Entity Record Updated At
|
|
@@ -8375,8 +8322,8 @@ export declare class EntityDocumentEntity extends BaseEntity {
|
|
|
8375
8322
|
* * Display Name: Template
|
|
8376
8323
|
* * SQL Data Type: nvarchar(MAX)
|
|
8377
8324
|
*/
|
|
8378
|
-
get Template(): string;
|
|
8379
|
-
set Template(value: string);
|
|
8325
|
+
get Template(): string | null;
|
|
8326
|
+
set Template(value: string | null);
|
|
8380
8327
|
/**
|
|
8381
8328
|
* * Field Name: CreatedAt
|
|
8382
8329
|
* * Display Name: Created At
|
|
@@ -8467,8 +8414,8 @@ export declare class DataContextItemEntity extends BaseEntity {
|
|
|
8467
8414
|
* * Related Entity/Foreign Key: User Views (vwUserViews.ID)
|
|
8468
8415
|
* * Description: Only used if Type='view'
|
|
8469
8416
|
*/
|
|
8470
|
-
get ViewID(): number;
|
|
8471
|
-
set ViewID(value: number);
|
|
8417
|
+
get ViewID(): number | null;
|
|
8418
|
+
set ViewID(value: number | null);
|
|
8472
8419
|
/**
|
|
8473
8420
|
* * Field Name: QueryID
|
|
8474
8421
|
* * Display Name: Query ID
|
|
@@ -8476,8 +8423,8 @@ export declare class DataContextItemEntity extends BaseEntity {
|
|
|
8476
8423
|
* * Related Entity/Foreign Key: Queries (vwQueries.ID)
|
|
8477
8424
|
* * Description: Only used if Type='query'
|
|
8478
8425
|
*/
|
|
8479
|
-
get QueryID(): number;
|
|
8480
|
-
set QueryID(value: number);
|
|
8426
|
+
get QueryID(): number | null;
|
|
8427
|
+
set QueryID(value: number | null);
|
|
8481
8428
|
/**
|
|
8482
8429
|
* * Field Name: EntityID
|
|
8483
8430
|
* * Display Name: Entity ID
|
|
@@ -8485,40 +8432,40 @@ export declare class DataContextItemEntity extends BaseEntity {
|
|
|
8485
8432
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
8486
8433
|
* * Description: Used if type='full_entity' or type='single_record'
|
|
8487
8434
|
*/
|
|
8488
|
-
get EntityID(): number;
|
|
8489
|
-
set EntityID(value: number);
|
|
8435
|
+
get EntityID(): number | null;
|
|
8436
|
+
set EntityID(value: number | null);
|
|
8490
8437
|
/**
|
|
8491
8438
|
* * Field Name: RecordID
|
|
8492
8439
|
* * Display Name: Record ID
|
|
8493
8440
|
* * SQL Data Type: nvarchar(255)
|
|
8494
8441
|
* * Description: The Primary Key value for the record, only used when Type='single_record'
|
|
8495
8442
|
*/
|
|
8496
|
-
get RecordID(): string;
|
|
8497
|
-
set RecordID(value: string);
|
|
8443
|
+
get RecordID(): string | null;
|
|
8444
|
+
set RecordID(value: string | null);
|
|
8498
8445
|
/**
|
|
8499
8446
|
* * Field Name: SQL
|
|
8500
8447
|
* * Display Name: SQL
|
|
8501
8448
|
* * SQL Data Type: nvarchar(MAX)
|
|
8502
8449
|
* * Description: Only used when Type=sql
|
|
8503
8450
|
*/
|
|
8504
|
-
get SQL(): string;
|
|
8505
|
-
set SQL(value: string);
|
|
8451
|
+
get SQL(): string | null;
|
|
8452
|
+
set SQL(value: string | null);
|
|
8506
8453
|
/**
|
|
8507
8454
|
* * Field Name: DataJSON
|
|
8508
8455
|
* * Display Name: Data JSON
|
|
8509
8456
|
* * SQL Data Type: nvarchar(MAX)
|
|
8510
8457
|
* * 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
8458
|
*/
|
|
8512
|
-
get DataJSON(): string;
|
|
8513
|
-
set DataJSON(value: string);
|
|
8459
|
+
get DataJSON(): string | null;
|
|
8460
|
+
set DataJSON(value: string | null);
|
|
8514
8461
|
/**
|
|
8515
8462
|
* * Field Name: LastRefreshedAt
|
|
8516
8463
|
* * Display Name: Last Refreshed At
|
|
8517
8464
|
* * SQL Data Type: datetime
|
|
8518
8465
|
* * Description: If DataJSON is populated, this field will show the date the the data was captured
|
|
8519
8466
|
*/
|
|
8520
|
-
get LastRefreshedAt(): Date;
|
|
8521
|
-
set LastRefreshedAt(value: Date);
|
|
8467
|
+
get LastRefreshedAt(): Date | null;
|
|
8468
|
+
set LastRefreshedAt(value: Date | null);
|
|
8522
8469
|
/**
|
|
8523
8470
|
* * Field Name: CreatedAt
|
|
8524
8471
|
* * Display Name: Created At
|
|
@@ -8544,19 +8491,19 @@ export declare class DataContextItemEntity extends BaseEntity {
|
|
|
8544
8491
|
* * Display Name: View
|
|
8545
8492
|
* * SQL Data Type: nvarchar(100)
|
|
8546
8493
|
*/
|
|
8547
|
-
get View(): string;
|
|
8494
|
+
get View(): string | null;
|
|
8548
8495
|
/**
|
|
8549
8496
|
* * Field Name: Query
|
|
8550
8497
|
* * Display Name: Query
|
|
8551
8498
|
* * SQL Data Type: nvarchar(255)
|
|
8552
8499
|
*/
|
|
8553
|
-
get Query(): string;
|
|
8500
|
+
get Query(): string | null;
|
|
8554
8501
|
/**
|
|
8555
8502
|
* * Field Name: Entity
|
|
8556
8503
|
* * Display Name: Entity
|
|
8557
8504
|
* * SQL Data Type: nvarchar(255)
|
|
8558
8505
|
*/
|
|
8559
|
-
get Entity(): string;
|
|
8506
|
+
get Entity(): string | null;
|
|
8560
8507
|
}
|
|
8561
8508
|
/**
|
|
8562
8509
|
* Data Contexts - strongly typed entity sub-class
|
|
@@ -8617,15 +8564,15 @@ export declare class DataContextEntity extends BaseEntity {
|
|
|
8617
8564
|
* * Display Name: Description
|
|
8618
8565
|
* * SQL Data Type: nvarchar(MAX)
|
|
8619
8566
|
*/
|
|
8620
|
-
get Description(): string;
|
|
8621
|
-
set Description(value: string);
|
|
8567
|
+
get Description(): string | null;
|
|
8568
|
+
set Description(value: string | null);
|
|
8622
8569
|
/**
|
|
8623
8570
|
* * Field Name: LastRefreshedAt
|
|
8624
8571
|
* * Display Name: Last Refreshed At
|
|
8625
8572
|
* * SQL Data Type: datetime
|
|
8626
8573
|
*/
|
|
8627
|
-
get LastRefreshedAt(): Date;
|
|
8628
|
-
set LastRefreshedAt(value: Date);
|
|
8574
|
+
get LastRefreshedAt(): Date | null;
|
|
8575
|
+
set LastRefreshedAt(value: Date | null);
|
|
8629
8576
|
/**
|
|
8630
8577
|
* * Field Name: CreatedAt
|
|
8631
8578
|
* * Display Name: Created At
|
|
@@ -8671,15 +8618,6 @@ export declare class UserViewCategoryEntity extends BaseEntity {
|
|
|
8671
8618
|
*/
|
|
8672
8619
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
8673
8620
|
/**
|
|
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
8621
|
* * Field Name: ID
|
|
8684
8622
|
* * Display Name: ID
|
|
8685
8623
|
* * SQL Data Type: int
|
|
@@ -8697,16 +8635,16 @@ export declare class UserViewCategoryEntity extends BaseEntity {
|
|
|
8697
8635
|
* * Display Name: Description
|
|
8698
8636
|
* * SQL Data Type: nvarchar(MAX)
|
|
8699
8637
|
*/
|
|
8700
|
-
get Description(): string;
|
|
8701
|
-
set Description(value: string);
|
|
8638
|
+
get Description(): string | null;
|
|
8639
|
+
set Description(value: string | null);
|
|
8702
8640
|
/**
|
|
8703
8641
|
* * Field Name: ParentID
|
|
8704
8642
|
* * Display Name: Parent ID
|
|
8705
8643
|
* * SQL Data Type: int
|
|
8706
8644
|
* * Related Entity/Foreign Key: User View Categories (vwUserViewCategories.ID)
|
|
8707
8645
|
*/
|
|
8708
|
-
get ParentID(): number;
|
|
8709
|
-
set ParentID(value: number);
|
|
8646
|
+
get ParentID(): number | null;
|
|
8647
|
+
set ParentID(value: number | null);
|
|
8710
8648
|
/**
|
|
8711
8649
|
* * Field Name: CreatedAt
|
|
8712
8650
|
* * Display Name: Created At
|
|
@@ -8726,7 +8664,7 @@ export declare class UserViewCategoryEntity extends BaseEntity {
|
|
|
8726
8664
|
* * Display Name: Parent
|
|
8727
8665
|
* * SQL Data Type: nvarchar(100)
|
|
8728
8666
|
*/
|
|
8729
|
-
get Parent(): string;
|
|
8667
|
+
get Parent(): string | null;
|
|
8730
8668
|
}
|
|
8731
8669
|
/**
|
|
8732
8670
|
* Dashboard Categories - strongly typed entity sub-class
|
|
@@ -8752,15 +8690,6 @@ export declare class DashboardCategoryEntity extends BaseEntity {
|
|
|
8752
8690
|
*/
|
|
8753
8691
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
8754
8692
|
/**
|
|
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
8693
|
* * Field Name: ID
|
|
8765
8694
|
* * Display Name: ID
|
|
8766
8695
|
* * SQL Data Type: int
|
|
@@ -8778,16 +8707,16 @@ export declare class DashboardCategoryEntity extends BaseEntity {
|
|
|
8778
8707
|
* * Display Name: Description
|
|
8779
8708
|
* * SQL Data Type: nvarchar(MAX)
|
|
8780
8709
|
*/
|
|
8781
|
-
get Description(): string;
|
|
8782
|
-
set Description(value: string);
|
|
8710
|
+
get Description(): string | null;
|
|
8711
|
+
set Description(value: string | null);
|
|
8783
8712
|
/**
|
|
8784
8713
|
* * Field Name: ParentID
|
|
8785
8714
|
* * Display Name: Parent ID
|
|
8786
8715
|
* * SQL Data Type: int
|
|
8787
8716
|
* * Related Entity/Foreign Key: Dashboard Categories (vwDashboardCategories.ID)
|
|
8788
8717
|
*/
|
|
8789
|
-
get ParentID(): number;
|
|
8790
|
-
set ParentID(value: number);
|
|
8718
|
+
get ParentID(): number | null;
|
|
8719
|
+
set ParentID(value: number | null);
|
|
8791
8720
|
/**
|
|
8792
8721
|
* * Field Name: CreatedAt
|
|
8793
8722
|
* * Display Name: Created At
|
|
@@ -8807,7 +8736,7 @@ export declare class DashboardCategoryEntity extends BaseEntity {
|
|
|
8807
8736
|
* * Display Name: Parent
|
|
8808
8737
|
* * SQL Data Type: nvarchar(100)
|
|
8809
8738
|
*/
|
|
8810
|
-
get Parent(): string;
|
|
8739
|
+
get Parent(): string | null;
|
|
8811
8740
|
}
|
|
8812
8741
|
/**
|
|
8813
8742
|
* Report Categories - strongly typed entity sub-class
|
|
@@ -8833,12 +8762,84 @@ export declare class ReportCategoryEntity extends BaseEntity {
|
|
|
8833
8762
|
*/
|
|
8834
8763
|
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
8835
8764
|
/**
|
|
8836
|
-
|
|
8765
|
+
* * Field Name: ID
|
|
8766
|
+
* * Display Name: ID
|
|
8767
|
+
* * SQL Data Type: int
|
|
8768
|
+
*/
|
|
8769
|
+
get ID(): number;
|
|
8770
|
+
/**
|
|
8771
|
+
* * Field Name: Name
|
|
8772
|
+
* * Display Name: Name
|
|
8773
|
+
* * SQL Data Type: nvarchar(100)
|
|
8774
|
+
*/
|
|
8775
|
+
get Name(): string;
|
|
8776
|
+
set Name(value: string);
|
|
8777
|
+
/**
|
|
8778
|
+
* * Field Name: Description
|
|
8779
|
+
* * Display Name: Description
|
|
8780
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
8781
|
+
*/
|
|
8782
|
+
get Description(): string | null;
|
|
8783
|
+
set Description(value: string | null);
|
|
8784
|
+
/**
|
|
8785
|
+
* * Field Name: ParentID
|
|
8786
|
+
* * Display Name: Parent ID
|
|
8787
|
+
* * SQL Data Type: int
|
|
8788
|
+
* * Related Entity/Foreign Key: Report Categories (vwReportCategories.ID)
|
|
8789
|
+
*/
|
|
8790
|
+
get ParentID(): number | null;
|
|
8791
|
+
set ParentID(value: number | null);
|
|
8792
|
+
/**
|
|
8793
|
+
* * Field Name: CreatedAt
|
|
8794
|
+
* * Display Name: Created At
|
|
8795
|
+
* * SQL Data Type: datetime
|
|
8796
|
+
* * Default Value: getdate()
|
|
8797
|
+
*/
|
|
8798
|
+
get CreatedAt(): Date;
|
|
8799
|
+
/**
|
|
8800
|
+
* * Field Name: UpdatedAt
|
|
8801
|
+
* * Display Name: Updated At
|
|
8802
|
+
* * SQL Data Type: datetime
|
|
8803
|
+
* * Default Value: getdate()
|
|
8804
|
+
*/
|
|
8805
|
+
get UpdatedAt(): Date;
|
|
8806
|
+
/**
|
|
8807
|
+
* * Field Name: Parent
|
|
8808
|
+
* * Display Name: Parent
|
|
8809
|
+
* * SQL Data Type: nvarchar(100)
|
|
8810
|
+
*/
|
|
8811
|
+
get Parent(): string | null;
|
|
8812
|
+
}
|
|
8813
|
+
/**
|
|
8814
|
+
* File Storage Providers - strongly typed entity sub-class
|
|
8815
|
+
* * Schema: __mj
|
|
8816
|
+
* * Base Table: FileStorageProvider
|
|
8817
|
+
* * Base View: vwFileStorageProviders
|
|
8818
|
+
* * Primary Key: ID
|
|
8819
|
+
* @extends {BaseEntity}
|
|
8820
|
+
* @class
|
|
8821
|
+
* @public
|
|
8822
|
+
*/
|
|
8823
|
+
export declare class FileStorageProviderEntity extends BaseEntity {
|
|
8824
|
+
/**
|
|
8825
|
+
* Loads the File Storage Providers record from the database
|
|
8826
|
+
* @param ID: number - primary key value to load the File Storage Providers record.
|
|
8827
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8828
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8837
8829
|
* @public
|
|
8830
|
+
* @async
|
|
8831
|
+
* @memberof FileStorageProviderEntity
|
|
8838
8832
|
* @method
|
|
8839
8833
|
* @override
|
|
8840
|
-
|
|
8841
|
-
|
|
8834
|
+
*/
|
|
8835
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
8836
|
+
/**
|
|
8837
|
+
* 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.
|
|
8838
|
+
* @public
|
|
8839
|
+
* @method
|
|
8840
|
+
* @override
|
|
8841
|
+
* @memberof FileStorageProviderEntity
|
|
8842
|
+
* @throws {Error} - Delete is not allowed for File Storage Providers, to enable it set AllowDeleteAPI to 1 in the database.
|
|
8842
8843
|
*/
|
|
8843
8844
|
Delete(): Promise<boolean>;
|
|
8844
8845
|
/**
|
|
@@ -8850,8 +8851,96 @@ export declare class ReportCategoryEntity extends BaseEntity {
|
|
|
8850
8851
|
/**
|
|
8851
8852
|
* * Field Name: Name
|
|
8852
8853
|
* * Display Name: Name
|
|
8854
|
+
* * SQL Data Type: nvarchar(50)
|
|
8855
|
+
*/
|
|
8856
|
+
get Name(): string;
|
|
8857
|
+
set Name(value: string);
|
|
8858
|
+
/**
|
|
8859
|
+
* * Field Name: Description
|
|
8860
|
+
* * Display Name: Description
|
|
8861
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
8862
|
+
*/
|
|
8863
|
+
get Description(): string | null;
|
|
8864
|
+
set Description(value: string | null);
|
|
8865
|
+
/**
|
|
8866
|
+
* * Field Name: ServerDriverKey
|
|
8867
|
+
* * Display Name: Server Driver Key
|
|
8868
|
+
* * SQL Data Type: nvarchar(100)
|
|
8869
|
+
*/
|
|
8870
|
+
get ServerDriverKey(): string;
|
|
8871
|
+
set ServerDriverKey(value: string);
|
|
8872
|
+
/**
|
|
8873
|
+
* * Field Name: ClientDriverKey
|
|
8874
|
+
* * Display Name: Client Driver Key
|
|
8853
8875
|
* * SQL Data Type: nvarchar(100)
|
|
8854
8876
|
*/
|
|
8877
|
+
get ClientDriverKey(): string;
|
|
8878
|
+
set ClientDriverKey(value: string);
|
|
8879
|
+
/**
|
|
8880
|
+
* * Field Name: Priority
|
|
8881
|
+
* * Display Name: Priority
|
|
8882
|
+
* * SQL Data Type: int
|
|
8883
|
+
* * Default Value: 0
|
|
8884
|
+
*/
|
|
8885
|
+
get Priority(): number;
|
|
8886
|
+
set Priority(value: number);
|
|
8887
|
+
/**
|
|
8888
|
+
* * Field Name: IsActive
|
|
8889
|
+
* * Display Name: Is Active
|
|
8890
|
+
* * SQL Data Type: bit
|
|
8891
|
+
* * Default Value: 1
|
|
8892
|
+
*/
|
|
8893
|
+
get IsActive(): boolean;
|
|
8894
|
+
set IsActive(value: boolean);
|
|
8895
|
+
/**
|
|
8896
|
+
* * Field Name: CreatedAt
|
|
8897
|
+
* * Display Name: Created At
|
|
8898
|
+
* * SQL Data Type: datetime
|
|
8899
|
+
* * Default Value: getdate()
|
|
8900
|
+
*/
|
|
8901
|
+
get CreatedAt(): Date;
|
|
8902
|
+
/**
|
|
8903
|
+
* * Field Name: UpdatedAt
|
|
8904
|
+
* * Display Name: Updated At
|
|
8905
|
+
* * SQL Data Type: datetime
|
|
8906
|
+
* * Default Value: getdate()
|
|
8907
|
+
*/
|
|
8908
|
+
get UpdatedAt(): Date;
|
|
8909
|
+
}
|
|
8910
|
+
/**
|
|
8911
|
+
* Files - strongly typed entity sub-class
|
|
8912
|
+
* * Schema: __mj
|
|
8913
|
+
* * Base Table: File
|
|
8914
|
+
* * Base View: vwFiles
|
|
8915
|
+
* * Primary Key: ID
|
|
8916
|
+
* @extends {BaseEntity}
|
|
8917
|
+
* @class
|
|
8918
|
+
* @public
|
|
8919
|
+
*/
|
|
8920
|
+
export declare class FileEntity extends BaseEntity {
|
|
8921
|
+
/**
|
|
8922
|
+
* Loads the Files record from the database
|
|
8923
|
+
* @param ID: number - primary key value to load the Files record.
|
|
8924
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8925
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8926
|
+
* @public
|
|
8927
|
+
* @async
|
|
8928
|
+
* @memberof FileEntity
|
|
8929
|
+
* @method
|
|
8930
|
+
* @override
|
|
8931
|
+
*/
|
|
8932
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
8933
|
+
/**
|
|
8934
|
+
* * Field Name: ID
|
|
8935
|
+
* * Display Name: ID
|
|
8936
|
+
* * SQL Data Type: int
|
|
8937
|
+
*/
|
|
8938
|
+
get ID(): number;
|
|
8939
|
+
/**
|
|
8940
|
+
* * Field Name: Name
|
|
8941
|
+
* * Display Name: Name
|
|
8942
|
+
* * SQL Data Type: nvarchar(500)
|
|
8943
|
+
*/
|
|
8855
8944
|
get Name(): string;
|
|
8856
8945
|
set Name(value: string);
|
|
8857
8946
|
/**
|
|
@@ -8859,16 +8948,125 @@ export declare class ReportCategoryEntity extends BaseEntity {
|
|
|
8859
8948
|
* * Display Name: Description
|
|
8860
8949
|
* * SQL Data Type: nvarchar(MAX)
|
|
8861
8950
|
*/
|
|
8862
|
-
get Description(): string;
|
|
8863
|
-
set Description(value: string);
|
|
8951
|
+
get Description(): string | null;
|
|
8952
|
+
set Description(value: string | null);
|
|
8953
|
+
/**
|
|
8954
|
+
* * Field Name: ProviderID
|
|
8955
|
+
* * Display Name: Provider ID
|
|
8956
|
+
* * SQL Data Type: int
|
|
8957
|
+
* * Related Entity/Foreign Key: File Storage Providers (vwFileStorageProviders.ID)
|
|
8958
|
+
*/
|
|
8959
|
+
get ProviderID(): number;
|
|
8960
|
+
set ProviderID(value: number);
|
|
8961
|
+
/**
|
|
8962
|
+
* * Field Name: ContentType
|
|
8963
|
+
* * Display Name: Content Type
|
|
8964
|
+
* * SQL Data Type: nvarchar(50)
|
|
8965
|
+
*/
|
|
8966
|
+
get ContentType(): string | null;
|
|
8967
|
+
set ContentType(value: string | null);
|
|
8968
|
+
/**
|
|
8969
|
+
* * Field Name: ProviderKey
|
|
8970
|
+
* * Display Name: Provider Key
|
|
8971
|
+
* * SQL Data Type: nvarchar(500)
|
|
8972
|
+
*/
|
|
8973
|
+
get ProviderKey(): string | null;
|
|
8974
|
+
set ProviderKey(value: string | null);
|
|
8975
|
+
/**
|
|
8976
|
+
* * Field Name: CategoryID
|
|
8977
|
+
* * Display Name: Category ID
|
|
8978
|
+
* * SQL Data Type: int
|
|
8979
|
+
* * Related Entity/Foreign Key: File Categories (vwFileCategories.ID)
|
|
8980
|
+
*/
|
|
8981
|
+
get CategoryID(): number | null;
|
|
8982
|
+
set CategoryID(value: number | null);
|
|
8983
|
+
/**
|
|
8984
|
+
* * Field Name: Status
|
|
8985
|
+
* * Display Name: Status
|
|
8986
|
+
* * SQL Data Type: nvarchar(20)
|
|
8987
|
+
* * Default Value: N'Pending'
|
|
8988
|
+
* * Description: Pending, Uploading, Uploaded, Deleting, Deleted
|
|
8989
|
+
*/
|
|
8990
|
+
get Status(): string;
|
|
8991
|
+
set Status(value: string);
|
|
8992
|
+
/**
|
|
8993
|
+
* * Field Name: CreatedAt
|
|
8994
|
+
* * Display Name: Created At
|
|
8995
|
+
* * SQL Data Type: datetime
|
|
8996
|
+
* * Default Value: getdate()
|
|
8997
|
+
*/
|
|
8998
|
+
get CreatedAt(): Date;
|
|
8999
|
+
/**
|
|
9000
|
+
* * Field Name: UpdatedAt
|
|
9001
|
+
* * Display Name: Updated At
|
|
9002
|
+
* * SQL Data Type: datetime
|
|
9003
|
+
* * Default Value: getdate()
|
|
9004
|
+
*/
|
|
9005
|
+
get UpdatedAt(): Date;
|
|
9006
|
+
/**
|
|
9007
|
+
* * Field Name: Provider
|
|
9008
|
+
* * Display Name: Provider
|
|
9009
|
+
* * SQL Data Type: nvarchar(50)
|
|
9010
|
+
*/
|
|
9011
|
+
get Provider(): string;
|
|
9012
|
+
/**
|
|
9013
|
+
* * Field Name: Category
|
|
9014
|
+
* * Display Name: Category
|
|
9015
|
+
* * SQL Data Type: nvarchar(255)
|
|
9016
|
+
*/
|
|
9017
|
+
get Category(): string | null;
|
|
9018
|
+
}
|
|
9019
|
+
/**
|
|
9020
|
+
* File Categories - strongly typed entity sub-class
|
|
9021
|
+
* * Schema: __mj
|
|
9022
|
+
* * Base Table: FileCategory
|
|
9023
|
+
* * Base View: vwFileCategories
|
|
9024
|
+
* * Primary Key: ID
|
|
9025
|
+
* @extends {BaseEntity}
|
|
9026
|
+
* @class
|
|
9027
|
+
* @public
|
|
9028
|
+
*/
|
|
9029
|
+
export declare class FileCategoryEntity extends BaseEntity {
|
|
9030
|
+
/**
|
|
9031
|
+
* Loads the File Categories record from the database
|
|
9032
|
+
* @param ID: number - primary key value to load the File Categories record.
|
|
9033
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
9034
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
9035
|
+
* @public
|
|
9036
|
+
* @async
|
|
9037
|
+
* @memberof FileCategoryEntity
|
|
9038
|
+
* @method
|
|
9039
|
+
* @override
|
|
9040
|
+
*/
|
|
9041
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
9042
|
+
/**
|
|
9043
|
+
* * Field Name: ID
|
|
9044
|
+
* * Display Name: ID
|
|
9045
|
+
* * SQL Data Type: int
|
|
9046
|
+
*/
|
|
9047
|
+
get ID(): number;
|
|
9048
|
+
/**
|
|
9049
|
+
* * Field Name: Name
|
|
9050
|
+
* * Display Name: Name
|
|
9051
|
+
* * SQL Data Type: nvarchar(255)
|
|
9052
|
+
*/
|
|
9053
|
+
get Name(): string;
|
|
9054
|
+
set Name(value: string);
|
|
9055
|
+
/**
|
|
9056
|
+
* * Field Name: Description
|
|
9057
|
+
* * Display Name: Description
|
|
9058
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
9059
|
+
*/
|
|
9060
|
+
get Description(): string | null;
|
|
9061
|
+
set Description(value: string | null);
|
|
8864
9062
|
/**
|
|
8865
9063
|
* * Field Name: ParentID
|
|
8866
9064
|
* * Display Name: Parent ID
|
|
8867
9065
|
* * SQL Data Type: int
|
|
8868
|
-
* * Related Entity/Foreign Key:
|
|
9066
|
+
* * Related Entity/Foreign Key: File Categories (vwFileCategories.ID)
|
|
8869
9067
|
*/
|
|
8870
|
-
get ParentID(): number;
|
|
8871
|
-
set ParentID(value: number);
|
|
9068
|
+
get ParentID(): number | null;
|
|
9069
|
+
set ParentID(value: number | null);
|
|
8872
9070
|
/**
|
|
8873
9071
|
* * Field Name: CreatedAt
|
|
8874
9072
|
* * Display Name: Created At
|
|
@@ -8886,7 +9084,96 @@ export declare class ReportCategoryEntity extends BaseEntity {
|
|
|
8886
9084
|
/**
|
|
8887
9085
|
* * Field Name: Parent
|
|
8888
9086
|
* * Display Name: Parent
|
|
8889
|
-
* * SQL Data Type: nvarchar(
|
|
9087
|
+
* * SQL Data Type: nvarchar(255)
|
|
9088
|
+
*/
|
|
9089
|
+
get Parent(): string | null;
|
|
9090
|
+
}
|
|
9091
|
+
/**
|
|
9092
|
+
* File Entity Record Links - strongly typed entity sub-class
|
|
9093
|
+
* * Schema: __mj
|
|
9094
|
+
* * Base Table: FileEntityRecordLink
|
|
9095
|
+
* * Base View: vwFileEntityRecordLinks
|
|
9096
|
+
* * Primary Key: ID
|
|
9097
|
+
* @extends {BaseEntity}
|
|
9098
|
+
* @class
|
|
9099
|
+
* @public
|
|
9100
|
+
*/
|
|
9101
|
+
export declare class FileEntityRecordLinkEntity extends BaseEntity {
|
|
9102
|
+
/**
|
|
9103
|
+
* Loads the File Entity Record Links record from the database
|
|
9104
|
+
* @param ID: number - primary key value to load the File Entity Record Links record.
|
|
9105
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
9106
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
9107
|
+
* @public
|
|
9108
|
+
* @async
|
|
9109
|
+
* @memberof FileEntityRecordLinkEntity
|
|
9110
|
+
* @method
|
|
9111
|
+
* @override
|
|
9112
|
+
*/
|
|
9113
|
+
Load(ID: number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
9114
|
+
/**
|
|
9115
|
+
* 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.
|
|
9116
|
+
* @public
|
|
9117
|
+
* @method
|
|
9118
|
+
* @override
|
|
9119
|
+
* @memberof FileEntityRecordLinkEntity
|
|
9120
|
+
* @throws {Error} - Delete is not allowed for File Entity Record Links, to enable it set AllowDeleteAPI to 1 in the database.
|
|
9121
|
+
*/
|
|
9122
|
+
Delete(): Promise<boolean>;
|
|
9123
|
+
/**
|
|
9124
|
+
* * Field Name: ID
|
|
9125
|
+
* * Display Name: ID
|
|
9126
|
+
* * SQL Data Type: int
|
|
9127
|
+
*/
|
|
9128
|
+
get ID(): number;
|
|
9129
|
+
/**
|
|
9130
|
+
* * Field Name: FileID
|
|
9131
|
+
* * Display Name: File ID
|
|
9132
|
+
* * SQL Data Type: int
|
|
9133
|
+
* * Related Entity/Foreign Key: Files (vwFiles.ID)
|
|
9134
|
+
*/
|
|
9135
|
+
get FileID(): number;
|
|
9136
|
+
set FileID(value: number);
|
|
9137
|
+
/**
|
|
9138
|
+
* * Field Name: EntityID
|
|
9139
|
+
* * Display Name: Entity ID
|
|
9140
|
+
* * SQL Data Type: int
|
|
9141
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
8890
9142
|
*/
|
|
8891
|
-
get
|
|
9143
|
+
get EntityID(): number;
|
|
9144
|
+
set EntityID(value: number);
|
|
9145
|
+
/**
|
|
9146
|
+
* * Field Name: RecordID
|
|
9147
|
+
* * Display Name: Record ID
|
|
9148
|
+
* * SQL Data Type: nvarchar(255)
|
|
9149
|
+
*/
|
|
9150
|
+
get RecordID(): string;
|
|
9151
|
+
set RecordID(value: string);
|
|
9152
|
+
/**
|
|
9153
|
+
* * Field Name: CreatedAt
|
|
9154
|
+
* * Display Name: Created At
|
|
9155
|
+
* * SQL Data Type: datetime
|
|
9156
|
+
* * Default Value: getdate()
|
|
9157
|
+
*/
|
|
9158
|
+
get CreatedAt(): Date;
|
|
9159
|
+
/**
|
|
9160
|
+
* * Field Name: UpdatedAt
|
|
9161
|
+
* * Display Name: Updated At
|
|
9162
|
+
* * SQL Data Type: datetime
|
|
9163
|
+
* * Default Value: getdate()
|
|
9164
|
+
*/
|
|
9165
|
+
get UpdatedAt(): Date;
|
|
9166
|
+
/**
|
|
9167
|
+
* * Field Name: File
|
|
9168
|
+
* * Display Name: File
|
|
9169
|
+
* * SQL Data Type: nvarchar(500)
|
|
9170
|
+
*/
|
|
9171
|
+
get File(): string;
|
|
9172
|
+
/**
|
|
9173
|
+
* * Field Name: Entity
|
|
9174
|
+
* * Display Name: Entity
|
|
9175
|
+
* * SQL Data Type: nvarchar(255)
|
|
9176
|
+
*/
|
|
9177
|
+
get Entity(): string;
|
|
8892
9178
|
}
|
|
9179
|
+
//# sourceMappingURL=entity_subclasses.d.ts.map
|