@memberjunction/core-entities 2.1.6 → 2.2.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.
@@ -52,6 +52,10 @@ exports.ActionAuthorizationSchema = zod_1.z.object({
52
52
  * * Field Name: Action
53
53
  * * Display Name: Action
54
54
  * * SQL Data Type: nvarchar(425)`),
55
+ Authorization: zod_1.z.string().describe(`
56
+ * * Field Name: Authorization
57
+ * * Display Name: Authorization
58
+ * * SQL Data Type: nvarchar(100)`),
55
59
  });
56
60
  /**
57
61
  * zod schema definition for the entity Action Categories
@@ -708,7 +712,8 @@ exports.AIModelSchema = zod_1.z.object({
708
712
  * * Field Name: PowerRank
709
713
  * * Display Name: Power Rank
710
714
  * * SQL Data Type: int
711
- * * Description: A simplified power rank of each model for a given AI Model Type. For example, if we have GPT 3, GPT 3.5, and GPT 4, we would have a PowerRank of 1 for GPT3, 2 for GPT 3.5, and 3 for GPT 4. This can be used within model families like OpenAI or across all models. For example if you had Llama 2 in the mix which is similar to GPT 3.5 it would also have a PowerRank of 2. This can be used at runtime to pick the most/least powerful or compare model relative power.`),
715
+ * * Default Value: 0
716
+ * * Description: Optional column that ranks the power of the AI model. Default is 0 and should be non-negative.`),
712
717
  IsActive: zod_1.z.boolean().describe(`
713
718
  * * Field Name: IsActive
714
719
  * * Display Name: Is Active
@@ -737,6 +742,18 @@ exports.AIModelSchema = zod_1.z.object({
737
742
  * * Display Name: Updated At
738
743
  * * SQL Data Type: datetimeoffset
739
744
  * * Default Value: getutcdate()`),
745
+ SpeedRank: zod_1.z.number().nullish().describe(`
746
+ * * Field Name: SpeedRank
747
+ * * Display Name: Speed Rank
748
+ * * SQL Data Type: int
749
+ * * Default Value: 0
750
+ * * Description: Optional column that ranks the speed of the AI model. Default is 0 and should be non-negative.`),
751
+ CostRank: zod_1.z.number().nullish().describe(`
752
+ * * Field Name: CostRank
753
+ * * Display Name: Cost Rank
754
+ * * SQL Data Type: int
755
+ * * Default Value: 0
756
+ * * Description: Optional column that ranks the cost of the AI model. Default is 0 and should be non-negative.`),
740
757
  AIModelType: zod_1.z.string().describe(`
741
758
  * * Field Name: AIModelType
742
759
  * * Display Name: AIModel Type
@@ -838,6 +855,10 @@ exports.ApplicationSettingSchema = zod_1.z.object({
838
855
  * * Display Name: __mj _Updated At
839
856
  * * SQL Data Type: datetimeoffset
840
857
  * * Default Value: getutcdate()`),
858
+ Application: zod_1.z.string().describe(`
859
+ * * Field Name: Application
860
+ * * Display Name: Application
861
+ * * SQL Data Type: nvarchar(100)`),
841
862
  });
842
863
  /**
843
864
  * zod schema definition for the entity Applications
@@ -916,6 +937,10 @@ exports.AuditLogTypeSchema = zod_1.z.object({
916
937
  * * Field Name: Parent
917
938
  * * Display Name: Parent
918
939
  * * SQL Data Type: nvarchar(50)`),
940
+ Authorization: zod_1.z.string().nullish().describe(`
941
+ * * Field Name: Authorization
942
+ * * Display Name: Authorization
943
+ * * SQL Data Type: nvarchar(100)`),
919
944
  });
920
945
  /**
921
946
  * zod schema definition for the entity Audit Logs
@@ -981,6 +1006,14 @@ exports.AuditLogSchema = zod_1.z.object({
981
1006
  * * Field Name: User
982
1007
  * * Display Name: User
983
1008
  * * SQL Data Type: nvarchar(100)`),
1009
+ AuditLogType: zod_1.z.string().describe(`
1010
+ * * Field Name: AuditLogType
1011
+ * * Display Name: Audit Log Type
1012
+ * * SQL Data Type: nvarchar(50)`),
1013
+ Authorization: zod_1.z.string().nullish().describe(`
1014
+ * * Field Name: Authorization
1015
+ * * Display Name: Authorization
1016
+ * * SQL Data Type: nvarchar(100)`),
984
1017
  Entity: zod_1.z.string().nullish().describe(`
985
1018
  * * Field Name: Entity
986
1019
  * * Display Name: Entity
@@ -1024,6 +1057,14 @@ exports.AuthorizationRoleSchema = zod_1.z.object({
1024
1057
  * * Display Name: Updated At
1025
1058
  * * SQL Data Type: datetimeoffset
1026
1059
  * * Default Value: getutcdate()`),
1060
+ Authorization: zod_1.z.string().describe(`
1061
+ * * Field Name: Authorization
1062
+ * * Display Name: Authorization
1063
+ * * SQL Data Type: nvarchar(100)`),
1064
+ Role: zod_1.z.string().describe(`
1065
+ * * Field Name: Role
1066
+ * * Display Name: Role
1067
+ * * SQL Data Type: nvarchar(50)`),
1027
1068
  });
1028
1069
  /**
1029
1070
  * zod schema definition for the entity Authorizations
@@ -1827,6 +1868,10 @@ exports.ConversationSchema = zod_1.z.object({
1827
1868
  * * Field Name: LinkedEntity
1828
1869
  * * Display Name: Linked Entity
1829
1870
  * * SQL Data Type: nvarchar(255)`),
1871
+ DataContext: zod_1.z.string().nullish().describe(`
1872
+ * * Field Name: DataContext
1873
+ * * Display Name: Data Context
1874
+ * * SQL Data Type: nvarchar(255)`),
1830
1875
  });
1831
1876
  /**
1832
1877
  * zod schema definition for the entity Dashboard Categories
@@ -2103,6 +2148,10 @@ exports.DatasetItemSchema = zod_1.z.object({
2103
2148
  * * Display Name: Updated At
2104
2149
  * * SQL Data Type: datetimeoffset
2105
2150
  * * Default Value: getutcdate()`),
2151
+ Dataset: zod_1.z.string().describe(`
2152
+ * * Field Name: Dataset
2153
+ * * Display Name: Dataset
2154
+ * * SQL Data Type: nvarchar(100)`),
2106
2155
  Entity: zod_1.z.string().describe(`
2107
2156
  * * Field Name: Entity
2108
2157
  * * Display Name: Entity
@@ -3435,6 +3484,18 @@ exports.EntityDocumentSchema = zod_1.z.object({
3435
3484
  * * Field Name: Entity
3436
3485
  * * Display Name: Entity
3437
3486
  * * SQL Data Type: nvarchar(255)`),
3487
+ VectorDatabase: zod_1.z.string().describe(`
3488
+ * * Field Name: VectorDatabase
3489
+ * * Display Name: Vector Database
3490
+ * * SQL Data Type: nvarchar(100)`),
3491
+ Template: zod_1.z.string().describe(`
3492
+ * * Field Name: Template
3493
+ * * Display Name: Template
3494
+ * * SQL Data Type: nvarchar(255)`),
3495
+ AIModel: zod_1.z.string().describe(`
3496
+ * * Field Name: AIModel
3497
+ * * Display Name: AIModel
3498
+ * * SQL Data Type: nvarchar(50)`),
3438
3499
  });
3439
3500
  /**
3440
3501
  * zod schema definition for the entity Entity Field Values
@@ -3934,6 +3995,18 @@ exports.EntityRecordDocumentSchema = zod_1.z.object({
3934
3995
  * * Display Name: __mj _Updated At
3935
3996
  * * SQL Data Type: datetimeoffset
3936
3997
  * * Default Value: getutcdate()`),
3998
+ Entity: zod_1.z.string().describe(`
3999
+ * * Field Name: Entity
4000
+ * * Display Name: Entity
4001
+ * * SQL Data Type: nvarchar(255)`),
4002
+ EntityDocument: zod_1.z.string().describe(`
4003
+ * * Field Name: EntityDocument
4004
+ * * Display Name: Entity Document
4005
+ * * SQL Data Type: nvarchar(250)`),
4006
+ VectorIndex: zod_1.z.string().describe(`
4007
+ * * Field Name: VectorIndex
4008
+ * * Display Name: Vector Index
4009
+ * * SQL Data Type: nvarchar(255)`),
3937
4010
  });
3938
4011
  /**
3939
4012
  * zod schema definition for the entity Entity Relationship Display Components
@@ -4764,6 +4837,14 @@ exports.ListCategorySchema = zod_1.z.object({
4764
4837
  * * Display Name: Updated At
4765
4838
  * * SQL Data Type: datetimeoffset
4766
4839
  * * Default Value: getutcdate()`),
4840
+ Parent: zod_1.z.string().nullish().describe(`
4841
+ * * Field Name: Parent
4842
+ * * Display Name: Parent
4843
+ * * SQL Data Type: nvarchar(100)`),
4844
+ User: zod_1.z.string().describe(`
4845
+ * * Field Name: User
4846
+ * * Display Name: User
4847
+ * * SQL Data Type: nvarchar(100)`),
4767
4848
  });
4768
4849
  /**
4769
4850
  * zod schema definition for the entity List Details
@@ -4796,6 +4877,26 @@ exports.ListDetailSchema = zod_1.z.object({
4796
4877
  * * Display Name: Updated At
4797
4878
  * * SQL Data Type: datetimeoffset
4798
4879
  * * Default Value: getutcdate()`),
4880
+ Status: zod_1.z.union([zod_1.z.literal('Pending'), zod_1.z.literal('Active'), zod_1.z.literal('Disabled'), zod_1.z.literal('Rejected'), zod_1.z.literal('Complete'), zod_1.z.literal('Error'), zod_1.z.literal('Other')]).describe(`
4881
+ * * Field Name: Status
4882
+ * * Display Name: Status
4883
+ * * SQL Data Type: nvarchar(30)
4884
+ * * Default Value: Pending
4885
+ * * Value List Type: List
4886
+ * * Possible Values
4887
+ * * Pending
4888
+ * * Active
4889
+ * * Disabled
4890
+ * * Rejected
4891
+ * * Complete
4892
+ * * Error
4893
+ * * Other
4894
+ * * Description: Tracks the status of each individual list detail row to enable processing of various types and the use of the status column for filtering list detail rows within a list that are in a particular state.`),
4895
+ AdditionalData: zod_1.z.string().nullish().describe(`
4896
+ * * Field Name: AdditionalData
4897
+ * * Display Name: Additional Data
4898
+ * * SQL Data Type: nvarchar(MAX)
4899
+ * * Description: Optional column that allows for tracking any additional data for each ListDetail row`),
4799
4900
  List: zod_1.z.string().describe(`
4800
4901
  * * Field Name: List
4801
4902
  * * Display Name: List
@@ -4857,6 +4958,10 @@ exports.ListSchema = zod_1.z.object({
4857
4958
  * * Field Name: User
4858
4959
  * * Display Name: User
4859
4960
  * * SQL Data Type: nvarchar(100)`),
4961
+ Category: zod_1.z.string().nullish().describe(`
4962
+ * * Field Name: Category
4963
+ * * Display Name: Category
4964
+ * * SQL Data Type: nvarchar(100)`),
4860
4965
  });
4861
4966
  /**
4862
4967
  * zod schema definition for the entity Output Delivery Types
@@ -5182,6 +5287,14 @@ exports.QueryPermissionSchema = zod_1.z.object({
5182
5287
  * * Display Name: __mj _Updated At
5183
5288
  * * SQL Data Type: datetimeoffset
5184
5289
  * * Default Value: getutcdate()`),
5290
+ Query: zod_1.z.string().describe(`
5291
+ * * Field Name: Query
5292
+ * * Display Name: Query
5293
+ * * SQL Data Type: nvarchar(255)`),
5294
+ Role: zod_1.z.string().describe(`
5295
+ * * Field Name: Role
5296
+ * * Display Name: Role
5297
+ * * SQL Data Type: nvarchar(50)`),
5185
5298
  });
5186
5299
  /**
5187
5300
  * zod schema definition for the entity Queue Tasks
@@ -5847,6 +5960,10 @@ exports.RecordMergeLogSchema = zod_1.z.object({
5847
5960
  * * Field Name: InitiatedByUser
5848
5961
  * * Display Name: Initiated By User
5849
5962
  * * SQL Data Type: nvarchar(100)`),
5963
+ ApprovedByUser: zod_1.z.string().nullish().describe(`
5964
+ * * Field Name: ApprovedByUser
5965
+ * * Display Name: Approved By User
5966
+ * * SQL Data Type: nvarchar(100)`),
5850
5967
  });
5851
5968
  /**
5852
5969
  * zod schema definition for the entity Report Categories
@@ -6220,6 +6337,14 @@ exports.ScheduledActionParamSchema = zod_1.z.object({
6220
6337
  * * Display Name: Updated At
6221
6338
  * * SQL Data Type: datetimeoffset
6222
6339
  * * Default Value: getutcdate()`),
6340
+ ScheduledAction: zod_1.z.string().describe(`
6341
+ * * Field Name: ScheduledAction
6342
+ * * Display Name: Scheduled Action
6343
+ * * SQL Data Type: nvarchar(255)`),
6344
+ ActionParam: zod_1.z.string().describe(`
6345
+ * * Field Name: ActionParam
6346
+ * * Display Name: Action Param
6347
+ * * SQL Data Type: nvarchar(255)`),
6223
6348
  });
6224
6349
  /**
6225
6350
  * zod schema definition for the entity Scheduled Actions
@@ -6316,6 +6441,14 @@ exports.ScheduledActionSchema = zod_1.z.object({
6316
6441
  * * Display Name: Updated At
6317
6442
  * * SQL Data Type: datetimeoffset
6318
6443
  * * Default Value: getutcdate()`),
6444
+ CreatedByUser: zod_1.z.string().describe(`
6445
+ * * Field Name: CreatedByUser
6446
+ * * Display Name: Created By User
6447
+ * * SQL Data Type: nvarchar(100)`),
6448
+ Action: zod_1.z.string().describe(`
6449
+ * * Field Name: Action
6450
+ * * Display Name: Action
6451
+ * * SQL Data Type: nvarchar(425)`),
6319
6452
  });
6320
6453
  /**
6321
6454
  * zod schema definition for the entity Schema Info
@@ -6936,10 +7069,6 @@ exports.UserNotificationSchema = zod_1.z.object({
6936
7069
  * * Display Name: Resource Type ID
6937
7070
  * * SQL Data Type: uniqueidentifier
6938
7071
  * * Related Entity/Foreign Key: Resource Types (vwResourceTypes.ID)`),
6939
- ResourceRecordID: zod_1.z.string().nullish().describe(`
6940
- * * Field Name: ResourceRecordID
6941
- * * Display Name: Resource Record ID
6942
- * * SQL Data Type: uniqueidentifier`),
6943
7072
  ResourceConfiguration: zod_1.z.string().nullish().describe(`
6944
7073
  * * Field Name: ResourceConfiguration
6945
7074
  * * Display Name: Resource Configuration
@@ -6963,6 +7092,10 @@ exports.UserNotificationSchema = zod_1.z.object({
6963
7092
  * * Display Name: Updated At
6964
7093
  * * SQL Data Type: datetimeoffset
6965
7094
  * * Default Value: getutcdate()`),
7095
+ ResourceRecordID: zod_1.z.string().nullish().describe(`
7096
+ * * Field Name: ResourceRecordID
7097
+ * * Display Name: Resource Record ID
7098
+ * * SQL Data Type: uniqueidentifier`),
6966
7099
  User: zod_1.z.string().describe(`
6967
7100
  * * Field Name: User
6968
7101
  * * Display Name: User
@@ -7128,6 +7261,10 @@ exports.UserViewCategorySchema = zod_1.z.object({
7128
7261
  * * Field Name: Parent
7129
7262
  * * Display Name: Parent
7130
7263
  * * SQL Data Type: nvarchar(100)`),
7264
+ Entity: zod_1.z.string().describe(`
7265
+ * * Field Name: Entity
7266
+ * * Display Name: Entity
7267
+ * * SQL Data Type: nvarchar(255)`),
7131
7268
  User: zod_1.z.string().describe(`
7132
7269
  * * Field Name: User
7133
7270
  * * Display Name: User
@@ -7923,6 +8060,14 @@ let ActionAuthorizationEntity = class ActionAuthorizationEntity extends core_1.B
7923
8060
  get Action() {
7924
8061
  return this.Get('Action');
7925
8062
  }
8063
+ /**
8064
+ * * Field Name: Authorization
8065
+ * * Display Name: Authorization
8066
+ * * SQL Data Type: nvarchar(100)
8067
+ */
8068
+ get Authorization() {
8069
+ return this.Get('Authorization');
8070
+ }
7926
8071
  };
7927
8072
  exports.ActionAuthorizationEntity = ActionAuthorizationEntity;
7928
8073
  exports.ActionAuthorizationEntity = ActionAuthorizationEntity = __decorate([
@@ -9602,7 +9747,8 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
9602
9747
  * * Field Name: PowerRank
9603
9748
  * * Display Name: Power Rank
9604
9749
  * * SQL Data Type: int
9605
- * * Description: A simplified power rank of each model for a given AI Model Type. For example, if we have GPT 3, GPT 3.5, and GPT 4, we would have a PowerRank of 1 for GPT3, 2 for GPT 3.5, and 3 for GPT 4. This can be used within model families like OpenAI or across all models. For example if you had Llama 2 in the mix which is similar to GPT 3.5 it would also have a PowerRank of 2. This can be used at runtime to pick the most/least powerful or compare model relative power.
9750
+ * * Default Value: 0
9751
+ * * Description: Optional column that ranks the power of the AI model. Default is 0 and should be non-negative.
9606
9752
  */
9607
9753
  get PowerRank() {
9608
9754
  return this.Get('PowerRank');
@@ -9675,6 +9821,32 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
9675
9821
  return this.Get('__mj_UpdatedAt');
9676
9822
  }
9677
9823
  /**
9824
+ * * Field Name: SpeedRank
9825
+ * * Display Name: Speed Rank
9826
+ * * SQL Data Type: int
9827
+ * * Default Value: 0
9828
+ * * Description: Optional column that ranks the speed of the AI model. Default is 0 and should be non-negative.
9829
+ */
9830
+ get SpeedRank() {
9831
+ return this.Get('SpeedRank');
9832
+ }
9833
+ set SpeedRank(value) {
9834
+ this.Set('SpeedRank', value);
9835
+ }
9836
+ /**
9837
+ * * Field Name: CostRank
9838
+ * * Display Name: Cost Rank
9839
+ * * SQL Data Type: int
9840
+ * * Default Value: 0
9841
+ * * Description: Optional column that ranks the cost of the AI model. Default is 0 and should be non-negative.
9842
+ */
9843
+ get CostRank() {
9844
+ return this.Get('CostRank');
9845
+ }
9846
+ set CostRank(value) {
9847
+ this.Set('CostRank', value);
9848
+ }
9849
+ /**
9678
9850
  * * Field Name: AIModelType
9679
9851
  * * Display Name: AIModel Type
9680
9852
  * * SQL Data Type: nvarchar(50)
@@ -9938,6 +10110,14 @@ let ApplicationSettingEntity = class ApplicationSettingEntity extends core_1.Bas
9938
10110
  get __mj_UpdatedAt() {
9939
10111
  return this.Get('__mj_UpdatedAt');
9940
10112
  }
10113
+ /**
10114
+ * * Field Name: Application
10115
+ * * Display Name: Application
10116
+ * * SQL Data Type: nvarchar(100)
10117
+ */
10118
+ get Application() {
10119
+ return this.Get('Application');
10120
+ }
9941
10121
  };
9942
10122
  exports.ApplicationSettingEntity = ApplicationSettingEntity;
9943
10123
  exports.ApplicationSettingEntity = ApplicationSettingEntity = __decorate([
@@ -10177,6 +10357,14 @@ let AuditLogTypeEntity = class AuditLogTypeEntity extends core_1.BaseEntity {
10177
10357
  get Parent() {
10178
10358
  return this.Get('Parent');
10179
10359
  }
10360
+ /**
10361
+ * * Field Name: Authorization
10362
+ * * Display Name: Authorization
10363
+ * * SQL Data Type: nvarchar(100)
10364
+ */
10365
+ get Authorization() {
10366
+ return this.Get('Authorization');
10367
+ }
10180
10368
  };
10181
10369
  exports.AuditLogTypeEntity = AuditLogTypeEntity;
10182
10370
  exports.AuditLogTypeEntity = AuditLogTypeEntity = __decorate([
@@ -10353,6 +10541,22 @@ let AuditLogEntity = class AuditLogEntity extends core_1.BaseEntity {
10353
10541
  return this.Get('User');
10354
10542
  }
10355
10543
  /**
10544
+ * * Field Name: AuditLogType
10545
+ * * Display Name: Audit Log Type
10546
+ * * SQL Data Type: nvarchar(50)
10547
+ */
10548
+ get AuditLogType() {
10549
+ return this.Get('AuditLogType');
10550
+ }
10551
+ /**
10552
+ * * Field Name: Authorization
10553
+ * * Display Name: Authorization
10554
+ * * SQL Data Type: nvarchar(100)
10555
+ */
10556
+ get Authorization() {
10557
+ return this.Get('Authorization');
10558
+ }
10559
+ /**
10356
10560
  * * Field Name: Entity
10357
10561
  * * Display Name: Entity
10358
10562
  * * SQL Data Type: nvarchar(255)
@@ -10481,6 +10685,22 @@ let AuthorizationRoleEntity = class AuthorizationRoleEntity extends core_1.BaseE
10481
10685
  get __mj_UpdatedAt() {
10482
10686
  return this.Get('__mj_UpdatedAt');
10483
10687
  }
10688
+ /**
10689
+ * * Field Name: Authorization
10690
+ * * Display Name: Authorization
10691
+ * * SQL Data Type: nvarchar(100)
10692
+ */
10693
+ get Authorization() {
10694
+ return this.Get('Authorization');
10695
+ }
10696
+ /**
10697
+ * * Field Name: Role
10698
+ * * Display Name: Role
10699
+ * * SQL Data Type: nvarchar(50)
10700
+ */
10701
+ get Role() {
10702
+ return this.Get('Role');
10703
+ }
10484
10704
  };
10485
10705
  exports.AuthorizationRoleEntity = AuthorizationRoleEntity;
10486
10706
  exports.AuthorizationRoleEntity = AuthorizationRoleEntity = __decorate([
@@ -12665,6 +12885,14 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
12665
12885
  get LinkedEntity() {
12666
12886
  return this.Get('LinkedEntity');
12667
12887
  }
12888
+ /**
12889
+ * * Field Name: DataContext
12890
+ * * Display Name: Data Context
12891
+ * * SQL Data Type: nvarchar(255)
12892
+ */
12893
+ get DataContext() {
12894
+ return this.Get('DataContext');
12895
+ }
12668
12896
  };
12669
12897
  exports.ConversationEntity = ConversationEntity;
12670
12898
  exports.ConversationEntity = ConversationEntity = __decorate([
@@ -13402,6 +13630,14 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
13402
13630
  return this.Get('__mj_UpdatedAt');
13403
13631
  }
13404
13632
  /**
13633
+ * * Field Name: Dataset
13634
+ * * Display Name: Dataset
13635
+ * * SQL Data Type: nvarchar(100)
13636
+ */
13637
+ get Dataset() {
13638
+ return this.Get('Dataset');
13639
+ }
13640
+ /**
13405
13641
  * * Field Name: Entity
13406
13642
  * * Display Name: Entity
13407
13643
  * * SQL Data Type: nvarchar(255)
@@ -16851,6 +17087,30 @@ let EntityDocumentEntity = class EntityDocumentEntity extends core_1.BaseEntity
16851
17087
  get Entity() {
16852
17088
  return this.Get('Entity');
16853
17089
  }
17090
+ /**
17091
+ * * Field Name: VectorDatabase
17092
+ * * Display Name: Vector Database
17093
+ * * SQL Data Type: nvarchar(100)
17094
+ */
17095
+ get VectorDatabase() {
17096
+ return this.Get('VectorDatabase');
17097
+ }
17098
+ /**
17099
+ * * Field Name: Template
17100
+ * * Display Name: Template
17101
+ * * SQL Data Type: nvarchar(255)
17102
+ */
17103
+ get Template() {
17104
+ return this.Get('Template');
17105
+ }
17106
+ /**
17107
+ * * Field Name: AIModel
17108
+ * * Display Name: AIModel
17109
+ * * SQL Data Type: nvarchar(50)
17110
+ */
17111
+ get AIModel() {
17112
+ return this.Get('AIModel');
17113
+ }
16854
17114
  };
16855
17115
  exports.EntityDocumentEntity = EntityDocumentEntity;
16856
17116
  exports.EntityDocumentEntity = EntityDocumentEntity = __decorate([
@@ -18005,6 +18265,30 @@ let EntityRecordDocumentEntity = class EntityRecordDocumentEntity extends core_1
18005
18265
  get __mj_UpdatedAt() {
18006
18266
  return this.Get('__mj_UpdatedAt');
18007
18267
  }
18268
+ /**
18269
+ * * Field Name: Entity
18270
+ * * Display Name: Entity
18271
+ * * SQL Data Type: nvarchar(255)
18272
+ */
18273
+ get Entity() {
18274
+ return this.Get('Entity');
18275
+ }
18276
+ /**
18277
+ * * Field Name: EntityDocument
18278
+ * * Display Name: Entity Document
18279
+ * * SQL Data Type: nvarchar(250)
18280
+ */
18281
+ get EntityDocument() {
18282
+ return this.Get('EntityDocument');
18283
+ }
18284
+ /**
18285
+ * * Field Name: VectorIndex
18286
+ * * Display Name: Vector Index
18287
+ * * SQL Data Type: nvarchar(255)
18288
+ */
18289
+ get VectorIndex() {
18290
+ return this.Get('VectorIndex');
18291
+ }
18008
18292
  };
18009
18293
  exports.EntityRecordDocumentEntity = EntityRecordDocumentEntity;
18010
18294
  exports.EntityRecordDocumentEntity = EntityRecordDocumentEntity = __decorate([
@@ -20272,6 +20556,22 @@ let ListCategoryEntity = class ListCategoryEntity extends core_1.BaseEntity {
20272
20556
  get __mj_UpdatedAt() {
20273
20557
  return this.Get('__mj_UpdatedAt');
20274
20558
  }
20559
+ /**
20560
+ * * Field Name: Parent
20561
+ * * Display Name: Parent
20562
+ * * SQL Data Type: nvarchar(100)
20563
+ */
20564
+ get Parent() {
20565
+ return this.Get('Parent');
20566
+ }
20567
+ /**
20568
+ * * Field Name: User
20569
+ * * Display Name: User
20570
+ * * SQL Data Type: nvarchar(100)
20571
+ */
20572
+ get User() {
20573
+ return this.Get('User');
20574
+ }
20275
20575
  };
20276
20576
  exports.ListCategoryEntity = ListCategoryEntity;
20277
20577
  exports.ListCategoryEntity = ListCategoryEntity = __decorate([
@@ -20366,6 +20666,40 @@ let ListDetailEntity = class ListDetailEntity extends core_1.BaseEntity {
20366
20666
  return this.Get('__mj_UpdatedAt');
20367
20667
  }
20368
20668
  /**
20669
+ * * Field Name: Status
20670
+ * * Display Name: Status
20671
+ * * SQL Data Type: nvarchar(30)
20672
+ * * Default Value: Pending
20673
+ * * Value List Type: List
20674
+ * * Possible Values
20675
+ * * Pending
20676
+ * * Active
20677
+ * * Disabled
20678
+ * * Rejected
20679
+ * * Complete
20680
+ * * Error
20681
+ * * Other
20682
+ * * Description: Tracks the status of each individual list detail row to enable processing of various types and the use of the status column for filtering list detail rows within a list that are in a particular state.
20683
+ */
20684
+ get Status() {
20685
+ return this.Get('Status');
20686
+ }
20687
+ set Status(value) {
20688
+ this.Set('Status', value);
20689
+ }
20690
+ /**
20691
+ * * Field Name: AdditionalData
20692
+ * * Display Name: Additional Data
20693
+ * * SQL Data Type: nvarchar(MAX)
20694
+ * * Description: Optional column that allows for tracking any additional data for each ListDetail row
20695
+ */
20696
+ get AdditionalData() {
20697
+ return this.Get('AdditionalData');
20698
+ }
20699
+ set AdditionalData(value) {
20700
+ this.Set('AdditionalData', value);
20701
+ }
20702
+ /**
20369
20703
  * * Field Name: List
20370
20704
  * * Display Name: List
20371
20705
  * * SQL Data Type: nvarchar(100)
@@ -20527,6 +20861,14 @@ let ListEntity = class ListEntity extends core_1.BaseEntity {
20527
20861
  get User() {
20528
20862
  return this.Get('User');
20529
20863
  }
20864
+ /**
20865
+ * * Field Name: Category
20866
+ * * Display Name: Category
20867
+ * * SQL Data Type: nvarchar(100)
20868
+ */
20869
+ get Category() {
20870
+ return this.Get('Category');
20871
+ }
20530
20872
  };
20531
20873
  exports.ListEntity = ListEntity;
20532
20874
  exports.ListEntity = ListEntity = __decorate([
@@ -21497,6 +21839,22 @@ let QueryPermissionEntity = class QueryPermissionEntity extends core_1.BaseEntit
21497
21839
  get __mj_UpdatedAt() {
21498
21840
  return this.Get('__mj_UpdatedAt');
21499
21841
  }
21842
+ /**
21843
+ * * Field Name: Query
21844
+ * * Display Name: Query
21845
+ * * SQL Data Type: nvarchar(255)
21846
+ */
21847
+ get Query() {
21848
+ return this.Get('Query');
21849
+ }
21850
+ /**
21851
+ * * Field Name: Role
21852
+ * * Display Name: Role
21853
+ * * SQL Data Type: nvarchar(50)
21854
+ */
21855
+ get Role() {
21856
+ return this.Get('Role');
21857
+ }
21500
21858
  };
21501
21859
  exports.QueryPermissionEntity = QueryPermissionEntity;
21502
21860
  exports.QueryPermissionEntity = QueryPermissionEntity = __decorate([
@@ -23317,6 +23675,14 @@ let RecordMergeLogEntity = class RecordMergeLogEntity extends core_1.BaseEntity
23317
23675
  get InitiatedByUser() {
23318
23676
  return this.Get('InitiatedByUser');
23319
23677
  }
23678
+ /**
23679
+ * * Field Name: ApprovedByUser
23680
+ * * Display Name: Approved By User
23681
+ * * SQL Data Type: nvarchar(100)
23682
+ */
23683
+ get ApprovedByUser() {
23684
+ return this.Get('ApprovedByUser');
23685
+ }
23320
23686
  };
23321
23687
  exports.RecordMergeLogEntity = RecordMergeLogEntity;
23322
23688
  exports.RecordMergeLogEntity = RecordMergeLogEntity = __decorate([
@@ -24333,6 +24699,22 @@ let ScheduledActionParamEntity = class ScheduledActionParamEntity extends core_1
24333
24699
  get __mj_UpdatedAt() {
24334
24700
  return this.Get('__mj_UpdatedAt');
24335
24701
  }
24702
+ /**
24703
+ * * Field Name: ScheduledAction
24704
+ * * Display Name: Scheduled Action
24705
+ * * SQL Data Type: nvarchar(255)
24706
+ */
24707
+ get ScheduledAction() {
24708
+ return this.Get('ScheduledAction');
24709
+ }
24710
+ /**
24711
+ * * Field Name: ActionParam
24712
+ * * Display Name: Action Param
24713
+ * * SQL Data Type: nvarchar(255)
24714
+ */
24715
+ get ActionParam() {
24716
+ return this.Get('ActionParam');
24717
+ }
24336
24718
  };
24337
24719
  exports.ScheduledActionParamEntity = ScheduledActionParamEntity;
24338
24720
  exports.ScheduledActionParamEntity = ScheduledActionParamEntity = __decorate([
@@ -24560,6 +24942,22 @@ let ScheduledActionEntity = class ScheduledActionEntity extends core_1.BaseEntit
24560
24942
  get __mj_UpdatedAt() {
24561
24943
  return this.Get('__mj_UpdatedAt');
24562
24944
  }
24945
+ /**
24946
+ * * Field Name: CreatedByUser
24947
+ * * Display Name: Created By User
24948
+ * * SQL Data Type: nvarchar(100)
24949
+ */
24950
+ get CreatedByUser() {
24951
+ return this.Get('CreatedByUser');
24952
+ }
24953
+ /**
24954
+ * * Field Name: Action
24955
+ * * Display Name: Action
24956
+ * * SQL Data Type: nvarchar(425)
24957
+ */
24958
+ get Action() {
24959
+ return this.Get('Action');
24960
+ }
24563
24961
  };
24564
24962
  exports.ScheduledActionEntity = ScheduledActionEntity;
24565
24963
  exports.ScheduledActionEntity = ScheduledActionEntity = __decorate([
@@ -26297,17 +26695,6 @@ let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEnt
26297
26695
  this.Set('ResourceTypeID', value);
26298
26696
  }
26299
26697
  /**
26300
- * * Field Name: ResourceRecordID
26301
- * * Display Name: Resource Record ID
26302
- * * SQL Data Type: uniqueidentifier
26303
- */
26304
- get ResourceRecordID() {
26305
- return this.Get('ResourceRecordID');
26306
- }
26307
- set ResourceRecordID(value) {
26308
- this.Set('ResourceRecordID', value);
26309
- }
26310
- /**
26311
26698
  * * Field Name: ResourceConfiguration
26312
26699
  * * Display Name: Resource Configuration
26313
26700
  * * SQL Data Type: nvarchar(MAX)
@@ -26360,6 +26747,17 @@ let UserNotificationEntity = class UserNotificationEntity extends core_1.BaseEnt
26360
26747
  return this.Get('__mj_UpdatedAt');
26361
26748
  }
26362
26749
  /**
26750
+ * * Field Name: ResourceRecordID
26751
+ * * Display Name: Resource Record ID
26752
+ * * SQL Data Type: uniqueidentifier
26753
+ */
26754
+ get ResourceRecordID() {
26755
+ return this.Get('ResourceRecordID');
26756
+ }
26757
+ set ResourceRecordID(value) {
26758
+ this.Set('ResourceRecordID', value);
26759
+ }
26760
+ /**
26363
26761
  * * Field Name: User
26364
26762
  * * Display Name: User
26365
26763
  * * SQL Data Type: nvarchar(100)
@@ -26788,6 +27186,14 @@ let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEnt
26788
27186
  return this.Get('Parent');
26789
27187
  }
26790
27188
  /**
27189
+ * * Field Name: Entity
27190
+ * * Display Name: Entity
27191
+ * * SQL Data Type: nvarchar(255)
27192
+ */
27193
+ get Entity() {
27194
+ return this.Get('Entity');
27195
+ }
27196
+ /**
26791
27197
  * * Field Name: User
26792
27198
  * * Display Name: User
26793
27199
  * * SQL Data Type: nvarchar(100)