@memberjunction/core-entities 0.9.128 → 0.9.130
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.
|
@@ -152,7 +152,7 @@ export declare class EmployeeEntity extends BaseEntity {
|
|
|
152
152
|
* * Field Name: CompanyID
|
|
153
153
|
* * Display Name: Company ID
|
|
154
154
|
* * SQL Data Type: int
|
|
155
|
-
* * Related Entity: Companies
|
|
155
|
+
* * Related Entity/Foreign Key: Companies (vwCompanies.ID)
|
|
156
156
|
*/
|
|
157
157
|
get CompanyID(): number;
|
|
158
158
|
set CompanyID(value: number);
|
|
@@ -160,7 +160,7 @@ export declare class EmployeeEntity extends BaseEntity {
|
|
|
160
160
|
* * Field Name: SupervisorID
|
|
161
161
|
* * Display Name: Supervisor ID
|
|
162
162
|
* * SQL Data Type: int
|
|
163
|
-
* * Related Entity: Employees
|
|
163
|
+
* * Related Entity/Foreign Key: Employees (vwEmployees.ID)
|
|
164
164
|
*/
|
|
165
165
|
get SupervisorID(): number;
|
|
166
166
|
set SupervisorID(value: number);
|
|
@@ -241,7 +241,7 @@ export declare class UserFavoriteEntity extends BaseEntity {
|
|
|
241
241
|
* * Field Name: UserID
|
|
242
242
|
* * Display Name: User ID
|
|
243
243
|
* * SQL Data Type: int
|
|
244
|
-
* * Related Entity: Users
|
|
244
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
245
245
|
*/
|
|
246
246
|
get UserID(): number;
|
|
247
247
|
set UserID(value: number);
|
|
@@ -249,7 +249,7 @@ export declare class UserFavoriteEntity extends BaseEntity {
|
|
|
249
249
|
* * Field Name: EntityID
|
|
250
250
|
* * Display Name: Entity ID
|
|
251
251
|
* * SQL Data Type: int
|
|
252
|
-
* * Related Entity: Entities
|
|
252
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
253
253
|
*/
|
|
254
254
|
get EntityID(): number;
|
|
255
255
|
set EntityID(value: number);
|
|
@@ -333,7 +333,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
|
|
|
333
333
|
* * Field Name: EmployeeID
|
|
334
334
|
* * Display Name: Employee ID
|
|
335
335
|
* * SQL Data Type: int
|
|
336
|
-
* * Related Entity: Employees
|
|
336
|
+
* * Related Entity/Foreign Key: Employees (vwEmployees.ID)
|
|
337
337
|
*/
|
|
338
338
|
get EmployeeID(): number;
|
|
339
339
|
set EmployeeID(value: number);
|
|
@@ -341,7 +341,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
|
|
|
341
341
|
* * Field Name: CompanyIntegrationID
|
|
342
342
|
* * Display Name: Company Integration ID
|
|
343
343
|
* * SQL Data Type: int
|
|
344
|
-
* * Related Entity: Company Integrations
|
|
344
|
+
* * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)
|
|
345
345
|
*/
|
|
346
346
|
get CompanyIntegrationID(): number;
|
|
347
347
|
set CompanyIntegrationID(value: number);
|
|
@@ -417,7 +417,7 @@ export declare class EmployeeRoleEntity extends BaseEntity {
|
|
|
417
417
|
* * Field Name: EmployeeID
|
|
418
418
|
* * Display Name: Employee ID
|
|
419
419
|
* * SQL Data Type: int
|
|
420
|
-
* * Related Entity: Employees
|
|
420
|
+
* * Related Entity/Foreign Key: Employees (vwEmployees.ID)
|
|
421
421
|
*/
|
|
422
422
|
get EmployeeID(): number;
|
|
423
423
|
set EmployeeID(value: number);
|
|
@@ -425,7 +425,7 @@ export declare class EmployeeRoleEntity extends BaseEntity {
|
|
|
425
425
|
* * Field Name: RoleID
|
|
426
426
|
* * Display Name: Role ID
|
|
427
427
|
* * SQL Data Type: int
|
|
428
|
-
* * Related Entity: Roles
|
|
428
|
+
* * Related Entity/Foreign Key: Roles (vwRoles.ID)
|
|
429
429
|
*/
|
|
430
430
|
get RoleID(): number;
|
|
431
431
|
set RoleID(value: number);
|
|
@@ -492,7 +492,7 @@ export declare class EmployeeSkillEntity extends BaseEntity {
|
|
|
492
492
|
* * Field Name: EmployeeID
|
|
493
493
|
* * Display Name: Employee ID
|
|
494
494
|
* * SQL Data Type: int
|
|
495
|
-
* * Related Entity: Employees
|
|
495
|
+
* * Related Entity/Foreign Key: Employees (vwEmployees.ID)
|
|
496
496
|
*/
|
|
497
497
|
get EmployeeID(): number;
|
|
498
498
|
set EmployeeID(value: number);
|
|
@@ -500,7 +500,7 @@ export declare class EmployeeSkillEntity extends BaseEntity {
|
|
|
500
500
|
* * Field Name: SkillID
|
|
501
501
|
* * Display Name: Skill ID
|
|
502
502
|
* * SQL Data Type: int
|
|
503
|
-
* * Related Entity: Skills
|
|
503
|
+
* * Related Entity/Foreign Key: Skills (vwSkills.ID)
|
|
504
504
|
*/
|
|
505
505
|
get SkillID(): number;
|
|
506
506
|
set SkillID(value: number);
|
|
@@ -658,7 +658,7 @@ export declare class SkillEntity extends BaseEntity {
|
|
|
658
658
|
* * Field Name: ParentID
|
|
659
659
|
* * Display Name: Parent
|
|
660
660
|
* * SQL Data Type: int
|
|
661
|
-
* * Related Entity: Skills
|
|
661
|
+
* * Related Entity/Foreign Key: Skills (vwSkills.ID)
|
|
662
662
|
*/
|
|
663
663
|
get ParentID(): number;
|
|
664
664
|
set ParentID(value: number);
|
|
@@ -724,7 +724,7 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
|
|
|
724
724
|
* * Field Name: IntegrationName
|
|
725
725
|
* * Display Name: Integration Name
|
|
726
726
|
* * SQL Data Type: nvarchar(100)
|
|
727
|
-
* * Related Entity: Integrations
|
|
727
|
+
* * Related Entity/Foreign Key: Integrations (vwIntegrations.Name)
|
|
728
728
|
*/
|
|
729
729
|
get IntegrationName(): string;
|
|
730
730
|
set IntegrationName(value: string);
|
|
@@ -732,7 +732,7 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
|
|
|
732
732
|
* * Field Name: EntityID
|
|
733
733
|
* * Display Name: Entity ID
|
|
734
734
|
* * SQL Data Type: int
|
|
735
|
-
* * Related Entity: Entities
|
|
735
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
736
736
|
*/
|
|
737
737
|
get EntityID(): number;
|
|
738
738
|
set EntityID(value: number);
|
|
@@ -909,7 +909,7 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
909
909
|
* * Field Name: CompanyName
|
|
910
910
|
* * Display Name: Company Name
|
|
911
911
|
* * SQL Data Type: nvarchar(50)
|
|
912
|
-
* * Related Entity: Companies
|
|
912
|
+
* * Related Entity/Foreign Key: Companies (vwCompanies.Name)
|
|
913
913
|
*/
|
|
914
914
|
get CompanyName(): string;
|
|
915
915
|
set CompanyName(value: string);
|
|
@@ -917,7 +917,7 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
917
917
|
* * Field Name: IntegrationName
|
|
918
918
|
* * Display Name: Integration Name
|
|
919
919
|
* * SQL Data Type: nvarchar(100)
|
|
920
|
-
* * Related Entity: Integrations
|
|
920
|
+
* * Related Entity/Foreign Key: Integrations (vwIntegrations.Name)
|
|
921
921
|
*/
|
|
922
922
|
get IntegrationName(): string;
|
|
923
923
|
set IntegrationName(value: string);
|
|
@@ -1442,7 +1442,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1442
1442
|
* * Field Name: ParentID
|
|
1443
1443
|
* * Display Name: Parent ID
|
|
1444
1444
|
* * SQL Data Type: int
|
|
1445
|
-
* * Related Entity: Entities
|
|
1445
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
1446
1446
|
*/
|
|
1447
1447
|
get ParentID(): number;
|
|
1448
1448
|
set ParentID(value: number);
|
|
@@ -1973,7 +1973,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
1973
1973
|
* * Field Name: EntityID
|
|
1974
1974
|
* * Display Name: Entity ID
|
|
1975
1975
|
* * SQL Data Type: int
|
|
1976
|
-
* * Related Entity: Entities
|
|
1976
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
1977
1977
|
*/
|
|
1978
1978
|
get EntityID(): number;
|
|
1979
1979
|
set EntityID(value: number);
|
|
@@ -1981,7 +1981,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
1981
1981
|
* * Field Name: RelatedEntityID
|
|
1982
1982
|
* * Display Name: Related Entity ID
|
|
1983
1983
|
* * SQL Data Type: int
|
|
1984
|
-
* * Related Entity: Entities
|
|
1984
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
1985
1985
|
*/
|
|
1986
1986
|
get RelatedEntityID(): number;
|
|
1987
1987
|
set RelatedEntityID(value: number);
|
|
@@ -2062,7 +2062,7 @@ export declare class EntityRelationshipEntity extends BaseEntity {
|
|
|
2062
2062
|
* * Field Name: DisplayUserViewGUID
|
|
2063
2063
|
* * Display Name: Display User View GUID
|
|
2064
2064
|
* * SQL Data Type: uniqueidentifier
|
|
2065
|
-
* * Related Entity: User Views
|
|
2065
|
+
* * Related Entity/Foreign Key: User Views (vwUserViews.GUID)
|
|
2066
2066
|
*/
|
|
2067
2067
|
get DisplayUserViewGUID(): string;
|
|
2068
2068
|
/**
|
|
@@ -2186,7 +2186,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
|
|
|
2186
2186
|
* * Field Name: UserID
|
|
2187
2187
|
* * Display Name: User ID
|
|
2188
2188
|
* * SQL Data Type: int
|
|
2189
|
-
* * Related Entity: Users
|
|
2189
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
2190
2190
|
*/
|
|
2191
2191
|
get UserID(): number;
|
|
2192
2192
|
set UserID(value: number);
|
|
@@ -2194,7 +2194,7 @@ export declare class UserRecordLogEntity extends BaseEntity {
|
|
|
2194
2194
|
* * Field Name: EntityID
|
|
2195
2195
|
* * Display Name: Entity ID
|
|
2196
2196
|
* * SQL Data Type: int
|
|
2197
|
-
* * Related Entity: Entities
|
|
2197
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
2198
2198
|
*/
|
|
2199
2199
|
get EntityID(): number;
|
|
2200
2200
|
set EntityID(value: number);
|
|
@@ -2298,7 +2298,7 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2298
2298
|
* * Field Name: UserID
|
|
2299
2299
|
* * Display Name: User ID
|
|
2300
2300
|
* * SQL Data Type: int
|
|
2301
|
-
* * Related Entity: Users
|
|
2301
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
2302
2302
|
*/
|
|
2303
2303
|
get UserID(): number;
|
|
2304
2304
|
set UserID(value: number);
|
|
@@ -2329,6 +2329,14 @@ export declare class UserViewEntity extends BaseEntity {
|
|
|
2329
2329
|
get Description(): string;
|
|
2330
2330
|
set Description(value: string);
|
|
2331
2331
|
/**
|
|
2332
|
+
* * Field Name: CategoryID
|
|
2333
|
+
* * Display Name: Category ID
|
|
2334
|
+
* * SQL Data Type: int
|
|
2335
|
+
* * Related Entity/Foreign Key: User View Categories (vwUserViewCategories.ID)
|
|
2336
|
+
*/
|
|
2337
|
+
get CategoryID(): number;
|
|
2338
|
+
set CategoryID(value: number);
|
|
2339
|
+
/**
|
|
2332
2340
|
* * Field Name: IsShared
|
|
2333
2341
|
* * Display Name: Is Shared
|
|
2334
2342
|
* * SQL Data Type: bit
|
|
@@ -2509,7 +2517,7 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
|
|
|
2509
2517
|
* * Field Name: CompanyIntegrationID
|
|
2510
2518
|
* * Display Name: CompanyIntegration ID
|
|
2511
2519
|
* * SQL Data Type: int
|
|
2512
|
-
* * Related Entity: Company Integrations
|
|
2520
|
+
* * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)
|
|
2513
2521
|
*/
|
|
2514
2522
|
get CompanyIntegrationID(): number;
|
|
2515
2523
|
set CompanyIntegrationID(value: number);
|
|
@@ -2517,7 +2525,7 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
|
|
|
2517
2525
|
* * Field Name: RunByUserID
|
|
2518
2526
|
* * Display Name: RunByUser ID
|
|
2519
2527
|
* * SQL Data Type: int
|
|
2520
|
-
* * Related Entity: Users
|
|
2528
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
2521
2529
|
*/
|
|
2522
2530
|
get RunByUserID(): number;
|
|
2523
2531
|
set RunByUserID(value: number);
|
|
@@ -2596,7 +2604,7 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
|
|
|
2596
2604
|
* * Field Name: CompanyIntegrationRunID
|
|
2597
2605
|
* * Display Name: CompanyIntegrationRun ID
|
|
2598
2606
|
* * SQL Data Type: int
|
|
2599
|
-
* * Related Entity: Company Integration Runs
|
|
2607
|
+
* * Related Entity/Foreign Key: Company Integration Runs (vwCompanyIntegrationRuns.ID)
|
|
2600
2608
|
*/
|
|
2601
2609
|
get CompanyIntegrationRunID(): number;
|
|
2602
2610
|
set CompanyIntegrationRunID(value: number);
|
|
@@ -2695,7 +2703,7 @@ export declare class ErrorLogEntity extends BaseEntity {
|
|
|
2695
2703
|
* * Field Name: CompanyIntegrationRunID
|
|
2696
2704
|
* * Display Name: CompanyIntegrationRun ID
|
|
2697
2705
|
* * SQL Data Type: int
|
|
2698
|
-
* * Related Entity: Company Integration Runs
|
|
2706
|
+
* * Related Entity/Foreign Key: Company Integration Runs (vwCompanyIntegrationRuns.ID)
|
|
2699
2707
|
*/
|
|
2700
2708
|
get CompanyIntegrationRunID(): number;
|
|
2701
2709
|
set CompanyIntegrationRunID(value: number);
|
|
@@ -2703,7 +2711,7 @@ export declare class ErrorLogEntity extends BaseEntity {
|
|
|
2703
2711
|
* * Field Name: CompanyIntegrationRunDetailID
|
|
2704
2712
|
* * Display Name: CompanyIntegrationRunDetail ID
|
|
2705
2713
|
* * SQL Data Type: int
|
|
2706
|
-
* * Related Entity: Company Integration Run Details
|
|
2714
|
+
* * Related Entity/Foreign Key: Company Integration Run Details (vwCompanyIntegrationRunDetails.ID)
|
|
2707
2715
|
*/
|
|
2708
2716
|
get CompanyIntegrationRunDetailID(): number;
|
|
2709
2717
|
set CompanyIntegrationRunDetailID(value: number);
|
|
@@ -2849,7 +2857,7 @@ export declare class ApplicationEntityEntity extends BaseEntity {
|
|
|
2849
2857
|
* * Field Name: ApplicationName
|
|
2850
2858
|
* * Display Name: Application Name
|
|
2851
2859
|
* * SQL Data Type: nvarchar(50)
|
|
2852
|
-
* * Related Entity: Applications
|
|
2860
|
+
* * Related Entity/Foreign Key: Applications (vwApplications.Name)
|
|
2853
2861
|
*/
|
|
2854
2862
|
get ApplicationName(): string;
|
|
2855
2863
|
set ApplicationName(value: string);
|
|
@@ -2962,7 +2970,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
2962
2970
|
* * Field Name: RoleName
|
|
2963
2971
|
* * Display Name: Role Name
|
|
2964
2972
|
* * SQL Data Type: nvarchar(50)
|
|
2965
|
-
* * Related Entity: Roles
|
|
2973
|
+
* * Related Entity/Foreign Key: Roles (vwRoles.Name)
|
|
2966
2974
|
*/
|
|
2967
2975
|
get RoleName(): string;
|
|
2968
2976
|
set RoleName(value: string);
|
|
@@ -3002,7 +3010,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3002
3010
|
* * Field Name: ReadRLSFilterID
|
|
3003
3011
|
* * Display Name: Read RLSFilter ID
|
|
3004
3012
|
* * SQL Data Type: int
|
|
3005
|
-
* * Related Entity: Row Level Security Filters
|
|
3013
|
+
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
3006
3014
|
*/
|
|
3007
3015
|
get ReadRLSFilterID(): number;
|
|
3008
3016
|
set ReadRLSFilterID(value: number);
|
|
@@ -3010,7 +3018,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3010
3018
|
* * Field Name: CreateRLSFilterID
|
|
3011
3019
|
* * Display Name: Create RLSFilter ID
|
|
3012
3020
|
* * SQL Data Type: int
|
|
3013
|
-
* * Related Entity: Row Level Security Filters
|
|
3021
|
+
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
3014
3022
|
*/
|
|
3015
3023
|
get CreateRLSFilterID(): number;
|
|
3016
3024
|
set CreateRLSFilterID(value: number);
|
|
@@ -3018,7 +3026,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3018
3026
|
* * Field Name: UpdateRLSFilterID
|
|
3019
3027
|
* * Display Name: Update RLSFilter ID
|
|
3020
3028
|
* * SQL Data Type: int
|
|
3021
|
-
* * Related Entity: Row Level Security Filters
|
|
3029
|
+
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
3022
3030
|
*/
|
|
3023
3031
|
get UpdateRLSFilterID(): number;
|
|
3024
3032
|
set UpdateRLSFilterID(value: number);
|
|
@@ -3026,7 +3034,7 @@ export declare class EntityPermissionEntity extends BaseEntity {
|
|
|
3026
3034
|
* * Field Name: DeleteRLSFilterID
|
|
3027
3035
|
* * Display Name: Delete RLSFilter ID
|
|
3028
3036
|
* * SQL Data Type: int
|
|
3029
|
-
* * Related Entity: Row Level Security Filters
|
|
3037
|
+
* * Related Entity/Foreign Key: Row Level Security Filters (vwRowLevelSecurityFilters.ID)
|
|
3030
3038
|
*/
|
|
3031
3039
|
get DeleteRLSFilterID(): number;
|
|
3032
3040
|
set DeleteRLSFilterID(value: number);
|
|
@@ -3112,7 +3120,7 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
|
|
|
3112
3120
|
* * Field Name: UserApplicationID
|
|
3113
3121
|
* * Display Name: UserApplication ID
|
|
3114
3122
|
* * SQL Data Type: int
|
|
3115
|
-
* * Related Entity: User Applications
|
|
3123
|
+
* * Related Entity/Foreign Key: User Applications (vwUserApplications.ID)
|
|
3116
3124
|
*/
|
|
3117
3125
|
get UserApplicationID(): number;
|
|
3118
3126
|
set UserApplicationID(value: number);
|
|
@@ -3190,7 +3198,7 @@ export declare class UserApplicationEntity extends BaseEntity {
|
|
|
3190
3198
|
* * Field Name: UserID
|
|
3191
3199
|
* * Display Name: User ID
|
|
3192
3200
|
* * SQL Data Type: int
|
|
3193
|
-
* * Related Entity: Users
|
|
3201
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
3194
3202
|
*/
|
|
3195
3203
|
get UserID(): number;
|
|
3196
3204
|
set UserID(value: number);
|
|
@@ -3198,7 +3206,7 @@ export declare class UserApplicationEntity extends BaseEntity {
|
|
|
3198
3206
|
* * Field Name: ApplicationID
|
|
3199
3207
|
* * Display Name: Application ID
|
|
3200
3208
|
* * SQL Data Type: int
|
|
3201
|
-
* * Related Entity: Applications
|
|
3209
|
+
* * Related Entity/Foreign Key: Applications (vwApplications.ID)
|
|
3202
3210
|
*/
|
|
3203
3211
|
get ApplicationID(): number;
|
|
3204
3212
|
set ApplicationID(value: number);
|
|
@@ -3271,7 +3279,7 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
|
|
|
3271
3279
|
* * Field Name: CompanyIntegrationRunID
|
|
3272
3280
|
* * Display Name: Company Integration Run ID
|
|
3273
3281
|
* * SQL Data Type: int
|
|
3274
|
-
* * Related Entity: Company Integration Runs
|
|
3282
|
+
* * Related Entity/Foreign Key: Company Integration Runs (vwCompanyIntegrationRuns.ID)
|
|
3275
3283
|
*/
|
|
3276
3284
|
get CompanyIntegrationRunID(): number;
|
|
3277
3285
|
set CompanyIntegrationRunID(value: number);
|
|
@@ -3362,7 +3370,7 @@ export declare class ListEntity extends BaseEntity {
|
|
|
3362
3370
|
* * Field Name: UserID
|
|
3363
3371
|
* * Display Name: User ID
|
|
3364
3372
|
* * SQL Data Type: int
|
|
3365
|
-
* * Related Entity: Users
|
|
3373
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
3366
3374
|
*/
|
|
3367
3375
|
get UserID(): number;
|
|
3368
3376
|
set UserID(value: number);
|
|
@@ -3377,7 +3385,7 @@ export declare class ListEntity extends BaseEntity {
|
|
|
3377
3385
|
* * Field Name: CompanyIntegrationID
|
|
3378
3386
|
* * Display Name: Company Integration ID
|
|
3379
3387
|
* * SQL Data Type: int
|
|
3380
|
-
* * Related Entity: Company Integrations
|
|
3388
|
+
* * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)
|
|
3381
3389
|
*/
|
|
3382
3390
|
get CompanyIntegrationID(): number;
|
|
3383
3391
|
set CompanyIntegrationID(value: number);
|
|
@@ -3434,7 +3442,7 @@ export declare class ListDetailEntity extends BaseEntity {
|
|
|
3434
3442
|
* * Field Name: ListID
|
|
3435
3443
|
* * Display Name: List ID
|
|
3436
3444
|
* * SQL Data Type: int
|
|
3437
|
-
* * Related Entity: Lists
|
|
3445
|
+
* * Related Entity/Foreign Key: Lists (vwLists.ID)
|
|
3438
3446
|
*/
|
|
3439
3447
|
get ListID(): number;
|
|
3440
3448
|
set ListID(value: number);
|
|
@@ -3494,7 +3502,7 @@ export declare class UserViewRunEntity extends BaseEntity {
|
|
|
3494
3502
|
* * Field Name: UserViewID
|
|
3495
3503
|
* * Display Name: User View ID
|
|
3496
3504
|
* * SQL Data Type: int
|
|
3497
|
-
* * Related Entity: User Views
|
|
3505
|
+
* * Related Entity/Foreign Key: User Views (vwUserViews.ID)
|
|
3498
3506
|
*/
|
|
3499
3507
|
get UserViewID(): number;
|
|
3500
3508
|
set UserViewID(value: number);
|
|
@@ -3509,7 +3517,7 @@ export declare class UserViewRunEntity extends BaseEntity {
|
|
|
3509
3517
|
* * Field Name: RunByUserID
|
|
3510
3518
|
* * Display Name: Run By User ID
|
|
3511
3519
|
* * SQL Data Type: int
|
|
3512
|
-
* * Related Entity: Users
|
|
3520
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
3513
3521
|
*/
|
|
3514
3522
|
get RunByUserID(): number;
|
|
3515
3523
|
set RunByUserID(value: number);
|
|
@@ -3567,7 +3575,7 @@ export declare class UserViewRunDetailEntity extends BaseEntity {
|
|
|
3567
3575
|
* * Field Name: UserViewRunID
|
|
3568
3576
|
* * Display Name: User View Run ID
|
|
3569
3577
|
* * SQL Data Type: int
|
|
3570
|
-
* * Related Entity: User View Runs
|
|
3578
|
+
* * Related Entity/Foreign Key: User View Runs (vwUserViewRuns.ID)
|
|
3571
3579
|
*/
|
|
3572
3580
|
get UserViewRunID(): number;
|
|
3573
3581
|
set UserViewRunID(value: number);
|
|
@@ -3632,7 +3640,7 @@ export declare class WorkflowRunEntity extends BaseEntity {
|
|
|
3632
3640
|
* * Field Name: WorkflowName
|
|
3633
3641
|
* * Display Name: Workflow Name
|
|
3634
3642
|
* * SQL Data Type: nvarchar(100)
|
|
3635
|
-
* * Related Entity: Workflows
|
|
3643
|
+
* * Related Entity/Foreign Key: Workflows (vwWorkflows.Name)
|
|
3636
3644
|
*/
|
|
3637
3645
|
get WorkflowName(): string;
|
|
3638
3646
|
set WorkflowName(value: string);
|
|
@@ -3736,7 +3744,7 @@ export declare class WorkflowEntity extends BaseEntity {
|
|
|
3736
3744
|
* * Field Name: WorkflowEngineName
|
|
3737
3745
|
* * Display Name: Workflow Engine Name
|
|
3738
3746
|
* * SQL Data Type: nvarchar(100)
|
|
3739
|
-
* * Related Entity: Workflow Engines
|
|
3747
|
+
* * Related Entity/Foreign Key: Workflow Engines (vwWorkflowEngines.Name)
|
|
3740
3748
|
*/
|
|
3741
3749
|
get WorkflowEngineName(): string;
|
|
3742
3750
|
set WorkflowEngineName(value: string);
|
|
@@ -3744,7 +3752,7 @@ export declare class WorkflowEntity extends BaseEntity {
|
|
|
3744
3752
|
* * Field Name: CompanyName
|
|
3745
3753
|
* * Display Name: Company Name
|
|
3746
3754
|
* * SQL Data Type: nvarchar(50)
|
|
3747
|
-
* * Related Entity: Companies
|
|
3755
|
+
* * Related Entity/Foreign Key: Companies (vwCompanies.Name)
|
|
3748
3756
|
*/
|
|
3749
3757
|
get CompanyName(): string;
|
|
3750
3758
|
set CompanyName(value: string);
|
|
@@ -3889,7 +3897,7 @@ export declare class RecordChangeEntity extends BaseEntity {
|
|
|
3889
3897
|
* * Field Name: EntityID
|
|
3890
3898
|
* * Display Name: Entity ID
|
|
3891
3899
|
* * SQL Data Type: int
|
|
3892
|
-
* * Related Entity: Entities
|
|
3900
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
3893
3901
|
*/
|
|
3894
3902
|
get EntityID(): number;
|
|
3895
3903
|
set EntityID(value: number);
|
|
@@ -3904,7 +3912,7 @@ export declare class RecordChangeEntity extends BaseEntity {
|
|
|
3904
3912
|
* * Field Name: UserID
|
|
3905
3913
|
* * Display Name: User ID
|
|
3906
3914
|
* * SQL Data Type: int
|
|
3907
|
-
* * Related Entity: Users
|
|
3915
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
3908
3916
|
*/
|
|
3909
3917
|
get UserID(): number;
|
|
3910
3918
|
set UserID(value: number);
|
|
@@ -4005,7 +4013,7 @@ export declare class UserRoleEntity extends BaseEntity {
|
|
|
4005
4013
|
* * Field Name: UserID
|
|
4006
4014
|
* * Display Name: User ID
|
|
4007
4015
|
* * SQL Data Type: int
|
|
4008
|
-
* * Related Entity: Users
|
|
4016
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
4009
4017
|
*/
|
|
4010
4018
|
get UserID(): number;
|
|
4011
4019
|
set UserID(value: number);
|
|
@@ -4013,7 +4021,7 @@ export declare class UserRoleEntity extends BaseEntity {
|
|
|
4013
4021
|
* * Field Name: RoleName
|
|
4014
4022
|
* * Display Name: Role Name
|
|
4015
4023
|
* * SQL Data Type: nvarchar(50)
|
|
4016
|
-
* * Related Entity: Roles
|
|
4024
|
+
* * Related Entity/Foreign Key: Roles (vwRoles.Name)
|
|
4017
4025
|
*/
|
|
4018
4026
|
get RoleName(): string;
|
|
4019
4027
|
set RoleName(value: string);
|
|
@@ -4163,7 +4171,7 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4163
4171
|
* * Field Name: AuditLogTypeName
|
|
4164
4172
|
* * Display Name: Audit Log Type Name
|
|
4165
4173
|
* * SQL Data Type: nvarchar(50)
|
|
4166
|
-
* * Related Entity: Audit Log Types
|
|
4174
|
+
* * Related Entity/Foreign Key: Audit Log Types (vwAuditLogTypes.Name)
|
|
4167
4175
|
*/
|
|
4168
4176
|
get AuditLogTypeName(): string;
|
|
4169
4177
|
set AuditLogTypeName(value: string);
|
|
@@ -4171,7 +4179,7 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4171
4179
|
* * Field Name: UserID
|
|
4172
4180
|
* * Display Name: User ID
|
|
4173
4181
|
* * SQL Data Type: int
|
|
4174
|
-
* * Related Entity: Users
|
|
4182
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
4175
4183
|
*/
|
|
4176
4184
|
get UserID(): number;
|
|
4177
4185
|
set UserID(value: number);
|
|
@@ -4179,7 +4187,7 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4179
4187
|
* * Field Name: AuthorizationName
|
|
4180
4188
|
* * Display Name: Authorization Name
|
|
4181
4189
|
* * SQL Data Type: nvarchar(100)
|
|
4182
|
-
* * Related Entity: Authorizations
|
|
4190
|
+
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
|
|
4183
4191
|
*/
|
|
4184
4192
|
get AuthorizationName(): string;
|
|
4185
4193
|
set AuthorizationName(value: string);
|
|
@@ -4291,7 +4299,7 @@ export declare class AuthorizationEntity extends BaseEntity {
|
|
|
4291
4299
|
* * Field Name: ParentID
|
|
4292
4300
|
* * Display Name: Parent ID
|
|
4293
4301
|
* * SQL Data Type: int
|
|
4294
|
-
* * Related Entity: Authorizations
|
|
4302
|
+
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.ID)
|
|
4295
4303
|
*/
|
|
4296
4304
|
get ParentID(): number;
|
|
4297
4305
|
set ParentID(value: number);
|
|
@@ -4391,7 +4399,7 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
|
|
|
4391
4399
|
* * Field Name: AuthorizationName
|
|
4392
4400
|
* * Display Name: Authorization Name
|
|
4393
4401
|
* * SQL Data Type: nvarchar(100)
|
|
4394
|
-
* * Related Entity: Authorizations
|
|
4402
|
+
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
|
|
4395
4403
|
*/
|
|
4396
4404
|
get AuthorizationName(): string;
|
|
4397
4405
|
set AuthorizationName(value: string);
|
|
@@ -4399,7 +4407,7 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
|
|
|
4399
4407
|
* * Field Name: RoleName
|
|
4400
4408
|
* * Display Name: Role Name
|
|
4401
4409
|
* * SQL Data Type: nvarchar(50)
|
|
4402
|
-
* * Related Entity: Roles
|
|
4410
|
+
* * Related Entity/Foreign Key: Roles (vwRoles.Name)
|
|
4403
4411
|
*/
|
|
4404
4412
|
get RoleName(): string;
|
|
4405
4413
|
set RoleName(value: string);
|
|
@@ -4491,7 +4499,7 @@ export declare class AuditLogTypeEntity extends BaseEntity {
|
|
|
4491
4499
|
* * Field Name: ParentID
|
|
4492
4500
|
* * Display Name: Parent ID
|
|
4493
4501
|
* * SQL Data Type: int
|
|
4494
|
-
* * Related Entity: Audit Log Types
|
|
4502
|
+
* * Related Entity/Foreign Key: Audit Log Types (vwAuditLogTypes.ID)
|
|
4495
4503
|
*/
|
|
4496
4504
|
get ParentID(): number;
|
|
4497
4505
|
set ParentID(value: number);
|
|
@@ -4513,7 +4521,7 @@ export declare class AuditLogTypeEntity extends BaseEntity {
|
|
|
4513
4521
|
* * Field Name: AuthorizationName
|
|
4514
4522
|
* * Display Name: Authorization Name
|
|
4515
4523
|
* * SQL Data Type: nvarchar(100)
|
|
4516
|
-
* * Related Entity: Authorizations
|
|
4524
|
+
* * Related Entity/Foreign Key: Authorizations (vwAuthorizations.Name)
|
|
4517
4525
|
*/
|
|
4518
4526
|
get AuthorizationName(): string;
|
|
4519
4527
|
set AuthorizationName(value: string);
|
|
@@ -4589,7 +4597,7 @@ export declare class EntityFieldValueEntity extends BaseEntity {
|
|
|
4589
4597
|
* * Field Name: EntityID
|
|
4590
4598
|
* * Display Name: Entity ID
|
|
4591
4599
|
* * SQL Data Type: int
|
|
4592
|
-
* * Related Entity: Entity Fields
|
|
4600
|
+
* * Related Entity/Foreign Key: Entity Fields (vwEntityFields.EntityID)
|
|
4593
4601
|
*/
|
|
4594
4602
|
get EntityID(): number;
|
|
4595
4603
|
set EntityID(value: number);
|
|
@@ -4597,7 +4605,7 @@ export declare class EntityFieldValueEntity extends BaseEntity {
|
|
|
4597
4605
|
* * Field Name: EntityFieldName
|
|
4598
4606
|
* * Display Name: Entity Field Name
|
|
4599
4607
|
* * SQL Data Type: nvarchar(255)
|
|
4600
|
-
* * Related Entity: Entity Fields
|
|
4608
|
+
* * Related Entity/Foreign Key: Entity Fields (vwEntityFields.Name)
|
|
4601
4609
|
*/
|
|
4602
4610
|
get EntityFieldName(): string;
|
|
4603
4611
|
set EntityFieldName(value: string);
|
|
@@ -4706,7 +4714,7 @@ export declare class AIModelEntity extends BaseEntity {
|
|
|
4706
4714
|
* * Field Name: AIModelTypeID
|
|
4707
4715
|
* * Display Name: AI Model Type ID
|
|
4708
4716
|
* * SQL Data Type: int
|
|
4709
|
-
* * Related Entity: AI Model Types
|
|
4717
|
+
* * Related Entity/Foreign Key: AI Model Types (vwAIModelTypes.ID)
|
|
4710
4718
|
*/
|
|
4711
4719
|
get AIModelTypeID(): number;
|
|
4712
4720
|
set AIModelTypeID(value: number);
|
|
@@ -4810,7 +4818,7 @@ export declare class AIActionEntity extends BaseEntity {
|
|
|
4810
4818
|
* * Field Name: DefaultModelID
|
|
4811
4819
|
* * Display Name: Default Model ID
|
|
4812
4820
|
* * SQL Data Type: int
|
|
4813
|
-
* * Related Entity: AI Models
|
|
4821
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
4814
4822
|
*/
|
|
4815
4823
|
get DefaultModelID(): number;
|
|
4816
4824
|
set DefaultModelID(value: number);
|
|
@@ -4892,7 +4900,7 @@ export declare class AIModelActionEntity extends BaseEntity {
|
|
|
4892
4900
|
* * Field Name: AIModelID
|
|
4893
4901
|
* * Display Name: AI Model ID
|
|
4894
4902
|
* * SQL Data Type: int
|
|
4895
|
-
* * Related Entity: AI Models
|
|
4903
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
4896
4904
|
*/
|
|
4897
4905
|
get AIModelID(): number;
|
|
4898
4906
|
set AIModelID(value: number);
|
|
@@ -4900,7 +4908,7 @@ export declare class AIModelActionEntity extends BaseEntity {
|
|
|
4900
4908
|
* * Field Name: AIActionID
|
|
4901
4909
|
* * Display Name: AI Action ID
|
|
4902
4910
|
* * SQL Data Type: int
|
|
4903
|
-
* * Related Entity: AI Actions
|
|
4911
|
+
* * Related Entity/Foreign Key: AI Actions (vwAIActions.ID)
|
|
4904
4912
|
*/
|
|
4905
4913
|
get AIActionID(): number;
|
|
4906
4914
|
set AIActionID(value: number);
|
|
@@ -4981,7 +4989,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
4981
4989
|
* * Field Name: EntityID
|
|
4982
4990
|
* * Display Name: Entity ID
|
|
4983
4991
|
* * SQL Data Type: int
|
|
4984
|
-
* * Related Entity: Entities
|
|
4992
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
4985
4993
|
*/
|
|
4986
4994
|
get EntityID(): number;
|
|
4987
4995
|
set EntityID(value: number);
|
|
@@ -4989,7 +4997,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
4989
4997
|
* * Field Name: AIActionID
|
|
4990
4998
|
* * Display Name: AI Action ID
|
|
4991
4999
|
* * SQL Data Type: int
|
|
4992
|
-
* * Related Entity: AI Actions
|
|
5000
|
+
* * Related Entity/Foreign Key: AI Actions (vwAIActions.ID)
|
|
4993
5001
|
*/
|
|
4994
5002
|
get AIActionID(): number;
|
|
4995
5003
|
set AIActionID(value: number);
|
|
@@ -4997,7 +5005,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
4997
5005
|
* * Field Name: AIModelID
|
|
4998
5006
|
* * Display Name: AI Model ID
|
|
4999
5007
|
* * SQL Data Type: int
|
|
5000
|
-
* * Related Entity: AI Models
|
|
5008
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
5001
5009
|
*/
|
|
5002
5010
|
get AIModelID(): number;
|
|
5003
5011
|
set AIModelID(value: number);
|
|
@@ -5057,7 +5065,7 @@ export declare class EntityAIActionEntity extends BaseEntity {
|
|
|
5057
5065
|
* * Field Name: OutputEntityID
|
|
5058
5066
|
* * Display Name: Output Entity ID
|
|
5059
5067
|
* * SQL Data Type: int
|
|
5060
|
-
* * Related Entity: Entities
|
|
5068
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
5061
5069
|
*/
|
|
5062
5070
|
get OutputEntityID(): number;
|
|
5063
5071
|
set OutputEntityID(value: number);
|
|
@@ -5286,7 +5294,7 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
5286
5294
|
* * Field Name: QueueTypeID
|
|
5287
5295
|
* * Display Name: Queue Type ID
|
|
5288
5296
|
* * SQL Data Type: int
|
|
5289
|
-
* * Related Entity: Queue Types
|
|
5297
|
+
* * Related Entity/Foreign Key: Queue Types (vwQueueTypes.ID)
|
|
5290
5298
|
*/
|
|
5291
5299
|
get QueueTypeID(): number;
|
|
5292
5300
|
set QueueTypeID(value: number);
|
|
@@ -5446,7 +5454,7 @@ export declare class QueueTaskEntity extends BaseEntity {
|
|
|
5446
5454
|
* * Field Name: QueueID
|
|
5447
5455
|
* * Display Name: Queue ID
|
|
5448
5456
|
* * SQL Data Type: int
|
|
5449
|
-
* * Related Entity: Queues
|
|
5457
|
+
* * Related Entity/Foreign Key: Queues (vwQueues.ID)
|
|
5450
5458
|
*/
|
|
5451
5459
|
get QueueID(): number;
|
|
5452
5460
|
set QueueID(value: number);
|
|
@@ -5552,6 +5560,14 @@ export declare class DashboardEntity extends BaseEntity {
|
|
|
5552
5560
|
get Description(): string;
|
|
5553
5561
|
set Description(value: string);
|
|
5554
5562
|
/**
|
|
5563
|
+
* * Field Name: CategoryID
|
|
5564
|
+
* * Display Name: Category ID
|
|
5565
|
+
* * SQL Data Type: int
|
|
5566
|
+
* * Related Entity/Foreign Key: Dashboard Categories (vwDashboardCategories.ID)
|
|
5567
|
+
*/
|
|
5568
|
+
get CategoryID(): number;
|
|
5569
|
+
set CategoryID(value: number);
|
|
5570
|
+
/**
|
|
5555
5571
|
* * Field Name: UIConfigDetails
|
|
5556
5572
|
* * Display Name: UIConfig Details
|
|
5557
5573
|
* * SQL Data Type: nvarchar(MAX)
|
|
@@ -5562,11 +5578,18 @@ export declare class DashboardEntity extends BaseEntity {
|
|
|
5562
5578
|
* * Field Name: UserID
|
|
5563
5579
|
* * Display Name: User ID
|
|
5564
5580
|
* * SQL Data Type: int
|
|
5565
|
-
* * Related Entity: Users
|
|
5581
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
5566
5582
|
*/
|
|
5567
5583
|
get UserID(): number;
|
|
5568
5584
|
set UserID(value: number);
|
|
5569
5585
|
/**
|
|
5586
|
+
* * Field Name: Category
|
|
5587
|
+
* * Display Name: Category
|
|
5588
|
+
* * SQL Data Type: nvarchar(100)
|
|
5589
|
+
* * Default Value: null
|
|
5590
|
+
*/
|
|
5591
|
+
get Category(): string;
|
|
5592
|
+
/**
|
|
5570
5593
|
* * Field Name: User
|
|
5571
5594
|
* * Display Name: User
|
|
5572
5595
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -5810,10 +5833,18 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5810
5833
|
get Description(): string;
|
|
5811
5834
|
set Description(value: string);
|
|
5812
5835
|
/**
|
|
5836
|
+
* * Field Name: CategoryID
|
|
5837
|
+
* * Display Name: Category ID
|
|
5838
|
+
* * SQL Data Type: int
|
|
5839
|
+
* * Related Entity/Foreign Key: Report Categories (vwReportCategories.ID)
|
|
5840
|
+
*/
|
|
5841
|
+
get CategoryID(): number;
|
|
5842
|
+
set CategoryID(value: number);
|
|
5843
|
+
/**
|
|
5813
5844
|
* * Field Name: UserID
|
|
5814
5845
|
* * Display Name: User ID
|
|
5815
5846
|
* * SQL Data Type: int
|
|
5816
|
-
* * Related Entity: Users
|
|
5847
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
5817
5848
|
*/
|
|
5818
5849
|
get UserID(): number;
|
|
5819
5850
|
set UserID(value: number);
|
|
@@ -5829,7 +5860,7 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5829
5860
|
* * Field Name: ConversationID
|
|
5830
5861
|
* * Display Name: Conversation ID
|
|
5831
5862
|
* * SQL Data Type: int
|
|
5832
|
-
* * Related Entity: Conversations
|
|
5863
|
+
* * Related Entity/Foreign Key: Conversations (vwConversations.ID)
|
|
5833
5864
|
*/
|
|
5834
5865
|
get ConversationID(): number;
|
|
5835
5866
|
set ConversationID(value: number);
|
|
@@ -5837,29 +5868,30 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5837
5868
|
* * Field Name: ConversationDetailID
|
|
5838
5869
|
* * Display Name: Conversation Detail ID
|
|
5839
5870
|
* * SQL Data Type: int
|
|
5840
|
-
* * Related Entity: Conversation Details
|
|
5871
|
+
* * Related Entity/Foreign Key: Conversation Details (vwConversationDetails.ID)
|
|
5841
5872
|
*/
|
|
5842
5873
|
get ConversationDetailID(): number;
|
|
5843
5874
|
set ConversationDetailID(value: number);
|
|
5844
5875
|
/**
|
|
5845
|
-
* * Field Name:
|
|
5846
|
-
* * Display Name:
|
|
5847
|
-
* * SQL Data Type:
|
|
5876
|
+
* * Field Name: DataContextID
|
|
5877
|
+
* * Display Name: Data Context ID
|
|
5878
|
+
* * SQL Data Type: int
|
|
5879
|
+
* * Related Entity/Foreign Key: Data Contexts (vwDataContexts.ID)
|
|
5848
5880
|
*/
|
|
5849
|
-
get
|
|
5850
|
-
set
|
|
5881
|
+
get DataContextID(): number;
|
|
5882
|
+
set DataContextID(value: number);
|
|
5851
5883
|
/**
|
|
5852
|
-
* * Field Name:
|
|
5853
|
-
* * Display Name:
|
|
5884
|
+
* * Field Name: Configuration
|
|
5885
|
+
* * Display Name: Configuration
|
|
5854
5886
|
* * SQL Data Type: nvarchar(MAX)
|
|
5855
5887
|
*/
|
|
5856
|
-
get
|
|
5857
|
-
set
|
|
5888
|
+
get Configuration(): string;
|
|
5889
|
+
set Configuration(value: string);
|
|
5858
5890
|
/**
|
|
5859
5891
|
* * Field Name: OutputTriggerTypeID
|
|
5860
5892
|
* * Display Name: Output Trigger Type ID
|
|
5861
5893
|
* * SQL Data Type: int
|
|
5862
|
-
* * Related Entity: Output Trigger Types
|
|
5894
|
+
* * Related Entity/Foreign Key: Output Trigger Types (vwOutputTriggerTypes.ID)
|
|
5863
5895
|
*/
|
|
5864
5896
|
get OutputTriggerTypeID(): number;
|
|
5865
5897
|
set OutputTriggerTypeID(value: number);
|
|
@@ -5867,7 +5899,7 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5867
5899
|
* * Field Name: OutputFormatTypeID
|
|
5868
5900
|
* * Display Name: Output Format Type ID
|
|
5869
5901
|
* * SQL Data Type: int
|
|
5870
|
-
* * Related Entity: Output Format Types
|
|
5902
|
+
* * Related Entity/Foreign Key: Output Format Types (vwOutputFormatTypes.ID)
|
|
5871
5903
|
*/
|
|
5872
5904
|
get OutputFormatTypeID(): number;
|
|
5873
5905
|
set OutputFormatTypeID(value: number);
|
|
@@ -5875,7 +5907,7 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5875
5907
|
* * Field Name: OutputDeliveryTypeID
|
|
5876
5908
|
* * Display Name: Output Delivery Type ID
|
|
5877
5909
|
* * SQL Data Type: int
|
|
5878
|
-
* * Related Entity: Output Delivery Types
|
|
5910
|
+
* * Related Entity/Foreign Key: Output Delivery Types (vwOutputDeliveryTypes.ID)
|
|
5879
5911
|
*/
|
|
5880
5912
|
get OutputDeliveryTypeID(): number;
|
|
5881
5913
|
set OutputDeliveryTypeID(value: number);
|
|
@@ -5883,7 +5915,7 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5883
5915
|
* * Field Name: OutputEventID
|
|
5884
5916
|
* * Display Name: Output Event ID
|
|
5885
5917
|
* * SQL Data Type: int
|
|
5886
|
-
* * Related Entity: Output Delivery Types
|
|
5918
|
+
* * Related Entity/Foreign Key: Output Delivery Types (vwOutputDeliveryTypes.ID)
|
|
5887
5919
|
*/
|
|
5888
5920
|
get OutputEventID(): number;
|
|
5889
5921
|
set OutputEventID(value: number);
|
|
@@ -5905,7 +5937,7 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5905
5937
|
* * Field Name: OutputWorkflowID
|
|
5906
5938
|
* * Display Name: Output Workflow ID
|
|
5907
5939
|
* * SQL Data Type: int
|
|
5908
|
-
* * Related Entity: Workflows
|
|
5940
|
+
* * Related Entity/Foreign Key: Workflows (vwWorkflows.ID)
|
|
5909
5941
|
*/
|
|
5910
5942
|
get OutputWorkflowID(): number;
|
|
5911
5943
|
set OutputWorkflowID(value: number);
|
|
@@ -5924,6 +5956,13 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5924
5956
|
*/
|
|
5925
5957
|
get UpdatedAt(): Date;
|
|
5926
5958
|
/**
|
|
5959
|
+
* * Field Name: Category
|
|
5960
|
+
* * Display Name: Category
|
|
5961
|
+
* * SQL Data Type: nvarchar(100)
|
|
5962
|
+
* * Default Value: null
|
|
5963
|
+
*/
|
|
5964
|
+
get Category(): string;
|
|
5965
|
+
/**
|
|
5927
5966
|
* * Field Name: User
|
|
5928
5967
|
* * Display Name: User
|
|
5929
5968
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -5936,6 +5975,13 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
5936
5975
|
*/
|
|
5937
5976
|
get Conversation(): string;
|
|
5938
5977
|
/**
|
|
5978
|
+
* * Field Name: DataContext
|
|
5979
|
+
* * Display Name: Data Context
|
|
5980
|
+
* * SQL Data Type: nvarchar(255)
|
|
5981
|
+
* * Default Value: null
|
|
5982
|
+
*/
|
|
5983
|
+
get DataContext(): string;
|
|
5984
|
+
/**
|
|
5939
5985
|
* * Field Name: OutputTriggerType
|
|
5940
5986
|
* * Display Name: Output Trigger Type
|
|
5941
5987
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -5993,7 +6039,7 @@ export declare class ReportSnapshotEntity extends BaseEntity {
|
|
|
5993
6039
|
* * Field Name: ReportID
|
|
5994
6040
|
* * Display Name: Report ID
|
|
5995
6041
|
* * SQL Data Type: int
|
|
5996
|
-
* * Related Entity: Reports
|
|
6042
|
+
* * Related Entity/Foreign Key: Reports (vwReports.ID)
|
|
5997
6043
|
*/
|
|
5998
6044
|
get ReportID(): number;
|
|
5999
6045
|
set ReportID(value: number);
|
|
@@ -6015,7 +6061,7 @@ export declare class ReportSnapshotEntity extends BaseEntity {
|
|
|
6015
6061
|
* * Field Name: UserID
|
|
6016
6062
|
* * Display Name: User ID
|
|
6017
6063
|
* * SQL Data Type: int
|
|
6018
|
-
* * Related Entity: Users
|
|
6064
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
6019
6065
|
*/
|
|
6020
6066
|
get UserID(): number;
|
|
6021
6067
|
set UserID(value: number);
|
|
@@ -6111,7 +6157,7 @@ export declare class ResourceTypeEntity extends BaseEntity {
|
|
|
6111
6157
|
* * Field Name: EntityID
|
|
6112
6158
|
* * Display Name: Entity ID
|
|
6113
6159
|
* * SQL Data Type: int
|
|
6114
|
-
* * Related Entity: Entities
|
|
6160
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
6115
6161
|
*/
|
|
6116
6162
|
get EntityID(): number;
|
|
6117
6163
|
set EntityID(value: number);
|
|
@@ -6208,7 +6254,7 @@ export declare class TagEntity extends BaseEntity {
|
|
|
6208
6254
|
* * Field Name: ParentID
|
|
6209
6255
|
* * Display Name: Parent ID
|
|
6210
6256
|
* * SQL Data Type: int
|
|
6211
|
-
* * Related Entity: Tags
|
|
6257
|
+
* * Related Entity/Foreign Key: Tags (vwTags.ID)
|
|
6212
6258
|
*/
|
|
6213
6259
|
get ParentID(): number;
|
|
6214
6260
|
set ParentID(value: number);
|
|
@@ -6270,7 +6316,7 @@ export declare class TaggedItemEntity extends BaseEntity {
|
|
|
6270
6316
|
* * Field Name: TagID
|
|
6271
6317
|
* * Display Name: Tag ID
|
|
6272
6318
|
* * SQL Data Type: int
|
|
6273
|
-
* * Related Entity: Tags
|
|
6319
|
+
* * Related Entity/Foreign Key: Tags (vwTags.ID)
|
|
6274
6320
|
*/
|
|
6275
6321
|
get TagID(): number;
|
|
6276
6322
|
set TagID(value: number);
|
|
@@ -6342,7 +6388,7 @@ export declare class WorkspaceEntity extends BaseEntity {
|
|
|
6342
6388
|
* * Field Name: UserID
|
|
6343
6389
|
* * Display Name: User ID
|
|
6344
6390
|
* * SQL Data Type: int
|
|
6345
|
-
* * Related Entity: Users
|
|
6391
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
6346
6392
|
*/
|
|
6347
6393
|
get UserID(): number;
|
|
6348
6394
|
set UserID(value: number);
|
|
@@ -6400,7 +6446,7 @@ export declare class WorkspaceItemEntity extends BaseEntity {
|
|
|
6400
6446
|
* * Field Name: WorkSpaceID
|
|
6401
6447
|
* * Display Name: Work Space ID
|
|
6402
6448
|
* * SQL Data Type: int
|
|
6403
|
-
* * Related Entity: Workspaces
|
|
6449
|
+
* * Related Entity/Foreign Key: Workspaces (vwWorkspaces.ID)
|
|
6404
6450
|
*/
|
|
6405
6451
|
get WorkSpaceID(): number;
|
|
6406
6452
|
set WorkSpaceID(value: number);
|
|
@@ -6408,7 +6454,7 @@ export declare class WorkspaceItemEntity extends BaseEntity {
|
|
|
6408
6454
|
* * Field Name: ResourceTypeID
|
|
6409
6455
|
* * Display Name: Resource Type ID
|
|
6410
6456
|
* * SQL Data Type: int
|
|
6411
|
-
* * Related Entity: Resource Types
|
|
6457
|
+
* * Related Entity/Foreign Key: Resource Types (vwResourceTypes.ID)
|
|
6412
6458
|
*/
|
|
6413
6459
|
get ResourceTypeID(): number;
|
|
6414
6460
|
set ResourceTypeID(value: number);
|
|
@@ -6580,7 +6626,7 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
6580
6626
|
* * Field Name: DatasetName
|
|
6581
6627
|
* * Display Name: Dataset Name
|
|
6582
6628
|
* * SQL Data Type: nvarchar(50)
|
|
6583
|
-
* * Related Entity: Datasets
|
|
6629
|
+
* * Related Entity/Foreign Key: Datasets (vwDatasets.Name)
|
|
6584
6630
|
*/
|
|
6585
6631
|
get DatasetName(): string;
|
|
6586
6632
|
set DatasetName(value: string);
|
|
@@ -6596,7 +6642,7 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
6596
6642
|
* * Field Name: EntityID
|
|
6597
6643
|
* * Display Name: Entity ID
|
|
6598
6644
|
* * SQL Data Type: int
|
|
6599
|
-
* * Related Entity: Entities
|
|
6645
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
6600
6646
|
*/
|
|
6601
6647
|
get EntityID(): number;
|
|
6602
6648
|
set EntityID(value: number);
|
|
@@ -6675,7 +6721,7 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
6675
6721
|
* * Field Name: ConversationID
|
|
6676
6722
|
* * Display Name: Conversation ID
|
|
6677
6723
|
* * SQL Data Type: int
|
|
6678
|
-
* * Related Entity: Conversations
|
|
6724
|
+
* * Related Entity/Foreign Key: Conversations (vwConversations.ID)
|
|
6679
6725
|
*/
|
|
6680
6726
|
get ConversationID(): number;
|
|
6681
6727
|
set ConversationID(value: number);
|
|
@@ -6770,7 +6816,7 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
6770
6816
|
* * Field Name: UserID
|
|
6771
6817
|
* * Display Name: User ID
|
|
6772
6818
|
* * SQL Data Type: int
|
|
6773
|
-
* * Related Entity: Users
|
|
6819
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
6774
6820
|
*/
|
|
6775
6821
|
get UserID(): number;
|
|
6776
6822
|
set UserID(value: number);
|
|
@@ -6807,7 +6853,7 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
6807
6853
|
* * Field Name: LinkedEntityID
|
|
6808
6854
|
* * Display Name: Linked Entity ID
|
|
6809
6855
|
* * SQL Data Type: int
|
|
6810
|
-
* * Related Entity: Entities
|
|
6856
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
6811
6857
|
*/
|
|
6812
6858
|
get LinkedEntityID(): number;
|
|
6813
6859
|
set LinkedEntityID(value: number);
|
|
@@ -6894,7 +6940,7 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
6894
6940
|
* * Field Name: UserID
|
|
6895
6941
|
* * Display Name: User ID
|
|
6896
6942
|
* * SQL Data Type: int
|
|
6897
|
-
* * Related Entity: Users
|
|
6943
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
6898
6944
|
*/
|
|
6899
6945
|
get UserID(): number;
|
|
6900
6946
|
set UserID(value: number);
|
|
@@ -6969,109 +7015,6 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
6969
7015
|
*/
|
|
6970
7016
|
get User(): string;
|
|
6971
7017
|
}
|
|
6972
|
-
/**
|
|
6973
|
-
* Resource Folders - strongly typed entity sub-class
|
|
6974
|
-
* * Schema: admin
|
|
6975
|
-
* * Base Table: ResourceFolder
|
|
6976
|
-
* * Base View: vwResourceFolders
|
|
6977
|
-
* * Primary Key: ID
|
|
6978
|
-
* @extends {BaseEntity}
|
|
6979
|
-
* @class
|
|
6980
|
-
* @public
|
|
6981
|
-
*/
|
|
6982
|
-
export declare class ResourceFolderEntity extends BaseEntity {
|
|
6983
|
-
/**
|
|
6984
|
-
* Loads the Resource Folders record from the database
|
|
6985
|
-
* @param ID: Number - primary key value to load the Resource Folders record.
|
|
6986
|
-
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
6987
|
-
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
6988
|
-
* @public
|
|
6989
|
-
* @async
|
|
6990
|
-
* @memberof ResourceFolderEntity
|
|
6991
|
-
* @method
|
|
6992
|
-
* @override
|
|
6993
|
-
*/
|
|
6994
|
-
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
6995
|
-
/**
|
|
6996
|
-
* Resource Folders - 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.
|
|
6997
|
-
* @public
|
|
6998
|
-
* @method
|
|
6999
|
-
* @override
|
|
7000
|
-
* @memberof ResourceFolderEntity
|
|
7001
|
-
* @throws {Error} - Delete is not allowed for Resource Folders, to enable it set AllowDeleteAPI to 1 in the database.
|
|
7002
|
-
*/
|
|
7003
|
-
Delete(): Promise<boolean>;
|
|
7004
|
-
/**
|
|
7005
|
-
* * Field Name: ID
|
|
7006
|
-
* * Display Name: ID
|
|
7007
|
-
* * SQL Data Type: int
|
|
7008
|
-
*/
|
|
7009
|
-
get ID(): number;
|
|
7010
|
-
/**
|
|
7011
|
-
* * Field Name: ParentID
|
|
7012
|
-
* * Display Name: Parent ID
|
|
7013
|
-
* * SQL Data Type: int
|
|
7014
|
-
* * Related Entity: Resource Folders
|
|
7015
|
-
*/
|
|
7016
|
-
get ParentID(): number;
|
|
7017
|
-
set ParentID(value: number);
|
|
7018
|
-
/**
|
|
7019
|
-
* * Field Name: Name
|
|
7020
|
-
* * Display Name: Name
|
|
7021
|
-
* * SQL Data Type: nvarchar(50)
|
|
7022
|
-
*/
|
|
7023
|
-
get Name(): string;
|
|
7024
|
-
set Name(value: string);
|
|
7025
|
-
/**
|
|
7026
|
-
* * Field Name: ResourceTypeName
|
|
7027
|
-
* * Display Name: Resource Type Name
|
|
7028
|
-
* * SQL Data Type: nvarchar(255)
|
|
7029
|
-
* * Related Entity: Resource Types
|
|
7030
|
-
*/
|
|
7031
|
-
get ResourceTypeName(): string;
|
|
7032
|
-
set ResourceTypeName(value: string);
|
|
7033
|
-
/**
|
|
7034
|
-
* * Field Name: Description
|
|
7035
|
-
* * Display Name: Description
|
|
7036
|
-
* * SQL Data Type: nvarchar(MAX)
|
|
7037
|
-
*/
|
|
7038
|
-
get Description(): string;
|
|
7039
|
-
set Description(value: string);
|
|
7040
|
-
/**
|
|
7041
|
-
* * Field Name: UserID
|
|
7042
|
-
* * Display Name: User ID
|
|
7043
|
-
* * SQL Data Type: int
|
|
7044
|
-
* * Related Entity: Users
|
|
7045
|
-
*/
|
|
7046
|
-
get UserID(): number;
|
|
7047
|
-
set UserID(value: number);
|
|
7048
|
-
/**
|
|
7049
|
-
* * Field Name: CreatedAt
|
|
7050
|
-
* * Display Name: Created At
|
|
7051
|
-
* * SQL Data Type: datetime
|
|
7052
|
-
* * Default Value: getdate()
|
|
7053
|
-
*/
|
|
7054
|
-
get CreatedAt(): Date;
|
|
7055
|
-
/**
|
|
7056
|
-
* * Field Name: UpdatedAt
|
|
7057
|
-
* * Display Name: Updated At
|
|
7058
|
-
* * SQL Data Type: datetime
|
|
7059
|
-
* * Default Value: getdate()
|
|
7060
|
-
*/
|
|
7061
|
-
get UpdatedAt(): Date;
|
|
7062
|
-
/**
|
|
7063
|
-
* * Field Name: Parent
|
|
7064
|
-
* * Display Name: Parent
|
|
7065
|
-
* * SQL Data Type: nvarchar(50)
|
|
7066
|
-
*/
|
|
7067
|
-
get Parent(): string;
|
|
7068
|
-
/**
|
|
7069
|
-
* * Field Name: User
|
|
7070
|
-
* * Display Name: User
|
|
7071
|
-
* * SQL Data Type: nvarchar(100)
|
|
7072
|
-
*/
|
|
7073
|
-
get User(): string;
|
|
7074
|
-
}
|
|
7075
7018
|
/**
|
|
7076
7019
|
* Schema Info - strongly typed entity sub-class
|
|
7077
7020
|
* * Schema: admin
|
|
@@ -7195,7 +7138,7 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
|
|
|
7195
7138
|
* * Field Name: CompanyIntegrationID
|
|
7196
7139
|
* * Display Name: Company Integration ID
|
|
7197
7140
|
* * SQL Data Type: int
|
|
7198
|
-
* * Related Entity: Company Integrations
|
|
7141
|
+
* * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)
|
|
7199
7142
|
*/
|
|
7200
7143
|
get CompanyIntegrationID(): number;
|
|
7201
7144
|
set CompanyIntegrationID(value: number);
|
|
@@ -7277,7 +7220,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7277
7220
|
* * Field Name: EntityID
|
|
7278
7221
|
* * Display Name: Entity ID
|
|
7279
7222
|
* * SQL Data Type: int
|
|
7280
|
-
* * Related Entity: Entities
|
|
7223
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
7281
7224
|
*/
|
|
7282
7225
|
get EntityID(): number;
|
|
7283
7226
|
set EntityID(value: number);
|
|
@@ -7292,7 +7235,7 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7292
7235
|
* * Field Name: InitiatedByUserID
|
|
7293
7236
|
* * Display Name: Initiated By User ID
|
|
7294
7237
|
* * SQL Data Type: int
|
|
7295
|
-
* * Related Entity: Users
|
|
7238
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
7296
7239
|
*/
|
|
7297
7240
|
get InitiatedByUserID(): number;
|
|
7298
7241
|
set InitiatedByUserID(value: number);
|
|
@@ -7417,7 +7360,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
|
|
|
7417
7360
|
* * Field Name: RecordMergeLogID
|
|
7418
7361
|
* * Display Name: Record Merge Log ID
|
|
7419
7362
|
* * SQL Data Type: int
|
|
7420
|
-
* * Related Entity: Record Merge Logs
|
|
7363
|
+
* * Related Entity/Foreign Key: Record Merge Logs (vwRecordMergeLogs.ID)
|
|
7421
7364
|
*/
|
|
7422
7365
|
get RecordMergeLogID(): number;
|
|
7423
7366
|
set RecordMergeLogID(value: number);
|
|
@@ -7500,7 +7443,7 @@ export declare class QueryFieldEntity extends BaseEntity {
|
|
|
7500
7443
|
* * Field Name: QueryID
|
|
7501
7444
|
* * Display Name: Query ID
|
|
7502
7445
|
* * SQL Data Type: int
|
|
7503
|
-
* * Related Entity: Queries
|
|
7446
|
+
* * Related Entity/Foreign Key: Queries (vwQueries.ID)
|
|
7504
7447
|
*/
|
|
7505
7448
|
get QueryID(): number;
|
|
7506
7449
|
set QueryID(value: number);
|
|
@@ -7655,7 +7598,7 @@ export declare class QueryCategoryEntity extends BaseEntity {
|
|
|
7655
7598
|
* * Field Name: ParentID
|
|
7656
7599
|
* * Display Name: Parent ID
|
|
7657
7600
|
* * SQL Data Type: int
|
|
7658
|
-
* * Related Entity: Query Categories
|
|
7601
|
+
* * Related Entity/Foreign Key: Query Categories (vwQueryCategories.ID)
|
|
7659
7602
|
*/
|
|
7660
7603
|
get ParentID(): number;
|
|
7661
7604
|
set ParentID(value: number);
|
|
@@ -7743,7 +7686,7 @@ export declare class QueryEntity extends BaseEntity {
|
|
|
7743
7686
|
* * Field Name: CategoryID
|
|
7744
7687
|
* * Display Name: Category ID
|
|
7745
7688
|
* * SQL Data Type: int
|
|
7746
|
-
* * Related Entity: Query Categories
|
|
7689
|
+
* * Related Entity/Foreign Key: Query Categories (vwQueryCategories.ID)
|
|
7747
7690
|
*/
|
|
7748
7691
|
get CategoryID(): number;
|
|
7749
7692
|
set CategoryID(value: number);
|
|
@@ -7847,7 +7790,7 @@ export declare class QueryPermissionEntity extends BaseEntity {
|
|
|
7847
7790
|
* * Field Name: QueryID
|
|
7848
7791
|
* * Display Name: Query ID
|
|
7849
7792
|
* * SQL Data Type: int
|
|
7850
|
-
* * Related Entity: Queries
|
|
7793
|
+
* * Related Entity/Foreign Key: Queries (vwQueries.ID)
|
|
7851
7794
|
*/
|
|
7852
7795
|
get QueryID(): number;
|
|
7853
7796
|
set QueryID(value: number);
|
|
@@ -7855,7 +7798,7 @@ export declare class QueryPermissionEntity extends BaseEntity {
|
|
|
7855
7798
|
* * Field Name: RoleName
|
|
7856
7799
|
* * Display Name: Role Name
|
|
7857
7800
|
* * SQL Data Type: nvarchar(50)
|
|
7858
|
-
* * Related Entity: Roles
|
|
7801
|
+
* * Related Entity/Foreign Key: Roles (vwRoles.Name)
|
|
7859
7802
|
*/
|
|
7860
7803
|
get RoleName(): string;
|
|
7861
7804
|
set RoleName(value: string);
|
|
@@ -7930,7 +7873,7 @@ export declare class VectorIndexEntity extends BaseEntity {
|
|
|
7930
7873
|
* * Field Name: VectorDatabaseID
|
|
7931
7874
|
* * Display Name: Vector Database ID
|
|
7932
7875
|
* * SQL Data Type: int
|
|
7933
|
-
* * Related Entity: Vector Databases
|
|
7876
|
+
* * Related Entity/Foreign Key: Vector Databases (vwVectorDatabases.ID)
|
|
7934
7877
|
*/
|
|
7935
7878
|
get VectorDatabaseID(): number;
|
|
7936
7879
|
set VectorDatabaseID(value: number);
|
|
@@ -7938,7 +7881,7 @@ export declare class VectorIndexEntity extends BaseEntity {
|
|
|
7938
7881
|
* * Field Name: EmbeddingModelID
|
|
7939
7882
|
* * Display Name: Embedding Model ID
|
|
7940
7883
|
* * SQL Data Type: int
|
|
7941
|
-
* * Related Entity: AI Models
|
|
7884
|
+
* * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
|
|
7942
7885
|
*/
|
|
7943
7886
|
get EmbeddingModelID(): number;
|
|
7944
7887
|
set EmbeddingModelID(value: number);
|
|
@@ -8078,7 +8021,7 @@ export declare class EntityDocumentRunEntity extends BaseEntity {
|
|
|
8078
8021
|
* * Field Name: EntityDocumentID
|
|
8079
8022
|
* * Display Name: Entity Document ID
|
|
8080
8023
|
* * SQL Data Type: int
|
|
8081
|
-
* * Related Entity: Entity Documents
|
|
8024
|
+
* * Related Entity/Foreign Key: Entity Documents (vwEntityDocuments.ID)
|
|
8082
8025
|
*/
|
|
8083
8026
|
get EntityDocumentID(): number;
|
|
8084
8027
|
set EntityDocumentID(value: number);
|
|
@@ -8365,7 +8308,7 @@ export declare class EntityDocumentEntity extends BaseEntity {
|
|
|
8365
8308
|
* * Field Name: TypeID
|
|
8366
8309
|
* * Display Name: Type ID
|
|
8367
8310
|
* * SQL Data Type: int
|
|
8368
|
-
* * Related Entity: Entity Document Types
|
|
8311
|
+
* * Related Entity/Foreign Key: Entity Document Types (vwEntityDocumentTypes.ID)
|
|
8369
8312
|
*/
|
|
8370
8313
|
get TypeID(): number;
|
|
8371
8314
|
set TypeID(value: number);
|
|
@@ -8448,7 +8391,7 @@ export declare class DataContextItemEntity extends BaseEntity {
|
|
|
8448
8391
|
* * Field Name: DataContextID
|
|
8449
8392
|
* * Display Name: Data Context ID
|
|
8450
8393
|
* * SQL Data Type: int
|
|
8451
|
-
* * Related Entity: Data Contexts
|
|
8394
|
+
* * Related Entity/Foreign Key: Data Contexts (vwDataContexts.ID)
|
|
8452
8395
|
* * Description: Foreign key to the DataContext table
|
|
8453
8396
|
*/
|
|
8454
8397
|
get DataContextID(): number;
|
|
@@ -8465,7 +8408,7 @@ export declare class DataContextItemEntity extends BaseEntity {
|
|
|
8465
8408
|
* * Field Name: ViewID
|
|
8466
8409
|
* * Display Name: View ID
|
|
8467
8410
|
* * SQL Data Type: int
|
|
8468
|
-
* * Related Entity: User Views
|
|
8411
|
+
* * Related Entity/Foreign Key: User Views (vwUserViews.ID)
|
|
8469
8412
|
* * Description: Only used if Type='view'
|
|
8470
8413
|
*/
|
|
8471
8414
|
get ViewID(): number;
|
|
@@ -8474,7 +8417,7 @@ export declare class DataContextItemEntity extends BaseEntity {
|
|
|
8474
8417
|
* * Field Name: QueryID
|
|
8475
8418
|
* * Display Name: Query ID
|
|
8476
8419
|
* * SQL Data Type: int
|
|
8477
|
-
* * Related Entity: Queries
|
|
8420
|
+
* * Related Entity/Foreign Key: Queries (vwQueries.ID)
|
|
8478
8421
|
* * Description: Only used if Type='query'
|
|
8479
8422
|
*/
|
|
8480
8423
|
get QueryID(): number;
|
|
@@ -8602,7 +8545,7 @@ export declare class DataContextEntity extends BaseEntity {
|
|
|
8602
8545
|
* * Field Name: UserID
|
|
8603
8546
|
* * Display Name: User ID
|
|
8604
8547
|
* * SQL Data Type: int
|
|
8605
|
-
* * Related Entity: Users
|
|
8548
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
8606
8549
|
*/
|
|
8607
8550
|
get UserID(): number;
|
|
8608
8551
|
set UserID(value: number);
|
|
@@ -8641,3 +8584,249 @@ export declare class DataContextEntity extends BaseEntity {
|
|
|
8641
8584
|
*/
|
|
8642
8585
|
get User(): string;
|
|
8643
8586
|
}
|
|
8587
|
+
/**
|
|
8588
|
+
* User View Categories - strongly typed entity sub-class
|
|
8589
|
+
* * Schema: admin
|
|
8590
|
+
* * Base Table: UserViewCategory
|
|
8591
|
+
* * Base View: vwUserViewCategories
|
|
8592
|
+
* * Primary Key: ID
|
|
8593
|
+
* @extends {BaseEntity}
|
|
8594
|
+
* @class
|
|
8595
|
+
* @public
|
|
8596
|
+
*/
|
|
8597
|
+
export declare class UserViewCategoryEntity extends BaseEntity {
|
|
8598
|
+
/**
|
|
8599
|
+
* Loads the User View Categories record from the database
|
|
8600
|
+
* @param ID: Number - primary key value to load the User View Categories record.
|
|
8601
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8602
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8603
|
+
* @public
|
|
8604
|
+
* @async
|
|
8605
|
+
* @memberof UserViewCategoryEntity
|
|
8606
|
+
* @method
|
|
8607
|
+
* @override
|
|
8608
|
+
*/
|
|
8609
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
8610
|
+
/**
|
|
8611
|
+
* 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.
|
|
8612
|
+
* @public
|
|
8613
|
+
* @method
|
|
8614
|
+
* @override
|
|
8615
|
+
* @memberof UserViewCategoryEntity
|
|
8616
|
+
* @throws {Error} - Delete is not allowed for User View Categories, to enable it set AllowDeleteAPI to 1 in the database.
|
|
8617
|
+
*/
|
|
8618
|
+
Delete(): Promise<boolean>;
|
|
8619
|
+
/**
|
|
8620
|
+
* * Field Name: ID
|
|
8621
|
+
* * Display Name: ID
|
|
8622
|
+
* * SQL Data Type: int
|
|
8623
|
+
*/
|
|
8624
|
+
get ID(): number;
|
|
8625
|
+
/**
|
|
8626
|
+
* * Field Name: Name
|
|
8627
|
+
* * Display Name: Name
|
|
8628
|
+
* * SQL Data Type: nvarchar(100)
|
|
8629
|
+
*/
|
|
8630
|
+
get Name(): string;
|
|
8631
|
+
set Name(value: string);
|
|
8632
|
+
/**
|
|
8633
|
+
* * Field Name: Description
|
|
8634
|
+
* * Display Name: Description
|
|
8635
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
8636
|
+
*/
|
|
8637
|
+
get Description(): string;
|
|
8638
|
+
set Description(value: string);
|
|
8639
|
+
/**
|
|
8640
|
+
* * Field Name: ParentID
|
|
8641
|
+
* * Display Name: Parent ID
|
|
8642
|
+
* * SQL Data Type: int
|
|
8643
|
+
* * Related Entity/Foreign Key: User View Categories (vwUserViewCategories.ID)
|
|
8644
|
+
*/
|
|
8645
|
+
get ParentID(): number;
|
|
8646
|
+
set ParentID(value: number);
|
|
8647
|
+
/**
|
|
8648
|
+
* * Field Name: CreatedAt
|
|
8649
|
+
* * Display Name: Created At
|
|
8650
|
+
* * SQL Data Type: datetime
|
|
8651
|
+
* * Default Value: getdate()
|
|
8652
|
+
*/
|
|
8653
|
+
get CreatedAt(): Date;
|
|
8654
|
+
/**
|
|
8655
|
+
* * Field Name: UpdatedAt
|
|
8656
|
+
* * Display Name: Updated At
|
|
8657
|
+
* * SQL Data Type: datetime
|
|
8658
|
+
* * Default Value: getdate()
|
|
8659
|
+
*/
|
|
8660
|
+
get UpdatedAt(): Date;
|
|
8661
|
+
/**
|
|
8662
|
+
* * Field Name: Parent
|
|
8663
|
+
* * Display Name: Parent
|
|
8664
|
+
* * SQL Data Type: nvarchar(100)
|
|
8665
|
+
* * Default Value: null
|
|
8666
|
+
*/
|
|
8667
|
+
get Parent(): string;
|
|
8668
|
+
}
|
|
8669
|
+
/**
|
|
8670
|
+
* Dashboard Categories - strongly typed entity sub-class
|
|
8671
|
+
* * Schema: admin
|
|
8672
|
+
* * Base Table: DashboardCategory
|
|
8673
|
+
* * Base View: vwDashboardCategories
|
|
8674
|
+
* * Primary Key: ID
|
|
8675
|
+
* @extends {BaseEntity}
|
|
8676
|
+
* @class
|
|
8677
|
+
* @public
|
|
8678
|
+
*/
|
|
8679
|
+
export declare class DashboardCategoryEntity extends BaseEntity {
|
|
8680
|
+
/**
|
|
8681
|
+
* Loads the Dashboard Categories record from the database
|
|
8682
|
+
* @param ID: Number - primary key value to load the Dashboard Categories record.
|
|
8683
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8684
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8685
|
+
* @public
|
|
8686
|
+
* @async
|
|
8687
|
+
* @memberof DashboardCategoryEntity
|
|
8688
|
+
* @method
|
|
8689
|
+
* @override
|
|
8690
|
+
*/
|
|
8691
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
8692
|
+
/**
|
|
8693
|
+
* 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.
|
|
8694
|
+
* @public
|
|
8695
|
+
* @method
|
|
8696
|
+
* @override
|
|
8697
|
+
* @memberof DashboardCategoryEntity
|
|
8698
|
+
* @throws {Error} - Delete is not allowed for Dashboard Categories, to enable it set AllowDeleteAPI to 1 in the database.
|
|
8699
|
+
*/
|
|
8700
|
+
Delete(): Promise<boolean>;
|
|
8701
|
+
/**
|
|
8702
|
+
* * Field Name: ID
|
|
8703
|
+
* * Display Name: ID
|
|
8704
|
+
* * SQL Data Type: int
|
|
8705
|
+
*/
|
|
8706
|
+
get ID(): number;
|
|
8707
|
+
/**
|
|
8708
|
+
* * Field Name: Name
|
|
8709
|
+
* * Display Name: Name
|
|
8710
|
+
* * SQL Data Type: nvarchar(100)
|
|
8711
|
+
*/
|
|
8712
|
+
get Name(): string;
|
|
8713
|
+
set Name(value: string);
|
|
8714
|
+
/**
|
|
8715
|
+
* * Field Name: Description
|
|
8716
|
+
* * Display Name: Description
|
|
8717
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
8718
|
+
*/
|
|
8719
|
+
get Description(): string;
|
|
8720
|
+
set Description(value: string);
|
|
8721
|
+
/**
|
|
8722
|
+
* * Field Name: ParentID
|
|
8723
|
+
* * Display Name: Parent ID
|
|
8724
|
+
* * SQL Data Type: int
|
|
8725
|
+
* * Related Entity/Foreign Key: Dashboard Categories (vwDashboardCategories.ID)
|
|
8726
|
+
*/
|
|
8727
|
+
get ParentID(): number;
|
|
8728
|
+
set ParentID(value: number);
|
|
8729
|
+
/**
|
|
8730
|
+
* * Field Name: CreatedAt
|
|
8731
|
+
* * Display Name: Created At
|
|
8732
|
+
* * SQL Data Type: datetime
|
|
8733
|
+
* * Default Value: getdate()
|
|
8734
|
+
*/
|
|
8735
|
+
get CreatedAt(): Date;
|
|
8736
|
+
/**
|
|
8737
|
+
* * Field Name: UpdatedAt
|
|
8738
|
+
* * Display Name: Updated At
|
|
8739
|
+
* * SQL Data Type: datetime
|
|
8740
|
+
* * Default Value: getdate()
|
|
8741
|
+
*/
|
|
8742
|
+
get UpdatedAt(): Date;
|
|
8743
|
+
/**
|
|
8744
|
+
* * Field Name: Parent
|
|
8745
|
+
* * Display Name: Parent
|
|
8746
|
+
* * SQL Data Type: nvarchar(100)
|
|
8747
|
+
* * Default Value: null
|
|
8748
|
+
*/
|
|
8749
|
+
get Parent(): string;
|
|
8750
|
+
}
|
|
8751
|
+
/**
|
|
8752
|
+
* Report Categories - strongly typed entity sub-class
|
|
8753
|
+
* * Schema: admin
|
|
8754
|
+
* * Base Table: ReportCategory
|
|
8755
|
+
* * Base View: vwReportCategories
|
|
8756
|
+
* * Primary Key: ID
|
|
8757
|
+
* @extends {BaseEntity}
|
|
8758
|
+
* @class
|
|
8759
|
+
* @public
|
|
8760
|
+
*/
|
|
8761
|
+
export declare class ReportCategoryEntity extends BaseEntity {
|
|
8762
|
+
/**
|
|
8763
|
+
* Loads the Report Categories record from the database
|
|
8764
|
+
* @param ID: Number - primary key value to load the Report Categories record.
|
|
8765
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
8766
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
8767
|
+
* @public
|
|
8768
|
+
* @async
|
|
8769
|
+
* @memberof ReportCategoryEntity
|
|
8770
|
+
* @method
|
|
8771
|
+
* @override
|
|
8772
|
+
*/
|
|
8773
|
+
Load(ID: Number, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
8774
|
+
/**
|
|
8775
|
+
* Report Categories - AllowDeleteAPI is set to 0 in the database. Delete is not allowed, so this method is generated to override the base class method and throw an error. To enable delete for this entity, set AllowDeleteAPI to 1 in the database.
|
|
8776
|
+
* @public
|
|
8777
|
+
* @method
|
|
8778
|
+
* @override
|
|
8779
|
+
* @memberof ReportCategoryEntity
|
|
8780
|
+
* @throws {Error} - Delete is not allowed for Report Categories, to enable it set AllowDeleteAPI to 1 in the database.
|
|
8781
|
+
*/
|
|
8782
|
+
Delete(): Promise<boolean>;
|
|
8783
|
+
/**
|
|
8784
|
+
* * Field Name: ID
|
|
8785
|
+
* * Display Name: ID
|
|
8786
|
+
* * SQL Data Type: int
|
|
8787
|
+
*/
|
|
8788
|
+
get ID(): number;
|
|
8789
|
+
/**
|
|
8790
|
+
* * Field Name: Name
|
|
8791
|
+
* * Display Name: Name
|
|
8792
|
+
* * SQL Data Type: nvarchar(100)
|
|
8793
|
+
*/
|
|
8794
|
+
get Name(): string;
|
|
8795
|
+
set Name(value: string);
|
|
8796
|
+
/**
|
|
8797
|
+
* * Field Name: Description
|
|
8798
|
+
* * Display Name: Description
|
|
8799
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
8800
|
+
*/
|
|
8801
|
+
get Description(): string;
|
|
8802
|
+
set Description(value: string);
|
|
8803
|
+
/**
|
|
8804
|
+
* * Field Name: ParentID
|
|
8805
|
+
* * Display Name: Parent ID
|
|
8806
|
+
* * SQL Data Type: int
|
|
8807
|
+
* * Related Entity/Foreign Key: Report Categories (vwReportCategories.ID)
|
|
8808
|
+
*/
|
|
8809
|
+
get ParentID(): number;
|
|
8810
|
+
set ParentID(value: number);
|
|
8811
|
+
/**
|
|
8812
|
+
* * Field Name: CreatedAt
|
|
8813
|
+
* * Display Name: Created At
|
|
8814
|
+
* * SQL Data Type: datetime
|
|
8815
|
+
* * Default Value: getdate()
|
|
8816
|
+
*/
|
|
8817
|
+
get CreatedAt(): Date;
|
|
8818
|
+
/**
|
|
8819
|
+
* * Field Name: UpdatedAt
|
|
8820
|
+
* * Display Name: Updated At
|
|
8821
|
+
* * SQL Data Type: datetime
|
|
8822
|
+
* * Default Value: getdate()
|
|
8823
|
+
*/
|
|
8824
|
+
get UpdatedAt(): Date;
|
|
8825
|
+
/**
|
|
8826
|
+
* * Field Name: Parent
|
|
8827
|
+
* * Display Name: Parent
|
|
8828
|
+
* * SQL Data Type: nvarchar(100)
|
|
8829
|
+
* * Default Value: null
|
|
8830
|
+
*/
|
|
8831
|
+
get Parent(): string;
|
|
8832
|
+
}
|