@memberjunction/core-entities 2.36.0 → 2.37.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.
|
@@ -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.ZodString
|
|
541
|
-
AgentNoteTypeID: z.ZodString
|
|
540
|
+
AgentID: z.ZodNullable<z.ZodString>;
|
|
541
|
+
AgentNoteTypeID: z.ZodNullable<z.ZodString>;
|
|
542
542
|
Note: z.ZodNullable<z.ZodString>;
|
|
543
543
|
__mj_CreatedAt: z.ZodDate;
|
|
544
544
|
__mj_UpdatedAt: z.ZodDate;
|
|
@@ -728,7 +728,6 @@ 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;
|
|
732
731
|
AIModelType: z.ZodString;
|
|
733
732
|
}, "strip", z.ZodTypeAny, {
|
|
734
733
|
ID?: string;
|
|
@@ -748,7 +747,6 @@ export declare const AIModelSchema: z.ZodObject<{
|
|
|
748
747
|
ModelSelectionInsights?: string;
|
|
749
748
|
InputTokenLimit?: number;
|
|
750
749
|
SupportedResponseFormats?: string;
|
|
751
|
-
SupportsEffortLevel?: boolean;
|
|
752
750
|
AIModelType?: string;
|
|
753
751
|
}, {
|
|
754
752
|
ID?: string;
|
|
@@ -768,7 +766,6 @@ export declare const AIModelSchema: z.ZodObject<{
|
|
|
768
766
|
ModelSelectionInsights?: string;
|
|
769
767
|
InputTokenLimit?: number;
|
|
770
768
|
SupportedResponseFormats?: string;
|
|
771
|
-
SupportsEffortLevel?: boolean;
|
|
772
769
|
AIModelType?: string;
|
|
773
770
|
}>;
|
|
774
771
|
export type AIModelEntityType = z.infer<typeof AIModelSchema>;
|
|
@@ -2032,8 +2029,11 @@ export declare const ConversationDetailSchema: z.ZodObject<{
|
|
|
2032
2029
|
ReflectionInsights: z.ZodNullable<z.ZodString>;
|
|
2033
2030
|
SummaryOfEarlierConversation: z.ZodNullable<z.ZodString>;
|
|
2034
2031
|
UserID: z.ZodNullable<z.ZodString>;
|
|
2032
|
+
ArtifactID: z.ZodNullable<z.ZodString>;
|
|
2033
|
+
ArtifactVersionID: z.ZodNullable<z.ZodString>;
|
|
2035
2034
|
Conversation: z.ZodNullable<z.ZodString>;
|
|
2036
2035
|
User: z.ZodNullable<z.ZodString>;
|
|
2036
|
+
Artifact: z.ZodNullable<z.ZodString>;
|
|
2037
2037
|
}, "strip", z.ZodTypeAny, {
|
|
2038
2038
|
Error?: string;
|
|
2039
2039
|
ID?: string;
|
|
@@ -2050,7 +2050,10 @@ export declare const ConversationDetailSchema: z.ZodObject<{
|
|
|
2050
2050
|
UserFeedback?: string;
|
|
2051
2051
|
ReflectionInsights?: string;
|
|
2052
2052
|
SummaryOfEarlierConversation?: string;
|
|
2053
|
+
ArtifactID?: string;
|
|
2054
|
+
ArtifactVersionID?: string;
|
|
2053
2055
|
Conversation?: string;
|
|
2056
|
+
Artifact?: string;
|
|
2054
2057
|
}, {
|
|
2055
2058
|
Error?: string;
|
|
2056
2059
|
ID?: string;
|
|
@@ -2067,7 +2070,10 @@ export declare const ConversationDetailSchema: z.ZodObject<{
|
|
|
2067
2070
|
UserFeedback?: string;
|
|
2068
2071
|
ReflectionInsights?: string;
|
|
2069
2072
|
SummaryOfEarlierConversation?: string;
|
|
2073
|
+
ArtifactID?: string;
|
|
2074
|
+
ArtifactVersionID?: string;
|
|
2070
2075
|
Conversation?: string;
|
|
2076
|
+
Artifact?: string;
|
|
2071
2077
|
}>;
|
|
2072
2078
|
export type ConversationDetailEntityType = z.infer<typeof ConversationDetailSchema>;
|
|
2073
2079
|
/**
|
|
@@ -8258,16 +8264,16 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
|
|
|
8258
8264
|
* * SQL Data Type: uniqueidentifier
|
|
8259
8265
|
* * Related Entity/Foreign Key: AI Agents (vwAIAgents.ID)
|
|
8260
8266
|
*/
|
|
8261
|
-
get AgentID(): string;
|
|
8262
|
-
set AgentID(value: string);
|
|
8267
|
+
get AgentID(): string | null;
|
|
8268
|
+
set AgentID(value: string | null);
|
|
8263
8269
|
/**
|
|
8264
8270
|
* * Field Name: AgentNoteTypeID
|
|
8265
8271
|
* * Display Name: Agent Note Type ID
|
|
8266
8272
|
* * SQL Data Type: uniqueidentifier
|
|
8267
8273
|
* * Related Entity/Foreign Key: AI Agent Note Types (vwAIAgentNoteTypes.ID)
|
|
8268
8274
|
*/
|
|
8269
|
-
get AgentNoteTypeID(): string;
|
|
8270
|
-
set AgentNoteTypeID(value: string);
|
|
8275
|
+
get AgentNoteTypeID(): string | null;
|
|
8276
|
+
set AgentNoteTypeID(value: string | null);
|
|
8271
8277
|
/**
|
|
8272
8278
|
* * Field Name: Note
|
|
8273
8279
|
* * Display Name: Note
|
|
@@ -8874,15 +8880,6 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
|
|
|
8874
8880
|
get SupportedResponseFormats(): string;
|
|
8875
8881
|
set SupportedResponseFormats(value: string);
|
|
8876
8882
|
/**
|
|
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
|
-
/**
|
|
8886
8883
|
* * Field Name: AIModelType
|
|
8887
8884
|
* * Display Name: AIModel Type
|
|
8888
8885
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -12363,6 +12360,24 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
|
|
|
12363
12360
|
get UserID(): string | null;
|
|
12364
12361
|
set UserID(value: string | null);
|
|
12365
12362
|
/**
|
|
12363
|
+
* * Field Name: ArtifactID
|
|
12364
|
+
* * Display Name: Artifact ID
|
|
12365
|
+
* * SQL Data Type: uniqueidentifier
|
|
12366
|
+
* * Related Entity/Foreign Key: MJ: Conversation Artifacts (vwConversationArtifacts.ID)
|
|
12367
|
+
* * Description: Optional reference to a conversation artifact associated with this conversation detail
|
|
12368
|
+
*/
|
|
12369
|
+
get ArtifactID(): string | null;
|
|
12370
|
+
set ArtifactID(value: string | null);
|
|
12371
|
+
/**
|
|
12372
|
+
* * Field Name: ArtifactVersionID
|
|
12373
|
+
* * Display Name: Artifact Version ID
|
|
12374
|
+
* * SQL Data Type: uniqueidentifier
|
|
12375
|
+
* * Related Entity/Foreign Key: MJ: Conversation Artifact Versions (vwConversationArtifactVersions.ID)
|
|
12376
|
+
* * Description: Optional reference to a specific version of a conversation artifact associated with this conversation detail
|
|
12377
|
+
*/
|
|
12378
|
+
get ArtifactVersionID(): string | null;
|
|
12379
|
+
set ArtifactVersionID(value: string | null);
|
|
12380
|
+
/**
|
|
12366
12381
|
* * Field Name: Conversation
|
|
12367
12382
|
* * Display Name: Conversation
|
|
12368
12383
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -12374,6 +12389,12 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
|
|
|
12374
12389
|
* * SQL Data Type: nvarchar(100)
|
|
12375
12390
|
*/
|
|
12376
12391
|
get User(): string | null;
|
|
12392
|
+
/**
|
|
12393
|
+
* * Field Name: Artifact
|
|
12394
|
+
* * Display Name: Artifact
|
|
12395
|
+
* * SQL Data Type: nvarchar(255)
|
|
12396
|
+
*/
|
|
12397
|
+
get Artifact(): string | null;
|
|
12377
12398
|
}
|
|
12378
12399
|
/**
|
|
12379
12400
|
* Conversations - strongly typed entity sub-class
|