@memberjunction/core-entities 2.0.0 → 2.1.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.
@@ -73,6 +73,13 @@ export declare class ActionAuthorizationEntity extends BaseEntity {
73
73
  * * SQL Data Type: nvarchar(425)
74
74
  */
75
75
  get Action(): string;
76
+ /**
77
+ * * Field Name: Authorization
78
+ * * Display Name: Authorization
79
+ * * SQL Data Type: nvarchar(100)
80
+ * * Default Value: null
81
+ */
82
+ get Authorization(): string;
76
83
  }
77
84
  /**
78
85
  * Action Categories - strongly typed entity sub-class
@@ -1227,7 +1234,7 @@ export declare class AIModelTypeEntity extends BaseEntity {
1227
1234
  * * Schema: __mj
1228
1235
  * * Base Table: AIModel
1229
1236
  * * Base View: vwAIModels
1230
- * * @description Catalog of all AI Models configured in the system
1237
+ * * @description Catalog of all AI Models configured in the system.
1231
1238
  * * Primary Key: ID
1232
1239
  * @extends {BaseEntity}
1233
1240
  * @class
@@ -1524,6 +1531,13 @@ export declare class ApplicationSettingEntity extends BaseEntity {
1524
1531
  * * Default Value: getutcdate()
1525
1532
  */
1526
1533
  get __mj_UpdatedAt(): Date;
1534
+ /**
1535
+ * * Field Name: Application
1536
+ * * Display Name: Application
1537
+ * * SQL Data Type: nvarchar(100)
1538
+ * * Default Value: null
1539
+ */
1540
+ get Application(): string;
1527
1541
  }
1528
1542
  /**
1529
1543
  * Applications - strongly typed entity sub-class
@@ -1697,6 +1711,13 @@ export declare class AuditLogTypeEntity extends BaseEntity {
1697
1711
  * * SQL Data Type: nvarchar(50)
1698
1712
  */
1699
1713
  get Parent(): string | null;
1714
+ /**
1715
+ * * Field Name: Authorization
1716
+ * * Display Name: Authorization
1717
+ * * SQL Data Type: nvarchar(100)
1718
+ * * Default Value: null
1719
+ */
1720
+ get Authorization(): string | null;
1700
1721
  }
1701
1722
  /**
1702
1723
  * Audit Logs - strongly typed entity sub-class
@@ -1823,6 +1844,20 @@ export declare class AuditLogEntity extends BaseEntity {
1823
1844
  */
1824
1845
  get User(): string;
1825
1846
  /**
1847
+ * * Field Name: AuditLogType
1848
+ * * Display Name: Audit Log Type
1849
+ * * SQL Data Type: nvarchar(50)
1850
+ * * Default Value: null
1851
+ */
1852
+ get AuditLogType(): string;
1853
+ /**
1854
+ * * Field Name: Authorization
1855
+ * * Display Name: Authorization
1856
+ * * SQL Data Type: nvarchar(100)
1857
+ * * Default Value: null
1858
+ */
1859
+ get Authorization(): string | null;
1860
+ /**
1826
1861
  * * Field Name: Entity
1827
1862
  * * Display Name: Entity
1828
1863
  * * SQL Data Type: nvarchar(255)
@@ -1919,6 +1954,20 @@ export declare class AuthorizationRoleEntity extends BaseEntity {
1919
1954
  * * Default Value: getutcdate()
1920
1955
  */
1921
1956
  get __mj_UpdatedAt(): Date;
1957
+ /**
1958
+ * * Field Name: Authorization
1959
+ * * Display Name: Authorization
1960
+ * * SQL Data Type: nvarchar(100)
1961
+ * * Default Value: null
1962
+ */
1963
+ get Authorization(): string;
1964
+ /**
1965
+ * * Field Name: Role
1966
+ * * Display Name: Role
1967
+ * * SQL Data Type: nvarchar(50)
1968
+ * * Default Value: null
1969
+ */
1970
+ get Role(): string;
1922
1971
  }
1923
1972
  /**
1924
1973
  * Authorizations - strongly typed entity sub-class
@@ -3079,6 +3128,7 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity {
3079
3128
  * * Field Name: RunByUser
3080
3129
  * * Display Name: Run By User
3081
3130
  * * SQL Data Type: nvarchar(100)
3131
+ * * Default Value: null
3082
3132
  */
3083
3133
  get RunByUser(): string;
3084
3134
  }
@@ -3487,6 +3537,13 @@ export declare class ConversationEntity extends BaseEntity {
3487
3537
  * * SQL Data Type: nvarchar(255)
3488
3538
  */
3489
3539
  get LinkedEntity(): string | null;
3540
+ /**
3541
+ * * Field Name: DataContext
3542
+ * * Display Name: Data Context
3543
+ * * SQL Data Type: nvarchar(255)
3544
+ * * Default Value: null
3545
+ */
3546
+ get DataContext(): string | null;
3490
3547
  }
3491
3548
  /**
3492
3549
  * Dashboard Categories - strongly typed entity sub-class
@@ -4016,6 +4073,13 @@ export declare class DatasetItemEntity extends BaseEntity {
4016
4073
  */
4017
4074
  get __mj_UpdatedAt(): Date;
4018
4075
  /**
4076
+ * * Field Name: Dataset
4077
+ * * Display Name: Dataset
4078
+ * * SQL Data Type: nvarchar(100)
4079
+ * * Default Value: null
4080
+ */
4081
+ get Dataset(): string;
4082
+ /**
4019
4083
  * * Field Name: Entity
4020
4084
  * * Display Name: Entity
4021
4085
  * * SQL Data Type: nvarchar(255)
@@ -6505,6 +6569,27 @@ export declare class EntityDocumentEntity extends BaseEntity {
6505
6569
  * * SQL Data Type: nvarchar(255)
6506
6570
  */
6507
6571
  get Entity(): string;
6572
+ /**
6573
+ * * Field Name: VectorDatabase
6574
+ * * Display Name: Vector Database
6575
+ * * SQL Data Type: nvarchar(100)
6576
+ * * Default Value: null
6577
+ */
6578
+ get VectorDatabase(): string;
6579
+ /**
6580
+ * * Field Name: Template
6581
+ * * Display Name: Template
6582
+ * * SQL Data Type: nvarchar(255)
6583
+ * * Default Value: null
6584
+ */
6585
+ get Template(): string;
6586
+ /**
6587
+ * * Field Name: AIModel
6588
+ * * Display Name: AIModel
6589
+ * * SQL Data Type: nvarchar(50)
6590
+ * * Default Value: null
6591
+ */
6592
+ get AIModel(): string;
6508
6593
  }
6509
6594
  /**
6510
6595
  * Entity Field Values - strongly typed entity sub-class
@@ -7337,6 +7422,27 @@ export declare class EntityRecordDocumentEntity extends BaseEntity {
7337
7422
  * * Default Value: getutcdate()
7338
7423
  */
7339
7424
  get __mj_UpdatedAt(): Date;
7425
+ /**
7426
+ * * Field Name: Entity
7427
+ * * Display Name: Entity
7428
+ * * SQL Data Type: nvarchar(255)
7429
+ * * Default Value: null
7430
+ */
7431
+ get Entity(): string;
7432
+ /**
7433
+ * * Field Name: EntityDocument
7434
+ * * Display Name: Entity Document
7435
+ * * SQL Data Type: nvarchar(250)
7436
+ * * Default Value: null
7437
+ */
7438
+ get EntityDocument(): string;
7439
+ /**
7440
+ * * Field Name: VectorIndex
7441
+ * * Display Name: Vector Index
7442
+ * * SQL Data Type: nvarchar(255)
7443
+ * * Default Value: null
7444
+ */
7445
+ get VectorIndex(): string;
7340
7446
  }
7341
7447
  /**
7342
7448
  * Entity Relationship Display Components - strongly typed entity sub-class
@@ -8960,6 +9066,20 @@ export declare class ListCategoryEntity extends BaseEntity {
8960
9066
  * * Default Value: getutcdate()
8961
9067
  */
8962
9068
  get __mj_UpdatedAt(): Date;
9069
+ /**
9070
+ * * Field Name: Parent
9071
+ * * Display Name: Parent
9072
+ * * SQL Data Type: nvarchar(100)
9073
+ * * Default Value: null
9074
+ */
9075
+ get Parent(): string | null;
9076
+ /**
9077
+ * * Field Name: User
9078
+ * * Display Name: User
9079
+ * * SQL Data Type: nvarchar(100)
9080
+ * * Default Value: null
9081
+ */
9082
+ get User(): string;
8963
9083
  }
8964
9084
  /**
8965
9085
  * List Details - strongly typed entity sub-class
@@ -9141,6 +9261,13 @@ export declare class ListEntity extends BaseEntity {
9141
9261
  * * SQL Data Type: nvarchar(100)
9142
9262
  */
9143
9263
  get User(): string;
9264
+ /**
9265
+ * * Field Name: Category
9266
+ * * Display Name: Category
9267
+ * * SQL Data Type: nvarchar(100)
9268
+ * * Default Value: null
9269
+ */
9270
+ get Category(): string | null;
9144
9271
  }
9145
9272
  /**
9146
9273
  * Output Delivery Types - strongly typed entity sub-class
@@ -9841,6 +9968,20 @@ export declare class QueryPermissionEntity extends BaseEntity {
9841
9968
  * * Default Value: getutcdate()
9842
9969
  */
9843
9970
  get __mj_UpdatedAt(): Date;
9971
+ /**
9972
+ * * Field Name: Query
9973
+ * * Display Name: Query
9974
+ * * SQL Data Type: nvarchar(255)
9975
+ * * Default Value: null
9976
+ */
9977
+ get Query(): string;
9978
+ /**
9979
+ * * Field Name: Role
9980
+ * * Display Name: Role
9981
+ * * SQL Data Type: nvarchar(50)
9982
+ * * Default Value: null
9983
+ */
9984
+ get Role(): string;
9844
9985
  }
9845
9986
  /**
9846
9987
  * Queue Tasks - strongly typed entity sub-class
@@ -11151,6 +11292,13 @@ export declare class RecordMergeLogEntity extends BaseEntity {
11151
11292
  * * SQL Data Type: nvarchar(100)
11152
11293
  */
11153
11294
  get InitiatedByUser(): string;
11295
+ /**
11296
+ * * Field Name: ApprovedByUser
11297
+ * * Display Name: Approved By User
11298
+ * * SQL Data Type: nvarchar(100)
11299
+ * * Default Value: null
11300
+ */
11301
+ get ApprovedByUser(): string | null;
11154
11302
  }
11155
11303
  /**
11156
11304
  * Report Categories - strongly typed entity sub-class
@@ -11879,6 +12027,20 @@ export declare class ScheduledActionParamEntity extends BaseEntity {
11879
12027
  * * Default Value: getutcdate()
11880
12028
  */
11881
12029
  get __mj_UpdatedAt(): Date;
12030
+ /**
12031
+ * * Field Name: ScheduledAction
12032
+ * * Display Name: Scheduled Action
12033
+ * * SQL Data Type: nvarchar(255)
12034
+ * * Default Value: null
12035
+ */
12036
+ get ScheduledAction(): string;
12037
+ /**
12038
+ * * Field Name: ActionParam
12039
+ * * Display Name: Action Param
12040
+ * * SQL Data Type: nvarchar(255)
12041
+ * * Default Value: null
12042
+ */
12043
+ get ActionParam(): string;
11882
12044
  }
11883
12045
  /**
11884
12046
  * Scheduled Actions - strongly typed entity sub-class
@@ -12040,6 +12202,20 @@ export declare class ScheduledActionEntity extends BaseEntity {
12040
12202
  * * Default Value: getutcdate()
12041
12203
  */
12042
12204
  get __mj_UpdatedAt(): Date;
12205
+ /**
12206
+ * * Field Name: CreatedByUser
12207
+ * * Display Name: Created By User
12208
+ * * SQL Data Type: nvarchar(100)
12209
+ * * Default Value: null
12210
+ */
12211
+ get CreatedByUser(): string;
12212
+ /**
12213
+ * * Field Name: Action
12214
+ * * Display Name: Action
12215
+ * * SQL Data Type: nvarchar(425)
12216
+ * * Default Value: null
12217
+ */
12218
+ get Action(): string;
12043
12219
  }
12044
12220
  /**
12045
12221
  * Schema Info - strongly typed entity sub-class
@@ -13305,13 +13481,6 @@ export declare class UserNotificationEntity extends BaseEntity {
13305
13481
  get ResourceTypeID(): string | null;
13306
13482
  set ResourceTypeID(value: string | null);
13307
13483
  /**
13308
- * * Field Name: ResourceRecordID
13309
- * * Display Name: Resource Record ID
13310
- * * SQL Data Type: int
13311
- */
13312
- get ResourceRecordID(): number | null;
13313
- set ResourceRecordID(value: number | null);
13314
- /**
13315
13484
  * * Field Name: ResourceConfiguration
13316
13485
  * * Display Name: Resource Configuration
13317
13486
  * * SQL Data Type: nvarchar(MAX)
@@ -13348,6 +13517,13 @@ export declare class UserNotificationEntity extends BaseEntity {
13348
13517
  */
13349
13518
  get __mj_UpdatedAt(): Date;
13350
13519
  /**
13520
+ * * Field Name: ResourceRecordID
13521
+ * * Display Name: Resource Record ID
13522
+ * * SQL Data Type: uniqueidentifier
13523
+ */
13524
+ get ResourceRecordID(): string | null;
13525
+ set ResourceRecordID(value: string | null);
13526
+ /**
13351
13527
  * * Field Name: User
13352
13528
  * * Display Name: User
13353
13529
  * * SQL Data Type: nvarchar(100)
@@ -13658,6 +13834,13 @@ export declare class UserViewCategoryEntity extends BaseEntity {
13658
13834
  */
13659
13835
  get Parent(): string | null;
13660
13836
  /**
13837
+ * * Field Name: Entity
13838
+ * * Display Name: Entity
13839
+ * * SQL Data Type: nvarchar(255)
13840
+ * * Default Value: null
13841
+ */
13842
+ get Entity(): string;
13843
+ /**
13661
13844
  * * Field Name: User
13662
13845
  * * Display Name: User
13663
13846
  * * SQL Data Type: nvarchar(100)