@memberjunction/core-entities 2.35.0 → 2.36.0

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().nullable().describe(`
814
+ AgentID: zod_1.z.string().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().nullable().describe(`
819
+ AgentNoteTypeID: zod_1.z.string().describe(`
820
820
  * * Field Name: AgentNoteTypeID
821
821
  * * Display Name: Agent Note Type ID
822
822
  * * SQL Data Type: uniqueidentifier
@@ -1144,6 +1144,12 @@ 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.`),
1147
1153
  AIModelType: zod_1.z.string().describe(`
1148
1154
  * * Field Name: AIModelType
1149
1155
  * * Display Name: AIModel Type
@@ -12655,6 +12661,19 @@ let AIModelEntity = class AIModelEntity extends core_1.BaseEntity {
12655
12661
  this.Set('SupportedResponseFormats', value);
12656
12662
  }
12657
12663
  /**
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
+ /**
12658
12677
  * * Field Name: AIModelType
12659
12678
  * * Display Name: AIModel Type
12660
12679
  * * SQL Data Type: nvarchar(50)