@memberjunction/core-entities 2.35.1 → 2.36.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.
@@ -537,8 +537,8 @@ export type AIAgentNoteTypeEntityType = z.infer<typeof AIAgentNoteTypeSchema>;
537
537
  */
538
538
  export declare const AIAgentNoteSchema: z.ZodObject<{
539
539
  ID: z.ZodString;
540
- AgentID: z.ZodNullable<z.ZodString>;
541
- AgentNoteTypeID: z.ZodNullable<z.ZodString>;
540
+ AgentID: z.ZodString;
541
+ AgentNoteTypeID: z.ZodString;
542
542
  Note: z.ZodNullable<z.ZodString>;
543
543
  __mj_CreatedAt: z.ZodDate;
544
544
  __mj_UpdatedAt: z.ZodDate;
@@ -728,6 +728,7 @@ export declare const AIModelSchema: z.ZodObject<{
728
728
  ModelSelectionInsights: z.ZodNullable<z.ZodString>;
729
729
  InputTokenLimit: z.ZodNullable<z.ZodNumber>;
730
730
  SupportedResponseFormats: z.ZodString;
731
+ SupportsEffortLevel: z.ZodBoolean;
731
732
  AIModelType: z.ZodString;
732
733
  }, "strip", z.ZodTypeAny, {
733
734
  ID?: string;
@@ -747,6 +748,7 @@ export declare const AIModelSchema: z.ZodObject<{
747
748
  ModelSelectionInsights?: string;
748
749
  InputTokenLimit?: number;
749
750
  SupportedResponseFormats?: string;
751
+ SupportsEffortLevel?: boolean;
750
752
  AIModelType?: string;
751
753
  }, {
752
754
  ID?: string;
@@ -766,6 +768,7 @@ export declare const AIModelSchema: z.ZodObject<{
766
768
  ModelSelectionInsights?: string;
767
769
  InputTokenLimit?: number;
768
770
  SupportedResponseFormats?: string;
771
+ SupportsEffortLevel?: boolean;
769
772
  AIModelType?: string;
770
773
  }>;
771
774
  export type AIModelEntityType = z.infer<typeof AIModelSchema>;
@@ -8255,16 +8258,16 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
8255
8258
  * * SQL Data Type: uniqueidentifier
8256
8259
  * * Related Entity/Foreign Key: AI Agents (vwAIAgents.ID)
8257
8260
  */
8258
- get AgentID(): string | null;
8259
- set AgentID(value: string | null);
8261
+ get AgentID(): string;
8262
+ set AgentID(value: string);
8260
8263
  /**
8261
8264
  * * Field Name: AgentNoteTypeID
8262
8265
  * * Display Name: Agent Note Type ID
8263
8266
  * * SQL Data Type: uniqueidentifier
8264
8267
  * * Related Entity/Foreign Key: AI Agent Note Types (vwAIAgentNoteTypes.ID)
8265
8268
  */
8266
- get AgentNoteTypeID(): string | null;
8267
- set AgentNoteTypeID(value: string | null);
8269
+ get AgentNoteTypeID(): string;
8270
+ set AgentNoteTypeID(value: string);
8268
8271
  /**
8269
8272
  * * Field Name: Note
8270
8273
  * * Display Name: Note
@@ -8871,6 +8874,15 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
8871
8874
  get SupportedResponseFormats(): string;
8872
8875
  set SupportedResponseFormats(value: string);
8873
8876
  /**
8877
+ * * Field Name: SupportsEffortLevel
8878
+ * * Display Name: Supports Effort Level
8879
+ * * SQL Data Type: bit
8880
+ * * Default Value: 0
8881
+ * * 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.
8882
+ */
8883
+ get SupportsEffortLevel(): boolean;
8884
+ set SupportsEffortLevel(value: boolean);
8885
+ /**
8874
8886
  * * Field Name: AIModelType
8875
8887
  * * Display Name: AIModel Type
8876
8888
  * * SQL Data Type: nvarchar(50)