@memberjunction/core-entities 2.40.0 → 2.41.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.
|
@@ -2034,6 +2034,7 @@ export declare const ConversationDetailSchema: z.ZodObject<{
|
|
|
2034
2034
|
UserID: z.ZodNullable<z.ZodString>;
|
|
2035
2035
|
ArtifactID: z.ZodNullable<z.ZodString>;
|
|
2036
2036
|
ArtifactVersionID: z.ZodNullable<z.ZodString>;
|
|
2037
|
+
CompletionTime: z.ZodNullable<z.ZodNumber>;
|
|
2037
2038
|
Conversation: z.ZodNullable<z.ZodString>;
|
|
2038
2039
|
User: z.ZodNullable<z.ZodString>;
|
|
2039
2040
|
Artifact: z.ZodNullable<z.ZodString>;
|
|
@@ -2055,6 +2056,7 @@ export declare const ConversationDetailSchema: z.ZodObject<{
|
|
|
2055
2056
|
SummaryOfEarlierConversation?: string;
|
|
2056
2057
|
ArtifactID?: string;
|
|
2057
2058
|
ArtifactVersionID?: string;
|
|
2059
|
+
CompletionTime?: number;
|
|
2058
2060
|
Conversation?: string;
|
|
2059
2061
|
Artifact?: string;
|
|
2060
2062
|
}, {
|
|
@@ -2075,6 +2077,7 @@ export declare const ConversationDetailSchema: z.ZodObject<{
|
|
|
2075
2077
|
SummaryOfEarlierConversation?: string;
|
|
2076
2078
|
ArtifactID?: string;
|
|
2077
2079
|
ArtifactVersionID?: string;
|
|
2080
|
+
CompletionTime?: number;
|
|
2078
2081
|
Conversation?: string;
|
|
2079
2082
|
Artifact?: string;
|
|
2080
2083
|
}>;
|
|
@@ -2095,6 +2098,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
2095
2098
|
DataContextID: z.ZodNullable<z.ZodString>;
|
|
2096
2099
|
__mj_CreatedAt: z.ZodDate;
|
|
2097
2100
|
__mj_UpdatedAt: z.ZodDate;
|
|
2101
|
+
Status: z.ZodUnion<[z.ZodLiteral<"Processing">, z.ZodLiteral<"Available">]>;
|
|
2098
2102
|
User: z.ZodString;
|
|
2099
2103
|
LinkedEntity: z.ZodNullable<z.ZodString>;
|
|
2100
2104
|
DataContext: z.ZodNullable<z.ZodString>;
|
|
@@ -2104,6 +2108,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
2104
2108
|
__mj_UpdatedAt?: Date;
|
|
2105
2109
|
Name?: string;
|
|
2106
2110
|
Description?: string;
|
|
2111
|
+
Status?: "Processing" | "Available";
|
|
2107
2112
|
UserID?: string;
|
|
2108
2113
|
User?: string;
|
|
2109
2114
|
Type?: string;
|
|
@@ -2120,6 +2125,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
2120
2125
|
__mj_UpdatedAt?: Date;
|
|
2121
2126
|
Name?: string;
|
|
2122
2127
|
Description?: string;
|
|
2128
|
+
Status?: "Processing" | "Available";
|
|
2123
2129
|
UserID?: string;
|
|
2124
2130
|
User?: string;
|
|
2125
2131
|
Type?: string;
|
|
@@ -12390,6 +12396,14 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
|
|
|
12390
12396
|
get ArtifactVersionID(): string | null;
|
|
12391
12397
|
set ArtifactVersionID(value: string | null);
|
|
12392
12398
|
/**
|
|
12399
|
+
* * Field Name: CompletionTime
|
|
12400
|
+
* * Display Name: Completion Time
|
|
12401
|
+
* * SQL Data Type: bigint
|
|
12402
|
+
* * Description: Duration in milliseconds representing how long the AI response processing took to complete for this conversation detail.
|
|
12403
|
+
*/
|
|
12404
|
+
get CompletionTime(): number | null;
|
|
12405
|
+
set CompletionTime(value: number | null);
|
|
12406
|
+
/**
|
|
12393
12407
|
* * Field Name: Conversation
|
|
12394
12408
|
* * Display Name: Conversation
|
|
12395
12409
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -12521,6 +12535,19 @@ export declare class ConversationEntity extends BaseEntity<ConversationEntityTyp
|
|
|
12521
12535
|
*/
|
|
12522
12536
|
get __mj_UpdatedAt(): Date;
|
|
12523
12537
|
/**
|
|
12538
|
+
* * Field Name: Status
|
|
12539
|
+
* * Display Name: Status
|
|
12540
|
+
* * SQL Data Type: nvarchar(20)
|
|
12541
|
+
* * Default Value: Available
|
|
12542
|
+
* * Value List Type: List
|
|
12543
|
+
* * Possible Values
|
|
12544
|
+
* * Processing
|
|
12545
|
+
* * Available
|
|
12546
|
+
* * Description: Tracks the processing status of the conversation: Available, Processing
|
|
12547
|
+
*/
|
|
12548
|
+
get Status(): 'Processing' | 'Available';
|
|
12549
|
+
set Status(value: 'Processing' | 'Available');
|
|
12550
|
+
/**
|
|
12524
12551
|
* * Field Name: User
|
|
12525
12552
|
* * Display Name: User
|
|
12526
12553
|
* * SQL Data Type: nvarchar(100)
|