@memberjunction/core-entities 2.118.0 → 2.119.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.
@@ -614,6 +614,8 @@ export declare const AIAgentNoteSchema: z.ZodObject<{
614
614
  AgentNoteType: z.ZodNullable<z.ZodString>;
615
615
  User: z.ZodNullable<z.ZodString>;
616
616
  SourceConversation: z.ZodNullable<z.ZodString>;
617
+ SourceConversationDetail: z.ZodNullable<z.ZodString>;
618
+ SourceAIAgentRun: z.ZodNullable<z.ZodString>;
617
619
  Company: z.ZodNullable<z.ZodString>;
618
620
  EmbeddingModel: z.ZodNullable<z.ZodString>;
619
621
  }, "strip", z.ZodTypeAny, {
@@ -638,6 +640,8 @@ export declare const AIAgentNoteSchema: z.ZodObject<{
638
640
  EmbeddingModelID?: string;
639
641
  AgentNoteType?: string;
640
642
  SourceConversation?: string;
643
+ SourceConversationDetail?: string;
644
+ SourceAIAgentRun?: string;
641
645
  Company?: string;
642
646
  EmbeddingModel?: string;
643
647
  }, {
@@ -662,6 +666,8 @@ export declare const AIAgentNoteSchema: z.ZodObject<{
662
666
  EmbeddingModelID?: string;
663
667
  AgentNoteType?: string;
664
668
  SourceConversation?: string;
669
+ SourceConversationDetail?: string;
670
+ SourceAIAgentRun?: string;
665
671
  Company?: string;
666
672
  EmbeddingModel?: string;
667
673
  }>;
@@ -1279,6 +1285,7 @@ export declare const AIResultCacheSchema: z.ZodObject<{
1279
1285
  Vendor: z.ZodNullable<z.ZodString>;
1280
1286
  Agent: z.ZodNullable<z.ZodString>;
1281
1287
  Configuration: z.ZodNullable<z.ZodString>;
1288
+ PromptRun: z.ZodNullable<z.ZodString>;
1282
1289
  }, "strip", z.ZodTypeAny, {
1283
1290
  ID?: string;
1284
1291
  __mj_CreatedAt?: Date;
@@ -1300,6 +1307,7 @@ export declare const AIResultCacheSchema: z.ZodObject<{
1300
1307
  PromptRunID?: string;
1301
1308
  AIPrompt?: string;
1302
1309
  Configuration?: string;
1310
+ PromptRun?: string;
1303
1311
  }, {
1304
1312
  ID?: string;
1305
1313
  __mj_CreatedAt?: Date;
@@ -1321,6 +1329,7 @@ export declare const AIResultCacheSchema: z.ZodObject<{
1321
1329
  PromptRunID?: string;
1322
1330
  AIPrompt?: string;
1323
1331
  Configuration?: string;
1332
+ PromptRun?: string;
1324
1333
  }>;
1325
1334
  export type AIResultCacheEntityType = z.infer<typeof AIResultCacheSchema>;
1326
1335
  /**
@@ -1644,6 +1653,7 @@ export declare const CommunicationLogSchema: z.ZodObject<{
1644
1653
  __mj_UpdatedAt: z.ZodDate;
1645
1654
  CommunicationProvider: z.ZodString;
1646
1655
  CommunicationProviderMessageType: z.ZodString;
1656
+ CommunicationRun: z.ZodNullable<z.ZodString>;
1647
1657
  }, "strip", z.ZodTypeAny, {
1648
1658
  ID?: string;
1649
1659
  __mj_CreatedAt?: Date;
@@ -1658,6 +1668,7 @@ export declare const CommunicationLogSchema: z.ZodObject<{
1658
1668
  ErrorMessage?: string;
1659
1669
  CommunicationProvider?: string;
1660
1670
  CommunicationProviderMessageType?: string;
1671
+ CommunicationRun?: string;
1661
1672
  }, {
1662
1673
  ID?: string;
1663
1674
  __mj_CreatedAt?: Date;
@@ -1672,6 +1683,7 @@ export declare const CommunicationLogSchema: z.ZodObject<{
1672
1683
  ErrorMessage?: string;
1673
1684
  CommunicationProvider?: string;
1674
1685
  CommunicationProviderMessageType?: string;
1686
+ CommunicationRun?: string;
1675
1687
  }>;
1676
1688
  export type CommunicationLogEntityType = z.infer<typeof CommunicationLogSchema>;
1677
1689
  /**
@@ -1877,6 +1889,7 @@ export declare const CompanyIntegrationRunAPILogSchema: z.ZodObject<{
1877
1889
  Parameters: z.ZodNullable<z.ZodString>;
1878
1890
  __mj_CreatedAt: z.ZodDate;
1879
1891
  __mj_UpdatedAt: z.ZodDate;
1892
+ CompanyIntegrationRun: z.ZodString;
1880
1893
  }, "strip", z.ZodTypeAny, {
1881
1894
  ID?: string;
1882
1895
  __mj_CreatedAt?: Date;
@@ -1887,6 +1900,7 @@ export declare const CompanyIntegrationRunAPILogSchema: z.ZodObject<{
1887
1900
  RequestMethod?: "DELETE" | "GET" | "HEAD" | "OPTIONS" | "PATCH" | "POST" | "PUT";
1888
1901
  URL?: string;
1889
1902
  Parameters?: string;
1903
+ CompanyIntegrationRun?: string;
1890
1904
  }, {
1891
1905
  ID?: string;
1892
1906
  __mj_CreatedAt?: Date;
@@ -1897,6 +1911,7 @@ export declare const CompanyIntegrationRunAPILogSchema: z.ZodObject<{
1897
1911
  RequestMethod?: "DELETE" | "GET" | "HEAD" | "OPTIONS" | "PATCH" | "POST" | "PUT";
1898
1912
  URL?: string;
1899
1913
  Parameters?: string;
1914
+ CompanyIntegrationRun?: string;
1900
1915
  }>;
1901
1916
  export type CompanyIntegrationRunAPILogEntityType = z.infer<typeof CompanyIntegrationRunAPILogSchema>;
1902
1917
  /**
@@ -2896,6 +2911,8 @@ export declare const DuplicateRunDetailMatchSchema: z.ZodObject<{
2896
2911
  MergedAt: z.ZodDate;
2897
2912
  __mj_CreatedAt: z.ZodDate;
2898
2913
  __mj_UpdatedAt: z.ZodDate;
2914
+ DuplicateRunDetail: z.ZodString;
2915
+ RecordMergeLog: z.ZodNullable<z.ZodString>;
2899
2916
  }, "strip", z.ZodTypeAny, {
2900
2917
  ID?: string;
2901
2918
  __mj_CreatedAt?: Date;
@@ -2910,6 +2927,8 @@ export declare const DuplicateRunDetailMatchSchema: z.ZodObject<{
2910
2927
  RecordMergeLogID?: string;
2911
2928
  MergeStatus?: "Pending" | "Complete" | "Error";
2912
2929
  MergedAt?: Date;
2930
+ DuplicateRunDetail?: string;
2931
+ RecordMergeLog?: string;
2913
2932
  }, {
2914
2933
  ID?: string;
2915
2934
  __mj_CreatedAt?: Date;
@@ -2924,6 +2943,8 @@ export declare const DuplicateRunDetailMatchSchema: z.ZodObject<{
2924
2943
  RecordMergeLogID?: string;
2925
2944
  MergeStatus?: "Pending" | "Complete" | "Error";
2926
2945
  MergedAt?: Date;
2946
+ DuplicateRunDetail?: string;
2947
+ RecordMergeLog?: string;
2927
2948
  }>;
2928
2949
  export type DuplicateRunDetailMatchEntityType = z.infer<typeof DuplicateRunDetailMatchSchema>;
2929
2950
  /**
@@ -2940,6 +2961,7 @@ export declare const DuplicateRunDetailSchema: z.ZodObject<{
2940
2961
  MergeErrorMessage: z.ZodNullable<z.ZodString>;
2941
2962
  __mj_CreatedAt: z.ZodDate;
2942
2963
  __mj_UpdatedAt: z.ZodDate;
2964
+ DuplicateRun: z.ZodString;
2943
2965
  }, "strip", z.ZodTypeAny, {
2944
2966
  ID?: string;
2945
2967
  __mj_CreatedAt?: Date;
@@ -2951,6 +2973,7 @@ export declare const DuplicateRunDetailSchema: z.ZodObject<{
2951
2973
  SkippedReason?: string;
2952
2974
  MatchErrorMessage?: string;
2953
2975
  MergeErrorMessage?: string;
2976
+ DuplicateRun?: string;
2954
2977
  }, {
2955
2978
  ID?: string;
2956
2979
  __mj_CreatedAt?: Date;
@@ -2962,6 +2985,7 @@ export declare const DuplicateRunDetailSchema: z.ZodObject<{
2962
2985
  SkippedReason?: string;
2963
2986
  MatchErrorMessage?: string;
2964
2987
  MergeErrorMessage?: string;
2988
+ DuplicateRun?: string;
2965
2989
  }>;
2966
2990
  export type DuplicateRunDetailEntityType = z.infer<typeof DuplicateRunDetailSchema>;
2967
2991
  /**
@@ -3034,6 +3058,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
3034
3058
  IsActive: z.ZodBoolean;
3035
3059
  __mj_CreatedAt: z.ZodDate;
3036
3060
  __mj_UpdatedAt: z.ZodDate;
3061
+ Employee: z.ZodNullable<z.ZodString>;
3037
3062
  CompanyIntegration: z.ZodString;
3038
3063
  }, "strip", z.ZodTypeAny, {
3039
3064
  ID?: string;
@@ -3044,6 +3069,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
3044
3069
  ExternalSystemRecordID?: string;
3045
3070
  CompanyIntegration?: string;
3046
3071
  EmployeeID?: string;
3072
+ Employee?: string;
3047
3073
  }, {
3048
3074
  ID?: string;
3049
3075
  __mj_CreatedAt?: Date;
@@ -3053,6 +3079,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
3053
3079
  ExternalSystemRecordID?: string;
3054
3080
  CompanyIntegration?: string;
3055
3081
  EmployeeID?: string;
3082
+ Employee?: string;
3056
3083
  }>;
3057
3084
  export type EmployeeCompanyIntegrationEntityType = z.infer<typeof EmployeeCompanyIntegrationSchema>;
3058
3085
  /**
@@ -3064,6 +3091,7 @@ export declare const EmployeeRoleSchema: z.ZodObject<{
3064
3091
  RoleID: z.ZodString;
3065
3092
  __mj_CreatedAt: z.ZodDate;
3066
3093
  __mj_UpdatedAt: z.ZodDate;
3094
+ Employee: z.ZodNullable<z.ZodString>;
3067
3095
  Role: z.ZodString;
3068
3096
  }, "strip", z.ZodTypeAny, {
3069
3097
  ID?: string;
@@ -3072,6 +3100,7 @@ export declare const EmployeeRoleSchema: z.ZodObject<{
3072
3100
  RoleID?: string;
3073
3101
  Role?: string;
3074
3102
  EmployeeID?: string;
3103
+ Employee?: string;
3075
3104
  }, {
3076
3105
  ID?: string;
3077
3106
  __mj_CreatedAt?: Date;
@@ -3079,6 +3108,7 @@ export declare const EmployeeRoleSchema: z.ZodObject<{
3079
3108
  RoleID?: string;
3080
3109
  Role?: string;
3081
3110
  EmployeeID?: string;
3111
+ Employee?: string;
3082
3112
  }>;
3083
3113
  export type EmployeeRoleEntityType = z.infer<typeof EmployeeRoleSchema>;
3084
3114
  /**
@@ -3090,12 +3120,14 @@ export declare const EmployeeSkillSchema: z.ZodObject<{
3090
3120
  SkillID: z.ZodString;
3091
3121
  __mj_CreatedAt: z.ZodDate;
3092
3122
  __mj_UpdatedAt: z.ZodDate;
3123
+ Employee: z.ZodNullable<z.ZodString>;
3093
3124
  Skill: z.ZodString;
3094
3125
  }, "strip", z.ZodTypeAny, {
3095
3126
  ID?: string;
3096
3127
  __mj_CreatedAt?: Date;
3097
3128
  __mj_UpdatedAt?: Date;
3098
3129
  EmployeeID?: string;
3130
+ Employee?: string;
3099
3131
  SkillID?: string;
3100
3132
  Skill?: string;
3101
3133
  }, {
@@ -3103,6 +3135,7 @@ export declare const EmployeeSkillSchema: z.ZodObject<{
3103
3135
  __mj_CreatedAt?: Date;
3104
3136
  __mj_UpdatedAt?: Date;
3105
3137
  EmployeeID?: string;
3138
+ Employee?: string;
3106
3139
  SkillID?: string;
3107
3140
  Skill?: string;
3108
3141
  }>;
@@ -3374,6 +3407,8 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
3374
3407
  Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Pending">]>;
3375
3408
  __mj_CreatedAt: z.ZodDate;
3376
3409
  __mj_UpdatedAt: z.ZodDate;
3410
+ EntityAction: z.ZodString;
3411
+ ActionFilter: z.ZodString;
3377
3412
  }, "strip", z.ZodTypeAny, {
3378
3413
  ID?: string;
3379
3414
  __mj_CreatedAt?: Date;
@@ -3382,6 +3417,8 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
3382
3417
  Sequence?: number;
3383
3418
  EntityActionID?: string;
3384
3419
  ActionFilterID?: string;
3420
+ EntityAction?: string;
3421
+ ActionFilter?: string;
3385
3422
  }, {
3386
3423
  ID?: string;
3387
3424
  __mj_CreatedAt?: Date;
@@ -3390,6 +3427,8 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
3390
3427
  Sequence?: number;
3391
3428
  EntityActionID?: string;
3392
3429
  ActionFilterID?: string;
3430
+ EntityAction?: string;
3431
+ ActionFilter?: string;
3393
3432
  }>;
3394
3433
  export type EntityActionFilterEntityType = z.infer<typeof EntityActionFilterSchema>;
3395
3434
  /**
@@ -3428,6 +3467,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
3428
3467
  Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Pending">]>;
3429
3468
  __mj_CreatedAt: z.ZodDate;
3430
3469
  __mj_UpdatedAt: z.ZodDate;
3470
+ EntityAction: z.ZodString;
3431
3471
  InvocationType: z.ZodString;
3432
3472
  }, "strip", z.ZodTypeAny, {
3433
3473
  ID?: string;
@@ -3435,6 +3475,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
3435
3475
  __mj_UpdatedAt?: Date;
3436
3476
  Status?: "Active" | "Disabled" | "Pending";
3437
3477
  EntityActionID?: string;
3478
+ EntityAction?: string;
3438
3479
  InvocationTypeID?: string;
3439
3480
  InvocationType?: string;
3440
3481
  }, {
@@ -3443,6 +3484,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
3443
3484
  __mj_UpdatedAt?: Date;
3444
3485
  Status?: "Active" | "Disabled" | "Pending";
3445
3486
  EntityActionID?: string;
3487
+ EntityAction?: string;
3446
3488
  InvocationTypeID?: string;
3447
3489
  InvocationType?: string;
3448
3490
  }>;
@@ -3459,6 +3501,7 @@ export declare const EntityActionParamSchema: z.ZodObject<{
3459
3501
  Comments: z.ZodNullable<z.ZodString>;
3460
3502
  __mj_CreatedAt: z.ZodDate;
3461
3503
  __mj_UpdatedAt: z.ZodDate;
3504
+ EntityAction: z.ZodString;
3462
3505
  ActionParam: z.ZodString;
3463
3506
  }, "strip", z.ZodTypeAny, {
3464
3507
  ID?: string;
@@ -3468,6 +3511,7 @@ export declare const EntityActionParamSchema: z.ZodObject<{
3468
3511
  ValueType?: "Entity Field" | "Entity Object" | "Script" | "Static";
3469
3512
  Value?: string;
3470
3513
  EntityActionID?: string;
3514
+ EntityAction?: string;
3471
3515
  ActionParamID?: string;
3472
3516
  ActionParam?: string;
3473
3517
  }, {
@@ -3478,6 +3522,7 @@ export declare const EntityActionParamSchema: z.ZodObject<{
3478
3522
  ValueType?: "Entity Field" | "Entity Object" | "Script" | "Static";
3479
3523
  Value?: string;
3480
3524
  EntityActionID?: string;
3525
+ EntityAction?: string;
3481
3526
  ActionParamID?: string;
3482
3527
  ActionParam?: string;
3483
3528
  }>;
@@ -3589,6 +3634,7 @@ export declare const EntityCommunicationFieldSchema: z.ZodObject<{
3589
3634
  Priority: z.ZodNumber;
3590
3635
  __mj_CreatedAt: z.ZodDate;
3591
3636
  __mj_UpdatedAt: z.ZodDate;
3637
+ EntityCommunicationMessageType: z.ZodString;
3592
3638
  }, "strip", z.ZodTypeAny, {
3593
3639
  ID?: string;
3594
3640
  __mj_CreatedAt?: Date;
@@ -3596,6 +3642,7 @@ export declare const EntityCommunicationFieldSchema: z.ZodObject<{
3596
3642
  Priority?: number;
3597
3643
  EntityCommunicationMessageTypeID?: string;
3598
3644
  FieldName?: string;
3645
+ EntityCommunicationMessageType?: string;
3599
3646
  }, {
3600
3647
  ID?: string;
3601
3648
  __mj_CreatedAt?: Date;
@@ -3603,6 +3650,7 @@ export declare const EntityCommunicationFieldSchema: z.ZodObject<{
3603
3650
  Priority?: number;
3604
3651
  EntityCommunicationMessageTypeID?: string;
3605
3652
  FieldName?: string;
3653
+ EntityCommunicationMessageType?: string;
3606
3654
  }>;
3607
3655
  export type EntityCommunicationFieldEntityType = z.infer<typeof EntityCommunicationFieldSchema>;
3608
3656
  /**
@@ -4316,6 +4364,8 @@ export declare const ErrorLogSchema: z.ZodObject<{
4316
4364
  Details: z.ZodNullable<z.ZodString>;
4317
4365
  __mj_CreatedAt: z.ZodDate;
4318
4366
  __mj_UpdatedAt: z.ZodDate;
4367
+ CompanyIntegrationRun: z.ZodNullable<z.ZodString>;
4368
+ CompanyIntegrationRunDetail: z.ZodNullable<z.ZodString>;
4319
4369
  }, "strip", z.ZodTypeAny, {
4320
4370
  ID?: string;
4321
4371
  __mj_CreatedAt?: Date;
@@ -4326,8 +4376,10 @@ export declare const ErrorLogSchema: z.ZodObject<{
4326
4376
  Category?: string;
4327
4377
  Details?: string;
4328
4378
  CompanyIntegrationRunID?: string;
4379
+ CompanyIntegrationRun?: string;
4329
4380
  CompanyIntegrationRunDetailID?: string;
4330
4381
  CreatedBy?: string;
4382
+ CompanyIntegrationRunDetail?: string;
4331
4383
  }, {
4332
4384
  ID?: string;
4333
4385
  __mj_CreatedAt?: Date;
@@ -4338,8 +4390,10 @@ export declare const ErrorLogSchema: z.ZodObject<{
4338
4390
  Category?: string;
4339
4391
  Details?: string;
4340
4392
  CompanyIntegrationRunID?: string;
4393
+ CompanyIntegrationRun?: string;
4341
4394
  CompanyIntegrationRunDetailID?: string;
4342
4395
  CreatedBy?: string;
4396
+ CompanyIntegrationRunDetail?: string;
4343
4397
  }>;
4344
4398
  export type ErrorLogEntityType = z.infer<typeof ErrorLogSchema>;
4345
4399
  /**
@@ -5121,6 +5175,8 @@ export declare const AIAgentExampleSchema: z.ZodObject<{
5121
5175
  User: z.ZodNullable<z.ZodString>;
5122
5176
  Company: z.ZodNullable<z.ZodString>;
5123
5177
  SourceConversation: z.ZodNullable<z.ZodString>;
5178
+ SourceConversationDetail: z.ZodNullable<z.ZodString>;
5179
+ SourceAIAgentRun: z.ZodNullable<z.ZodString>;
5124
5180
  EmbeddingModel: z.ZodNullable<z.ZodString>;
5125
5181
  }, "strip", z.ZodTypeAny, {
5126
5182
  ID?: string;
@@ -5141,6 +5197,8 @@ export declare const AIAgentExampleSchema: z.ZodObject<{
5141
5197
  EmbeddingVector?: string;
5142
5198
  EmbeddingModelID?: string;
5143
5199
  SourceConversation?: string;
5200
+ SourceConversationDetail?: string;
5201
+ SourceAIAgentRun?: string;
5144
5202
  Company?: string;
5145
5203
  EmbeddingModel?: string;
5146
5204
  ExampleInput?: string;
@@ -5165,6 +5223,8 @@ export declare const AIAgentExampleSchema: z.ZodObject<{
5165
5223
  EmbeddingVector?: string;
5166
5224
  EmbeddingModelID?: string;
5167
5225
  SourceConversation?: string;
5226
+ SourceConversationDetail?: string;
5227
+ SourceAIAgentRun?: string;
5168
5228
  Company?: string;
5169
5229
  EmbeddingModel?: string;
5170
5230
  ExampleInput?: string;
@@ -5345,6 +5405,8 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
5345
5405
  FinalPayloadValidationMessages: z.ZodNullable<z.ZodString>;
5346
5406
  ParentID: z.ZodNullable<z.ZodString>;
5347
5407
  Comments: z.ZodNullable<z.ZodString>;
5408
+ AgentRun: z.ZodNullable<z.ZodString>;
5409
+ Parent: z.ZodNullable<z.ZodString>;
5348
5410
  RootParentID: z.ZodNullable<z.ZodString>;
5349
5411
  }, "strip", z.ZodTypeAny, {
5350
5412
  ID?: string;
@@ -5353,6 +5415,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
5353
5415
  __mj_UpdatedAt?: Date;
5354
5416
  ParentID?: string;
5355
5417
  Status?: "Failed" | "Cancelled" | "Completed" | "Running";
5418
+ Parent?: string;
5356
5419
  RootParentID?: string;
5357
5420
  StartedAt?: Date;
5358
5421
  Success?: boolean;
@@ -5370,6 +5433,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
5370
5433
  PayloadAtEnd?: string;
5371
5434
  FinalPayloadValidationResult?: "Fail" | "Retry" | "Warn" | "Pass";
5372
5435
  FinalPayloadValidationMessages?: string;
5436
+ AgentRun?: string;
5373
5437
  }, {
5374
5438
  ID?: string;
5375
5439
  Comments?: string;
@@ -5377,6 +5441,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
5377
5441
  __mj_UpdatedAt?: Date;
5378
5442
  ParentID?: string;
5379
5443
  Status?: "Failed" | "Cancelled" | "Completed" | "Running";
5444
+ Parent?: string;
5380
5445
  RootParentID?: string;
5381
5446
  StartedAt?: Date;
5382
5447
  Success?: boolean;
@@ -5394,6 +5459,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
5394
5459
  PayloadAtEnd?: string;
5395
5460
  FinalPayloadValidationResult?: "Fail" | "Retry" | "Warn" | "Pass";
5396
5461
  FinalPayloadValidationMessages?: string;
5462
+ AgentRun?: string;
5397
5463
  }>;
5398
5464
  export type AIAgentRunStepEntityType = z.infer<typeof AIAgentRunStepSchema>;
5399
5465
  /**
@@ -6200,6 +6266,7 @@ export declare const AIPromptRunSchema: z.ZodObject<{
6200
6266
  AgentRunID?: string;
6201
6267
  Cancelled?: boolean;
6202
6268
  CompletedAt?: Date;
6269
+ AgentRun?: string;
6203
6270
  Result?: string;
6204
6271
  TotalCost?: number;
6205
6272
  CancellationReason?: string;
@@ -6250,7 +6317,6 @@ export declare const AIPromptRunSchema: z.ZodObject<{
6250
6317
  QueueTime?: number;
6251
6318
  PromptTime?: number;
6252
6319
  ModelSpecificResponseDetails?: string;
6253
- AgentRun?: string;
6254
6320
  OriginalModel?: string;
6255
6321
  RerunFromPromptRun?: string;
6256
6322
  Judge?: string;
@@ -6298,6 +6364,7 @@ export declare const AIPromptRunSchema: z.ZodObject<{
6298
6364
  AgentRunID?: string;
6299
6365
  Cancelled?: boolean;
6300
6366
  CompletedAt?: Date;
6367
+ AgentRun?: string;
6301
6368
  Result?: string;
6302
6369
  TotalCost?: number;
6303
6370
  CancellationReason?: string;
@@ -6348,7 +6415,6 @@ export declare const AIPromptRunSchema: z.ZodObject<{
6348
6415
  QueueTime?: number;
6349
6416
  PromptTime?: number;
6350
6417
  ModelSpecificResponseDetails?: string;
6351
- AgentRun?: string;
6352
6418
  OriginalModel?: string;
6353
6419
  RerunFromPromptRun?: string;
6354
6420
  Judge?: string;
@@ -7192,6 +7258,7 @@ export declare const ConversationDetailArtifactSchema: z.ZodObject<{
7192
7258
  Direction: z.ZodUnion<[z.ZodLiteral<"Input">, z.ZodLiteral<"Output">]>;
7193
7259
  __mj_CreatedAt: z.ZodDate;
7194
7260
  __mj_UpdatedAt: z.ZodDate;
7261
+ ConversationDetail: z.ZodString;
7195
7262
  ArtifactVersion: z.ZodNullable<z.ZodString>;
7196
7263
  }, "strip", z.ZodTypeAny, {
7197
7264
  ID?: string;
@@ -7201,6 +7268,7 @@ export declare const ConversationDetailArtifactSchema: z.ZodObject<{
7201
7268
  ArtifactVersionID?: string;
7202
7269
  ArtifactVersion?: string;
7203
7270
  ConversationDetailID?: string;
7271
+ ConversationDetail?: string;
7204
7272
  }, {
7205
7273
  ID?: string;
7206
7274
  __mj_CreatedAt?: Date;
@@ -7209,6 +7277,7 @@ export declare const ConversationDetailArtifactSchema: z.ZodObject<{
7209
7277
  ArtifactVersionID?: string;
7210
7278
  ArtifactVersion?: string;
7211
7279
  ConversationDetailID?: string;
7280
+ ConversationDetail?: string;
7212
7281
  }>;
7213
7282
  export type ConversationDetailArtifactEntityType = z.infer<typeof ConversationDetailArtifactSchema>;
7214
7283
  /**
@@ -7222,6 +7291,7 @@ export declare const ConversationDetailRatingSchema: z.ZodObject<{
7222
7291
  Comments: z.ZodNullable<z.ZodString>;
7223
7292
  __mj_CreatedAt: z.ZodDate;
7224
7293
  __mj_UpdatedAt: z.ZodDate;
7294
+ ConversationDetail: z.ZodString;
7225
7295
  User: z.ZodString;
7226
7296
  }, "strip", z.ZodTypeAny, {
7227
7297
  ID?: string;
@@ -7231,6 +7301,7 @@ export declare const ConversationDetailRatingSchema: z.ZodObject<{
7231
7301
  UserID?: string;
7232
7302
  User?: string;
7233
7303
  ConversationDetailID?: string;
7304
+ ConversationDetail?: string;
7234
7305
  Rating?: number;
7235
7306
  }, {
7236
7307
  ID?: string;
@@ -7240,6 +7311,7 @@ export declare const ConversationDetailRatingSchema: z.ZodObject<{
7240
7311
  UserID?: string;
7241
7312
  User?: string;
7242
7313
  ConversationDetailID?: string;
7314
+ ConversationDetail?: string;
7243
7315
  Rating?: number;
7244
7316
  }>;
7245
7317
  export type ConversationDetailRatingEntityType = z.infer<typeof ConversationDetailRatingSchema>;
@@ -7869,6 +7941,7 @@ export declare const TaskSchema: z.ZodObject<{
7869
7941
  Type: z.ZodString;
7870
7942
  Environment: z.ZodString;
7871
7943
  Project: z.ZodNullable<z.ZodString>;
7944
+ ConversationDetail: z.ZodNullable<z.ZodString>;
7872
7945
  User: z.ZodNullable<z.ZodString>;
7873
7946
  Agent: z.ZodNullable<z.ZodString>;
7874
7947
  RootParentID: z.ZodNullable<z.ZodString>;
@@ -7895,6 +7968,7 @@ export declare const TaskSchema: z.ZodObject<{
7895
7968
  Project?: string;
7896
7969
  CompletedAt?: Date;
7897
7970
  ConversationDetailID?: string;
7971
+ ConversationDetail?: string;
7898
7972
  PercentComplete?: number;
7899
7973
  DueAt?: Date;
7900
7974
  }, {
@@ -7920,6 +7994,7 @@ export declare const TaskSchema: z.ZodObject<{
7920
7994
  Project?: string;
7921
7995
  CompletedAt?: Date;
7922
7996
  ConversationDetailID?: string;
7997
+ ConversationDetail?: string;
7923
7998
  PercentComplete?: number;
7924
7999
  DueAt?: Date;
7925
8000
  }>;
@@ -8819,6 +8894,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
8819
8894
  MatchProbability: z.ZodNullable<z.ZodNumber>;
8820
8895
  __mj_CreatedAt: z.ZodDate;
8821
8896
  __mj_UpdatedAt: z.ZodDate;
8897
+ Recommendation: z.ZodString;
8822
8898
  DestinationEntity: z.ZodString;
8823
8899
  }, "strip", z.ZodTypeAny, {
8824
8900
  ID?: string;
@@ -8828,6 +8904,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
8828
8904
  RecommendationID?: string;
8829
8905
  DestinationEntityID?: string;
8830
8906
  DestinationEntityRecordID?: string;
8907
+ Recommendation?: string;
8831
8908
  DestinationEntity?: string;
8832
8909
  }, {
8833
8910
  ID?: string;
@@ -8837,6 +8914,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
8837
8914
  RecommendationID?: string;
8838
8915
  DestinationEntityID?: string;
8839
8916
  DestinationEntityRecordID?: string;
8917
+ Recommendation?: string;
8840
8918
  DestinationEntity?: string;
8841
8919
  }>;
8842
8920
  export type RecommendationItemEntityType = z.infer<typeof RecommendationItemSchema>;
@@ -8914,6 +8992,7 @@ export declare const RecommendationSchema: z.ZodObject<{
8914
8992
  SourceEntityRecordID: z.ZodString;
8915
8993
  __mj_CreatedAt: z.ZodDate;
8916
8994
  __mj_UpdatedAt: z.ZodDate;
8995
+ RecommendationRun: z.ZodString;
8917
8996
  SourceEntity: z.ZodString;
8918
8997
  }, "strip", z.ZodTypeAny, {
8919
8998
  ID?: string;
@@ -8923,6 +9002,7 @@ export declare const RecommendationSchema: z.ZodObject<{
8923
9002
  SourceEntity?: string;
8924
9003
  RecommendationRunID?: string;
8925
9004
  SourceEntityRecordID?: string;
9005
+ RecommendationRun?: string;
8926
9006
  }, {
8927
9007
  ID?: string;
8928
9008
  __mj_CreatedAt?: Date;
@@ -8931,6 +9011,7 @@ export declare const RecommendationSchema: z.ZodObject<{
8931
9011
  SourceEntity?: string;
8932
9012
  RecommendationRunID?: string;
8933
9013
  SourceEntityRecordID?: string;
9014
+ RecommendationRun?: string;
8934
9015
  }>;
8935
9016
  export type RecommendationEntityType = z.infer<typeof RecommendationSchema>;
8936
9017
  /**
@@ -8988,6 +9069,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
8988
9069
  UpdatedAt: z.ZodDate;
8989
9070
  Entity: z.ZodString;
8990
9071
  User: z.ZodString;
9072
+ ReplayRun: z.ZodNullable<z.ZodString>;
8991
9073
  Integration: z.ZodNullable<z.ZodString>;
8992
9074
  }, "strip", z.ZodTypeAny, {
8993
9075
  ID?: string;
@@ -9010,6 +9092,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
9010
9092
  ReplayRunID?: string;
9011
9093
  CreatedAt?: Date;
9012
9094
  UpdatedAt?: Date;
9095
+ ReplayRun?: string;
9013
9096
  }, {
9014
9097
  ID?: string;
9015
9098
  Comments?: string;
@@ -9031,6 +9114,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
9031
9114
  ReplayRunID?: string;
9032
9115
  CreatedAt?: Date;
9033
9116
  UpdatedAt?: Date;
9117
+ ReplayRun?: string;
9034
9118
  }>;
9035
9119
  export type RecordChangeEntityType = z.infer<typeof RecordChangeSchema>;
9036
9120
  /**
@@ -9044,12 +9128,14 @@ export declare const RecordMergeDeletionLogSchema: z.ZodObject<{
9044
9128
  ProcessingLog: z.ZodNullable<z.ZodString>;
9045
9129
  __mj_CreatedAt: z.ZodDate;
9046
9130
  __mj_UpdatedAt: z.ZodDate;
9131
+ RecordMergeLog: z.ZodString;
9047
9132
  }, "strip", z.ZodTypeAny, {
9048
9133
  ID?: string;
9049
9134
  __mj_CreatedAt?: Date;
9050
9135
  __mj_UpdatedAt?: Date;
9051
9136
  Status?: "Pending" | "Complete" | "Error";
9052
9137
  RecordMergeLogID?: string;
9138
+ RecordMergeLog?: string;
9053
9139
  DeletedRecordID?: string;
9054
9140
  ProcessingLog?: string;
9055
9141
  }, {
@@ -9058,6 +9144,7 @@ export declare const RecordMergeDeletionLogSchema: z.ZodObject<{
9058
9144
  __mj_UpdatedAt?: Date;
9059
9145
  Status?: "Pending" | "Complete" | "Error";
9060
9146
  RecordMergeLogID?: string;
9147
+ RecordMergeLog?: string;
9061
9148
  DeletedRecordID?: string;
9062
9149
  ProcessingLog?: string;
9063
9150
  }>;
@@ -9215,6 +9302,7 @@ export declare const ReportSchema: z.ZodObject<{
9215
9302
  Category: z.ZodNullable<z.ZodString>;
9216
9303
  User: z.ZodString;
9217
9304
  Conversation: z.ZodNullable<z.ZodString>;
9305
+ ConversationDetail: z.ZodNullable<z.ZodString>;
9218
9306
  DataContext: z.ZodNullable<z.ZodString>;
9219
9307
  OutputTriggerType: z.ZodNullable<z.ZodString>;
9220
9308
  OutputFormatType: z.ZodNullable<z.ZodString>;
@@ -9240,6 +9328,7 @@ export declare const ReportSchema: z.ZodObject<{
9240
9328
  Environment?: string;
9241
9329
  Thumbnail?: string;
9242
9330
  ConversationDetailID?: string;
9331
+ ConversationDetail?: string;
9243
9332
  SharingScope?: "None" | "Specific" | "Everyone";
9244
9333
  OutputTriggerTypeID?: string;
9245
9334
  OutputFormatTypeID?: string;
@@ -9270,6 +9359,7 @@ export declare const ReportSchema: z.ZodObject<{
9270
9359
  Environment?: string;
9271
9360
  Thumbnail?: string;
9272
9361
  ConversationDetailID?: string;
9362
+ ConversationDetail?: string;
9273
9363
  SharingScope?: "None" | "Specific" | "Everyone";
9274
9364
  OutputTriggerTypeID?: string;
9275
9365
  OutputFormatTypeID?: string;
@@ -9819,6 +9909,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
9819
9909
  TemplateContentID: z.ZodNullable<z.ZodString>;
9820
9910
  Template: z.ZodString;
9821
9911
  Entity: z.ZodNullable<z.ZodString>;
9912
+ TemplateContent: z.ZodNullable<z.ZodString>;
9822
9913
  }, "strip", z.ZodTypeAny, {
9823
9914
  ID?: string;
9824
9915
  __mj_CreatedAt?: Date;
@@ -9838,6 +9929,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
9838
9929
  LinkedParameterName?: string;
9839
9930
  LinkedParameterField?: string;
9840
9931
  TemplateContentID?: string;
9932
+ TemplateContent?: string;
9841
9933
  }, {
9842
9934
  ID?: string;
9843
9935
  __mj_CreatedAt?: Date;
@@ -9857,6 +9949,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
9857
9949
  LinkedParameterName?: string;
9858
9950
  LinkedParameterField?: string;
9859
9951
  TemplateContentID?: string;
9952
+ TemplateContent?: string;
9860
9953
  }>;
9861
9954
  export type TemplateParamEntityType = z.infer<typeof TemplateParamSchema>;
9862
9955
  /**
@@ -12607,6 +12700,18 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
12607
12700
  */
12608
12701
  get SourceConversation(): string | null;
12609
12702
  /**
12703
+ * * Field Name: SourceConversationDetail
12704
+ * * Display Name: Source Conversation Detail
12705
+ * * SQL Data Type: nvarchar(MAX)
12706
+ */
12707
+ get SourceConversationDetail(): string | null;
12708
+ /**
12709
+ * * Field Name: SourceAIAgentRun
12710
+ * * Display Name: Source AI Agent Run
12711
+ * * SQL Data Type: nvarchar(255)
12712
+ */
12713
+ get SourceAIAgentRun(): string | null;
12714
+ /**
12610
12715
  * * Field Name: Company
12611
12716
  * * Display Name: Company
12612
12717
  * * SQL Data Type: nvarchar(50)
@@ -14705,6 +14810,12 @@ export declare class AIResultCacheEntity extends BaseEntity<AIResultCacheEntityT
14705
14810
  * * SQL Data Type: nvarchar(100)
14706
14811
  */
14707
14812
  get Configuration(): string | null;
14813
+ /**
14814
+ * * Field Name: PromptRun
14815
+ * * Display Name: Prompt Run
14816
+ * * SQL Data Type: nvarchar(255)
14817
+ */
14818
+ get PromptRun(): string | null;
14708
14819
  }
14709
14820
  /**
14710
14821
  * Application Entities - strongly typed entity sub-class
@@ -15627,6 +15738,12 @@ export declare class CommunicationLogEntity extends BaseEntity<CommunicationLogE
15627
15738
  * * SQL Data Type: nvarchar(255)
15628
15739
  */
15629
15740
  get CommunicationProviderMessageType(): string;
15741
+ /**
15742
+ * * Field Name: CommunicationRun
15743
+ * * Display Name: Communication Run
15744
+ * * SQL Data Type: nvarchar(100)
15745
+ */
15746
+ get CommunicationRun(): string | null;
15630
15747
  }
15631
15748
  /**
15632
15749
  * Communication Provider Message Types - strongly typed entity sub-class
@@ -16264,6 +16381,12 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity<Compan
16264
16381
  * * Default Value: getutcdate()
16265
16382
  */
16266
16383
  get __mj_UpdatedAt(): Date;
16384
+ /**
16385
+ * * Field Name: CompanyIntegrationRun
16386
+ * * Display Name: Company Integration Run
16387
+ * * SQL Data Type: nvarchar(100)
16388
+ */
16389
+ get CompanyIntegrationRun(): string;
16267
16390
  }
16268
16391
  /**
16269
16392
  * Company Integration Run Details - strongly typed entity sub-class
@@ -19021,6 +19144,18 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity<DuplicateR
19021
19144
  * * Default Value: getutcdate()
19022
19145
  */
19023
19146
  get __mj_UpdatedAt(): Date;
19147
+ /**
19148
+ * * Field Name: DuplicateRunDetail
19149
+ * * Display Name: Duplicate Run Detail
19150
+ * * SQL Data Type: nvarchar(500)
19151
+ */
19152
+ get DuplicateRunDetail(): string;
19153
+ /**
19154
+ * * Field Name: RecordMergeLog
19155
+ * * Display Name: Record Merge Log
19156
+ * * SQL Data Type: nvarchar(450)
19157
+ */
19158
+ get RecordMergeLog(): string | null;
19024
19159
  }
19025
19160
  /**
19026
19161
  * Duplicate Run Details - strongly typed entity sub-class
@@ -19138,6 +19273,12 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
19138
19273
  * * Default Value: getutcdate()
19139
19274
  */
19140
19275
  get __mj_UpdatedAt(): Date;
19276
+ /**
19277
+ * * Field Name: DuplicateRun
19278
+ * * Display Name: Duplicate Run
19279
+ * * SQL Data Type: nvarchar(255)
19280
+ */
19281
+ get DuplicateRun(): string;
19141
19282
  }
19142
19283
  /**
19143
19284
  * Duplicate Runs - strongly typed entity sub-class
@@ -19381,6 +19522,12 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
19381
19522
  */
19382
19523
  get __mj_UpdatedAt(): Date;
19383
19524
  /**
19525
+ * * Field Name: Employee
19526
+ * * Display Name: Employee
19527
+ * * SQL Data Type: nvarchar(81)
19528
+ */
19529
+ get Employee(): string | null;
19530
+ /**
19384
19531
  * * Field Name: CompanyIntegration
19385
19532
  * * Display Name: Company Integration
19386
19533
  * * SQL Data Type: nvarchar(255)
@@ -19450,6 +19597,12 @@ export declare class EmployeeRoleEntity extends BaseEntity<EmployeeRoleEntityTyp
19450
19597
  */
19451
19598
  get __mj_UpdatedAt(): Date;
19452
19599
  /**
19600
+ * * Field Name: Employee
19601
+ * * Display Name: Employee
19602
+ * * SQL Data Type: nvarchar(81)
19603
+ */
19604
+ get Employee(): string | null;
19605
+ /**
19453
19606
  * * Field Name: Role
19454
19607
  * * Display Name: Role
19455
19608
  * * SQL Data Type: nvarchar(50)
@@ -19519,6 +19672,12 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
19519
19672
  */
19520
19673
  get __mj_UpdatedAt(): Date;
19521
19674
  /**
19675
+ * * Field Name: Employee
19676
+ * * Display Name: Employee
19677
+ * * SQL Data Type: nvarchar(81)
19678
+ */
19679
+ get Employee(): string | null;
19680
+ /**
19522
19681
  * * Field Name: Skill
19523
19682
  * * Display Name: Skill
19524
19683
  * * SQL Data Type: nvarchar(50)
@@ -20331,6 +20490,18 @@ export declare class EntityActionFilterEntity extends BaseEntity<EntityActionFil
20331
20490
  * * Default Value: getutcdate()
20332
20491
  */
20333
20492
  get __mj_UpdatedAt(): Date;
20493
+ /**
20494
+ * * Field Name: EntityAction
20495
+ * * Display Name: Entity Action
20496
+ * * SQL Data Type: nvarchar(425)
20497
+ */
20498
+ get EntityAction(): string;
20499
+ /**
20500
+ * * Field Name: ActionFilter
20501
+ * * Display Name: Action Filter
20502
+ * * SQL Data Type: nvarchar(MAX)
20503
+ */
20504
+ get ActionFilter(): string;
20334
20505
  }
20335
20506
  /**
20336
20507
  * Entity Action Invocation Types - strongly typed entity sub-class
@@ -20481,6 +20652,12 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
20481
20652
  */
20482
20653
  get __mj_UpdatedAt(): Date;
20483
20654
  /**
20655
+ * * Field Name: EntityAction
20656
+ * * Display Name: Entity Action
20657
+ * * SQL Data Type: nvarchar(425)
20658
+ */
20659
+ get EntityAction(): string;
20660
+ /**
20484
20661
  * * Field Name: InvocationType
20485
20662
  * * Display Name: Invocation Type
20486
20663
  * * SQL Data Type: nvarchar(255)
@@ -20580,6 +20757,12 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
20580
20757
  */
20581
20758
  get __mj_UpdatedAt(): Date;
20582
20759
  /**
20760
+ * * Field Name: EntityAction
20761
+ * * Display Name: Entity Action
20762
+ * * SQL Data Type: nvarchar(425)
20763
+ */
20764
+ get EntityAction(): string;
20765
+ /**
20583
20766
  * * Field Name: ActionParam
20584
20767
  * * Display Name: Action Param
20585
20768
  * * SQL Data Type: nvarchar(255)
@@ -20922,6 +21105,12 @@ export declare class EntityCommunicationFieldEntity extends BaseEntity<EntityCom
20922
21105
  * * Default Value: getutcdate()
20923
21106
  */
20924
21107
  get __mj_UpdatedAt(): Date;
21108
+ /**
21109
+ * * Field Name: EntityCommunicationMessageType
21110
+ * * Display Name: Entity Communication Message Type
21111
+ * * SQL Data Type: nvarchar(100)
21112
+ */
21113
+ get EntityCommunicationMessageType(): string;
20925
21114
  }
20926
21115
  /**
20927
21116
  * Entity Communication Message Types - strongly typed entity sub-class
@@ -22900,6 +23089,18 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
22900
23089
  * * Default Value: getutcdate()
22901
23090
  */
22902
23091
  get __mj_UpdatedAt(): Date;
23092
+ /**
23093
+ * * Field Name: CompanyIntegrationRun
23094
+ * * Display Name: Company Integration Run
23095
+ * * SQL Data Type: nvarchar(100)
23096
+ */
23097
+ get CompanyIntegrationRun(): string | null;
23098
+ /**
23099
+ * * Field Name: CompanyIntegrationRunDetail
23100
+ * * Display Name: Company Integration Run Detail
23101
+ * * SQL Data Type: nvarchar(450)
23102
+ */
23103
+ get CompanyIntegrationRunDetail(): string | null;
22903
23104
  }
22904
23105
  /**
22905
23106
  * Explorer Navigation Items - strongly typed entity sub-class
@@ -25216,6 +25417,18 @@ export declare class AIAgentExampleEntity extends BaseEntity<AIAgentExampleEntit
25216
25417
  */
25217
25418
  get SourceConversation(): string | null;
25218
25419
  /**
25420
+ * * Field Name: SourceConversationDetail
25421
+ * * Display Name: Source Conversation Detail
25422
+ * * SQL Data Type: nvarchar(MAX)
25423
+ */
25424
+ get SourceConversationDetail(): string | null;
25425
+ /**
25426
+ * * Field Name: SourceAIAgentRun
25427
+ * * Display Name: Source AI Agent Run
25428
+ * * SQL Data Type: nvarchar(255)
25429
+ */
25430
+ get SourceAIAgentRun(): string | null;
25431
+ /**
25219
25432
  * * Field Name: EmbeddingModel
25220
25433
  * * Display Name: Embedding Model
25221
25434
  * * SQL Data Type: nvarchar(50)
@@ -25938,6 +26151,18 @@ detailed information about what validation rules failed.
25938
26151
  get Comments(): string | null;
25939
26152
  set Comments(value: string | null);
25940
26153
  /**
26154
+ * * Field Name: AgentRun
26155
+ * * Display Name: Agent Run
26156
+ * * SQL Data Type: nvarchar(255)
26157
+ */
26158
+ get AgentRun(): string | null;
26159
+ /**
26160
+ * * Field Name: Parent
26161
+ * * Display Name: Parent
26162
+ * * SQL Data Type: nvarchar(255)
26163
+ */
26164
+ get Parent(): string | null;
26165
+ /**
25941
26166
  * * Field Name: RootParentID
25942
26167
  * * Display Name: Root Parent ID
25943
26168
  * * SQL Data Type: uniqueidentifier
@@ -31253,6 +31478,12 @@ export declare class ConversationDetailArtifactEntity extends BaseEntity<Convers
31253
31478
  */
31254
31479
  get __mj_UpdatedAt(): Date;
31255
31480
  /**
31481
+ * * Field Name: ConversationDetail
31482
+ * * Display Name: Conversation Detail
31483
+ * * SQL Data Type: nvarchar(MAX)
31484
+ */
31485
+ get ConversationDetail(): string;
31486
+ /**
31256
31487
  * * Field Name: ArtifactVersion
31257
31488
  * * Display Name: Artifact Version
31258
31489
  * * SQL Data Type: nvarchar(255)
@@ -31355,6 +31586,12 @@ export declare class ConversationDetailRatingEntity extends BaseEntity<Conversat
31355
31586
  */
31356
31587
  get __mj_UpdatedAt(): Date;
31357
31588
  /**
31589
+ * * Field Name: ConversationDetail
31590
+ * * Display Name: Conversation Detail
31591
+ * * SQL Data Type: nvarchar(MAX)
31592
+ */
31593
+ get ConversationDetail(): string;
31594
+ /**
31358
31595
  * * Field Name: User
31359
31596
  * * Display Name: User
31360
31597
  * * SQL Data Type: nvarchar(100)
@@ -33309,6 +33546,12 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
33309
33546
  */
33310
33547
  get Project(): string | null;
33311
33548
  /**
33549
+ * * Field Name: ConversationDetail
33550
+ * * Display Name: Conversation Detail
33551
+ * * SQL Data Type: nvarchar(MAX)
33552
+ */
33553
+ get ConversationDetail(): string | null;
33554
+ /**
33312
33555
  * * Field Name: User
33313
33556
  * * Display Name: User
33314
33557
  * * SQL Data Type: nvarchar(100)
@@ -35884,6 +36127,12 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
35884
36127
  */
35885
36128
  get __mj_UpdatedAt(): Date;
35886
36129
  /**
36130
+ * * Field Name: Recommendation
36131
+ * * Display Name: Recommendation
36132
+ * * SQL Data Type: nvarchar(MAX)
36133
+ */
36134
+ get Recommendation(): string;
36135
+ /**
35887
36136
  * * Field Name: DestinationEntity
35888
36137
  * * Display Name: Destination Entity
35889
36138
  * * SQL Data Type: nvarchar(255)
@@ -36135,6 +36384,12 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
36135
36384
  */
36136
36385
  get __mj_UpdatedAt(): Date;
36137
36386
  /**
36387
+ * * Field Name: RecommendationRun
36388
+ * * Display Name: Recommendation Run
36389
+ * * SQL Data Type: nvarchar(255)
36390
+ */
36391
+ get RecommendationRun(): string;
36392
+ /**
36138
36393
  * * Field Name: SourceEntity
36139
36394
  * * Display Name: Source Entity
36140
36395
  * * SQL Data Type: nvarchar(255)
@@ -36419,6 +36674,12 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
36419
36674
  */
36420
36675
  get User(): string;
36421
36676
  /**
36677
+ * * Field Name: ReplayRun
36678
+ * * Display Name: Replay Run
36679
+ * * SQL Data Type: nvarchar(100)
36680
+ */
36681
+ get ReplayRun(): string | null;
36682
+ /**
36422
36683
  * * Field Name: Integration
36423
36684
  * * Display Name: Integration
36424
36685
  * * SQL Data Type: nvarchar(100)
@@ -36508,6 +36769,12 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
36508
36769
  * * Default Value: getutcdate()
36509
36770
  */
36510
36771
  get __mj_UpdatedAt(): Date;
36772
+ /**
36773
+ * * Field Name: RecordMergeLog
36774
+ * * Display Name: Record Merge Log
36775
+ * * SQL Data Type: nvarchar(450)
36776
+ */
36777
+ get RecordMergeLog(): string;
36511
36778
  }
36512
36779
  /**
36513
36780
  * Record Merge Logs - strongly typed entity sub-class
@@ -37060,6 +37327,12 @@ export declare class ReportEntity extends BaseEntity<ReportEntityType> {
37060
37327
  */
37061
37328
  get Conversation(): string | null;
37062
37329
  /**
37330
+ * * Field Name: ConversationDetail
37331
+ * * Display Name: Conversation Detail
37332
+ * * SQL Data Type: nvarchar(MAX)
37333
+ */
37334
+ get ConversationDetail(): string | null;
37335
+ /**
37063
37336
  * * Field Name: DataContext
37064
37337
  * * Display Name: Data Context
37065
37338
  * * SQL Data Type: nvarchar(255)
@@ -38689,6 +38962,12 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
38689
38962
  * * SQL Data Type: nvarchar(255)
38690
38963
  */
38691
38964
  get Entity(): string | null;
38965
+ /**
38966
+ * * Field Name: TemplateContent
38967
+ * * Display Name: Template Content
38968
+ * * SQL Data Type: nvarchar(255)
38969
+ */
38970
+ get TemplateContent(): string | null;
38692
38971
  }
38693
38972
  /**
38694
38973
  * Templates - strongly typed entity sub-class