@memberjunction/core-entities 1.8.0 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -262,28 +262,28 @@ export declare class UserFavoriteEntity extends BaseEntity {
|
|
|
262
262
|
get RecordID(): string;
|
|
263
263
|
set RecordID(value: string);
|
|
264
264
|
/**
|
|
265
|
-
* * Field Name:
|
|
265
|
+
* * Field Name: __mj_CreatedAt
|
|
266
266
|
* * Display Name: Created At
|
|
267
|
-
* * SQL Data Type:
|
|
268
|
-
* * Default Value: getdate()
|
|
267
|
+
* * SQL Data Type: datetimeoffset
|
|
269
268
|
*/
|
|
270
|
-
get
|
|
269
|
+
get __mj_CreatedAt(): Date;
|
|
271
270
|
/**
|
|
272
|
-
* * Field Name:
|
|
271
|
+
* * Field Name: __mj_UpdatedAt
|
|
273
272
|
* * Display Name: Updated At
|
|
274
|
-
* * SQL Data Type:
|
|
275
|
-
* * Default Value: getdate()
|
|
273
|
+
* * SQL Data Type: datetimeoffset
|
|
276
274
|
*/
|
|
277
|
-
get
|
|
275
|
+
get __mj_UpdatedAt(): Date;
|
|
278
276
|
/**
|
|
279
277
|
* * Field Name: Entity
|
|
280
278
|
* * SQL Data Type: nvarchar(255)
|
|
279
|
+
* * Default Value: getutcdate()
|
|
281
280
|
*/
|
|
282
281
|
get Entity(): string;
|
|
283
282
|
/**
|
|
284
283
|
* * Field Name: EntityBaseTable
|
|
285
284
|
* * Display Name: Entity Base Table
|
|
286
285
|
* * SQL Data Type: nvarchar(255)
|
|
286
|
+
* * Default Value: getutcdate()
|
|
287
287
|
*/
|
|
288
288
|
get EntityBaseTable(): string;
|
|
289
289
|
/**
|
|
@@ -362,19 +362,17 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity {
|
|
|
362
362
|
get IsActive(): boolean;
|
|
363
363
|
set IsActive(value: boolean);
|
|
364
364
|
/**
|
|
365
|
-
* * Field Name:
|
|
365
|
+
* * Field Name: __mj_CreatedAt
|
|
366
366
|
* * Display Name: Created At
|
|
367
|
-
* * SQL Data Type:
|
|
368
|
-
* * Default Value: getdate()
|
|
367
|
+
* * SQL Data Type: datetimeoffset
|
|
369
368
|
*/
|
|
370
|
-
get
|
|
369
|
+
get __mj_CreatedAt(): Date;
|
|
371
370
|
/**
|
|
372
|
-
* * Field Name:
|
|
371
|
+
* * Field Name: __mj_UpdatedAt
|
|
373
372
|
* * Display Name: Updated At
|
|
374
|
-
* * SQL Data Type:
|
|
375
|
-
* * Default Value: getdate()
|
|
373
|
+
* * SQL Data Type: datetimeoffset
|
|
376
374
|
*/
|
|
377
|
-
get
|
|
375
|
+
get __mj_UpdatedAt(): Date;
|
|
378
376
|
}
|
|
379
377
|
/**
|
|
380
378
|
* Employee Roles - strongly typed entity sub-class
|
|
@@ -656,23 +654,22 @@ export declare class SkillEntity extends BaseEntity {
|
|
|
656
654
|
get ParentID(): number | null;
|
|
657
655
|
set ParentID(value: number | null);
|
|
658
656
|
/**
|
|
659
|
-
* * Field Name:
|
|
657
|
+
* * Field Name: __mj_CreatedAt
|
|
660
658
|
* * Display Name: Created At
|
|
661
|
-
* * SQL Data Type:
|
|
662
|
-
* * Default Value: getdate()
|
|
659
|
+
* * SQL Data Type: datetimeoffset
|
|
663
660
|
*/
|
|
664
|
-
get
|
|
661
|
+
get __mj_CreatedAt(): Date;
|
|
665
662
|
/**
|
|
666
|
-
* * Field Name:
|
|
663
|
+
* * Field Name: __mj_UpdatedAt
|
|
667
664
|
* * Display Name: Updated At
|
|
668
|
-
* * SQL Data Type:
|
|
669
|
-
* * Default Value: getdate()
|
|
665
|
+
* * SQL Data Type: datetimeoffset
|
|
670
666
|
*/
|
|
671
|
-
get
|
|
667
|
+
get __mj_UpdatedAt(): Date;
|
|
672
668
|
/**
|
|
673
669
|
* * Field Name: Parent
|
|
674
670
|
* * Display Name: Parent
|
|
675
671
|
* * SQL Data Type: nvarchar(50)
|
|
672
|
+
* * Default Value: getutcdate()
|
|
676
673
|
*/
|
|
677
674
|
get Parent(): string | null;
|
|
678
675
|
}
|
|
@@ -737,6 +734,20 @@ export declare class IntegrationURLFormatEntity extends BaseEntity {
|
|
|
737
734
|
get URLFormat(): string;
|
|
738
735
|
set URLFormat(value: string);
|
|
739
736
|
/**
|
|
737
|
+
* * Field Name: __mj_CreatedAt
|
|
738
|
+
* * Display Name: Created At
|
|
739
|
+
* * SQL Data Type: datetimeoffset
|
|
740
|
+
* * Default Value: getutcdate()
|
|
741
|
+
*/
|
|
742
|
+
get __mj_CreatedAt(): Date;
|
|
743
|
+
/**
|
|
744
|
+
* * Field Name: __mj_UpdatedAt
|
|
745
|
+
* * Display Name: Updated At
|
|
746
|
+
* * SQL Data Type: datetimeoffset
|
|
747
|
+
* * Default Value: getutcdate()
|
|
748
|
+
*/
|
|
749
|
+
get __mj_UpdatedAt(): Date;
|
|
750
|
+
/**
|
|
740
751
|
* * Field Name: IntegrationID
|
|
741
752
|
* * Display Name: Integration ID
|
|
742
753
|
* * SQL Data Type: int
|
|
@@ -849,19 +860,17 @@ export declare class IntegrationEntity extends BaseEntity {
|
|
|
849
860
|
get BatchRequestWaitTime(): number;
|
|
850
861
|
set BatchRequestWaitTime(value: number);
|
|
851
862
|
/**
|
|
852
|
-
* * Field Name:
|
|
863
|
+
* * Field Name: __mj_CreatedAt
|
|
853
864
|
* * Display Name: Created At
|
|
854
|
-
* * SQL Data Type:
|
|
855
|
-
* * Default Value: getdate()
|
|
865
|
+
* * SQL Data Type: datetimeoffset
|
|
856
866
|
*/
|
|
857
|
-
get
|
|
867
|
+
get __mj_CreatedAt(): Date;
|
|
858
868
|
/**
|
|
859
|
-
* * Field Name:
|
|
869
|
+
* * Field Name: __mj_UpdatedAt
|
|
860
870
|
* * Display Name: Updated At
|
|
861
|
-
* * SQL Data Type:
|
|
862
|
-
* * Default Value: getdate()
|
|
871
|
+
* * SQL Data Type: datetimeoffset
|
|
863
872
|
*/
|
|
864
|
-
get
|
|
873
|
+
get __mj_UpdatedAt(): Date;
|
|
865
874
|
}
|
|
866
875
|
/**
|
|
867
876
|
* Company Integrations - strongly typed entity sub-class
|
|
@@ -952,20 +961,6 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
952
961
|
get APIKey(): string | null;
|
|
953
962
|
set APIKey(value: string | null);
|
|
954
963
|
/**
|
|
955
|
-
* * Field Name: CreatedAt
|
|
956
|
-
* * Display Name: Created At
|
|
957
|
-
* * SQL Data Type: datetime
|
|
958
|
-
* * Default Value: getdate()
|
|
959
|
-
*/
|
|
960
|
-
get CreatedAt(): Date;
|
|
961
|
-
/**
|
|
962
|
-
* * Field Name: UpdatedAt
|
|
963
|
-
* * Display Name: Updated At
|
|
964
|
-
* * SQL Data Type: datetime
|
|
965
|
-
* * Default Value: getdate()
|
|
966
|
-
*/
|
|
967
|
-
get UpdatedAt(): Date;
|
|
968
|
-
/**
|
|
969
964
|
* * Field Name: ExternalSystemID
|
|
970
965
|
* * Display Name: ExternalSystem
|
|
971
966
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -976,7 +971,6 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
976
971
|
* * Field Name: IsExternalSystemReadOnly
|
|
977
972
|
* * Display Name: Is External System Read Only
|
|
978
973
|
* * SQL Data Type: bit
|
|
979
|
-
* * Default Value: 0
|
|
980
974
|
*/
|
|
981
975
|
get IsExternalSystemReadOnly(): boolean;
|
|
982
976
|
set IsExternalSystemReadOnly(value: boolean);
|
|
@@ -991,6 +985,7 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
991
985
|
* * Field Name: ClientSecret
|
|
992
986
|
* * Display Name: Client Secret
|
|
993
987
|
* * SQL Data Type: nvarchar(255)
|
|
988
|
+
* * Default Value: 0
|
|
994
989
|
*/
|
|
995
990
|
get ClientSecret(): string | null;
|
|
996
991
|
set ClientSecret(value: string | null);
|
|
@@ -1002,15 +997,29 @@ export declare class CompanyIntegrationEntity extends BaseEntity {
|
|
|
1002
997
|
get CustomAttribute1(): string | null;
|
|
1003
998
|
set CustomAttribute1(value: string | null);
|
|
1004
999
|
/**
|
|
1000
|
+
* * Field Name: __mj_CreatedAt
|
|
1001
|
+
* * Display Name: Created At
|
|
1002
|
+
* * SQL Data Type: datetimeoffset
|
|
1003
|
+
*/
|
|
1004
|
+
get __mj_CreatedAt(): Date;
|
|
1005
|
+
/**
|
|
1006
|
+
* * Field Name: __mj_UpdatedAt
|
|
1007
|
+
* * Display Name: Updated At
|
|
1008
|
+
* * SQL Data Type: datetimeoffset
|
|
1009
|
+
*/
|
|
1010
|
+
get __mj_UpdatedAt(): Date;
|
|
1011
|
+
/**
|
|
1005
1012
|
* * Field Name: CompanyID
|
|
1006
1013
|
* * Display Name: Company ID
|
|
1007
1014
|
* * SQL Data Type: int
|
|
1015
|
+
* * Default Value: getutcdate()
|
|
1008
1016
|
*/
|
|
1009
1017
|
get CompanyID(): number;
|
|
1010
1018
|
/**
|
|
1011
1019
|
* * Field Name: IntegrationID
|
|
1012
1020
|
* * Display Name: Integration ID
|
|
1013
1021
|
* * SQL Data Type: int
|
|
1022
|
+
* * Default Value: getutcdate()
|
|
1014
1023
|
*/
|
|
1015
1024
|
get IntegrationID(): number;
|
|
1016
1025
|
/**
|
|
@@ -1856,6 +1865,19 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1856
1865
|
*/
|
|
1857
1866
|
get __mj_UpdatedAt(): Date;
|
|
1858
1867
|
/**
|
|
1868
|
+
* * Field Name: RelationshipDefaultDisplayType
|
|
1869
|
+
* * Display Name: Relationship Default Display Type
|
|
1870
|
+
* * SQL Data Type: nvarchar(20)
|
|
1871
|
+
* * Default Value: getutcdate()
|
|
1872
|
+
* * Value List Type: List
|
|
1873
|
+
* * Possible Values
|
|
1874
|
+
* * Search
|
|
1875
|
+
* * Dropdown
|
|
1876
|
+
* * Description: When another entity links to this entity with a foreign key, this is the default component type that will be used in the UI. CodeGen will populate the RelatedEntityDisplayType column in the Entity Fields entity with whatever is provided here whenever a new foreign key is detected by CodeGen. The selection can be overridden on a per-foreign-key basis in each row of the Entity Fields entity.
|
|
1877
|
+
*/
|
|
1878
|
+
get RelationshipDefaultDisplayType(): 'Search' | 'Dropdown';
|
|
1879
|
+
set RelationshipDefaultDisplayType(value: 'Search' | 'Dropdown');
|
|
1880
|
+
/**
|
|
1859
1881
|
* * Field Name: CodeName
|
|
1860
1882
|
* * Display Name: Code Name
|
|
1861
1883
|
* * SQL Data Type: nvarchar(MAX)
|
|
@@ -1866,7 +1888,7 @@ export declare class EntityEntity extends BaseEntity {
|
|
|
1866
1888
|
* * Field Name: ClassName
|
|
1867
1889
|
* * Display Name: Class Name
|
|
1868
1890
|
* * SQL Data Type: nvarchar(MAX)
|
|
1869
|
-
* * Default Value:
|
|
1891
|
+
* * Default Value: Search
|
|
1870
1892
|
*/
|
|
1871
1893
|
get ClassName(): string | null;
|
|
1872
1894
|
/**
|
|
@@ -2412,6 +2434,20 @@ export declare class UserRecordLogEntity extends BaseEntity {
|
|
|
2412
2434
|
get TotalCount(): number;
|
|
2413
2435
|
set TotalCount(value: number);
|
|
2414
2436
|
/**
|
|
2437
|
+
* * Field Name: __mj_CreatedAt
|
|
2438
|
+
* * Display Name: Created At
|
|
2439
|
+
* * SQL Data Type: datetimeoffset
|
|
2440
|
+
* * Default Value: getutcdate()
|
|
2441
|
+
*/
|
|
2442
|
+
get __mj_CreatedAt(): Date;
|
|
2443
|
+
/**
|
|
2444
|
+
* * Field Name: __mj_UpdatedAt
|
|
2445
|
+
* * Display Name: Updated At
|
|
2446
|
+
* * SQL Data Type: datetimeoffset
|
|
2447
|
+
* * Default Value: getutcdate()
|
|
2448
|
+
*/
|
|
2449
|
+
get __mj_UpdatedAt(): Date;
|
|
2450
|
+
/**
|
|
2415
2451
|
* * Field Name: Entity
|
|
2416
2452
|
* * Display Name: Entity
|
|
2417
2453
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -2741,6 +2777,20 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
|
|
|
2741
2777
|
get Comments(): string | null;
|
|
2742
2778
|
set Comments(value: string | null);
|
|
2743
2779
|
/**
|
|
2780
|
+
* * Field Name: __mj_CreatedAt
|
|
2781
|
+
* * Display Name: Created At
|
|
2782
|
+
* * SQL Data Type: datetimeoffset
|
|
2783
|
+
* * Default Value: getutcdate()
|
|
2784
|
+
*/
|
|
2785
|
+
get __mj_CreatedAt(): Date;
|
|
2786
|
+
/**
|
|
2787
|
+
* * Field Name: __mj_UpdatedAt
|
|
2788
|
+
* * Display Name: Updated At
|
|
2789
|
+
* * SQL Data Type: datetimeoffset
|
|
2790
|
+
* * Default Value: getutcdate()
|
|
2791
|
+
*/
|
|
2792
|
+
get __mj_UpdatedAt(): Date;
|
|
2793
|
+
/**
|
|
2744
2794
|
* * Field Name: RunByUser
|
|
2745
2795
|
* * Display Name: Run By User
|
|
2746
2796
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -2830,6 +2880,20 @@ export declare class CompanyIntegrationRunDetailEntity extends BaseEntity {
|
|
|
2830
2880
|
get IsSuccess(): boolean;
|
|
2831
2881
|
set IsSuccess(value: boolean);
|
|
2832
2882
|
/**
|
|
2883
|
+
* * Field Name: __mj_CreatedAt
|
|
2884
|
+
* * Display Name: Created At
|
|
2885
|
+
* * SQL Data Type: datetimeoffset
|
|
2886
|
+
* * Default Value: getutcdate()
|
|
2887
|
+
*/
|
|
2888
|
+
get __mj_CreatedAt(): Date;
|
|
2889
|
+
/**
|
|
2890
|
+
* * Field Name: __mj_UpdatedAt
|
|
2891
|
+
* * Display Name: Updated At
|
|
2892
|
+
* * SQL Data Type: datetimeoffset
|
|
2893
|
+
* * Default Value: getutcdate()
|
|
2894
|
+
*/
|
|
2895
|
+
get __mj_UpdatedAt(): Date;
|
|
2896
|
+
/**
|
|
2833
2897
|
* * Field Name: Entity
|
|
2834
2898
|
* * SQL Data Type: nvarchar(255)
|
|
2835
2899
|
*/
|
|
@@ -2913,23 +2977,16 @@ export declare class ErrorLogEntity extends BaseEntity {
|
|
|
2913
2977
|
get Message(): string | null;
|
|
2914
2978
|
set Message(value: string | null);
|
|
2915
2979
|
/**
|
|
2916
|
-
* * Field Name: CreatedAt
|
|
2917
|
-
* * Display Name: Created At
|
|
2918
|
-
* * SQL Data Type: datetime
|
|
2919
|
-
* * Default Value: getdate()
|
|
2920
|
-
*/
|
|
2921
|
-
get CreatedAt(): Date;
|
|
2922
|
-
/**
|
|
2923
2980
|
* * Field Name: CreatedBy
|
|
2924
2981
|
* * Display Name: Created By
|
|
2925
2982
|
* * SQL Data Type: nvarchar(50)
|
|
2926
|
-
* * Default Value: suser_name()
|
|
2927
2983
|
*/
|
|
2928
2984
|
get CreatedBy(): string | null;
|
|
2929
2985
|
set CreatedBy(value: string | null);
|
|
2930
2986
|
/**
|
|
2931
2987
|
* * Field Name: Status
|
|
2932
2988
|
* * SQL Data Type: nvarchar(10)
|
|
2989
|
+
* * Default Value: suser_name()
|
|
2933
2990
|
*/
|
|
2934
2991
|
get Status(): string | null;
|
|
2935
2992
|
set Status(value: string | null);
|
|
@@ -2945,6 +3002,19 @@ export declare class ErrorLogEntity extends BaseEntity {
|
|
|
2945
3002
|
*/
|
|
2946
3003
|
get Details(): string | null;
|
|
2947
3004
|
set Details(value: string | null);
|
|
3005
|
+
/**
|
|
3006
|
+
* * Field Name: __mj_CreatedAt
|
|
3007
|
+
* * Display Name: Created At
|
|
3008
|
+
* * SQL Data Type: datetimeoffset
|
|
3009
|
+
*/
|
|
3010
|
+
get __mj_CreatedAt(): Date;
|
|
3011
|
+
/**
|
|
3012
|
+
* * Field Name: __mj_UpdatedAt
|
|
3013
|
+
* * Display Name: Updated At
|
|
3014
|
+
* * SQL Data Type: datetimeoffset
|
|
3015
|
+
* * Default Value: getutcdate()
|
|
3016
|
+
*/
|
|
3017
|
+
get __mj_UpdatedAt(): Date;
|
|
2948
3018
|
}
|
|
2949
3019
|
/**
|
|
2950
3020
|
* Applications - strongly typed entity sub-class
|
|
@@ -3338,6 +3408,20 @@ export declare class UserApplicationEntityEntity extends BaseEntity {
|
|
|
3338
3408
|
get Sequence(): number;
|
|
3339
3409
|
set Sequence(value: number);
|
|
3340
3410
|
/**
|
|
3411
|
+
* * Field Name: __mj_CreatedAt
|
|
3412
|
+
* * Display Name: Created At
|
|
3413
|
+
* * SQL Data Type: datetimeoffset
|
|
3414
|
+
* * Default Value: getutcdate()
|
|
3415
|
+
*/
|
|
3416
|
+
get __mj_CreatedAt(): Date;
|
|
3417
|
+
/**
|
|
3418
|
+
* * Field Name: __mj_UpdatedAt
|
|
3419
|
+
* * Display Name: Updated At
|
|
3420
|
+
* * SQL Data Type: datetimeoffset
|
|
3421
|
+
* * Default Value: getutcdate()
|
|
3422
|
+
*/
|
|
3423
|
+
get __mj_UpdatedAt(): Date;
|
|
3424
|
+
/**
|
|
3341
3425
|
* * Field Name: Application
|
|
3342
3426
|
* * Display Name: Application
|
|
3343
3427
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -3416,6 +3500,20 @@ export declare class UserApplicationEntity extends BaseEntity {
|
|
|
3416
3500
|
get IsActive(): boolean;
|
|
3417
3501
|
set IsActive(value: boolean);
|
|
3418
3502
|
/**
|
|
3503
|
+
* * Field Name: __mj_CreatedAt
|
|
3504
|
+
* * Display Name: Created At
|
|
3505
|
+
* * SQL Data Type: datetimeoffset
|
|
3506
|
+
* * Default Value: getutcdate()
|
|
3507
|
+
*/
|
|
3508
|
+
get __mj_CreatedAt(): Date;
|
|
3509
|
+
/**
|
|
3510
|
+
* * Field Name: __mj_UpdatedAt
|
|
3511
|
+
* * Display Name: Updated At
|
|
3512
|
+
* * SQL Data Type: datetimeoffset
|
|
3513
|
+
* * Default Value: getutcdate()
|
|
3514
|
+
*/
|
|
3515
|
+
get __mj_UpdatedAt(): Date;
|
|
3516
|
+
/**
|
|
3419
3517
|
* * Field Name: User
|
|
3420
3518
|
* * Display Name: User
|
|
3421
3519
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -3517,6 +3615,20 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity {
|
|
|
3517
3615
|
*/
|
|
3518
3616
|
get Parameters(): string | null;
|
|
3519
3617
|
set Parameters(value: string | null);
|
|
3618
|
+
/**
|
|
3619
|
+
* * Field Name: __mj_CreatedAt
|
|
3620
|
+
* * Display Name: Created At
|
|
3621
|
+
* * SQL Data Type: datetimeoffset
|
|
3622
|
+
* * Default Value: getutcdate()
|
|
3623
|
+
*/
|
|
3624
|
+
get __mj_CreatedAt(): Date;
|
|
3625
|
+
/**
|
|
3626
|
+
* * Field Name: __mj_UpdatedAt
|
|
3627
|
+
* * Display Name: Updated At
|
|
3628
|
+
* * SQL Data Type: datetimeoffset
|
|
3629
|
+
* * Default Value: getutcdate()
|
|
3630
|
+
*/
|
|
3631
|
+
get __mj_UpdatedAt(): Date;
|
|
3520
3632
|
}
|
|
3521
3633
|
/**
|
|
3522
3634
|
* Lists - strongly typed entity sub-class
|
|
@@ -3591,20 +3703,6 @@ export declare class ListEntity extends BaseEntity {
|
|
|
3591
3703
|
get CompanyIntegrationID(): number | null;
|
|
3592
3704
|
set CompanyIntegrationID(value: number | null);
|
|
3593
3705
|
/**
|
|
3594
|
-
* * Field Name: CreatedAt
|
|
3595
|
-
* * Display Name: Created At
|
|
3596
|
-
* * SQL Data Type: datetime
|
|
3597
|
-
* * Default Value: getdate()
|
|
3598
|
-
*/
|
|
3599
|
-
get CreatedAt(): Date;
|
|
3600
|
-
/**
|
|
3601
|
-
* * Field Name: UpdatedAt
|
|
3602
|
-
* * Display Name: Updated At
|
|
3603
|
-
* * SQL Data Type: datetime
|
|
3604
|
-
* * Default Value: getdate()
|
|
3605
|
-
*/
|
|
3606
|
-
get UpdatedAt(): Date;
|
|
3607
|
-
/**
|
|
3608
3706
|
* * Field Name: CategoryID
|
|
3609
3707
|
* * Display Name: Category ID
|
|
3610
3708
|
* * SQL Data Type: int
|
|
@@ -3612,15 +3710,29 @@ export declare class ListEntity extends BaseEntity {
|
|
|
3612
3710
|
get CategoryID(): number | null;
|
|
3613
3711
|
set CategoryID(value: number | null);
|
|
3614
3712
|
/**
|
|
3713
|
+
* * Field Name: __mj_CreatedAt
|
|
3714
|
+
* * Display Name: Created At
|
|
3715
|
+
* * SQL Data Type: datetimeoffset
|
|
3716
|
+
*/
|
|
3717
|
+
get __mj_CreatedAt(): Date;
|
|
3718
|
+
/**
|
|
3719
|
+
* * Field Name: __mj_UpdatedAt
|
|
3720
|
+
* * Display Name: Updated At
|
|
3721
|
+
* * SQL Data Type: datetimeoffset
|
|
3722
|
+
*/
|
|
3723
|
+
get __mj_UpdatedAt(): Date;
|
|
3724
|
+
/**
|
|
3615
3725
|
* * Field Name: Entity
|
|
3616
3726
|
* * Display Name: Entity
|
|
3617
3727
|
* * SQL Data Type: nvarchar(255)
|
|
3728
|
+
* * Default Value: getutcdate()
|
|
3618
3729
|
*/
|
|
3619
3730
|
get Entity(): string;
|
|
3620
3731
|
/**
|
|
3621
3732
|
* * Field Name: User
|
|
3622
3733
|
* * Display Name: User
|
|
3623
3734
|
* * SQL Data Type: nvarchar(100)
|
|
3735
|
+
* * Default Value: getutcdate()
|
|
3624
3736
|
*/
|
|
3625
3737
|
get User(): string;
|
|
3626
3738
|
}
|
|
@@ -3676,14 +3788,28 @@ export declare class ListDetailEntity extends BaseEntity {
|
|
|
3676
3788
|
get Sequence(): number;
|
|
3677
3789
|
set Sequence(value: number);
|
|
3678
3790
|
/**
|
|
3679
|
-
* * Field Name:
|
|
3680
|
-
* * Display Name:
|
|
3681
|
-
* * SQL Data Type:
|
|
3791
|
+
* * Field Name: __mj_CreatedAt
|
|
3792
|
+
* * Display Name: Created At
|
|
3793
|
+
* * SQL Data Type: datetimeoffset
|
|
3794
|
+
* * Default Value: getutcdate()
|
|
3682
3795
|
*/
|
|
3683
|
-
get
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
*
|
|
3796
|
+
get __mj_CreatedAt(): Date;
|
|
3797
|
+
/**
|
|
3798
|
+
* * Field Name: __mj_UpdatedAt
|
|
3799
|
+
* * Display Name: Updated At
|
|
3800
|
+
* * SQL Data Type: datetimeoffset
|
|
3801
|
+
* * Default Value: getutcdate()
|
|
3802
|
+
*/
|
|
3803
|
+
get __mj_UpdatedAt(): Date;
|
|
3804
|
+
/**
|
|
3805
|
+
* * Field Name: List
|
|
3806
|
+
* * Display Name: List
|
|
3807
|
+
* * SQL Data Type: nvarchar(100)
|
|
3808
|
+
*/
|
|
3809
|
+
get List(): string;
|
|
3810
|
+
}
|
|
3811
|
+
/**
|
|
3812
|
+
* User View Runs - strongly typed entity sub-class
|
|
3687
3813
|
* * Schema: __mj
|
|
3688
3814
|
* * Base Table: UserViewRun
|
|
3689
3815
|
* * Base View: vwUserViewRuns
|
|
@@ -3744,6 +3870,20 @@ export declare class UserViewRunEntity extends BaseEntity {
|
|
|
3744
3870
|
get RunByUserID(): number;
|
|
3745
3871
|
set RunByUserID(value: number);
|
|
3746
3872
|
/**
|
|
3873
|
+
* * Field Name: __mj_CreatedAt
|
|
3874
|
+
* * Display Name: Created At
|
|
3875
|
+
* * SQL Data Type: datetimeoffset
|
|
3876
|
+
* * Default Value: getutcdate()
|
|
3877
|
+
*/
|
|
3878
|
+
get __mj_CreatedAt(): Date;
|
|
3879
|
+
/**
|
|
3880
|
+
* * Field Name: __mj_UpdatedAt
|
|
3881
|
+
* * Display Name: Updated At
|
|
3882
|
+
* * SQL Data Type: datetimeoffset
|
|
3883
|
+
* * Default Value: getutcdate()
|
|
3884
|
+
*/
|
|
3885
|
+
get __mj_UpdatedAt(): Date;
|
|
3886
|
+
/**
|
|
3747
3887
|
* * Field Name: UserView
|
|
3748
3888
|
* * Display Name: User View
|
|
3749
3889
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -3810,6 +3950,20 @@ export declare class UserViewRunDetailEntity extends BaseEntity {
|
|
|
3810
3950
|
get RecordID(): string;
|
|
3811
3951
|
set RecordID(value: string);
|
|
3812
3952
|
/**
|
|
3953
|
+
* * Field Name: __mj_CreatedAt
|
|
3954
|
+
* * Display Name: Created At
|
|
3955
|
+
* * SQL Data Type: datetimeoffset
|
|
3956
|
+
* * Default Value: getutcdate()
|
|
3957
|
+
*/
|
|
3958
|
+
get __mj_CreatedAt(): Date;
|
|
3959
|
+
/**
|
|
3960
|
+
* * Field Name: __mj_UpdatedAt
|
|
3961
|
+
* * Display Name: Updated At
|
|
3962
|
+
* * SQL Data Type: datetimeoffset
|
|
3963
|
+
* * Default Value: getutcdate()
|
|
3964
|
+
*/
|
|
3965
|
+
get __mj_UpdatedAt(): Date;
|
|
3966
|
+
/**
|
|
3813
3967
|
* * Field Name: UserViewID
|
|
3814
3968
|
* * Display Name: User View
|
|
3815
3969
|
* * SQL Data Type: int
|
|
@@ -3908,6 +4062,20 @@ export declare class WorkflowRunEntity extends BaseEntity {
|
|
|
3908
4062
|
get Results(): string | null;
|
|
3909
4063
|
set Results(value: string | null);
|
|
3910
4064
|
/**
|
|
4065
|
+
* * Field Name: __mj_CreatedAt
|
|
4066
|
+
* * Display Name: Created At
|
|
4067
|
+
* * SQL Data Type: datetimeoffset
|
|
4068
|
+
* * Default Value: getutcdate()
|
|
4069
|
+
*/
|
|
4070
|
+
get __mj_CreatedAt(): Date;
|
|
4071
|
+
/**
|
|
4072
|
+
* * Field Name: __mj_UpdatedAt
|
|
4073
|
+
* * Display Name: Updated At
|
|
4074
|
+
* * SQL Data Type: datetimeoffset
|
|
4075
|
+
* * Default Value: getutcdate()
|
|
4076
|
+
*/
|
|
4077
|
+
get __mj_UpdatedAt(): Date;
|
|
4078
|
+
/**
|
|
3911
4079
|
* * Field Name: Workflow
|
|
3912
4080
|
* * Display Name: Workflow
|
|
3913
4081
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -3993,24 +4161,9 @@ export declare class WorkflowEntity extends BaseEntity {
|
|
|
3993
4161
|
get ExternalSystemRecordID(): string;
|
|
3994
4162
|
set ExternalSystemRecordID(value: string);
|
|
3995
4163
|
/**
|
|
3996
|
-
* * Field Name: CreatedAt
|
|
3997
|
-
* * Display Name: Created At
|
|
3998
|
-
* * SQL Data Type: datetime
|
|
3999
|
-
* * Default Value: getdate()
|
|
4000
|
-
*/
|
|
4001
|
-
get CreatedAt(): Date;
|
|
4002
|
-
/**
|
|
4003
|
-
* * Field Name: UpdatedAt
|
|
4004
|
-
* * Display Name: Updated At
|
|
4005
|
-
* * SQL Data Type: datetime
|
|
4006
|
-
* * Default Value: getdate()
|
|
4007
|
-
*/
|
|
4008
|
-
get UpdatedAt(): Date;
|
|
4009
|
-
/**
|
|
4010
4164
|
* * Field Name: AutoRunEnabled
|
|
4011
4165
|
* * Display Name: Auto Run Enabled
|
|
4012
4166
|
* * SQL Data Type: bit
|
|
4013
|
-
* * Default Value: 0
|
|
4014
4167
|
* * Description: If set to 1, the workflow will be run automatically on the interval specified by the AutoRunIntervalType and AutoRunInterval fields
|
|
4015
4168
|
*/
|
|
4016
4169
|
get AutoRunEnabled(): boolean;
|
|
@@ -4035,6 +4188,7 @@ export declare class WorkflowEntity extends BaseEntity {
|
|
|
4035
4188
|
* * Field Name: AutoRunInterval
|
|
4036
4189
|
* * Display Name: Auto Run Interval
|
|
4037
4190
|
* * SQL Data Type: int
|
|
4191
|
+
* * Default Value: 0
|
|
4038
4192
|
* * Description: The interval, denominated in the units specified in the AutoRunIntervalUnits column, between auto runs of this workflow.
|
|
4039
4193
|
*/
|
|
4040
4194
|
get AutoRunInterval(): number | null;
|
|
@@ -4048,9 +4202,22 @@ export declare class WorkflowEntity extends BaseEntity {
|
|
|
4048
4202
|
get SubclassName(): string | null;
|
|
4049
4203
|
set SubclassName(value: string | null);
|
|
4050
4204
|
/**
|
|
4205
|
+
* * Field Name: __mj_CreatedAt
|
|
4206
|
+
* * Display Name: Created At
|
|
4207
|
+
* * SQL Data Type: datetimeoffset
|
|
4208
|
+
*/
|
|
4209
|
+
get __mj_CreatedAt(): Date;
|
|
4210
|
+
/**
|
|
4211
|
+
* * Field Name: __mj_UpdatedAt
|
|
4212
|
+
* * Display Name: Updated At
|
|
4213
|
+
* * SQL Data Type: datetimeoffset
|
|
4214
|
+
*/
|
|
4215
|
+
get __mj_UpdatedAt(): Date;
|
|
4216
|
+
/**
|
|
4051
4217
|
* * Field Name: AutoRunIntervalMinutes
|
|
4052
4218
|
* * Display Name: Auto Run Interval Minutes
|
|
4053
4219
|
* * SQL Data Type: int
|
|
4220
|
+
* * Default Value: getutcdate()
|
|
4054
4221
|
*/
|
|
4055
4222
|
get AutoRunIntervalMinutes(): number | null;
|
|
4056
4223
|
}
|
|
@@ -4118,19 +4285,17 @@ export declare class WorkflowEngineEntity extends BaseEntity {
|
|
|
4118
4285
|
get DriverClass(): string;
|
|
4119
4286
|
set DriverClass(value: string);
|
|
4120
4287
|
/**
|
|
4121
|
-
* * Field Name:
|
|
4288
|
+
* * Field Name: __mj_CreatedAt
|
|
4122
4289
|
* * Display Name: Created At
|
|
4123
|
-
* * SQL Data Type:
|
|
4124
|
-
* * Default Value: getdate()
|
|
4290
|
+
* * SQL Data Type: datetimeoffset
|
|
4125
4291
|
*/
|
|
4126
|
-
get
|
|
4292
|
+
get __mj_CreatedAt(): Date;
|
|
4127
4293
|
/**
|
|
4128
|
-
* * Field Name:
|
|
4294
|
+
* * Field Name: __mj_UpdatedAt
|
|
4129
4295
|
* * Display Name: Updated At
|
|
4130
|
-
* * SQL Data Type:
|
|
4131
|
-
* * Default Value: getdate()
|
|
4296
|
+
* * SQL Data Type: datetimeoffset
|
|
4132
4297
|
*/
|
|
4133
|
-
get
|
|
4298
|
+
get __mj_UpdatedAt(): Date;
|
|
4134
4299
|
}
|
|
4135
4300
|
/**
|
|
4136
4301
|
* Record Changes - strongly typed entity sub-class
|
|
@@ -4581,29 +4746,29 @@ export declare class AuditLogEntity extends BaseEntity {
|
|
|
4581
4746
|
get RecordID(): string | null;
|
|
4582
4747
|
set RecordID(value: string | null);
|
|
4583
4748
|
/**
|
|
4584
|
-
* * Field Name:
|
|
4749
|
+
* * Field Name: __mj_CreatedAt
|
|
4585
4750
|
* * Display Name: Created At
|
|
4586
|
-
* * SQL Data Type:
|
|
4587
|
-
* * Default Value: getdate()
|
|
4751
|
+
* * SQL Data Type: datetimeoffset
|
|
4588
4752
|
*/
|
|
4589
|
-
get
|
|
4753
|
+
get __mj_CreatedAt(): Date;
|
|
4590
4754
|
/**
|
|
4591
|
-
* * Field Name:
|
|
4755
|
+
* * Field Name: __mj_UpdatedAt
|
|
4592
4756
|
* * Display Name: Updated At
|
|
4593
|
-
* * SQL Data Type:
|
|
4594
|
-
* * Default Value: getdate()
|
|
4757
|
+
* * SQL Data Type: datetimeoffset
|
|
4595
4758
|
*/
|
|
4596
|
-
get
|
|
4759
|
+
get __mj_UpdatedAt(): Date;
|
|
4597
4760
|
/**
|
|
4598
4761
|
* * Field Name: User
|
|
4599
4762
|
* * Display Name: User
|
|
4600
4763
|
* * SQL Data Type: nvarchar(100)
|
|
4764
|
+
* * Default Value: getutcdate()
|
|
4601
4765
|
*/
|
|
4602
4766
|
get User(): string;
|
|
4603
4767
|
/**
|
|
4604
4768
|
* * Field Name: Entity
|
|
4605
4769
|
* * Display Name: Entity
|
|
4606
4770
|
* * SQL Data Type: nvarchar(255)
|
|
4771
|
+
* * Default Value: getutcdate()
|
|
4607
4772
|
*/
|
|
4608
4773
|
get Entity(): string | null;
|
|
4609
4774
|
}
|
|
@@ -4788,19 +4953,17 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
|
|
|
4788
4953
|
get Type(): 'Allow' | 'Deny';
|
|
4789
4954
|
set Type(value: 'Allow' | 'Deny');
|
|
4790
4955
|
/**
|
|
4791
|
-
* * Field Name:
|
|
4956
|
+
* * Field Name: __mj_CreatedAt
|
|
4792
4957
|
* * Display Name: Created At
|
|
4793
|
-
* * SQL Data Type:
|
|
4794
|
-
* * Default Value: getdate()
|
|
4958
|
+
* * SQL Data Type: datetimeoffset
|
|
4795
4959
|
*/
|
|
4796
|
-
get
|
|
4960
|
+
get __mj_CreatedAt(): Date;
|
|
4797
4961
|
/**
|
|
4798
|
-
* * Field Name:
|
|
4962
|
+
* * Field Name: __mj_UpdatedAt
|
|
4799
4963
|
* * Display Name: Updated At
|
|
4800
|
-
* * SQL Data Type:
|
|
4801
|
-
* * Default Value: getdate()
|
|
4964
|
+
* * SQL Data Type: datetimeoffset
|
|
4802
4965
|
*/
|
|
4803
|
-
get
|
|
4966
|
+
get __mj_UpdatedAt(): Date;
|
|
4804
4967
|
}
|
|
4805
4968
|
/**
|
|
4806
4969
|
* Audit Log Types - strongly typed entity sub-class
|
|
@@ -5106,23 +5269,22 @@ export declare class AIModelEntity extends BaseEntity {
|
|
|
5106
5269
|
get PowerRank(): number | null;
|
|
5107
5270
|
set PowerRank(value: number | null);
|
|
5108
5271
|
/**
|
|
5109
|
-
* * Field Name:
|
|
5272
|
+
* * Field Name: __mj_CreatedAt
|
|
5110
5273
|
* * Display Name: Created At
|
|
5111
|
-
* * SQL Data Type:
|
|
5112
|
-
* * Default Value: getdate()
|
|
5274
|
+
* * SQL Data Type: datetimeoffset
|
|
5113
5275
|
*/
|
|
5114
|
-
get
|
|
5276
|
+
get __mj_CreatedAt(): Date;
|
|
5115
5277
|
/**
|
|
5116
|
-
* * Field Name:
|
|
5278
|
+
* * Field Name: __mj_UpdatedAt
|
|
5117
5279
|
* * Display Name: Updated At
|
|
5118
|
-
* * SQL Data Type:
|
|
5119
|
-
* * Default Value: getdate()
|
|
5280
|
+
* * SQL Data Type: datetimeoffset
|
|
5120
5281
|
*/
|
|
5121
|
-
get
|
|
5282
|
+
get __mj_UpdatedAt(): Date;
|
|
5122
5283
|
/**
|
|
5123
5284
|
* * Field Name: AIModelType
|
|
5124
5285
|
* * Display Name: AIModel Type
|
|
5125
5286
|
* * SQL Data Type: nvarchar(50)
|
|
5287
|
+
* * Default Value: getutcdate()
|
|
5126
5288
|
*/
|
|
5127
5289
|
get AIModelType(): string;
|
|
5128
5290
|
}
|
|
@@ -5194,23 +5356,22 @@ export declare class AIActionEntity extends BaseEntity {
|
|
|
5194
5356
|
get IsActive(): boolean;
|
|
5195
5357
|
set IsActive(value: boolean);
|
|
5196
5358
|
/**
|
|
5197
|
-
* * Field Name:
|
|
5359
|
+
* * Field Name: __mj_CreatedAt
|
|
5198
5360
|
* * Display Name: Created At
|
|
5199
|
-
* * SQL Data Type:
|
|
5200
|
-
* * Default Value: getdate()
|
|
5361
|
+
* * SQL Data Type: datetimeoffset
|
|
5201
5362
|
*/
|
|
5202
|
-
get
|
|
5363
|
+
get __mj_CreatedAt(): Date;
|
|
5203
5364
|
/**
|
|
5204
|
-
* * Field Name:
|
|
5365
|
+
* * Field Name: __mj_UpdatedAt
|
|
5205
5366
|
* * Display Name: Updated At
|
|
5206
|
-
* * SQL Data Type:
|
|
5207
|
-
* * Default Value: getdate()
|
|
5367
|
+
* * SQL Data Type: datetimeoffset
|
|
5208
5368
|
*/
|
|
5209
|
-
get
|
|
5369
|
+
get __mj_UpdatedAt(): Date;
|
|
5210
5370
|
/**
|
|
5211
5371
|
* * Field Name: DefaultModel
|
|
5212
5372
|
* * Display Name: Default Model
|
|
5213
5373
|
* * SQL Data Type: nvarchar(50)
|
|
5374
|
+
* * Default Value: getutcdate()
|
|
5214
5375
|
*/
|
|
5215
5376
|
get DefaultModel(): string | null;
|
|
5216
5377
|
}
|
|
@@ -5269,29 +5430,29 @@ export declare class AIModelActionEntity extends BaseEntity {
|
|
|
5269
5430
|
get IsActive(): boolean;
|
|
5270
5431
|
set IsActive(value: boolean);
|
|
5271
5432
|
/**
|
|
5272
|
-
* * Field Name:
|
|
5433
|
+
* * Field Name: __mj_CreatedAt
|
|
5273
5434
|
* * Display Name: Created At
|
|
5274
|
-
* * SQL Data Type:
|
|
5275
|
-
* * Default Value: getdate()
|
|
5435
|
+
* * SQL Data Type: datetimeoffset
|
|
5276
5436
|
*/
|
|
5277
|
-
get
|
|
5437
|
+
get __mj_CreatedAt(): Date;
|
|
5278
5438
|
/**
|
|
5279
|
-
* * Field Name:
|
|
5439
|
+
* * Field Name: __mj_UpdatedAt
|
|
5280
5440
|
* * Display Name: Updated At
|
|
5281
|
-
* * SQL Data Type:
|
|
5282
|
-
* * Default Value: getdate()
|
|
5441
|
+
* * SQL Data Type: datetimeoffset
|
|
5283
5442
|
*/
|
|
5284
|
-
get
|
|
5443
|
+
get __mj_UpdatedAt(): Date;
|
|
5285
5444
|
/**
|
|
5286
5445
|
* * Field Name: AIModel
|
|
5287
5446
|
* * Display Name: AIModel
|
|
5288
5447
|
* * SQL Data Type: nvarchar(50)
|
|
5448
|
+
* * Default Value: getutcdate()
|
|
5289
5449
|
*/
|
|
5290
5450
|
get AIModel(): string;
|
|
5291
5451
|
/**
|
|
5292
5452
|
* * Field Name: AIAction
|
|
5293
5453
|
* * Display Name: AIAction
|
|
5294
5454
|
* * SQL Data Type: nvarchar(50)
|
|
5455
|
+
* * Default Value: getutcdate()
|
|
5295
5456
|
*/
|
|
5296
5457
|
get AIAction(): string;
|
|
5297
5458
|
}
|
|
@@ -5507,6 +5668,20 @@ export declare class AIModelTypeEntity extends BaseEntity {
|
|
|
5507
5668
|
*/
|
|
5508
5669
|
get Description(): string | null;
|
|
5509
5670
|
set Description(value: string | null);
|
|
5671
|
+
/**
|
|
5672
|
+
* * Field Name: __mj_CreatedAt
|
|
5673
|
+
* * Display Name: Created At
|
|
5674
|
+
* * SQL Data Type: datetimeoffset
|
|
5675
|
+
* * Default Value: getutcdate()
|
|
5676
|
+
*/
|
|
5677
|
+
get __mj_CreatedAt(): Date;
|
|
5678
|
+
/**
|
|
5679
|
+
* * Field Name: __mj_UpdatedAt
|
|
5680
|
+
* * Display Name: Updated At
|
|
5681
|
+
* * SQL Data Type: datetimeoffset
|
|
5682
|
+
* * Default Value: getutcdate()
|
|
5683
|
+
*/
|
|
5684
|
+
get __mj_UpdatedAt(): Date;
|
|
5510
5685
|
}
|
|
5511
5686
|
/**
|
|
5512
5687
|
* Queue Types - strongly typed entity sub-class
|
|
@@ -5591,6 +5766,20 @@ export declare class QueueTypeEntity extends BaseEntity {
|
|
|
5591
5766
|
*/
|
|
5592
5767
|
get IsActive(): boolean;
|
|
5593
5768
|
set IsActive(value: boolean);
|
|
5769
|
+
/**
|
|
5770
|
+
* * Field Name: __mj_CreatedAt
|
|
5771
|
+
* * Display Name: Created At
|
|
5772
|
+
* * SQL Data Type: datetimeoffset
|
|
5773
|
+
* * Default Value: getutcdate()
|
|
5774
|
+
*/
|
|
5775
|
+
get __mj_CreatedAt(): Date;
|
|
5776
|
+
/**
|
|
5777
|
+
* * Field Name: __mj_UpdatedAt
|
|
5778
|
+
* * Display Name: Updated At
|
|
5779
|
+
* * SQL Data Type: datetimeoffset
|
|
5780
|
+
* * Default Value: getutcdate()
|
|
5781
|
+
*/
|
|
5782
|
+
get __mj_UpdatedAt(): Date;
|
|
5594
5783
|
}
|
|
5595
5784
|
/**
|
|
5596
5785
|
* Queues - strongly typed entity sub-class
|
|
@@ -5747,23 +5936,22 @@ export declare class QueueEntity extends BaseEntity {
|
|
|
5747
5936
|
get LastHeartbeat(): Date;
|
|
5748
5937
|
set LastHeartbeat(value: Date);
|
|
5749
5938
|
/**
|
|
5750
|
-
* * Field Name:
|
|
5939
|
+
* * Field Name: __mj_CreatedAt
|
|
5751
5940
|
* * Display Name: Created At
|
|
5752
|
-
* * SQL Data Type:
|
|
5753
|
-
* * Default Value: getdate()
|
|
5941
|
+
* * SQL Data Type: datetimeoffset
|
|
5754
5942
|
*/
|
|
5755
|
-
get
|
|
5943
|
+
get __mj_CreatedAt(): Date;
|
|
5756
5944
|
/**
|
|
5757
|
-
* * Field Name:
|
|
5945
|
+
* * Field Name: __mj_UpdatedAt
|
|
5758
5946
|
* * Display Name: Updated At
|
|
5759
|
-
* * SQL Data Type:
|
|
5760
|
-
* * Default Value: getdate()
|
|
5947
|
+
* * SQL Data Type: datetimeoffset
|
|
5761
5948
|
*/
|
|
5762
|
-
get
|
|
5949
|
+
get __mj_UpdatedAt(): Date;
|
|
5763
5950
|
/**
|
|
5764
5951
|
* * Field Name: QueueType
|
|
5765
5952
|
* * Display Name: Queue Type
|
|
5766
5953
|
* * SQL Data Type: nvarchar(50)
|
|
5954
|
+
* * Default Value: getutcdate()
|
|
5767
5955
|
*/
|
|
5768
5956
|
get QueueType(): string;
|
|
5769
5957
|
}
|
|
@@ -5876,6 +6064,20 @@ export declare class QueueTaskEntity extends BaseEntity {
|
|
|
5876
6064
|
get Comments(): string | null;
|
|
5877
6065
|
set Comments(value: string | null);
|
|
5878
6066
|
/**
|
|
6067
|
+
* * Field Name: __mj_CreatedAt
|
|
6068
|
+
* * Display Name: Created At
|
|
6069
|
+
* * SQL Data Type: datetimeoffset
|
|
6070
|
+
* * Default Value: getutcdate()
|
|
6071
|
+
*/
|
|
6072
|
+
get __mj_CreatedAt(): Date;
|
|
6073
|
+
/**
|
|
6074
|
+
* * Field Name: __mj_UpdatedAt
|
|
6075
|
+
* * Display Name: Updated At
|
|
6076
|
+
* * SQL Data Type: datetimeoffset
|
|
6077
|
+
* * Default Value: getutcdate()
|
|
6078
|
+
*/
|
|
6079
|
+
get __mj_UpdatedAt(): Date;
|
|
6080
|
+
/**
|
|
5879
6081
|
* * Field Name: Queue
|
|
5880
6082
|
* * Display Name: Queue
|
|
5881
6083
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -5950,6 +6152,20 @@ export declare class DashboardEntity extends BaseEntity {
|
|
|
5950
6152
|
get UserID(): number | null;
|
|
5951
6153
|
set UserID(value: number | null);
|
|
5952
6154
|
/**
|
|
6155
|
+
* * Field Name: __mj_CreatedAt
|
|
6156
|
+
* * Display Name: Created At
|
|
6157
|
+
* * SQL Data Type: datetimeoffset
|
|
6158
|
+
* * Default Value: getutcdate()
|
|
6159
|
+
*/
|
|
6160
|
+
get __mj_CreatedAt(): Date;
|
|
6161
|
+
/**
|
|
6162
|
+
* * Field Name: __mj_UpdatedAt
|
|
6163
|
+
* * Display Name: Updated At
|
|
6164
|
+
* * SQL Data Type: datetimeoffset
|
|
6165
|
+
* * Default Value: getutcdate()
|
|
6166
|
+
*/
|
|
6167
|
+
get __mj_UpdatedAt(): Date;
|
|
6168
|
+
/**
|
|
5953
6169
|
* * Field Name: Category
|
|
5954
6170
|
* * Display Name: Category
|
|
5955
6171
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -6023,13 +6239,27 @@ export declare class OutputTriggerTypeEntity extends BaseEntity {
|
|
|
6023
6239
|
*/
|
|
6024
6240
|
get Description(): string | null;
|
|
6025
6241
|
set Description(value: string | null);
|
|
6026
|
-
|
|
6027
|
-
|
|
6028
|
-
*
|
|
6029
|
-
|
|
6030
|
-
|
|
6031
|
-
|
|
6032
|
-
|
|
6242
|
+
/**
|
|
6243
|
+
* * Field Name: __mj_CreatedAt
|
|
6244
|
+
* * Display Name: Created At
|
|
6245
|
+
* * SQL Data Type: datetimeoffset
|
|
6246
|
+
* * Default Value: getutcdate()
|
|
6247
|
+
*/
|
|
6248
|
+
get __mj_CreatedAt(): Date;
|
|
6249
|
+
/**
|
|
6250
|
+
* * Field Name: __mj_UpdatedAt
|
|
6251
|
+
* * Display Name: Updated At
|
|
6252
|
+
* * SQL Data Type: datetimeoffset
|
|
6253
|
+
* * Default Value: getutcdate()
|
|
6254
|
+
*/
|
|
6255
|
+
get __mj_UpdatedAt(): Date;
|
|
6256
|
+
}
|
|
6257
|
+
/**
|
|
6258
|
+
* Output Format Types - strongly typed entity sub-class
|
|
6259
|
+
* * Schema: __mj
|
|
6260
|
+
* * Base Table: OutputFormatType
|
|
6261
|
+
* * Base View: vwOutputFormatTypes
|
|
6262
|
+
* * Primary Key: ID
|
|
6033
6263
|
* @extends {BaseEntity}
|
|
6034
6264
|
* @class
|
|
6035
6265
|
* @public
|
|
@@ -6092,6 +6322,20 @@ export declare class OutputFormatTypeEntity extends BaseEntity {
|
|
|
6092
6322
|
*/
|
|
6093
6323
|
get DisplayFormat(): string | null;
|
|
6094
6324
|
set DisplayFormat(value: string | null);
|
|
6325
|
+
/**
|
|
6326
|
+
* * Field Name: __mj_CreatedAt
|
|
6327
|
+
* * Display Name: Created At
|
|
6328
|
+
* * SQL Data Type: datetimeoffset
|
|
6329
|
+
* * Default Value: getutcdate()
|
|
6330
|
+
*/
|
|
6331
|
+
get __mj_CreatedAt(): Date;
|
|
6332
|
+
/**
|
|
6333
|
+
* * Field Name: __mj_UpdatedAt
|
|
6334
|
+
* * Display Name: Updated At
|
|
6335
|
+
* * SQL Data Type: datetimeoffset
|
|
6336
|
+
* * Default Value: getutcdate()
|
|
6337
|
+
*/
|
|
6338
|
+
get __mj_UpdatedAt(): Date;
|
|
6095
6339
|
}
|
|
6096
6340
|
/**
|
|
6097
6341
|
* Output Delivery Types - strongly typed entity sub-class
|
|
@@ -6154,6 +6398,20 @@ export declare class OutputDeliveryTypeEntity extends BaseEntity {
|
|
|
6154
6398
|
*/
|
|
6155
6399
|
get Description(): string | null;
|
|
6156
6400
|
set Description(value: string | null);
|
|
6401
|
+
/**
|
|
6402
|
+
* * Field Name: __mj_CreatedAt
|
|
6403
|
+
* * Display Name: Created At
|
|
6404
|
+
* * SQL Data Type: datetimeoffset
|
|
6405
|
+
* * Default Value: getutcdate()
|
|
6406
|
+
*/
|
|
6407
|
+
get __mj_CreatedAt(): Date;
|
|
6408
|
+
/**
|
|
6409
|
+
* * Field Name: __mj_UpdatedAt
|
|
6410
|
+
* * Display Name: Updated At
|
|
6411
|
+
* * SQL Data Type: datetimeoffset
|
|
6412
|
+
* * Default Value: getutcdate()
|
|
6413
|
+
*/
|
|
6414
|
+
get __mj_UpdatedAt(): Date;
|
|
6157
6415
|
}
|
|
6158
6416
|
/**
|
|
6159
6417
|
* Reports - strongly typed entity sub-class
|
|
@@ -6313,29 +6571,29 @@ export declare class ReportEntity extends BaseEntity {
|
|
|
6313
6571
|
get OutputWorkflowID(): number | null;
|
|
6314
6572
|
set OutputWorkflowID(value: number | null);
|
|
6315
6573
|
/**
|
|
6316
|
-
* * Field Name:
|
|
6574
|
+
* * Field Name: __mj_CreatedAt
|
|
6317
6575
|
* * Display Name: Created At
|
|
6318
|
-
* * SQL Data Type:
|
|
6319
|
-
* * Default Value: getdate()
|
|
6576
|
+
* * SQL Data Type: datetimeoffset
|
|
6320
6577
|
*/
|
|
6321
|
-
get
|
|
6578
|
+
get __mj_CreatedAt(): Date;
|
|
6322
6579
|
/**
|
|
6323
|
-
* * Field Name:
|
|
6580
|
+
* * Field Name: __mj_UpdatedAt
|
|
6324
6581
|
* * Display Name: Updated At
|
|
6325
|
-
* * SQL Data Type:
|
|
6326
|
-
* * Default Value: getdate()
|
|
6582
|
+
* * SQL Data Type: datetimeoffset
|
|
6327
6583
|
*/
|
|
6328
|
-
get
|
|
6584
|
+
get __mj_UpdatedAt(): Date;
|
|
6329
6585
|
/**
|
|
6330
6586
|
* * Field Name: Category
|
|
6331
6587
|
* * Display Name: Category
|
|
6332
6588
|
* * SQL Data Type: nvarchar(100)
|
|
6589
|
+
* * Default Value: getutcdate()
|
|
6333
6590
|
*/
|
|
6334
6591
|
get Category(): string | null;
|
|
6335
6592
|
/**
|
|
6336
6593
|
* * Field Name: User
|
|
6337
6594
|
* * Display Name: User
|
|
6338
6595
|
* * SQL Data Type: nvarchar(100)
|
|
6596
|
+
* * Default Value: getutcdate()
|
|
6339
6597
|
*/
|
|
6340
6598
|
get User(): string;
|
|
6341
6599
|
/**
|
|
@@ -6426,13 +6684,6 @@ export declare class ReportSnapshotEntity extends BaseEntity {
|
|
|
6426
6684
|
get ResultSet(): string;
|
|
6427
6685
|
set ResultSet(value: string);
|
|
6428
6686
|
/**
|
|
6429
|
-
* * Field Name: CreatedAt
|
|
6430
|
-
* * Display Name: Created At
|
|
6431
|
-
* * SQL Data Type: datetime
|
|
6432
|
-
* * Default Value: getdate()
|
|
6433
|
-
*/
|
|
6434
|
-
get CreatedAt(): Date;
|
|
6435
|
-
/**
|
|
6436
6687
|
* * Field Name: UserID
|
|
6437
6688
|
* * Display Name: User ID
|
|
6438
6689
|
* * SQL Data Type: int
|
|
@@ -6441,9 +6692,23 @@ export declare class ReportSnapshotEntity extends BaseEntity {
|
|
|
6441
6692
|
get UserID(): number | null;
|
|
6442
6693
|
set UserID(value: number | null);
|
|
6443
6694
|
/**
|
|
6695
|
+
* * Field Name: __mj_CreatedAt
|
|
6696
|
+
* * Display Name: Created At
|
|
6697
|
+
* * SQL Data Type: datetimeoffset
|
|
6698
|
+
*/
|
|
6699
|
+
get __mj_CreatedAt(): Date;
|
|
6700
|
+
/**
|
|
6701
|
+
* * Field Name: __mj_UpdatedAt
|
|
6702
|
+
* * Display Name: Updated At
|
|
6703
|
+
* * SQL Data Type: datetimeoffset
|
|
6704
|
+
* * Default Value: getutcdate()
|
|
6705
|
+
*/
|
|
6706
|
+
get __mj_UpdatedAt(): Date;
|
|
6707
|
+
/**
|
|
6444
6708
|
* * Field Name: Report
|
|
6445
6709
|
* * Display Name: Report
|
|
6446
6710
|
* * SQL Data Type: nvarchar(255)
|
|
6711
|
+
* * Default Value: getutcdate()
|
|
6447
6712
|
*/
|
|
6448
6713
|
get Report(): string;
|
|
6449
6714
|
/**
|
|
@@ -6634,6 +6899,20 @@ export declare class TagEntity extends BaseEntity {
|
|
|
6634
6899
|
get ParentID(): number | null;
|
|
6635
6900
|
set ParentID(value: number | null);
|
|
6636
6901
|
/**
|
|
6902
|
+
* * Field Name: __mj_CreatedAt
|
|
6903
|
+
* * Display Name: Created At
|
|
6904
|
+
* * SQL Data Type: datetimeoffset
|
|
6905
|
+
* * Default Value: getutcdate()
|
|
6906
|
+
*/
|
|
6907
|
+
get __mj_CreatedAt(): Date;
|
|
6908
|
+
/**
|
|
6909
|
+
* * Field Name: __mj_UpdatedAt
|
|
6910
|
+
* * Display Name: Updated At
|
|
6911
|
+
* * SQL Data Type: datetimeoffset
|
|
6912
|
+
* * Default Value: getutcdate()
|
|
6913
|
+
*/
|
|
6914
|
+
get __mj_UpdatedAt(): Date;
|
|
6915
|
+
/**
|
|
6637
6916
|
* * Field Name: Parent
|
|
6638
6917
|
* * Display Name: Parent
|
|
6639
6918
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -6703,6 +6982,20 @@ export declare class TaggedItemEntity extends BaseEntity {
|
|
|
6703
6982
|
get RecordID(): string;
|
|
6704
6983
|
set RecordID(value: string);
|
|
6705
6984
|
/**
|
|
6985
|
+
* * Field Name: __mj_CreatedAt
|
|
6986
|
+
* * Display Name: Created At
|
|
6987
|
+
* * SQL Data Type: datetimeoffset
|
|
6988
|
+
* * Default Value: getutcdate()
|
|
6989
|
+
*/
|
|
6990
|
+
get __mj_CreatedAt(): Date;
|
|
6991
|
+
/**
|
|
6992
|
+
* * Field Name: __mj_UpdatedAt
|
|
6993
|
+
* * Display Name: Updated At
|
|
6994
|
+
* * SQL Data Type: datetimeoffset
|
|
6995
|
+
* * Default Value: getutcdate()
|
|
6996
|
+
*/
|
|
6997
|
+
get __mj_UpdatedAt(): Date;
|
|
6998
|
+
/**
|
|
6706
6999
|
* * Field Name: Tag
|
|
6707
7000
|
* * Display Name: Tag
|
|
6708
7001
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -6768,23 +7061,22 @@ export declare class WorkspaceEntity extends BaseEntity {
|
|
|
6768
7061
|
get UserID(): number;
|
|
6769
7062
|
set UserID(value: number);
|
|
6770
7063
|
/**
|
|
6771
|
-
* * Field Name:
|
|
7064
|
+
* * Field Name: __mj_CreatedAt
|
|
6772
7065
|
* * Display Name: Created At
|
|
6773
|
-
* * SQL Data Type:
|
|
6774
|
-
* * Default Value: getdate()
|
|
7066
|
+
* * SQL Data Type: datetimeoffset
|
|
6775
7067
|
*/
|
|
6776
|
-
get
|
|
7068
|
+
get __mj_CreatedAt(): Date;
|
|
6777
7069
|
/**
|
|
6778
|
-
* * Field Name:
|
|
7070
|
+
* * Field Name: __mj_UpdatedAt
|
|
6779
7071
|
* * Display Name: Updated At
|
|
6780
|
-
* * SQL Data Type:
|
|
6781
|
-
* * Default Value: getdate()
|
|
7072
|
+
* * SQL Data Type: datetimeoffset
|
|
6782
7073
|
*/
|
|
6783
|
-
get
|
|
7074
|
+
get __mj_UpdatedAt(): Date;
|
|
6784
7075
|
/**
|
|
6785
7076
|
* * Field Name: User
|
|
6786
7077
|
* * Display Name: User
|
|
6787
7078
|
* * SQL Data Type: nvarchar(100)
|
|
7079
|
+
* * Default Value: getutcdate()
|
|
6788
7080
|
*/
|
|
6789
7081
|
get User(): string;
|
|
6790
7082
|
}
|
|
@@ -6870,29 +7162,29 @@ export declare class WorkspaceItemEntity extends BaseEntity {
|
|
|
6870
7162
|
get Configuration(): string | null;
|
|
6871
7163
|
set Configuration(value: string | null);
|
|
6872
7164
|
/**
|
|
6873
|
-
* * Field Name:
|
|
7165
|
+
* * Field Name: __mj_CreatedAt
|
|
6874
7166
|
* * Display Name: Created At
|
|
6875
|
-
* * SQL Data Type:
|
|
6876
|
-
* * Default Value: getdate()
|
|
7167
|
+
* * SQL Data Type: datetimeoffset
|
|
6877
7168
|
*/
|
|
6878
|
-
get
|
|
7169
|
+
get __mj_CreatedAt(): Date;
|
|
6879
7170
|
/**
|
|
6880
|
-
* * Field Name:
|
|
7171
|
+
* * Field Name: __mj_UpdatedAt
|
|
6881
7172
|
* * Display Name: Updated At
|
|
6882
|
-
* * SQL Data Type:
|
|
6883
|
-
* * Default Value: getdate()
|
|
7173
|
+
* * SQL Data Type: datetimeoffset
|
|
6884
7174
|
*/
|
|
6885
|
-
get
|
|
7175
|
+
get __mj_UpdatedAt(): Date;
|
|
6886
7176
|
/**
|
|
6887
7177
|
* * Field Name: WorkSpace
|
|
6888
7178
|
* * Display Name: Work Space
|
|
6889
7179
|
* * SQL Data Type: nvarchar(255)
|
|
7180
|
+
* * Default Value: getutcdate()
|
|
6890
7181
|
*/
|
|
6891
7182
|
get WorkSpace(): string;
|
|
6892
7183
|
/**
|
|
6893
7184
|
* * Field Name: ResourceType
|
|
6894
7185
|
* * Display Name: Resource Type
|
|
6895
7186
|
* * SQL Data Type: nvarchar(255)
|
|
7187
|
+
* * Default Value: getutcdate()
|
|
6896
7188
|
*/
|
|
6897
7189
|
get ResourceType(): string;
|
|
6898
7190
|
}
|
|
@@ -6959,19 +7251,17 @@ export declare class DatasetEntity extends BaseEntity {
|
|
|
6959
7251
|
get Description(): string | null;
|
|
6960
7252
|
set Description(value: string | null);
|
|
6961
7253
|
/**
|
|
6962
|
-
* * Field Name:
|
|
7254
|
+
* * Field Name: __mj_CreatedAt
|
|
6963
7255
|
* * Display Name: Created At
|
|
6964
|
-
* * SQL Data Type:
|
|
6965
|
-
* * Default Value: getdate()
|
|
7256
|
+
* * SQL Data Type: datetimeoffset
|
|
6966
7257
|
*/
|
|
6967
|
-
get
|
|
7258
|
+
get __mj_CreatedAt(): Date;
|
|
6968
7259
|
/**
|
|
6969
|
-
* * Field Name:
|
|
7260
|
+
* * Field Name: __mj_UpdatedAt
|
|
6970
7261
|
* * Display Name: Updated At
|
|
6971
|
-
* * SQL Data Type:
|
|
6972
|
-
* * Default Value: getdate()
|
|
7262
|
+
* * SQL Data Type: datetimeoffset
|
|
6973
7263
|
*/
|
|
6974
|
-
get
|
|
7264
|
+
get __mj_UpdatedAt(): Date;
|
|
6975
7265
|
}
|
|
6976
7266
|
/**
|
|
6977
7267
|
* Dataset Items - strongly typed entity sub-class
|
|
@@ -7074,23 +7364,22 @@ export declare class DatasetItemEntity extends BaseEntity {
|
|
|
7074
7364
|
get Description(): string | null;
|
|
7075
7365
|
set Description(value: string | null);
|
|
7076
7366
|
/**
|
|
7077
|
-
* * Field Name:
|
|
7367
|
+
* * Field Name: __mj_CreatedAt
|
|
7078
7368
|
* * Display Name: Created At
|
|
7079
|
-
* * SQL Data Type:
|
|
7080
|
-
* * Default Value: getdate()
|
|
7369
|
+
* * SQL Data Type: datetimeoffset
|
|
7081
7370
|
*/
|
|
7082
|
-
get
|
|
7371
|
+
get __mj_CreatedAt(): Date;
|
|
7083
7372
|
/**
|
|
7084
|
-
* * Field Name:
|
|
7373
|
+
* * Field Name: __mj_UpdatedAt
|
|
7085
7374
|
* * Display Name: Updated At
|
|
7086
|
-
* * SQL Data Type:
|
|
7087
|
-
* * Default Value: getdate()
|
|
7375
|
+
* * SQL Data Type: datetimeoffset
|
|
7088
7376
|
*/
|
|
7089
|
-
get
|
|
7377
|
+
get __mj_UpdatedAt(): Date;
|
|
7090
7378
|
/**
|
|
7091
7379
|
* * Field Name: Entity
|
|
7092
7380
|
* * Display Name: Entity
|
|
7093
7381
|
* * SQL Data Type: nvarchar(255)
|
|
7382
|
+
* * Default Value: getutcdate()
|
|
7094
7383
|
*/
|
|
7095
7384
|
get Entity(): string;
|
|
7096
7385
|
}
|
|
@@ -7174,23 +7463,22 @@ export declare class ConversationDetailEntity extends BaseEntity {
|
|
|
7174
7463
|
get HiddenToUser(): boolean;
|
|
7175
7464
|
set HiddenToUser(value: boolean);
|
|
7176
7465
|
/**
|
|
7177
|
-
* * Field Name:
|
|
7466
|
+
* * Field Name: __mj_CreatedAt
|
|
7178
7467
|
* * Display Name: Created At
|
|
7179
|
-
* * SQL Data Type:
|
|
7180
|
-
* * Default Value: getdate()
|
|
7468
|
+
* * SQL Data Type: datetimeoffset
|
|
7181
7469
|
*/
|
|
7182
|
-
get
|
|
7470
|
+
get __mj_CreatedAt(): Date;
|
|
7183
7471
|
/**
|
|
7184
|
-
* * Field Name:
|
|
7472
|
+
* * Field Name: __mj_UpdatedAt
|
|
7185
7473
|
* * Display Name: Updated At
|
|
7186
|
-
* * SQL Data Type:
|
|
7187
|
-
* * Default Value: getdate()
|
|
7474
|
+
* * SQL Data Type: datetimeoffset
|
|
7188
7475
|
*/
|
|
7189
|
-
get
|
|
7476
|
+
get __mj_UpdatedAt(): Date;
|
|
7190
7477
|
/**
|
|
7191
7478
|
* * Field Name: Conversation
|
|
7192
7479
|
* * Display Name: Conversation
|
|
7193
7480
|
* * SQL Data Type: nvarchar(100)
|
|
7481
|
+
* * Default Value: getutcdate()
|
|
7194
7482
|
*/
|
|
7195
7483
|
get Conversation(): string | null;
|
|
7196
7484
|
}
|
|
@@ -7291,29 +7579,29 @@ export declare class ConversationEntity extends BaseEntity {
|
|
|
7291
7579
|
get DataContextID(): number | null;
|
|
7292
7580
|
set DataContextID(value: number | null);
|
|
7293
7581
|
/**
|
|
7294
|
-
* * Field Name:
|
|
7582
|
+
* * Field Name: __mj_CreatedAt
|
|
7295
7583
|
* * Display Name: Created At
|
|
7296
|
-
* * SQL Data Type:
|
|
7297
|
-
* * Default Value: getdate()
|
|
7584
|
+
* * SQL Data Type: datetimeoffset
|
|
7298
7585
|
*/
|
|
7299
|
-
get
|
|
7586
|
+
get __mj_CreatedAt(): Date;
|
|
7300
7587
|
/**
|
|
7301
|
-
* * Field Name:
|
|
7588
|
+
* * Field Name: __mj_UpdatedAt
|
|
7302
7589
|
* * Display Name: Updated At
|
|
7303
|
-
* * SQL Data Type:
|
|
7304
|
-
* * Default Value: getdate()
|
|
7590
|
+
* * SQL Data Type: datetimeoffset
|
|
7305
7591
|
*/
|
|
7306
|
-
get
|
|
7592
|
+
get __mj_UpdatedAt(): Date;
|
|
7307
7593
|
/**
|
|
7308
7594
|
* * Field Name: User
|
|
7309
7595
|
* * Display Name: User
|
|
7310
7596
|
* * SQL Data Type: nvarchar(100)
|
|
7597
|
+
* * Default Value: getutcdate()
|
|
7311
7598
|
*/
|
|
7312
7599
|
get User(): string;
|
|
7313
7600
|
/**
|
|
7314
7601
|
* * Field Name: LinkedEntity
|
|
7315
7602
|
* * Display Name: Linked Entity
|
|
7316
7603
|
* * SQL Data Type: nvarchar(255)
|
|
7604
|
+
* * Default Value: getutcdate()
|
|
7317
7605
|
*/
|
|
7318
7606
|
get LinkedEntity(): string | null;
|
|
7319
7607
|
}
|
|
@@ -7405,23 +7693,22 @@ export declare class UserNotificationEntity extends BaseEntity {
|
|
|
7405
7693
|
get ReadAt(): Date | null;
|
|
7406
7694
|
set ReadAt(value: Date | null);
|
|
7407
7695
|
/**
|
|
7408
|
-
* * Field Name:
|
|
7696
|
+
* * Field Name: __mj_CreatedAt
|
|
7409
7697
|
* * Display Name: Created At
|
|
7410
|
-
* * SQL Data Type:
|
|
7411
|
-
* * Default Value: getdate()
|
|
7698
|
+
* * SQL Data Type: datetimeoffset
|
|
7412
7699
|
*/
|
|
7413
|
-
get
|
|
7700
|
+
get __mj_CreatedAt(): Date;
|
|
7414
7701
|
/**
|
|
7415
|
-
* * Field Name:
|
|
7702
|
+
* * Field Name: __mj_UpdatedAt
|
|
7416
7703
|
* * Display Name: Updated At
|
|
7417
|
-
* * SQL Data Type:
|
|
7418
|
-
* * Default Value: getdate()
|
|
7704
|
+
* * SQL Data Type: datetimeoffset
|
|
7419
7705
|
*/
|
|
7420
|
-
get
|
|
7706
|
+
get __mj_UpdatedAt(): Date;
|
|
7421
7707
|
/**
|
|
7422
7708
|
* * Field Name: User
|
|
7423
7709
|
* * Display Name: User
|
|
7424
7710
|
* * SQL Data Type: nvarchar(100)
|
|
7711
|
+
* * Default Value: getutcdate()
|
|
7425
7712
|
*/
|
|
7426
7713
|
get User(): string;
|
|
7427
7714
|
}
|
|
@@ -7493,19 +7780,17 @@ export declare class SchemaInfoEntity extends BaseEntity {
|
|
|
7493
7780
|
get Comments(): string | null;
|
|
7494
7781
|
set Comments(value: string | null);
|
|
7495
7782
|
/**
|
|
7496
|
-
* * Field Name:
|
|
7783
|
+
* * Field Name: __mj_CreatedAt
|
|
7497
7784
|
* * Display Name: Created At
|
|
7498
|
-
* * SQL Data Type:
|
|
7499
|
-
* * Default Value: getdate()
|
|
7785
|
+
* * SQL Data Type: datetimeoffset
|
|
7500
7786
|
*/
|
|
7501
|
-
get
|
|
7787
|
+
get __mj_CreatedAt(): Date;
|
|
7502
7788
|
/**
|
|
7503
|
-
* * Field Name:
|
|
7789
|
+
* * Field Name: __mj_UpdatedAt
|
|
7504
7790
|
* * Display Name: Updated At
|
|
7505
|
-
* * SQL Data Type:
|
|
7506
|
-
* * Default Value: getdate()
|
|
7791
|
+
* * SQL Data Type: datetimeoffset
|
|
7507
7792
|
*/
|
|
7508
|
-
get
|
|
7793
|
+
get __mj_UpdatedAt(): Date;
|
|
7509
7794
|
}
|
|
7510
7795
|
/**
|
|
7511
7796
|
* Company Integration Record Maps - strongly typed entity sub-class
|
|
@@ -7576,23 +7861,22 @@ export declare class CompanyIntegrationRecordMapEntity extends BaseEntity {
|
|
|
7576
7861
|
get EntityRecordID(): string;
|
|
7577
7862
|
set EntityRecordID(value: string);
|
|
7578
7863
|
/**
|
|
7579
|
-
* * Field Name:
|
|
7864
|
+
* * Field Name: __mj_CreatedAt
|
|
7580
7865
|
* * Display Name: Created At
|
|
7581
|
-
* * SQL Data Type:
|
|
7582
|
-
* * Default Value: getdate()
|
|
7866
|
+
* * SQL Data Type: datetimeoffset
|
|
7583
7867
|
*/
|
|
7584
|
-
get
|
|
7868
|
+
get __mj_CreatedAt(): Date;
|
|
7585
7869
|
/**
|
|
7586
|
-
* * Field Name:
|
|
7870
|
+
* * Field Name: __mj_UpdatedAt
|
|
7587
7871
|
* * Display Name: Updated At
|
|
7588
|
-
* * SQL Data Type:
|
|
7589
|
-
* * Default Value: getdate()
|
|
7872
|
+
* * SQL Data Type: datetimeoffset
|
|
7590
7873
|
*/
|
|
7591
|
-
get
|
|
7874
|
+
get __mj_UpdatedAt(): Date;
|
|
7592
7875
|
/**
|
|
7593
7876
|
* * Field Name: Entity
|
|
7594
7877
|
* * Display Name: Entity
|
|
7595
7878
|
* * SQL Data Type: nvarchar(255)
|
|
7879
|
+
* * Default Value: getutcdate()
|
|
7596
7880
|
*/
|
|
7597
7881
|
get Entity(): string;
|
|
7598
7882
|
}
|
|
@@ -7720,29 +8004,29 @@ export declare class RecordMergeLogEntity extends BaseEntity {
|
|
|
7720
8004
|
get Comments(): string | null;
|
|
7721
8005
|
set Comments(value: string | null);
|
|
7722
8006
|
/**
|
|
7723
|
-
* * Field Name:
|
|
8007
|
+
* * Field Name: __mj_CreatedAt
|
|
7724
8008
|
* * Display Name: Created At
|
|
7725
|
-
* * SQL Data Type:
|
|
7726
|
-
* * Default Value: getdate()
|
|
8009
|
+
* * SQL Data Type: datetimeoffset
|
|
7727
8010
|
*/
|
|
7728
|
-
get
|
|
8011
|
+
get __mj_CreatedAt(): Date;
|
|
7729
8012
|
/**
|
|
7730
|
-
* * Field Name:
|
|
8013
|
+
* * Field Name: __mj_UpdatedAt
|
|
7731
8014
|
* * Display Name: Updated At
|
|
7732
|
-
* * SQL Data Type:
|
|
7733
|
-
* * Default Value: getdate()
|
|
8015
|
+
* * SQL Data Type: datetimeoffset
|
|
7734
8016
|
*/
|
|
7735
|
-
get
|
|
8017
|
+
get __mj_UpdatedAt(): Date;
|
|
7736
8018
|
/**
|
|
7737
8019
|
* * Field Name: Entity
|
|
7738
8020
|
* * Display Name: Entity
|
|
7739
8021
|
* * SQL Data Type: nvarchar(255)
|
|
8022
|
+
* * Default Value: getutcdate()
|
|
7740
8023
|
*/
|
|
7741
8024
|
get Entity(): string;
|
|
7742
8025
|
/**
|
|
7743
8026
|
* * Field Name: InitiatedByUser
|
|
7744
8027
|
* * Display Name: Initiated By User
|
|
7745
8028
|
* * SQL Data Type: nvarchar(100)
|
|
8029
|
+
* * Default Value: getutcdate()
|
|
7746
8030
|
*/
|
|
7747
8031
|
get InitiatedByUser(): string;
|
|
7748
8032
|
}
|
|
@@ -7820,19 +8104,17 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity {
|
|
|
7820
8104
|
get ProcessingLog(): string | null;
|
|
7821
8105
|
set ProcessingLog(value: string | null);
|
|
7822
8106
|
/**
|
|
7823
|
-
* * Field Name:
|
|
8107
|
+
* * Field Name: __mj_CreatedAt
|
|
7824
8108
|
* * Display Name: Created At
|
|
7825
|
-
* * SQL Data Type:
|
|
7826
|
-
* * Default Value: getdate()
|
|
8109
|
+
* * SQL Data Type: datetimeoffset
|
|
7827
8110
|
*/
|
|
7828
|
-
get
|
|
8111
|
+
get __mj_CreatedAt(): Date;
|
|
7829
8112
|
/**
|
|
7830
|
-
* * Field Name:
|
|
8113
|
+
* * Field Name: __mj_UpdatedAt
|
|
7831
8114
|
* * Display Name: Updated At
|
|
7832
|
-
* * SQL Data Type:
|
|
7833
|
-
* * Default Value: getdate()
|
|
8115
|
+
* * SQL Data Type: datetimeoffset
|
|
7834
8116
|
*/
|
|
7835
|
-
get
|
|
8117
|
+
get __mj_UpdatedAt(): Date;
|
|
7836
8118
|
}
|
|
7837
8119
|
/**
|
|
7838
8120
|
* Query Fields - strongly typed entity sub-class
|
|
@@ -8358,29 +8640,29 @@ export declare class VectorIndexEntity extends BaseEntity {
|
|
|
8358
8640
|
get EmbeddingModelID(): number;
|
|
8359
8641
|
set EmbeddingModelID(value: number);
|
|
8360
8642
|
/**
|
|
8361
|
-
* * Field Name:
|
|
8643
|
+
* * Field Name: __mj_CreatedAt
|
|
8362
8644
|
* * Display Name: Created At
|
|
8363
|
-
* * SQL Data Type:
|
|
8364
|
-
* * Default Value: getdate()
|
|
8645
|
+
* * SQL Data Type: datetimeoffset
|
|
8365
8646
|
*/
|
|
8366
|
-
get
|
|
8647
|
+
get __mj_CreatedAt(): Date;
|
|
8367
8648
|
/**
|
|
8368
|
-
* * Field Name:
|
|
8649
|
+
* * Field Name: __mj_UpdatedAt
|
|
8369
8650
|
* * Display Name: Updated At
|
|
8370
|
-
* * SQL Data Type:
|
|
8371
|
-
* * Default Value: getdate()
|
|
8651
|
+
* * SQL Data Type: datetimeoffset
|
|
8372
8652
|
*/
|
|
8373
|
-
get
|
|
8653
|
+
get __mj_UpdatedAt(): Date;
|
|
8374
8654
|
/**
|
|
8375
8655
|
* * Field Name: VectorDatabase
|
|
8376
8656
|
* * Display Name: Vector Database
|
|
8377
8657
|
* * SQL Data Type: nvarchar(100)
|
|
8658
|
+
* * Default Value: getutcdate()
|
|
8378
8659
|
*/
|
|
8379
8660
|
get VectorDatabase(): string;
|
|
8380
8661
|
/**
|
|
8381
8662
|
* * Field Name: EmbeddingModel
|
|
8382
8663
|
* * Display Name: Embedding Model
|
|
8383
8664
|
* * SQL Data Type: nvarchar(50)
|
|
8665
|
+
* * Default Value: getutcdate()
|
|
8384
8666
|
*/
|
|
8385
8667
|
get EmbeddingModel(): string;
|
|
8386
8668
|
}
|
|
@@ -8610,19 +8892,17 @@ export declare class VectorDatabaseEntity extends BaseEntity {
|
|
|
8610
8892
|
get ClassKey(): string | null;
|
|
8611
8893
|
set ClassKey(value: string | null);
|
|
8612
8894
|
/**
|
|
8613
|
-
* * Field Name:
|
|
8895
|
+
* * Field Name: __mj_CreatedAt
|
|
8614
8896
|
* * Display Name: Created At
|
|
8615
|
-
* * SQL Data Type:
|
|
8616
|
-
* * Default Value: getdate()
|
|
8897
|
+
* * SQL Data Type: datetimeoffset
|
|
8617
8898
|
*/
|
|
8618
|
-
get
|
|
8899
|
+
get __mj_CreatedAt(): Date;
|
|
8619
8900
|
/**
|
|
8620
|
-
* * Field Name:
|
|
8901
|
+
* * Field Name: __mj_UpdatedAt
|
|
8621
8902
|
* * Display Name: Updated At
|
|
8622
|
-
* * SQL Data Type:
|
|
8623
|
-
* * Default Value: getdate()
|
|
8903
|
+
* * SQL Data Type: datetimeoffset
|
|
8624
8904
|
*/
|
|
8625
|
-
get
|
|
8905
|
+
get __mj_UpdatedAt(): Date;
|
|
8626
8906
|
}
|
|
8627
8907
|
/**
|
|
8628
8908
|
* Entity Record Documents - strongly typed entity sub-class
|
|
@@ -8987,29 +9267,29 @@ export declare class DataContextItemEntity extends BaseEntity {
|
|
|
8987
9267
|
get LastRefreshedAt(): Date | null;
|
|
8988
9268
|
set LastRefreshedAt(value: Date | null);
|
|
8989
9269
|
/**
|
|
8990
|
-
* * Field Name:
|
|
9270
|
+
* * Field Name: __mj_CreatedAt
|
|
8991
9271
|
* * Display Name: Created At
|
|
8992
|
-
* * SQL Data Type:
|
|
8993
|
-
* * Default Value: getdate()
|
|
9272
|
+
* * SQL Data Type: datetimeoffset
|
|
8994
9273
|
*/
|
|
8995
|
-
get
|
|
9274
|
+
get __mj_CreatedAt(): Date;
|
|
8996
9275
|
/**
|
|
8997
|
-
* * Field Name:
|
|
9276
|
+
* * Field Name: __mj_UpdatedAt
|
|
8998
9277
|
* * Display Name: Updated At
|
|
8999
|
-
* * SQL Data Type:
|
|
9000
|
-
* * Default Value: getdate()
|
|
9278
|
+
* * SQL Data Type: datetimeoffset
|
|
9001
9279
|
*/
|
|
9002
|
-
get
|
|
9280
|
+
get __mj_UpdatedAt(): Date;
|
|
9003
9281
|
/**
|
|
9004
9282
|
* * Field Name: DataContext
|
|
9005
9283
|
* * Display Name: Data Context
|
|
9006
9284
|
* * SQL Data Type: nvarchar(255)
|
|
9285
|
+
* * Default Value: getutcdate()
|
|
9007
9286
|
*/
|
|
9008
9287
|
get DataContext(): string;
|
|
9009
9288
|
/**
|
|
9010
9289
|
* * Field Name: View
|
|
9011
9290
|
* * Display Name: View
|
|
9012
9291
|
* * SQL Data Type: nvarchar(100)
|
|
9292
|
+
* * Default Value: getutcdate()
|
|
9013
9293
|
*/
|
|
9014
9294
|
get View(): string | null;
|
|
9015
9295
|
/**
|
|
@@ -9085,23 +9365,22 @@ export declare class DataContextEntity extends BaseEntity {
|
|
|
9085
9365
|
get LastRefreshedAt(): Date | null;
|
|
9086
9366
|
set LastRefreshedAt(value: Date | null);
|
|
9087
9367
|
/**
|
|
9088
|
-
* * Field Name:
|
|
9368
|
+
* * Field Name: __mj_CreatedAt
|
|
9089
9369
|
* * Display Name: Created At
|
|
9090
|
-
* * SQL Data Type:
|
|
9091
|
-
* * Default Value: getdate()
|
|
9370
|
+
* * SQL Data Type: datetimeoffset
|
|
9092
9371
|
*/
|
|
9093
|
-
get
|
|
9372
|
+
get __mj_CreatedAt(): Date;
|
|
9094
9373
|
/**
|
|
9095
|
-
* * Field Name:
|
|
9374
|
+
* * Field Name: __mj_UpdatedAt
|
|
9096
9375
|
* * Display Name: Updated At
|
|
9097
|
-
* * SQL Data Type:
|
|
9098
|
-
* * Default Value: getdate()
|
|
9376
|
+
* * SQL Data Type: datetimeoffset
|
|
9099
9377
|
*/
|
|
9100
|
-
get
|
|
9378
|
+
get __mj_UpdatedAt(): Date;
|
|
9101
9379
|
/**
|
|
9102
9380
|
* * Field Name: User
|
|
9103
9381
|
* * Display Name: User
|
|
9104
9382
|
* * SQL Data Type: nvarchar(100)
|
|
9383
|
+
* * Default Value: getutcdate()
|
|
9105
9384
|
*/
|
|
9106
9385
|
get User(): string;
|
|
9107
9386
|
}
|
|
@@ -9157,20 +9436,6 @@ export declare class UserViewCategoryEntity extends BaseEntity {
|
|
|
9157
9436
|
get ParentID(): number | null;
|
|
9158
9437
|
set ParentID(value: number | null);
|
|
9159
9438
|
/**
|
|
9160
|
-
* * Field Name: CreatedAt
|
|
9161
|
-
* * Display Name: Created At
|
|
9162
|
-
* * SQL Data Type: datetime
|
|
9163
|
-
* * Default Value: getdate()
|
|
9164
|
-
*/
|
|
9165
|
-
get CreatedAt(): Date;
|
|
9166
|
-
/**
|
|
9167
|
-
* * Field Name: UpdatedAt
|
|
9168
|
-
* * Display Name: Updated At
|
|
9169
|
-
* * SQL Data Type: datetime
|
|
9170
|
-
* * Default Value: getdate()
|
|
9171
|
-
*/
|
|
9172
|
-
get UpdatedAt(): Date;
|
|
9173
|
-
/**
|
|
9174
9439
|
* * Field Name: EntityID
|
|
9175
9440
|
* * Display Name: Entity ID
|
|
9176
9441
|
* * SQL Data Type: int
|
|
@@ -9187,15 +9452,29 @@ export declare class UserViewCategoryEntity extends BaseEntity {
|
|
|
9187
9452
|
get UserID(): number;
|
|
9188
9453
|
set UserID(value: number);
|
|
9189
9454
|
/**
|
|
9455
|
+
* * Field Name: __mj_CreatedAt
|
|
9456
|
+
* * Display Name: Created At
|
|
9457
|
+
* * SQL Data Type: datetimeoffset
|
|
9458
|
+
*/
|
|
9459
|
+
get __mj_CreatedAt(): Date;
|
|
9460
|
+
/**
|
|
9461
|
+
* * Field Name: __mj_UpdatedAt
|
|
9462
|
+
* * Display Name: Updated At
|
|
9463
|
+
* * SQL Data Type: datetimeoffset
|
|
9464
|
+
*/
|
|
9465
|
+
get __mj_UpdatedAt(): Date;
|
|
9466
|
+
/**
|
|
9190
9467
|
* * Field Name: Parent
|
|
9191
9468
|
* * Display Name: Parent
|
|
9192
9469
|
* * SQL Data Type: nvarchar(100)
|
|
9470
|
+
* * Default Value: getutcdate()
|
|
9193
9471
|
*/
|
|
9194
9472
|
get Parent(): string | null;
|
|
9195
9473
|
/**
|
|
9196
9474
|
* * Field Name: User
|
|
9197
9475
|
* * Display Name: User
|
|
9198
9476
|
* * SQL Data Type: nvarchar(100)
|
|
9477
|
+
* * Default Value: getutcdate()
|
|
9199
9478
|
*/
|
|
9200
9479
|
get User(): string;
|
|
9201
9480
|
}
|
|
@@ -9251,20 +9530,6 @@ export declare class DashboardCategoryEntity extends BaseEntity {
|
|
|
9251
9530
|
get ParentID(): number | null;
|
|
9252
9531
|
set ParentID(value: number | null);
|
|
9253
9532
|
/**
|
|
9254
|
-
* * Field Name: CreatedAt
|
|
9255
|
-
* * Display Name: Created At
|
|
9256
|
-
* * SQL Data Type: datetime
|
|
9257
|
-
* * Default Value: getdate()
|
|
9258
|
-
*/
|
|
9259
|
-
get CreatedAt(): Date;
|
|
9260
|
-
/**
|
|
9261
|
-
* * Field Name: UpdatedAt
|
|
9262
|
-
* * Display Name: Updated At
|
|
9263
|
-
* * SQL Data Type: datetime
|
|
9264
|
-
* * Default Value: getdate()
|
|
9265
|
-
*/
|
|
9266
|
-
get UpdatedAt(): Date;
|
|
9267
|
-
/**
|
|
9268
9533
|
* * Field Name: UserID
|
|
9269
9534
|
* * Display Name: User ID
|
|
9270
9535
|
* * SQL Data Type: int
|
|
@@ -9273,15 +9538,29 @@ export declare class DashboardCategoryEntity extends BaseEntity {
|
|
|
9273
9538
|
get UserID(): number;
|
|
9274
9539
|
set UserID(value: number);
|
|
9275
9540
|
/**
|
|
9541
|
+
* * Field Name: __mj_CreatedAt
|
|
9542
|
+
* * Display Name: Created At
|
|
9543
|
+
* * SQL Data Type: datetimeoffset
|
|
9544
|
+
*/
|
|
9545
|
+
get __mj_CreatedAt(): Date;
|
|
9546
|
+
/**
|
|
9547
|
+
* * Field Name: __mj_UpdatedAt
|
|
9548
|
+
* * Display Name: Updated At
|
|
9549
|
+
* * SQL Data Type: datetimeoffset
|
|
9550
|
+
*/
|
|
9551
|
+
get __mj_UpdatedAt(): Date;
|
|
9552
|
+
/**
|
|
9276
9553
|
* * Field Name: Parent
|
|
9277
9554
|
* * Display Name: Parent
|
|
9278
9555
|
* * SQL Data Type: nvarchar(100)
|
|
9556
|
+
* * Default Value: getutcdate()
|
|
9279
9557
|
*/
|
|
9280
9558
|
get Parent(): string | null;
|
|
9281
9559
|
/**
|
|
9282
9560
|
* * Field Name: User
|
|
9283
9561
|
* * Display Name: User
|
|
9284
9562
|
* * SQL Data Type: nvarchar(100)
|
|
9563
|
+
* * Default Value: getutcdate()
|
|
9285
9564
|
*/
|
|
9286
9565
|
get User(): string;
|
|
9287
9566
|
}
|
|
@@ -9337,20 +9616,6 @@ export declare class ReportCategoryEntity extends BaseEntity {
|
|
|
9337
9616
|
get ParentID(): number | null;
|
|
9338
9617
|
set ParentID(value: number | null);
|
|
9339
9618
|
/**
|
|
9340
|
-
* * Field Name: CreatedAt
|
|
9341
|
-
* * Display Name: Created At
|
|
9342
|
-
* * SQL Data Type: datetime
|
|
9343
|
-
* * Default Value: getdate()
|
|
9344
|
-
*/
|
|
9345
|
-
get CreatedAt(): Date;
|
|
9346
|
-
/**
|
|
9347
|
-
* * Field Name: UpdatedAt
|
|
9348
|
-
* * Display Name: Updated At
|
|
9349
|
-
* * SQL Data Type: datetime
|
|
9350
|
-
* * Default Value: getdate()
|
|
9351
|
-
*/
|
|
9352
|
-
get UpdatedAt(): Date;
|
|
9353
|
-
/**
|
|
9354
9619
|
* * Field Name: UserID
|
|
9355
9620
|
* * Display Name: User ID
|
|
9356
9621
|
* * SQL Data Type: int
|
|
@@ -9359,15 +9624,29 @@ export declare class ReportCategoryEntity extends BaseEntity {
|
|
|
9359
9624
|
get UserID(): number;
|
|
9360
9625
|
set UserID(value: number);
|
|
9361
9626
|
/**
|
|
9627
|
+
* * Field Name: __mj_CreatedAt
|
|
9628
|
+
* * Display Name: Created At
|
|
9629
|
+
* * SQL Data Type: datetimeoffset
|
|
9630
|
+
*/
|
|
9631
|
+
get __mj_CreatedAt(): Date;
|
|
9632
|
+
/**
|
|
9633
|
+
* * Field Name: __mj_UpdatedAt
|
|
9634
|
+
* * Display Name: Updated At
|
|
9635
|
+
* * SQL Data Type: datetimeoffset
|
|
9636
|
+
*/
|
|
9637
|
+
get __mj_UpdatedAt(): Date;
|
|
9638
|
+
/**
|
|
9362
9639
|
* * Field Name: Parent
|
|
9363
9640
|
* * Display Name: Parent
|
|
9364
9641
|
* * SQL Data Type: nvarchar(100)
|
|
9642
|
+
* * Default Value: getutcdate()
|
|
9365
9643
|
*/
|
|
9366
9644
|
get Parent(): string | null;
|
|
9367
9645
|
/**
|
|
9368
9646
|
* * Field Name: User
|
|
9369
9647
|
* * Display Name: User
|
|
9370
9648
|
* * SQL Data Type: nvarchar(100)
|
|
9649
|
+
* * Default Value: getutcdate()
|
|
9371
9650
|
*/
|
|
9372
9651
|
get User(): string;
|
|
9373
9652
|
}
|
|
@@ -9454,19 +9733,17 @@ export declare class FileStorageProviderEntity extends BaseEntity {
|
|
|
9454
9733
|
get IsActive(): boolean;
|
|
9455
9734
|
set IsActive(value: boolean);
|
|
9456
9735
|
/**
|
|
9457
|
-
* * Field Name:
|
|
9736
|
+
* * Field Name: __mj_CreatedAt
|
|
9458
9737
|
* * Display Name: Created At
|
|
9459
|
-
* * SQL Data Type:
|
|
9460
|
-
* * Default Value: getdate()
|
|
9738
|
+
* * SQL Data Type: datetimeoffset
|
|
9461
9739
|
*/
|
|
9462
|
-
get
|
|
9740
|
+
get __mj_CreatedAt(): Date;
|
|
9463
9741
|
/**
|
|
9464
|
-
* * Field Name:
|
|
9742
|
+
* * Field Name: __mj_UpdatedAt
|
|
9465
9743
|
* * Display Name: Updated At
|
|
9466
|
-
* * SQL Data Type:
|
|
9467
|
-
* * Default Value: getdate()
|
|
9744
|
+
* * SQL Data Type: datetimeoffset
|
|
9468
9745
|
*/
|
|
9469
|
-
get
|
|
9746
|
+
get __mj_UpdatedAt(): Date;
|
|
9470
9747
|
}
|
|
9471
9748
|
/**
|
|
9472
9749
|
* Files - strongly typed entity sub-class
|
|
@@ -9551,29 +9828,29 @@ export declare class FileEntity extends BaseEntity {
|
|
|
9551
9828
|
get Status(): string;
|
|
9552
9829
|
set Status(value: string);
|
|
9553
9830
|
/**
|
|
9554
|
-
* * Field Name:
|
|
9831
|
+
* * Field Name: __mj_CreatedAt
|
|
9555
9832
|
* * Display Name: Created At
|
|
9556
|
-
* * SQL Data Type:
|
|
9557
|
-
* * Default Value: getdate()
|
|
9833
|
+
* * SQL Data Type: datetimeoffset
|
|
9558
9834
|
*/
|
|
9559
|
-
get
|
|
9835
|
+
get __mj_CreatedAt(): Date;
|
|
9560
9836
|
/**
|
|
9561
|
-
* * Field Name:
|
|
9837
|
+
* * Field Name: __mj_UpdatedAt
|
|
9562
9838
|
* * Display Name: Updated At
|
|
9563
|
-
* * SQL Data Type:
|
|
9564
|
-
* * Default Value: getdate()
|
|
9839
|
+
* * SQL Data Type: datetimeoffset
|
|
9565
9840
|
*/
|
|
9566
|
-
get
|
|
9841
|
+
get __mj_UpdatedAt(): Date;
|
|
9567
9842
|
/**
|
|
9568
9843
|
* * Field Name: Provider
|
|
9569
9844
|
* * Display Name: Provider
|
|
9570
9845
|
* * SQL Data Type: nvarchar(50)
|
|
9846
|
+
* * Default Value: getutcdate()
|
|
9571
9847
|
*/
|
|
9572
9848
|
get Provider(): string;
|
|
9573
9849
|
/**
|
|
9574
9850
|
* * Field Name: Category
|
|
9575
9851
|
* * Display Name: Category
|
|
9576
9852
|
* * SQL Data Type: nvarchar(255)
|
|
9853
|
+
* * Default Value: getutcdate()
|
|
9577
9854
|
*/
|
|
9578
9855
|
get Category(): string | null;
|
|
9579
9856
|
}
|
|
@@ -9629,23 +9906,22 @@ export declare class FileCategoryEntity extends BaseEntity {
|
|
|
9629
9906
|
get ParentID(): number | null;
|
|
9630
9907
|
set ParentID(value: number | null);
|
|
9631
9908
|
/**
|
|
9632
|
-
* * Field Name:
|
|
9909
|
+
* * Field Name: __mj_CreatedAt
|
|
9633
9910
|
* * Display Name: Created At
|
|
9634
|
-
* * SQL Data Type:
|
|
9635
|
-
* * Default Value: getdate()
|
|
9911
|
+
* * SQL Data Type: datetimeoffset
|
|
9636
9912
|
*/
|
|
9637
|
-
get
|
|
9913
|
+
get __mj_CreatedAt(): Date;
|
|
9638
9914
|
/**
|
|
9639
|
-
* * Field Name:
|
|
9915
|
+
* * Field Name: __mj_UpdatedAt
|
|
9640
9916
|
* * Display Name: Updated At
|
|
9641
|
-
* * SQL Data Type:
|
|
9642
|
-
* * Default Value: getdate()
|
|
9917
|
+
* * SQL Data Type: datetimeoffset
|
|
9643
9918
|
*/
|
|
9644
|
-
get
|
|
9919
|
+
get __mj_UpdatedAt(): Date;
|
|
9645
9920
|
/**
|
|
9646
9921
|
* * Field Name: Parent
|
|
9647
9922
|
* * Display Name: Parent
|
|
9648
9923
|
* * SQL Data Type: nvarchar(255)
|
|
9924
|
+
* * Default Value: getutcdate()
|
|
9649
9925
|
*/
|
|
9650
9926
|
get Parent(): string | null;
|
|
9651
9927
|
}
|
|
@@ -9711,29 +9987,29 @@ export declare class FileEntityRecordLinkEntity extends BaseEntity {
|
|
|
9711
9987
|
get RecordID(): string;
|
|
9712
9988
|
set RecordID(value: string);
|
|
9713
9989
|
/**
|
|
9714
|
-
* * Field Name:
|
|
9990
|
+
* * Field Name: __mj_CreatedAt
|
|
9715
9991
|
* * Display Name: Created At
|
|
9716
|
-
* * SQL Data Type:
|
|
9717
|
-
* * Default Value: getdate()
|
|
9992
|
+
* * SQL Data Type: datetimeoffset
|
|
9718
9993
|
*/
|
|
9719
|
-
get
|
|
9994
|
+
get __mj_CreatedAt(): Date;
|
|
9720
9995
|
/**
|
|
9721
|
-
* * Field Name:
|
|
9996
|
+
* * Field Name: __mj_UpdatedAt
|
|
9722
9997
|
* * Display Name: Updated At
|
|
9723
|
-
* * SQL Data Type:
|
|
9724
|
-
* * Default Value: getdate()
|
|
9998
|
+
* * SQL Data Type: datetimeoffset
|
|
9725
9999
|
*/
|
|
9726
|
-
get
|
|
10000
|
+
get __mj_UpdatedAt(): Date;
|
|
9727
10001
|
/**
|
|
9728
10002
|
* * Field Name: File
|
|
9729
10003
|
* * Display Name: File
|
|
9730
10004
|
* * SQL Data Type: nvarchar(500)
|
|
10005
|
+
* * Default Value: getutcdate()
|
|
9731
10006
|
*/
|
|
9732
10007
|
get File(): string;
|
|
9733
10008
|
/**
|
|
9734
10009
|
* * Field Name: Entity
|
|
9735
10010
|
* * Display Name: Entity
|
|
9736
10011
|
* * SQL Data Type: nvarchar(255)
|
|
10012
|
+
* * Default Value: getutcdate()
|
|
9737
10013
|
*/
|
|
9738
10014
|
get Entity(): string;
|
|
9739
10015
|
}
|
|
@@ -9848,23 +10124,22 @@ export declare class VersionInstallationEntity extends BaseEntity {
|
|
|
9848
10124
|
get Comments(): string | null;
|
|
9849
10125
|
set Comments(value: string | null);
|
|
9850
10126
|
/**
|
|
9851
|
-
* * Field Name:
|
|
10127
|
+
* * Field Name: __mj_CreatedAt
|
|
9852
10128
|
* * Display Name: Created At
|
|
9853
|
-
* * SQL Data Type:
|
|
9854
|
-
* * Default Value: getdate()
|
|
10129
|
+
* * SQL Data Type: datetimeoffset
|
|
9855
10130
|
*/
|
|
9856
|
-
get
|
|
10131
|
+
get __mj_CreatedAt(): Date;
|
|
9857
10132
|
/**
|
|
9858
|
-
* * Field Name:
|
|
10133
|
+
* * Field Name: __mj_UpdatedAt
|
|
9859
10134
|
* * Display Name: Updated At
|
|
9860
|
-
* * SQL Data Type:
|
|
9861
|
-
* * Default Value: getdate()
|
|
10135
|
+
* * SQL Data Type: datetimeoffset
|
|
9862
10136
|
*/
|
|
9863
|
-
get
|
|
10137
|
+
get __mj_UpdatedAt(): Date;
|
|
9864
10138
|
/**
|
|
9865
10139
|
* * Field Name: CompleteVersion
|
|
9866
10140
|
* * Display Name: Complete Version
|
|
9867
10141
|
* * SQL Data Type: nvarchar(302)
|
|
10142
|
+
* * Default Value: getutcdate()
|
|
9868
10143
|
*/
|
|
9869
10144
|
get CompleteVersion(): string | null;
|
|
9870
10145
|
}
|
|
@@ -10002,19 +10277,17 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity {
|
|
|
10002
10277
|
get RecordMergeLogID(): number | null;
|
|
10003
10278
|
set RecordMergeLogID(value: number | null);
|
|
10004
10279
|
/**
|
|
10005
|
-
* * Field Name:
|
|
10280
|
+
* * Field Name: __mj_CreatedAt
|
|
10006
10281
|
* * Display Name: Created At
|
|
10007
|
-
* * SQL Data Type:
|
|
10008
|
-
* * Default Value: getdate()
|
|
10282
|
+
* * SQL Data Type: datetimeoffset
|
|
10009
10283
|
*/
|
|
10010
|
-
get
|
|
10284
|
+
get __mj_CreatedAt(): Date;
|
|
10011
10285
|
/**
|
|
10012
|
-
* * Field Name:
|
|
10286
|
+
* * Field Name: __mj_UpdatedAt
|
|
10013
10287
|
* * Display Name: Updated At
|
|
10014
|
-
* * SQL Data Type:
|
|
10015
|
-
* * Default Value: getdate()
|
|
10288
|
+
* * SQL Data Type: datetimeoffset
|
|
10016
10289
|
*/
|
|
10017
|
-
get
|
|
10290
|
+
get __mj_UpdatedAt(): Date;
|
|
10018
10291
|
}
|
|
10019
10292
|
/**
|
|
10020
10293
|
* Entity Document Settings - strongly typed entity sub-class
|
|
@@ -10317,29 +10590,29 @@ export declare class DuplicateRunEntity extends BaseEntity {
|
|
|
10317
10590
|
get SourceListID(): number;
|
|
10318
10591
|
set SourceListID(value: number);
|
|
10319
10592
|
/**
|
|
10320
|
-
* * Field Name:
|
|
10593
|
+
* * Field Name: __mj_CreatedAt
|
|
10321
10594
|
* * Display Name: Created At
|
|
10322
|
-
* * SQL Data Type:
|
|
10323
|
-
* * Default Value: getdate()
|
|
10595
|
+
* * SQL Data Type: datetimeoffset
|
|
10324
10596
|
*/
|
|
10325
|
-
get
|
|
10597
|
+
get __mj_CreatedAt(): Date;
|
|
10326
10598
|
/**
|
|
10327
|
-
* * Field Name:
|
|
10599
|
+
* * Field Name: __mj_UpdatedAt
|
|
10328
10600
|
* * Display Name: Updated At
|
|
10329
|
-
* * SQL Data Type:
|
|
10330
|
-
* * Default Value: getdate()
|
|
10601
|
+
* * SQL Data Type: datetimeoffset
|
|
10331
10602
|
*/
|
|
10332
|
-
get
|
|
10603
|
+
get __mj_UpdatedAt(): Date;
|
|
10333
10604
|
/**
|
|
10334
10605
|
* * Field Name: Entity
|
|
10335
10606
|
* * Display Name: Entity
|
|
10336
10607
|
* * SQL Data Type: nvarchar(255)
|
|
10608
|
+
* * Default Value: getutcdate()
|
|
10337
10609
|
*/
|
|
10338
10610
|
get Entity(): string;
|
|
10339
10611
|
/**
|
|
10340
10612
|
* * Field Name: StartedByUser
|
|
10341
10613
|
* * Display Name: Started By User
|
|
10342
10614
|
* * SQL Data Type: nvarchar(100)
|
|
10615
|
+
* * Default Value: getutcdate()
|
|
10343
10616
|
*/
|
|
10344
10617
|
get StartedByUser(): string;
|
|
10345
10618
|
/**
|
|
@@ -10460,19 +10733,17 @@ export declare class DuplicateRunDetailEntity extends BaseEntity {
|
|
|
10460
10733
|
get MergeErrorMessage(): string | null;
|
|
10461
10734
|
set MergeErrorMessage(value: string | null);
|
|
10462
10735
|
/**
|
|
10463
|
-
* * Field Name:
|
|
10736
|
+
* * Field Name: __mj_CreatedAt
|
|
10464
10737
|
* * Display Name: Created At
|
|
10465
|
-
* * SQL Data Type:
|
|
10466
|
-
* * Default Value: getdate()
|
|
10738
|
+
* * SQL Data Type: datetimeoffset
|
|
10467
10739
|
*/
|
|
10468
|
-
get
|
|
10740
|
+
get __mj_CreatedAt(): Date;
|
|
10469
10741
|
/**
|
|
10470
|
-
* * Field Name:
|
|
10742
|
+
* * Field Name: __mj_UpdatedAt
|
|
10471
10743
|
* * Display Name: Updated At
|
|
10472
|
-
* * SQL Data Type:
|
|
10473
|
-
* * Default Value: getdate()
|
|
10744
|
+
* * SQL Data Type: datetimeoffset
|
|
10474
10745
|
*/
|
|
10475
|
-
get
|
|
10746
|
+
get __mj_UpdatedAt(): Date;
|
|
10476
10747
|
}
|
|
10477
10748
|
/**
|
|
10478
10749
|
* Entity Behaviors - strongly typed entity sub-class
|
|
@@ -11020,23 +11291,22 @@ export declare class ActionAuthorizationEntity extends BaseEntity {
|
|
|
11020
11291
|
get Comments(): string | null;
|
|
11021
11292
|
set Comments(value: string | null);
|
|
11022
11293
|
/**
|
|
11023
|
-
* * Field Name:
|
|
11294
|
+
* * Field Name: __mj_CreatedAt
|
|
11024
11295
|
* * Display Name: Created At
|
|
11025
|
-
* * SQL Data Type:
|
|
11026
|
-
* * Default Value: getdate()
|
|
11296
|
+
* * SQL Data Type: datetimeoffset
|
|
11027
11297
|
*/
|
|
11028
|
-
get
|
|
11298
|
+
get __mj_CreatedAt(): Date;
|
|
11029
11299
|
/**
|
|
11030
|
-
* * Field Name:
|
|
11300
|
+
* * Field Name: __mj_UpdatedAt
|
|
11031
11301
|
* * Display Name: Updated At
|
|
11032
|
-
* * SQL Data Type:
|
|
11033
|
-
* * Default Value: getdate()
|
|
11302
|
+
* * SQL Data Type: datetimeoffset
|
|
11034
11303
|
*/
|
|
11035
|
-
get
|
|
11304
|
+
get __mj_UpdatedAt(): Date;
|
|
11036
11305
|
/**
|
|
11037
11306
|
* * Field Name: Action
|
|
11038
11307
|
* * Display Name: Action
|
|
11039
11308
|
* * SQL Data Type: nvarchar(425)
|
|
11309
|
+
* * Default Value: getutcdate()
|
|
11040
11310
|
*/
|
|
11041
11311
|
get Action(): string;
|
|
11042
11312
|
}
|
|
@@ -11153,12 +11423,32 @@ export declare class ActionEntity extends BaseEntity {
|
|
|
11153
11423
|
get Name(): string;
|
|
11154
11424
|
set Name(value: string);
|
|
11155
11425
|
/**
|
|
11426
|
+
* * Field Name: Description
|
|
11427
|
+
* * Display Name: Description
|
|
11428
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
11429
|
+
*/
|
|
11430
|
+
get Description(): string | null;
|
|
11431
|
+
set Description(value: string | null);
|
|
11432
|
+
/**
|
|
11433
|
+
* * Field Name: Type
|
|
11434
|
+
* * Display Name: Type
|
|
11435
|
+
* * SQL Data Type: nvarchar(20)
|
|
11436
|
+
* * Default Value: Generated
|
|
11437
|
+
* * Value List Type: List
|
|
11438
|
+
* * Possible Values
|
|
11439
|
+
* * Generated
|
|
11440
|
+
* * Custom
|
|
11441
|
+
* * Description: Generated or Custom. Generated means the UserPrompt is used to prompt an AI model to automatically create the code for the Action. Custom means that a custom class has been implemented that subclasses the BaseAction class. The custom class needs to use the @RegisterClass decorator and be included in the MJAPI (or other runtime environment) to be available for execution.
|
|
11442
|
+
*/
|
|
11443
|
+
get Type(): 'Generated' | 'Custom';
|
|
11444
|
+
set Type(value: 'Generated' | 'Custom');
|
|
11445
|
+
/**
|
|
11156
11446
|
* * Field Name: UserPrompt
|
|
11157
11447
|
* * Display Name: User Prompt
|
|
11158
11448
|
* * SQL Data Type: nvarchar(MAX)
|
|
11159
11449
|
*/
|
|
11160
|
-
get UserPrompt(): string;
|
|
11161
|
-
set UserPrompt(value: string);
|
|
11450
|
+
get UserPrompt(): string | null;
|
|
11451
|
+
set UserPrompt(value: string | null);
|
|
11162
11452
|
/**
|
|
11163
11453
|
* * Field Name: UserComments
|
|
11164
11454
|
* * Display Name: User Comments
|
|
@@ -11222,6 +11512,15 @@ export declare class ActionEntity extends BaseEntity {
|
|
|
11222
11512
|
get CodeApprovedAt(): Date | null;
|
|
11223
11513
|
set CodeApprovedAt(value: Date | null);
|
|
11224
11514
|
/**
|
|
11515
|
+
* * Field Name: CodeLocked
|
|
11516
|
+
* * Display Name: Code Locked
|
|
11517
|
+
* * SQL Data Type: bit
|
|
11518
|
+
* * Default Value: 0
|
|
11519
|
+
* * Description: If set to 1, Code will never be generated by the AI system. This overrides all other settings including the ForceCodeGeneration bit
|
|
11520
|
+
*/
|
|
11521
|
+
get CodeLocked(): boolean;
|
|
11522
|
+
set CodeLocked(value: boolean);
|
|
11523
|
+
/**
|
|
11225
11524
|
* * Field Name: ForceCodeGeneration
|
|
11226
11525
|
* * Display Name: Force Code Generation
|
|
11227
11526
|
* * SQL Data Type: bit
|
|
@@ -11256,26 +11555,26 @@ export declare class ActionEntity extends BaseEntity {
|
|
|
11256
11555
|
* * Field Name: __mj_CreatedAt
|
|
11257
11556
|
* * Display Name: __mj _Created At
|
|
11258
11557
|
* * SQL Data Type: datetimeoffset
|
|
11558
|
+
* * Default Value: getutcdate()
|
|
11259
11559
|
*/
|
|
11260
11560
|
get __mj_CreatedAt(): Date;
|
|
11261
11561
|
/**
|
|
11262
11562
|
* * Field Name: __mj_UpdatedAt
|
|
11263
11563
|
* * Display Name: __mj _Updated At
|
|
11264
11564
|
* * SQL Data Type: datetimeoffset
|
|
11565
|
+
* * Default Value: getutcdate()
|
|
11265
11566
|
*/
|
|
11266
11567
|
get __mj_UpdatedAt(): Date;
|
|
11267
11568
|
/**
|
|
11268
11569
|
* * Field Name: Category
|
|
11269
11570
|
* * Display Name: Category
|
|
11270
11571
|
* * SQL Data Type: nvarchar(255)
|
|
11271
|
-
* * Default Value: getutcdate()
|
|
11272
11572
|
*/
|
|
11273
11573
|
get Category(): string | null;
|
|
11274
11574
|
/**
|
|
11275
11575
|
* * Field Name: CodeApprovedByUser
|
|
11276
11576
|
* * Display Name: Code Approved By User
|
|
11277
11577
|
* * SQL Data Type: nvarchar(100)
|
|
11278
|
-
* * Default Value: getutcdate()
|
|
11279
11578
|
*/
|
|
11280
11579
|
get CodeApprovedByUser(): string | null;
|
|
11281
11580
|
}
|
|
@@ -11478,19 +11777,17 @@ export declare class ActionContextTypeEntity extends BaseEntity {
|
|
|
11478
11777
|
get Description(): string | null;
|
|
11479
11778
|
set Description(value: string | null);
|
|
11480
11779
|
/**
|
|
11481
|
-
* * Field Name:
|
|
11780
|
+
* * Field Name: __mj_CreatedAt
|
|
11482
11781
|
* * Display Name: Created At
|
|
11483
|
-
* * SQL Data Type:
|
|
11484
|
-
* * Default Value: getdate()
|
|
11782
|
+
* * SQL Data Type: datetimeoffset
|
|
11485
11783
|
*/
|
|
11486
|
-
get
|
|
11784
|
+
get __mj_CreatedAt(): Date;
|
|
11487
11785
|
/**
|
|
11488
|
-
* * Field Name:
|
|
11786
|
+
* * Field Name: __mj_UpdatedAt
|
|
11489
11787
|
* * Display Name: Updated At
|
|
11490
|
-
* * SQL Data Type:
|
|
11491
|
-
* * Default Value: getdate()
|
|
11788
|
+
* * SQL Data Type: datetimeoffset
|
|
11492
11789
|
*/
|
|
11493
|
-
get
|
|
11790
|
+
get __mj_UpdatedAt(): Date;
|
|
11494
11791
|
}
|
|
11495
11792
|
/**
|
|
11496
11793
|
* Action Result Codes - strongly typed entity sub-class
|
|
@@ -11538,6 +11835,15 @@ export declare class ActionResultCodeEntity extends BaseEntity {
|
|
|
11538
11835
|
get ResultCode(): string;
|
|
11539
11836
|
set ResultCode(value: string);
|
|
11540
11837
|
/**
|
|
11838
|
+
* * Field Name: IsSuccess
|
|
11839
|
+
* * Display Name: Is Success
|
|
11840
|
+
* * SQL Data Type: bit
|
|
11841
|
+
* * Default Value: 0
|
|
11842
|
+
* * Description: Indicates if the result code is a success or not. It is possible an action might have more than one failure condition/result code and same for success conditions.
|
|
11843
|
+
*/
|
|
11844
|
+
get IsSuccess(): boolean;
|
|
11845
|
+
set IsSuccess(value: boolean);
|
|
11846
|
+
/**
|
|
11541
11847
|
* * Field Name: Description
|
|
11542
11848
|
* * Display Name: Description
|
|
11543
11849
|
* * SQL Data Type: nvarchar(MAX)
|
|
@@ -11546,19 +11852,19 @@ export declare class ActionResultCodeEntity extends BaseEntity {
|
|
|
11546
11852
|
get Description(): string | null;
|
|
11547
11853
|
set Description(value: string | null);
|
|
11548
11854
|
/**
|
|
11549
|
-
* * Field Name:
|
|
11855
|
+
* * Field Name: __mj_CreatedAt
|
|
11550
11856
|
* * Display Name: Created At
|
|
11551
|
-
* * SQL Data Type:
|
|
11552
|
-
* * Default Value:
|
|
11857
|
+
* * SQL Data Type: datetimeoffset
|
|
11858
|
+
* * Default Value: getutcdate()
|
|
11553
11859
|
*/
|
|
11554
|
-
get
|
|
11860
|
+
get __mj_CreatedAt(): Date;
|
|
11555
11861
|
/**
|
|
11556
|
-
* * Field Name:
|
|
11862
|
+
* * Field Name: __mj_UpdatedAt
|
|
11557
11863
|
* * Display Name: Updated At
|
|
11558
|
-
* * SQL Data Type:
|
|
11559
|
-
* * Default Value:
|
|
11864
|
+
* * SQL Data Type: datetimeoffset
|
|
11865
|
+
* * Default Value: getutcdate()
|
|
11560
11866
|
*/
|
|
11561
|
-
get
|
|
11867
|
+
get __mj_UpdatedAt(): Date;
|
|
11562
11868
|
/**
|
|
11563
11869
|
* * Field Name: Action
|
|
11564
11870
|
* * Display Name: Action
|
|
@@ -11627,29 +11933,29 @@ export declare class ActionContextEntity extends BaseEntity {
|
|
|
11627
11933
|
get Status(): 'Disabled' | 'Active' | 'Pending';
|
|
11628
11934
|
set Status(value: 'Disabled' | 'Active' | 'Pending');
|
|
11629
11935
|
/**
|
|
11630
|
-
* * Field Name:
|
|
11936
|
+
* * Field Name: __mj_CreatedAt
|
|
11631
11937
|
* * Display Name: Created At
|
|
11632
|
-
* * SQL Data Type:
|
|
11633
|
-
* * Default Value: getdate()
|
|
11938
|
+
* * SQL Data Type: datetimeoffset
|
|
11634
11939
|
*/
|
|
11635
|
-
get
|
|
11940
|
+
get __mj_CreatedAt(): Date;
|
|
11636
11941
|
/**
|
|
11637
|
-
* * Field Name:
|
|
11942
|
+
* * Field Name: __mj_UpdatedAt
|
|
11638
11943
|
* * Display Name: Updated At
|
|
11639
|
-
* * SQL Data Type:
|
|
11640
|
-
* * Default Value: getdate()
|
|
11944
|
+
* * SQL Data Type: datetimeoffset
|
|
11641
11945
|
*/
|
|
11642
|
-
get
|
|
11946
|
+
get __mj_UpdatedAt(): Date;
|
|
11643
11947
|
/**
|
|
11644
11948
|
* * Field Name: Action
|
|
11645
11949
|
* * Display Name: Action
|
|
11646
11950
|
* * SQL Data Type: nvarchar(425)
|
|
11951
|
+
* * Default Value: getutcdate()
|
|
11647
11952
|
*/
|
|
11648
11953
|
get Action(): string;
|
|
11649
11954
|
/**
|
|
11650
11955
|
* * Field Name: ContextType
|
|
11651
11956
|
* * Display Name: Context Type
|
|
11652
11957
|
* * SQL Data Type: nvarchar(255)
|
|
11958
|
+
* * Default Value: getutcdate()
|
|
11653
11959
|
*/
|
|
11654
11960
|
get ContextType(): string;
|
|
11655
11961
|
}
|
|
@@ -11739,29 +12045,29 @@ export declare class ActionExecutionLogEntity extends BaseEntity {
|
|
|
11739
12045
|
get RetentionPeriod(): number | null;
|
|
11740
12046
|
set RetentionPeriod(value: number | null);
|
|
11741
12047
|
/**
|
|
11742
|
-
* * Field Name:
|
|
12048
|
+
* * Field Name: __mj_CreatedAt
|
|
11743
12049
|
* * Display Name: Created At
|
|
11744
|
-
* * SQL Data Type:
|
|
11745
|
-
* * Default Value: getdate()
|
|
12050
|
+
* * SQL Data Type: datetimeoffset
|
|
11746
12051
|
*/
|
|
11747
|
-
get
|
|
12052
|
+
get __mj_CreatedAt(): Date;
|
|
11748
12053
|
/**
|
|
11749
|
-
* * Field Name:
|
|
12054
|
+
* * Field Name: __mj_UpdatedAt
|
|
11750
12055
|
* * Display Name: Updated At
|
|
11751
|
-
* * SQL Data Type:
|
|
11752
|
-
* * Default Value: getdate()
|
|
12056
|
+
* * SQL Data Type: datetimeoffset
|
|
11753
12057
|
*/
|
|
11754
|
-
get
|
|
12058
|
+
get __mj_UpdatedAt(): Date;
|
|
11755
12059
|
/**
|
|
11756
12060
|
* * Field Name: Action
|
|
11757
12061
|
* * Display Name: Action
|
|
11758
12062
|
* * SQL Data Type: nvarchar(425)
|
|
12063
|
+
* * Default Value: getutcdate()
|
|
11759
12064
|
*/
|
|
11760
12065
|
get Action(): string;
|
|
11761
12066
|
/**
|
|
11762
12067
|
* * Field Name: User
|
|
11763
12068
|
* * Display Name: User
|
|
11764
12069
|
* * SQL Data Type: nvarchar(100)
|
|
12070
|
+
* * Default Value: getutcdate()
|
|
11765
12071
|
*/
|
|
11766
12072
|
get User(): string;
|
|
11767
12073
|
}
|
|
@@ -11867,23 +12173,22 @@ export declare class ActionParamEntity extends BaseEntity {
|
|
|
11867
12173
|
get IsRequired(): boolean;
|
|
11868
12174
|
set IsRequired(value: boolean);
|
|
11869
12175
|
/**
|
|
11870
|
-
* * Field Name:
|
|
12176
|
+
* * Field Name: __mj_CreatedAt
|
|
11871
12177
|
* * Display Name: Created At
|
|
11872
|
-
* * SQL Data Type:
|
|
11873
|
-
* * Default Value: getdate()
|
|
12178
|
+
* * SQL Data Type: datetimeoffset
|
|
11874
12179
|
*/
|
|
11875
|
-
get
|
|
12180
|
+
get __mj_CreatedAt(): Date;
|
|
11876
12181
|
/**
|
|
11877
|
-
* * Field Name:
|
|
12182
|
+
* * Field Name: __mj_UpdatedAt
|
|
11878
12183
|
* * Display Name: Updated At
|
|
11879
|
-
* * SQL Data Type:
|
|
11880
|
-
* * Default Value: getdate()
|
|
12184
|
+
* * SQL Data Type: datetimeoffset
|
|
11881
12185
|
*/
|
|
11882
|
-
get
|
|
12186
|
+
get __mj_UpdatedAt(): Date;
|
|
11883
12187
|
/**
|
|
11884
12188
|
* * Field Name: Action
|
|
11885
12189
|
* * Display Name: Action
|
|
11886
12190
|
* * SQL Data Type: nvarchar(425)
|
|
12191
|
+
* * Default Value: getutcdate()
|
|
11887
12192
|
*/
|
|
11888
12193
|
get Action(): string;
|
|
11889
12194
|
}
|
|
@@ -11942,29 +12247,29 @@ export declare class ActionLibraryEntity extends BaseEntity {
|
|
|
11942
12247
|
get ItemsUsed(): string | null;
|
|
11943
12248
|
set ItemsUsed(value: string | null);
|
|
11944
12249
|
/**
|
|
11945
|
-
* * Field Name:
|
|
12250
|
+
* * Field Name: __mj_CreatedAt
|
|
11946
12251
|
* * Display Name: Created At
|
|
11947
|
-
* * SQL Data Type:
|
|
11948
|
-
* * Default Value: getdate()
|
|
12252
|
+
* * SQL Data Type: datetimeoffset
|
|
11949
12253
|
*/
|
|
11950
|
-
get
|
|
12254
|
+
get __mj_CreatedAt(): Date;
|
|
11951
12255
|
/**
|
|
11952
|
-
* * Field Name:
|
|
12256
|
+
* * Field Name: __mj_UpdatedAt
|
|
11953
12257
|
* * Display Name: Updated At
|
|
11954
|
-
* * SQL Data Type:
|
|
11955
|
-
* * Default Value: getdate()
|
|
12258
|
+
* * SQL Data Type: datetimeoffset
|
|
11956
12259
|
*/
|
|
11957
|
-
get
|
|
12260
|
+
get __mj_UpdatedAt(): Date;
|
|
11958
12261
|
/**
|
|
11959
12262
|
* * Field Name: Action
|
|
11960
12263
|
* * Display Name: Action
|
|
11961
12264
|
* * SQL Data Type: nvarchar(425)
|
|
12265
|
+
* * Default Value: getutcdate()
|
|
11962
12266
|
*/
|
|
11963
12267
|
get Action(): string;
|
|
11964
12268
|
/**
|
|
11965
12269
|
* * Field Name: Library
|
|
11966
12270
|
* * Display Name: Library
|
|
11967
12271
|
* * SQL Data Type: nvarchar(255)
|
|
12272
|
+
* * Default Value: getutcdate()
|
|
11968
12273
|
*/
|
|
11969
12274
|
get Library(): string;
|
|
11970
12275
|
}
|
|
@@ -12122,19 +12427,7 @@ export declare class ListCategoryEntity extends BaseEntity {
|
|
|
12122
12427
|
* * SQL Data Type: int
|
|
12123
12428
|
*/
|
|
12124
12429
|
get ParentID(): number | null;
|
|
12125
|
-
set ParentID(value: number | null);
|
|
12126
|
-
/**
|
|
12127
|
-
* * Field Name: CreatedAt
|
|
12128
|
-
* * Display Name: Created At
|
|
12129
|
-
* * SQL Data Type: datetime
|
|
12130
|
-
*/
|
|
12131
|
-
get CreatedAt(): Date;
|
|
12132
|
-
/**
|
|
12133
|
-
* * Field Name: UpdatedAt
|
|
12134
|
-
* * Display Name: Updated At
|
|
12135
|
-
* * SQL Data Type: datetime
|
|
12136
|
-
*/
|
|
12137
|
-
get UpdatedAt(): Date;
|
|
12430
|
+
set ParentID(value: number | null);
|
|
12138
12431
|
/**
|
|
12139
12432
|
* * Field Name: UserID
|
|
12140
12433
|
* * Display Name: User ID
|
|
@@ -12142,6 +12435,18 @@ export declare class ListCategoryEntity extends BaseEntity {
|
|
|
12142
12435
|
*/
|
|
12143
12436
|
get UserID(): number;
|
|
12144
12437
|
set UserID(value: number);
|
|
12438
|
+
/**
|
|
12439
|
+
* * Field Name: __mj_CreatedAt
|
|
12440
|
+
* * Display Name: Created At
|
|
12441
|
+
* * SQL Data Type: datetimeoffset
|
|
12442
|
+
*/
|
|
12443
|
+
get __mj_CreatedAt(): Date;
|
|
12444
|
+
/**
|
|
12445
|
+
* * Field Name: __mj_UpdatedAt
|
|
12446
|
+
* * Display Name: Updated At
|
|
12447
|
+
* * SQL Data Type: datetimeoffset
|
|
12448
|
+
*/
|
|
12449
|
+
get __mj_UpdatedAt(): Date;
|
|
12145
12450
|
}
|
|
12146
12451
|
/**
|
|
12147
12452
|
* Communication Providers - strongly typed entity sub-class
|
|
@@ -12228,19 +12533,17 @@ export declare class CommunicationProviderEntity extends BaseEntity {
|
|
|
12228
12533
|
get SupportsReceiving(): boolean;
|
|
12229
12534
|
set SupportsReceiving(value: boolean);
|
|
12230
12535
|
/**
|
|
12231
|
-
* * Field Name:
|
|
12536
|
+
* * Field Name: __mj_CreatedAt
|
|
12232
12537
|
* * Display Name: Created At
|
|
12233
|
-
* * SQL Data Type:
|
|
12234
|
-
* * Default Value: getdate()
|
|
12538
|
+
* * SQL Data Type: datetimeoffset
|
|
12235
12539
|
*/
|
|
12236
|
-
get
|
|
12540
|
+
get __mj_CreatedAt(): Date;
|
|
12237
12541
|
/**
|
|
12238
|
-
* * Field Name:
|
|
12542
|
+
* * Field Name: __mj_UpdatedAt
|
|
12239
12543
|
* * Display Name: Updated At
|
|
12240
|
-
* * SQL Data Type:
|
|
12241
|
-
* * Default Value: getdate()
|
|
12544
|
+
* * SQL Data Type: datetimeoffset
|
|
12242
12545
|
*/
|
|
12243
|
-
get
|
|
12546
|
+
get __mj_UpdatedAt(): Date;
|
|
12244
12547
|
}
|
|
12245
12548
|
/**
|
|
12246
12549
|
* Communication Runs - strongly typed entity sub-class
|
|
@@ -12345,23 +12648,22 @@ export declare class CommunicationRunEntity extends BaseEntity {
|
|
|
12345
12648
|
get ErrorMessage(): string | null;
|
|
12346
12649
|
set ErrorMessage(value: string | null);
|
|
12347
12650
|
/**
|
|
12348
|
-
* * Field Name:
|
|
12651
|
+
* * Field Name: __mj_CreatedAt
|
|
12349
12652
|
* * Display Name: Created At
|
|
12350
|
-
* * SQL Data Type:
|
|
12351
|
-
* * Default Value: getdate()
|
|
12653
|
+
* * SQL Data Type: datetimeoffset
|
|
12352
12654
|
*/
|
|
12353
|
-
get
|
|
12655
|
+
get __mj_CreatedAt(): Date;
|
|
12354
12656
|
/**
|
|
12355
|
-
* * Field Name:
|
|
12657
|
+
* * Field Name: __mj_UpdatedAt
|
|
12356
12658
|
* * Display Name: Updated At
|
|
12357
|
-
* * SQL Data Type:
|
|
12358
|
-
* * Default Value: getdate()
|
|
12659
|
+
* * SQL Data Type: datetimeoffset
|
|
12359
12660
|
*/
|
|
12360
|
-
get
|
|
12661
|
+
get __mj_UpdatedAt(): Date;
|
|
12361
12662
|
/**
|
|
12362
12663
|
* * Field Name: User
|
|
12363
12664
|
* * Display Name: User
|
|
12364
12665
|
* * SQL Data Type: nvarchar(100)
|
|
12666
|
+
* * Default Value: getutcdate()
|
|
12365
12667
|
*/
|
|
12366
12668
|
get User(): string;
|
|
12367
12669
|
}
|
|
@@ -12440,29 +12742,29 @@ export declare class CommunicationProviderMessageTypeEntity extends BaseEntity {
|
|
|
12440
12742
|
get AdditionalAttributes(): string | null;
|
|
12441
12743
|
set AdditionalAttributes(value: string | null);
|
|
12442
12744
|
/**
|
|
12443
|
-
* * Field Name:
|
|
12745
|
+
* * Field Name: __mj_CreatedAt
|
|
12444
12746
|
* * Display Name: Created At
|
|
12445
|
-
* * SQL Data Type:
|
|
12446
|
-
* * Default Value: getdate()
|
|
12747
|
+
* * SQL Data Type: datetimeoffset
|
|
12447
12748
|
*/
|
|
12448
|
-
get
|
|
12749
|
+
get __mj_CreatedAt(): Date;
|
|
12449
12750
|
/**
|
|
12450
|
-
* * Field Name:
|
|
12751
|
+
* * Field Name: __mj_UpdatedAt
|
|
12451
12752
|
* * Display Name: Updated At
|
|
12452
|
-
* * SQL Data Type:
|
|
12453
|
-
* * Default Value: getdate()
|
|
12753
|
+
* * SQL Data Type: datetimeoffset
|
|
12454
12754
|
*/
|
|
12455
|
-
get
|
|
12755
|
+
get __mj_UpdatedAt(): Date;
|
|
12456
12756
|
/**
|
|
12457
12757
|
* * Field Name: CommunicationProvider
|
|
12458
12758
|
* * Display Name: Communication Provider
|
|
12459
12759
|
* * SQL Data Type: nvarchar(255)
|
|
12760
|
+
* * Default Value: getutcdate()
|
|
12460
12761
|
*/
|
|
12461
12762
|
get CommunicationProvider(): string;
|
|
12462
12763
|
/**
|
|
12463
12764
|
* * Field Name: CommunicationBaseMessageType
|
|
12464
12765
|
* * Display Name: Communication Base Message Type
|
|
12465
12766
|
* * SQL Data Type: nvarchar(100)
|
|
12767
|
+
* * Default Value: getutcdate()
|
|
12466
12768
|
*/
|
|
12467
12769
|
get CommunicationBaseMessageType(): string;
|
|
12468
12770
|
}
|
|
@@ -12580,29 +12882,29 @@ export declare class CommunicationLogEntity extends BaseEntity {
|
|
|
12580
12882
|
get ErrorMessage(): string | null;
|
|
12581
12883
|
set ErrorMessage(value: string | null);
|
|
12582
12884
|
/**
|
|
12583
|
-
* * Field Name:
|
|
12885
|
+
* * Field Name: __mj_CreatedAt
|
|
12584
12886
|
* * Display Name: Created At
|
|
12585
|
-
* * SQL Data Type:
|
|
12586
|
-
* * Default Value: getdate()
|
|
12887
|
+
* * SQL Data Type: datetimeoffset
|
|
12587
12888
|
*/
|
|
12588
|
-
get
|
|
12889
|
+
get __mj_CreatedAt(): Date;
|
|
12589
12890
|
/**
|
|
12590
|
-
* * Field Name:
|
|
12891
|
+
* * Field Name: __mj_UpdatedAt
|
|
12591
12892
|
* * Display Name: Updated At
|
|
12592
|
-
* * SQL Data Type:
|
|
12593
|
-
* * Default Value: getdate()
|
|
12893
|
+
* * SQL Data Type: datetimeoffset
|
|
12594
12894
|
*/
|
|
12595
|
-
get
|
|
12895
|
+
get __mj_UpdatedAt(): Date;
|
|
12596
12896
|
/**
|
|
12597
12897
|
* * Field Name: CommunicationProvider
|
|
12598
12898
|
* * Display Name: Communication Provider
|
|
12599
12899
|
* * SQL Data Type: nvarchar(255)
|
|
12900
|
+
* * Default Value: getutcdate()
|
|
12600
12901
|
*/
|
|
12601
12902
|
get CommunicationProvider(): string;
|
|
12602
12903
|
/**
|
|
12603
12904
|
* * Field Name: CommunicationProviderMessageType
|
|
12604
12905
|
* * Display Name: Communication Provider Message Type
|
|
12605
12906
|
* * SQL Data Type: nvarchar(255)
|
|
12907
|
+
* * Default Value: getutcdate()
|
|
12606
12908
|
*/
|
|
12607
12909
|
get CommunicationProviderMessageType(): string;
|
|
12608
12910
|
}
|
|
@@ -12688,19 +12990,17 @@ export declare class CommunicationBaseMessageTypeEntity extends BaseEntity {
|
|
|
12688
12990
|
get MaxBytes(): number | null;
|
|
12689
12991
|
set MaxBytes(value: number | null);
|
|
12690
12992
|
/**
|
|
12691
|
-
* * Field Name:
|
|
12993
|
+
* * Field Name: __mj_CreatedAt
|
|
12692
12994
|
* * Display Name: Created At
|
|
12693
|
-
* * SQL Data Type:
|
|
12694
|
-
* * Default Value: getdate()
|
|
12995
|
+
* * SQL Data Type: datetimeoffset
|
|
12695
12996
|
*/
|
|
12696
|
-
get
|
|
12997
|
+
get __mj_CreatedAt(): Date;
|
|
12697
12998
|
/**
|
|
12698
|
-
* * Field Name:
|
|
12999
|
+
* * Field Name: __mj_UpdatedAt
|
|
12699
13000
|
* * Display Name: Updated At
|
|
12700
|
-
* * SQL Data Type:
|
|
12701
|
-
* * Default Value: getdate()
|
|
13001
|
+
* * SQL Data Type: datetimeoffset
|
|
12702
13002
|
*/
|
|
12703
|
-
get
|
|
13003
|
+
get __mj_UpdatedAt(): Date;
|
|
12704
13004
|
}
|
|
12705
13005
|
/**
|
|
12706
13006
|
* Templates - strongly typed entity sub-class
|
|
@@ -12808,29 +13108,29 @@ export declare class TemplateEntity extends BaseEntity {
|
|
|
12808
13108
|
get IsActive(): boolean;
|
|
12809
13109
|
set IsActive(value: boolean);
|
|
12810
13110
|
/**
|
|
12811
|
-
* * Field Name:
|
|
13111
|
+
* * Field Name: __mj_CreatedAt
|
|
12812
13112
|
* * Display Name: Created At
|
|
12813
|
-
* * SQL Data Type:
|
|
12814
|
-
* * Default Value: getdate()
|
|
13113
|
+
* * SQL Data Type: datetimeoffset
|
|
12815
13114
|
*/
|
|
12816
|
-
get
|
|
13115
|
+
get __mj_CreatedAt(): Date;
|
|
12817
13116
|
/**
|
|
12818
|
-
* * Field Name:
|
|
13117
|
+
* * Field Name: __mj_UpdatedAt
|
|
12819
13118
|
* * Display Name: Updated At
|
|
12820
|
-
* * SQL Data Type:
|
|
12821
|
-
* * Default Value: getdate()
|
|
13119
|
+
* * SQL Data Type: datetimeoffset
|
|
12822
13120
|
*/
|
|
12823
|
-
get
|
|
13121
|
+
get __mj_UpdatedAt(): Date;
|
|
12824
13122
|
/**
|
|
12825
13123
|
* * Field Name: Category
|
|
12826
13124
|
* * Display Name: Category
|
|
12827
13125
|
* * SQL Data Type: nvarchar(255)
|
|
13126
|
+
* * Default Value: getutcdate()
|
|
12828
13127
|
*/
|
|
12829
13128
|
get Category(): string | null;
|
|
12830
13129
|
/**
|
|
12831
13130
|
* * Field Name: User
|
|
12832
13131
|
* * Display Name: User
|
|
12833
13132
|
* * SQL Data Type: nvarchar(100)
|
|
13133
|
+
* * Default Value: getutcdate()
|
|
12834
13134
|
*/
|
|
12835
13135
|
get User(): string;
|
|
12836
13136
|
}
|
|
@@ -12906,29 +13206,29 @@ export declare class TemplateCategoryEntity extends BaseEntity {
|
|
|
12906
13206
|
get UserID(): number;
|
|
12907
13207
|
set UserID(value: number);
|
|
12908
13208
|
/**
|
|
12909
|
-
* * Field Name:
|
|
13209
|
+
* * Field Name: __mj_CreatedAt
|
|
12910
13210
|
* * Display Name: Created At
|
|
12911
|
-
* * SQL Data Type:
|
|
12912
|
-
* * Default Value: getdate()
|
|
13211
|
+
* * SQL Data Type: datetimeoffset
|
|
12913
13212
|
*/
|
|
12914
|
-
get
|
|
13213
|
+
get __mj_CreatedAt(): Date;
|
|
12915
13214
|
/**
|
|
12916
|
-
* * Field Name:
|
|
13215
|
+
* * Field Name: __mj_UpdatedAt
|
|
12917
13216
|
* * Display Name: Updated At
|
|
12918
|
-
* * SQL Data Type:
|
|
12919
|
-
* * Default Value: getdate()
|
|
13217
|
+
* * SQL Data Type: datetimeoffset
|
|
12920
13218
|
*/
|
|
12921
|
-
get
|
|
13219
|
+
get __mj_UpdatedAt(): Date;
|
|
12922
13220
|
/**
|
|
12923
13221
|
* * Field Name: Parent
|
|
12924
13222
|
* * Display Name: Parent
|
|
12925
13223
|
* * SQL Data Type: nvarchar(255)
|
|
13224
|
+
* * Default Value: getutcdate()
|
|
12926
13225
|
*/
|
|
12927
13226
|
get Parent(): string | null;
|
|
12928
13227
|
/**
|
|
12929
13228
|
* * Field Name: User
|
|
12930
13229
|
* * Display Name: User
|
|
12931
13230
|
* * SQL Data Type: nvarchar(100)
|
|
13231
|
+
* * Default Value: getutcdate()
|
|
12932
13232
|
*/
|
|
12933
13233
|
get User(): string;
|
|
12934
13234
|
}
|
|
@@ -13013,29 +13313,29 @@ export declare class TemplateContentEntity extends BaseEntity {
|
|
|
13013
13313
|
get IsActive(): boolean;
|
|
13014
13314
|
set IsActive(value: boolean);
|
|
13015
13315
|
/**
|
|
13016
|
-
* * Field Name:
|
|
13316
|
+
* * Field Name: __mj_CreatedAt
|
|
13017
13317
|
* * Display Name: Created At
|
|
13018
|
-
* * SQL Data Type:
|
|
13019
|
-
* * Default Value: getdate()
|
|
13318
|
+
* * SQL Data Type: datetimeoffset
|
|
13020
13319
|
*/
|
|
13021
|
-
get
|
|
13320
|
+
get __mj_CreatedAt(): Date;
|
|
13022
13321
|
/**
|
|
13023
|
-
* * Field Name:
|
|
13322
|
+
* * Field Name: __mj_UpdatedAt
|
|
13024
13323
|
* * Display Name: Updated At
|
|
13025
|
-
* * SQL Data Type:
|
|
13026
|
-
* * Default Value: getdate()
|
|
13324
|
+
* * SQL Data Type: datetimeoffset
|
|
13027
13325
|
*/
|
|
13028
|
-
get
|
|
13326
|
+
get __mj_UpdatedAt(): Date;
|
|
13029
13327
|
/**
|
|
13030
13328
|
* * Field Name: Template
|
|
13031
13329
|
* * Display Name: Template
|
|
13032
13330
|
* * SQL Data Type: nvarchar(255)
|
|
13331
|
+
* * Default Value: getutcdate()
|
|
13033
13332
|
*/
|
|
13034
13333
|
get Template(): string;
|
|
13035
13334
|
/**
|
|
13036
13335
|
* * Field Name: Type
|
|
13037
13336
|
* * Display Name: Type
|
|
13038
13337
|
* * SQL Data Type: nvarchar(255)
|
|
13338
|
+
* * Default Value: getutcdate()
|
|
13039
13339
|
*/
|
|
13040
13340
|
get Type(): string;
|
|
13041
13341
|
}
|
|
@@ -13152,29 +13452,29 @@ export declare class TemplateParamEntity extends BaseEntity {
|
|
|
13152
13452
|
get RecordID(): string | null;
|
|
13153
13453
|
set RecordID(value: string | null);
|
|
13154
13454
|
/**
|
|
13155
|
-
* * Field Name:
|
|
13455
|
+
* * Field Name: __mj_CreatedAt
|
|
13156
13456
|
* * Display Name: Created At
|
|
13157
|
-
* * SQL Data Type:
|
|
13158
|
-
* * Default Value: getdate()
|
|
13457
|
+
* * SQL Data Type: datetimeoffset
|
|
13159
13458
|
*/
|
|
13160
|
-
get
|
|
13459
|
+
get __mj_CreatedAt(): Date;
|
|
13161
13460
|
/**
|
|
13162
|
-
* * Field Name:
|
|
13461
|
+
* * Field Name: __mj_UpdatedAt
|
|
13163
13462
|
* * Display Name: Updated At
|
|
13164
|
-
* * SQL Data Type:
|
|
13165
|
-
* * Default Value: getdate()
|
|
13463
|
+
* * SQL Data Type: datetimeoffset
|
|
13166
13464
|
*/
|
|
13167
|
-
get
|
|
13465
|
+
get __mj_UpdatedAt(): Date;
|
|
13168
13466
|
/**
|
|
13169
13467
|
* * Field Name: Template
|
|
13170
13468
|
* * Display Name: Template
|
|
13171
13469
|
* * SQL Data Type: nvarchar(255)
|
|
13470
|
+
* * Default Value: getutcdate()
|
|
13172
13471
|
*/
|
|
13173
13472
|
get Template(): string;
|
|
13174
13473
|
/**
|
|
13175
13474
|
* * Field Name: Entity
|
|
13176
13475
|
* * Display Name: Entity
|
|
13177
13476
|
* * SQL Data Type: nvarchar(255)
|
|
13477
|
+
* * Default Value: getutcdate()
|
|
13178
13478
|
*/
|
|
13179
13479
|
get Entity(): string | null;
|
|
13180
13480
|
}
|
|
@@ -13234,19 +13534,17 @@ export declare class TemplateContentTypeEntity extends BaseEntity {
|
|
|
13234
13534
|
get Description(): string | null;
|
|
13235
13535
|
set Description(value: string | null);
|
|
13236
13536
|
/**
|
|
13237
|
-
* * Field Name:
|
|
13537
|
+
* * Field Name: __mj_CreatedAt
|
|
13238
13538
|
* * Display Name: Created At
|
|
13239
|
-
* * SQL Data Type:
|
|
13240
|
-
* * Default Value: getdate()
|
|
13539
|
+
* * SQL Data Type: datetimeoffset
|
|
13241
13540
|
*/
|
|
13242
|
-
get
|
|
13541
|
+
get __mj_CreatedAt(): Date;
|
|
13243
13542
|
/**
|
|
13244
|
-
* * Field Name:
|
|
13543
|
+
* * Field Name: __mj_UpdatedAt
|
|
13245
13544
|
* * Display Name: Updated At
|
|
13246
|
-
* * SQL Data Type:
|
|
13247
|
-
* * Default Value: getdate()
|
|
13545
|
+
* * SQL Data Type: datetimeoffset
|
|
13248
13546
|
*/
|
|
13249
|
-
get
|
|
13547
|
+
get __mj_UpdatedAt(): Date;
|
|
13250
13548
|
}
|
|
13251
13549
|
/**
|
|
13252
13550
|
* Recommendations - strongly typed entity sub-class
|
|
@@ -13312,23 +13610,22 @@ export declare class RecommendationEntity extends BaseEntity {
|
|
|
13312
13610
|
get SourceEntityRecordID(): string;
|
|
13313
13611
|
set SourceEntityRecordID(value: string);
|
|
13314
13612
|
/**
|
|
13315
|
-
* * Field Name:
|
|
13613
|
+
* * Field Name: __mj_CreatedAt
|
|
13316
13614
|
* * Display Name: Created At
|
|
13317
|
-
* * SQL Data Type:
|
|
13318
|
-
* * Default Value: getdate()
|
|
13615
|
+
* * SQL Data Type: datetimeoffset
|
|
13319
13616
|
*/
|
|
13320
|
-
get
|
|
13617
|
+
get __mj_CreatedAt(): Date;
|
|
13321
13618
|
/**
|
|
13322
|
-
* * Field Name:
|
|
13619
|
+
* * Field Name: __mj_UpdatedAt
|
|
13323
13620
|
* * Display Name: Updated At
|
|
13324
|
-
* * SQL Data Type:
|
|
13325
|
-
* * Default Value: getdate()
|
|
13621
|
+
* * SQL Data Type: datetimeoffset
|
|
13326
13622
|
*/
|
|
13327
|
-
get
|
|
13623
|
+
get __mj_UpdatedAt(): Date;
|
|
13328
13624
|
/**
|
|
13329
13625
|
* * Field Name: SourceEntity
|
|
13330
13626
|
* * Display Name: Source Entity
|
|
13331
13627
|
* * SQL Data Type: nvarchar(255)
|
|
13628
|
+
* * Default Value: getutcdate()
|
|
13332
13629
|
*/
|
|
13333
13630
|
get SourceEntity(): string;
|
|
13334
13631
|
}
|
|
@@ -13386,19 +13683,17 @@ export declare class RecommendationProviderEntity extends BaseEntity {
|
|
|
13386
13683
|
get Description(): string | null;
|
|
13387
13684
|
set Description(value: string | null);
|
|
13388
13685
|
/**
|
|
13389
|
-
* * Field Name:
|
|
13686
|
+
* * Field Name: __mj_CreatedAt
|
|
13390
13687
|
* * Display Name: Created At
|
|
13391
|
-
* * SQL Data Type:
|
|
13392
|
-
* * Default Value: getdate()
|
|
13688
|
+
* * SQL Data Type: datetimeoffset
|
|
13393
13689
|
*/
|
|
13394
|
-
get
|
|
13690
|
+
get __mj_CreatedAt(): Date;
|
|
13395
13691
|
/**
|
|
13396
|
-
* * Field Name:
|
|
13692
|
+
* * Field Name: __mj_UpdatedAt
|
|
13397
13693
|
* * Display Name: Updated At
|
|
13398
|
-
* * SQL Data Type:
|
|
13399
|
-
* * Default Value: getdate()
|
|
13694
|
+
* * SQL Data Type: datetimeoffset
|
|
13400
13695
|
*/
|
|
13401
|
-
get
|
|
13696
|
+
get __mj_UpdatedAt(): Date;
|
|
13402
13697
|
}
|
|
13403
13698
|
/**
|
|
13404
13699
|
* Recommendation Runs - strongly typed entity sub-class
|
|
@@ -13494,29 +13789,29 @@ export declare class RecommendationRunEntity extends BaseEntity {
|
|
|
13494
13789
|
get RunByUserID(): number;
|
|
13495
13790
|
set RunByUserID(value: number);
|
|
13496
13791
|
/**
|
|
13497
|
-
* * Field Name:
|
|
13792
|
+
* * Field Name: __mj_CreatedAt
|
|
13498
13793
|
* * Display Name: Created At
|
|
13499
|
-
* * SQL Data Type:
|
|
13500
|
-
* * Default Value: getdate()
|
|
13794
|
+
* * SQL Data Type: datetimeoffset
|
|
13501
13795
|
*/
|
|
13502
|
-
get
|
|
13796
|
+
get __mj_CreatedAt(): Date;
|
|
13503
13797
|
/**
|
|
13504
|
-
* * Field Name:
|
|
13798
|
+
* * Field Name: __mj_UpdatedAt
|
|
13505
13799
|
* * Display Name: Updated At
|
|
13506
|
-
* * SQL Data Type:
|
|
13507
|
-
* * Default Value: getdate()
|
|
13800
|
+
* * SQL Data Type: datetimeoffset
|
|
13508
13801
|
*/
|
|
13509
|
-
get
|
|
13802
|
+
get __mj_UpdatedAt(): Date;
|
|
13510
13803
|
/**
|
|
13511
13804
|
* * Field Name: RecommendationProvider
|
|
13512
13805
|
* * Display Name: Recommendation Provider
|
|
13513
13806
|
* * SQL Data Type: nvarchar(255)
|
|
13807
|
+
* * Default Value: getutcdate()
|
|
13514
13808
|
*/
|
|
13515
13809
|
get RecommendationProvider(): string;
|
|
13516
13810
|
/**
|
|
13517
13811
|
* * Field Name: RunByUser
|
|
13518
13812
|
* * Display Name: Run By User
|
|
13519
13813
|
* * SQL Data Type: nvarchar(100)
|
|
13814
|
+
* * Default Value: getutcdate()
|
|
13520
13815
|
*/
|
|
13521
13816
|
get RunByUser(): string;
|
|
13522
13817
|
}
|
|
@@ -13593,23 +13888,22 @@ export declare class RecommendationItemEntity extends BaseEntity {
|
|
|
13593
13888
|
get MatchProbability(): number | null;
|
|
13594
13889
|
set MatchProbability(value: number | null);
|
|
13595
13890
|
/**
|
|
13596
|
-
* * Field Name:
|
|
13891
|
+
* * Field Name: __mj_CreatedAt
|
|
13597
13892
|
* * Display Name: Created At
|
|
13598
|
-
* * SQL Data Type:
|
|
13599
|
-
* * Default Value: getdate()
|
|
13893
|
+
* * SQL Data Type: datetimeoffset
|
|
13600
13894
|
*/
|
|
13601
|
-
get
|
|
13895
|
+
get __mj_CreatedAt(): Date;
|
|
13602
13896
|
/**
|
|
13603
|
-
* * Field Name:
|
|
13897
|
+
* * Field Name: __mj_UpdatedAt
|
|
13604
13898
|
* * Display Name: Updated At
|
|
13605
|
-
* * SQL Data Type:
|
|
13606
|
-
* * Default Value: getdate()
|
|
13899
|
+
* * SQL Data Type: datetimeoffset
|
|
13607
13900
|
*/
|
|
13608
|
-
get
|
|
13901
|
+
get __mj_UpdatedAt(): Date;
|
|
13609
13902
|
/**
|
|
13610
13903
|
* * Field Name: DestinationEntity
|
|
13611
13904
|
* * Display Name: Destination Entity
|
|
13612
13905
|
* * SQL Data Type: nvarchar(255)
|
|
13906
|
+
* * Default Value: getutcdate()
|
|
13613
13907
|
*/
|
|
13614
13908
|
get DestinationEntity(): string;
|
|
13615
13909
|
}
|
|
@@ -13860,23 +14154,22 @@ export declare class RecordChangeReplayRunEntity extends BaseEntity {
|
|
|
13860
14154
|
get UserID(): number;
|
|
13861
14155
|
set UserID(value: number);
|
|
13862
14156
|
/**
|
|
13863
|
-
* * Field Name:
|
|
14157
|
+
* * Field Name: __mj_CreatedAt
|
|
13864
14158
|
* * Display Name: Created At
|
|
13865
|
-
* * SQL Data Type:
|
|
13866
|
-
* * Default Value: getdate()
|
|
14159
|
+
* * SQL Data Type: datetimeoffset
|
|
13867
14160
|
*/
|
|
13868
|
-
get
|
|
14161
|
+
get __mj_CreatedAt(): Date;
|
|
13869
14162
|
/**
|
|
13870
|
-
* * Field Name:
|
|
14163
|
+
* * Field Name: __mj_UpdatedAt
|
|
13871
14164
|
* * Display Name: Updated At
|
|
13872
|
-
* * SQL Data Type:
|
|
13873
|
-
* * Default Value: getdate()
|
|
14165
|
+
* * SQL Data Type: datetimeoffset
|
|
13874
14166
|
*/
|
|
13875
|
-
get
|
|
14167
|
+
get __mj_UpdatedAt(): Date;
|
|
13876
14168
|
/**
|
|
13877
14169
|
* * Field Name: User
|
|
13878
14170
|
* * Display Name: User
|
|
13879
14171
|
* * SQL Data Type: nvarchar(100)
|
|
14172
|
+
* * Default Value: getutcdate()
|
|
13880
14173
|
*/
|
|
13881
14174
|
get User(): string;
|
|
13882
14175
|
}
|
|
@@ -13952,23 +14245,22 @@ export declare class LibraryItemEntity extends BaseEntity {
|
|
|
13952
14245
|
get Type(): 'Class' | 'Interface' | 'Variable' | 'Type' | 'Module' | 'Function';
|
|
13953
14246
|
set Type(value: 'Class' | 'Interface' | 'Variable' | 'Type' | 'Module' | 'Function');
|
|
13954
14247
|
/**
|
|
13955
|
-
* * Field Name:
|
|
14248
|
+
* * Field Name: __mj_CreatedAt
|
|
13956
14249
|
* * Display Name: Created At
|
|
13957
|
-
* * SQL Data Type:
|
|
13958
|
-
* * Default Value: getdate()
|
|
14250
|
+
* * SQL Data Type: datetimeoffset
|
|
13959
14251
|
*/
|
|
13960
|
-
get
|
|
14252
|
+
get __mj_CreatedAt(): Date;
|
|
13961
14253
|
/**
|
|
13962
|
-
* * Field Name:
|
|
14254
|
+
* * Field Name: __mj_UpdatedAt
|
|
13963
14255
|
* * Display Name: Updated At
|
|
13964
|
-
* * SQL Data Type:
|
|
13965
|
-
* * Default Value: getdate()
|
|
14256
|
+
* * SQL Data Type: datetimeoffset
|
|
13966
14257
|
*/
|
|
13967
|
-
get
|
|
14258
|
+
get __mj_UpdatedAt(): Date;
|
|
13968
14259
|
/**
|
|
13969
14260
|
* * Field Name: Library
|
|
13970
14261
|
* * Display Name: Library
|
|
13971
14262
|
* * SQL Data Type: nvarchar(255)
|
|
14263
|
+
* * Default Value: getutcdate()
|
|
13972
14264
|
*/
|
|
13973
14265
|
get Library(): string;
|
|
13974
14266
|
}
|
|
@@ -14084,6 +14376,14 @@ export declare class EntityActionParamEntity extends BaseEntity {
|
|
|
14084
14376
|
*/
|
|
14085
14377
|
get ID(): number;
|
|
14086
14378
|
/**
|
|
14379
|
+
* * Field Name: EntityActionID
|
|
14380
|
+
* * Display Name: Entity Action ID
|
|
14381
|
+
* * SQL Data Type: int
|
|
14382
|
+
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
|
|
14383
|
+
*/
|
|
14384
|
+
get EntityActionID(): number;
|
|
14385
|
+
set EntityActionID(value: number);
|
|
14386
|
+
/**
|
|
14087
14387
|
* * Field Name: ActionParamID
|
|
14088
14388
|
* * Display Name: Action Param ID
|
|
14089
14389
|
* * SQL Data Type: int
|
|
@@ -14138,7 +14438,6 @@ export declare class EntityActionParamEntity extends BaseEntity {
|
|
|
14138
14438
|
* * Field Name: ActionParam
|
|
14139
14439
|
* * Display Name: Action Param
|
|
14140
14440
|
* * SQL Data Type: nvarchar(255)
|
|
14141
|
-
* * Default Value: null
|
|
14142
14441
|
*/
|
|
14143
14442
|
get ActionParam(): string;
|
|
14144
14443
|
}
|