@memberjunction/core-entities 2.36.1 → 2.37.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.
@@ -811,12 +811,12 @@ exports.AIAgentNoteSchema = zod_1.z.object({
811
811
  * * Display Name: ID
812
812
  * * SQL Data Type: uniqueidentifier
813
813
  * * Default Value: newsequentialid()`),
814
- AgentID: zod_1.z.string().describe(`
814
+ AgentID: zod_1.z.string().nullable().describe(`
815
815
  * * Field Name: AgentID
816
816
  * * Display Name: Agent ID
817
817
  * * SQL Data Type: uniqueidentifier
818
818
  * * Related Entity/Foreign Key: AI Agents (vwAIAgents.ID)`),
819
- AgentNoteTypeID: zod_1.z.string().describe(`
819
+ AgentNoteTypeID: zod_1.z.string().nullable().describe(`
820
820
  * * Field Name: AgentNoteTypeID
821
821
  * * Display Name: Agent Note Type ID
822
822
  * * SQL Data Type: uniqueidentifier
@@ -1144,12 +1144,6 @@ exports.AIModelSchema = zod_1.z.object({
1144
1144
  * * SQL Data Type: nvarchar(100)
1145
1145
  * * Default Value: Any
1146
1146
  * * Description: A comma-delimited string indicating the supported response formats for the AI model. Options include Any, Text, Markdown, JSON, and ModelSpecific. Defaults to Any if not specified.`),
1147
- SupportsEffortLevel: zod_1.z.boolean().describe(`
1148
- * * Field Name: SupportsEffortLevel
1149
- * * Display Name: Supports Effort Level
1150
- * * SQL Data Type: bit
1151
- * * Default Value: 0
1152
- * * Description: Specifies if the model supports the concept of an effort level. For example, for a reasoning model, the options often include low, medium, and high.`),
1153
1147
  AIModelType: zod_1.z.string().describe(`
1154
1148
  * * Field Name: AIModelType
1155
1149
  * * Display Name: AIModel Type
@@ -2957,6 +2951,18 @@ exports.ConversationDetailSchema = zod_1.z.object({
2957
2951
  * * SQL Data Type: uniqueidentifier
2958
2952
  * * Related Entity/Foreign Key: Users (vwUsers.ID)
2959
2953
  * * Description: This field, when populated, overrides the UserID at the Conversation level to specify a different user created the message.`),
2954
+ ArtifactID: zod_1.z.string().nullable().describe(`
2955
+ * * Field Name: ArtifactID
2956
+ * * Display Name: Artifact ID
2957
+ * * SQL Data Type: uniqueidentifier
2958
+ * * Related Entity/Foreign Key: MJ: Conversation Artifacts (vwConversationArtifacts.ID)
2959
+ * * Description: Optional reference to a conversation artifact associated with this conversation detail`),
2960
+ ArtifactVersionID: zod_1.z.string().nullable().describe(`
2961
+ * * Field Name: ArtifactVersionID
2962
+ * * Display Name: Artifact Version ID
2963
+ * * SQL Data Type: uniqueidentifier
2964
+ * * Related Entity/Foreign Key: MJ: Conversation Artifact Versions (vwConversationArtifactVersions.ID)
2965
+ * * Description: Optional reference to a specific version of a conversation artifact associated with this conversation detail`),
2960
2966
  Conversation: zod_1.z.string().nullable().describe(`
2961
2967
  * * Field Name: Conversation
2962
2968
  * * Display Name: Conversation
@@ -2965,6 +2971,10 @@ exports.ConversationDetailSchema = zod_1.z.object({
2965
2971
  * * Field Name: User
2966
2972
  * * Display Name: User
2967
2973
  * * SQL Data Type: nvarchar(100)`),
2974
+ Artifact: zod_1.z.string().nullable().describe(`
2975
+ * * Field Name: Artifact
2976
+ * * Display Name: Artifact
2977
+ * * SQL Data Type: nvarchar(255)`),
2968
2978
  });
2969
2979
  /**
2970
2980
  * zod schema definition for the entity Conversations
@@ -12661,19 +12671,6 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
12661
12671
  this.Set('SupportedResponseFormats', value);
12662
12672
  }
12663
12673
  /**
12664
- * * Field Name: SupportsEffortLevel
12665
- * * Display Name: Supports Effort Level
12666
- * * SQL Data Type: bit
12667
- * * Default Value: 0
12668
- * * Description: Specifies if the model supports the concept of an effort level. For example, for a reasoning model, the options often include low, medium, and high.
12669
- */
12670
- get SupportsEffortLevel() {
12671
- return this.Get('SupportsEffortLevel');
12672
- }
12673
- set SupportsEffortLevel(value) {
12674
- this.Set('SupportsEffortLevel', value);
12675
- }
12676
- /**
12677
12674
  * * Field Name: AIModelType
12678
12675
  * * Display Name: AIModel Type
12679
12676
  * * SQL Data Type: nvarchar(50)
@@ -17520,6 +17517,32 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
17520
17517
  this.Set('UserID', value);
17521
17518
  }
17522
17519
  /**
17520
+ * * Field Name: ArtifactID
17521
+ * * Display Name: Artifact ID
17522
+ * * SQL Data Type: uniqueidentifier
17523
+ * * Related Entity/Foreign Key: MJ: Conversation Artifacts (vwConversationArtifacts.ID)
17524
+ * * Description: Optional reference to a conversation artifact associated with this conversation detail
17525
+ */
17526
+ get ArtifactID() {
17527
+ return this.Get('ArtifactID');
17528
+ }
17529
+ set ArtifactID(value) {
17530
+ this.Set('ArtifactID', value);
17531
+ }
17532
+ /**
17533
+ * * Field Name: ArtifactVersionID
17534
+ * * Display Name: Artifact Version ID
17535
+ * * SQL Data Type: uniqueidentifier
17536
+ * * Related Entity/Foreign Key: MJ: Conversation Artifact Versions (vwConversationArtifactVersions.ID)
17537
+ * * Description: Optional reference to a specific version of a conversation artifact associated with this conversation detail
17538
+ */
17539
+ get ArtifactVersionID() {
17540
+ return this.Get('ArtifactVersionID');
17541
+ }
17542
+ set ArtifactVersionID(value) {
17543
+ this.Set('ArtifactVersionID', value);
17544
+ }
17545
+ /**
17523
17546
  * * Field Name: Conversation
17524
17547
  * * Display Name: Conversation
17525
17548
  * * SQL Data Type: nvarchar(255)
@@ -17535,6 +17558,14 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
17535
17558
  get User() {
17536
17559
  return this.Get('User');
17537
17560
  }
17561
+ /**
17562
+ * * Field Name: Artifact
17563
+ * * Display Name: Artifact
17564
+ * * SQL Data Type: nvarchar(255)
17565
+ */
17566
+ get Artifact() {
17567
+ return this.Get('Artifact');
17568
+ }
17538
17569
  };
17539
17570
  exports.ConversationDetailEntity = ConversationDetailEntity;
17540
17571
  exports.ConversationDetailEntity = ConversationDetailEntity = __decorate([