@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.
@@ -2969,6 +2969,11 @@ exports.ConversationDetailSchema = zod_1.z.object({
2969
2969
  * * SQL Data Type: uniqueidentifier
2970
2970
  * * Related Entity/Foreign Key: MJ: Conversation Artifact Versions (vwConversationArtifactVersions.ID)
2971
2971
  * * Description: Optional reference to a specific version of a conversation artifact associated with this conversation detail`),
2972
+ CompletionTime: zod_1.z.number().nullable().describe(`
2973
+ * * Field Name: CompletionTime
2974
+ * * Display Name: Completion Time
2975
+ * * SQL Data Type: bigint
2976
+ * * Description: Duration in milliseconds representing how long the AI response processing took to complete for this conversation detail.`),
2972
2977
  Conversation: zod_1.z.string().nullable().describe(`
2973
2978
  * * Field Name: Conversation
2974
2979
  * * Display Name: Conversation
@@ -3042,6 +3047,16 @@ exports.ConversationSchema = zod_1.z.object({
3042
3047
  * * Display Name: Updated At
3043
3048
  * * SQL Data Type: datetimeoffset
3044
3049
  * * Default Value: getutcdate()`),
3050
+ Status: zod_1.z.union([zod_1.z.literal('Processing'), zod_1.z.literal('Available')]).describe(`
3051
+ * * Field Name: Status
3052
+ * * Display Name: Status
3053
+ * * SQL Data Type: nvarchar(20)
3054
+ * * Default Value: Available
3055
+ * * Value List Type: List
3056
+ * * Possible Values
3057
+ * * Processing
3058
+ * * Available
3059
+ * * Description: Tracks the processing status of the conversation: Available, Processing`),
3045
3060
  User: zod_1.z.string().describe(`
3046
3061
  * * Field Name: User
3047
3062
  * * Display Name: User
@@ -17562,6 +17577,18 @@ let ConversationDetailEntity = class ConversationDetailEntity extends core_1.Bas
17562
17577
  this.Set('ArtifactVersionID', value);
17563
17578
  }
17564
17579
  /**
17580
+ * * Field Name: CompletionTime
17581
+ * * Display Name: Completion Time
17582
+ * * SQL Data Type: bigint
17583
+ * * Description: Duration in milliseconds representing how long the AI response processing took to complete for this conversation detail.
17584
+ */
17585
+ get CompletionTime() {
17586
+ return this.Get('CompletionTime');
17587
+ }
17588
+ set CompletionTime(value) {
17589
+ this.Set('CompletionTime', value);
17590
+ }
17591
+ /**
17565
17592
  * * Field Name: Conversation
17566
17593
  * * Display Name: Conversation
17567
17594
  * * SQL Data Type: nvarchar(255)
@@ -17749,6 +17776,23 @@ let ConversationEntity = class ConversationEntity extends core_1.BaseEntity {
17749
17776
  return this.Get('__mj_UpdatedAt');
17750
17777
  }
17751
17778
  /**
17779
+ * * Field Name: Status
17780
+ * * Display Name: Status
17781
+ * * SQL Data Type: nvarchar(20)
17782
+ * * Default Value: Available
17783
+ * * Value List Type: List
17784
+ * * Possible Values
17785
+ * * Processing
17786
+ * * Available
17787
+ * * Description: Tracks the processing status of the conversation: Available, Processing
17788
+ */
17789
+ get Status() {
17790
+ return this.Get('Status');
17791
+ }
17792
+ set Status(value) {
17793
+ this.Set('Status', value);
17794
+ }
17795
+ /**
17752
17796
  * * Field Name: User
17753
17797
  * * Display Name: User
17754
17798
  * * SQL Data Type: nvarchar(100)