@memberjunction/core-entities 1.0.2 → 1.0.4

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.
@@ -4977,6 +4977,14 @@ let ListDetailEntity = class ListDetailEntity extends core_1.BaseEntity {
4977
4977
  set Sequence(value) {
4978
4978
  this.Set('Sequence', value);
4979
4979
  }
4980
+ /**
4981
+ * * Field Name: List
4982
+ * * Display Name: List
4983
+ * * SQL Data Type: nvarchar(100)
4984
+ */
4985
+ get List() {
4986
+ return this.Get('List');
4987
+ }
4980
4988
  };
4981
4989
  exports.ListDetailEntity = ListDetailEntity;
4982
4990
  exports.ListDetailEntity = ListDetailEntity = __decorate([
@@ -6300,6 +6308,14 @@ let AuthorizationEntity = class AuthorizationEntity extends core_1.BaseEntity {
6300
6308
  get UpdatedAt() {
6301
6309
  return this.Get('UpdatedAt');
6302
6310
  }
6311
+ /**
6312
+ * * Field Name: Parent
6313
+ * * Display Name: Parent
6314
+ * * SQL Data Type: nvarchar(100)
6315
+ */
6316
+ get Parent() {
6317
+ return this.Get('Parent');
6318
+ }
6303
6319
  };
6304
6320
  exports.AuthorizationEntity = AuthorizationEntity;
6305
6321
  exports.AuthorizationEntity = AuthorizationEntity = __decorate([
@@ -6805,6 +6821,18 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
6805
6821
  this.Set('AIModelTypeID', value);
6806
6822
  }
6807
6823
  /**
6824
+ * * Field Name: IsActive
6825
+ * * Display Name: Is Active
6826
+ * * SQL Data Type: bit
6827
+ * * Default Value: 1
6828
+ */
6829
+ get IsActive() {
6830
+ return this.Get('IsActive');
6831
+ }
6832
+ set IsActive(value) {
6833
+ this.Set('IsActive', value);
6834
+ }
6835
+ /**
6808
6836
  * * Field Name: Description
6809
6837
  * * Display Name: Description
6810
6838
  * * SQL Data Type: nvarchar(MAX)
@@ -6838,16 +6866,28 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
6838
6866
  this.Set('DriverImportPath', value);
6839
6867
  }
6840
6868
  /**
6841
- * * Field Name: IsActive
6842
- * * Display Name: Is Active
6843
- * * SQL Data Type: bit
6844
- * * Default Value: 1
6869
+ * * Field Name: APIName
6870
+ * * Display Name: APIName
6871
+ * * SQL Data Type: nvarchar(100)
6872
+ * * Description: The name of the model to use with API calls which might differ from the Name, if APIName is not provided, Name will be used for API calls
6845
6873
  */
6846
- get IsActive() {
6847
- return this.Get('IsActive');
6874
+ get APIName() {
6875
+ return this.Get('APIName');
6848
6876
  }
6849
- set IsActive(value) {
6850
- this.Set('IsActive', value);
6877
+ set APIName(value) {
6878
+ this.Set('APIName', value);
6879
+ }
6880
+ /**
6881
+ * * Field Name: PowerRank
6882
+ * * Display Name: Power Rank
6883
+ * * SQL Data Type: int
6884
+ * * 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.
6885
+ */
6886
+ get PowerRank() {
6887
+ return this.Get('PowerRank');
6888
+ }
6889
+ set PowerRank(value) {
6890
+ this.Set('PowerRank', value);
6851
6891
  }
6852
6892
  /**
6853
6893
  * * Field Name: CreatedAt
@@ -6867,6 +6907,14 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
6867
6907
  get UpdatedAt() {
6868
6908
  return this.Get('UpdatedAt');
6869
6909
  }
6910
+ /**
6911
+ * * Field Name: AIModelType
6912
+ * * Display Name: AIModel Type
6913
+ * * SQL Data Type: nvarchar(50)
6914
+ */
6915
+ get AIModelType() {
6916
+ return this.Get('AIModelType');
6917
+ }
6870
6918
  };
6871
6919
  exports.AIModelEntity = AIModelEntity;
6872
6920
  exports.AIModelEntity = AIModelEntity = __decorate([
@@ -7961,6 +8009,14 @@ let QueueTaskEntity = class QueueTaskEntity extends core_1.BaseEntity {
7961
8009
  set Comments(value) {
7962
8010
  this.Set('Comments', value);
7963
8011
  }
8012
+ /**
8013
+ * * Field Name: Queue
8014
+ * * Display Name: Queue
8015
+ * * SQL Data Type: nvarchar(50)
8016
+ */
8017
+ get Queue() {
8018
+ return this.Get('Queue');
8019
+ }
7964
8020
  };
7965
8021
  exports.QueueTaskEntity = QueueTaskEntity;
7966
8022
  exports.QueueTaskEntity = QueueTaskEntity = __decorate([
@@ -8652,6 +8708,14 @@ let ReportEntity = class ReportEntity extends core_1.BaseEntity {
8652
8708
  get OutputEvent() {
8653
8709
  return this.Get('OutputEvent');
8654
8710
  }
8711
+ /**
8712
+ * * Field Name: OutputWorkflow
8713
+ * * Display Name: Output Workflow
8714
+ * * SQL Data Type: nvarchar(100)
8715
+ */
8716
+ get OutputWorkflow() {
8717
+ return this.Get('OutputWorkflow');
8718
+ }
8655
8719
  };
8656
8720
  exports.ReportEntity = ReportEntity;
8657
8721
  exports.ReportEntity = ReportEntity = __decorate([
@@ -10985,7 +11049,6 @@ let QueryCategoryEntity = class QueryCategoryEntity extends core_1.BaseEntity {
10985
11049
  * * Field Name: User
10986
11050
  * * Display Name: User
10987
11051
  * * SQL Data Type: nvarchar(100)
10988
- * * Default Value: null
10989
11052
  */
10990
11053
  get User() {
10991
11054
  return this.Get('User');
@@ -12488,7 +12551,6 @@ let UserViewCategoryEntity = class UserViewCategoryEntity extends core_1.BaseEnt
12488
12551
  * * Field Name: User
12489
12552
  * * Display Name: User
12490
12553
  * * SQL Data Type: nvarchar(100)
12491
- * * Default Value: null
12492
12554
  */
12493
12555
  get User() {
12494
12556
  return this.Get('User');
@@ -12609,7 +12671,6 @@ let DashboardCategoryEntity = class DashboardCategoryEntity extends core_1.BaseE
12609
12671
  * * Field Name: User
12610
12672
  * * Display Name: User
12611
12673
  * * SQL Data Type: nvarchar(100)
12612
- * * Default Value: null
12613
12674
  */
12614
12675
  get User() {
12615
12676
  return this.Get('User');
@@ -12730,7 +12791,6 @@ let ReportCategoryEntity = class ReportCategoryEntity extends core_1.BaseEntity
12730
12791
  * * Field Name: User
12731
12792
  * * Display Name: User
12732
12793
  * * SQL Data Type: nvarchar(100)
12733
- * * Default Value: null
12734
12794
  */
12735
12795
  get User() {
12736
12796
  return this.Get('User');