@memberjunction/core-entities 2.120.0 → 2.122.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
  /**
@@ -1414,24 +1423,54 @@ export declare const ApplicationSchema: z.ZodObject<{
1414
1423
  __mj_CreatedAt: z.ZodDate;
1415
1424
  __mj_UpdatedAt: z.ZodDate;
1416
1425
  SchemaAutoAddNewEntities: z.ZodNullable<z.ZodString>;
1426
+ Color: z.ZodNullable<z.ZodString>;
1427
+ DefaultNavItems: z.ZodNullable<z.ZodString>;
1428
+ ClassName: z.ZodNullable<z.ZodString>;
1429
+ DefaultSequence: z.ZodNumber;
1430
+ Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Deprecated">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Pending">]>;
1431
+ NavigationStyle: z.ZodUnion<[z.ZodLiteral<"App Switcher">, z.ZodLiteral<"Both">, z.ZodLiteral<"Nav Bar">]>;
1432
+ TopNavLocation: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Left of App Switcher">, z.ZodLiteral<"Left of User Menu">]>>;
1433
+ HideNavBarIconWhenActive: z.ZodBoolean;
1434
+ Path: z.ZodString;
1435
+ AutoUpdatePath: z.ZodBoolean;
1417
1436
  }, "strip", z.ZodTypeAny, {
1418
1437
  ID?: string;
1419
1438
  __mj_CreatedAt?: Date;
1420
1439
  __mj_UpdatedAt?: Date;
1421
1440
  Name?: string;
1422
1441
  Description?: string;
1442
+ Status?: "Active" | "Disabled" | "Pending" | "Deprecated";
1423
1443
  DefaultForNewUser?: boolean;
1424
1444
  Icon?: string;
1425
1445
  SchemaAutoAddNewEntities?: string;
1446
+ Color?: string;
1447
+ DefaultNavItems?: string;
1448
+ ClassName?: string;
1449
+ DefaultSequence?: number;
1450
+ NavigationStyle?: "Both" | "App Switcher" | "Nav Bar";
1451
+ TopNavLocation?: "Left of App Switcher" | "Left of User Menu";
1452
+ HideNavBarIconWhenActive?: boolean;
1453
+ Path?: string;
1454
+ AutoUpdatePath?: boolean;
1426
1455
  }, {
1427
1456
  ID?: string;
1428
1457
  __mj_CreatedAt?: Date;
1429
1458
  __mj_UpdatedAt?: Date;
1430
1459
  Name?: string;
1431
1460
  Description?: string;
1461
+ Status?: "Active" | "Disabled" | "Pending" | "Deprecated";
1432
1462
  DefaultForNewUser?: boolean;
1433
1463
  Icon?: string;
1434
1464
  SchemaAutoAddNewEntities?: string;
1465
+ Color?: string;
1466
+ DefaultNavItems?: string;
1467
+ ClassName?: string;
1468
+ DefaultSequence?: number;
1469
+ NavigationStyle?: "Both" | "App Switcher" | "Nav Bar";
1470
+ TopNavLocation?: "Left of App Switcher" | "Left of User Menu";
1471
+ HideNavBarIconWhenActive?: boolean;
1472
+ Path?: string;
1473
+ AutoUpdatePath?: boolean;
1435
1474
  }>;
1436
1475
  export type ApplicationEntityType = z.infer<typeof ApplicationSchema>;
1437
1476
  /**
@@ -1644,6 +1683,7 @@ export declare const CommunicationLogSchema: z.ZodObject<{
1644
1683
  __mj_UpdatedAt: z.ZodDate;
1645
1684
  CommunicationProvider: z.ZodString;
1646
1685
  CommunicationProviderMessageType: z.ZodString;
1686
+ CommunicationRun: z.ZodNullable<z.ZodString>;
1647
1687
  }, "strip", z.ZodTypeAny, {
1648
1688
  ID?: string;
1649
1689
  __mj_CreatedAt?: Date;
@@ -1658,6 +1698,7 @@ export declare const CommunicationLogSchema: z.ZodObject<{
1658
1698
  ErrorMessage?: string;
1659
1699
  CommunicationProvider?: string;
1660
1700
  CommunicationProviderMessageType?: string;
1701
+ CommunicationRun?: string;
1661
1702
  }, {
1662
1703
  ID?: string;
1663
1704
  __mj_CreatedAt?: Date;
@@ -1672,6 +1713,7 @@ export declare const CommunicationLogSchema: z.ZodObject<{
1672
1713
  ErrorMessage?: string;
1673
1714
  CommunicationProvider?: string;
1674
1715
  CommunicationProviderMessageType?: string;
1716
+ CommunicationRun?: string;
1675
1717
  }>;
1676
1718
  export type CommunicationLogEntityType = z.infer<typeof CommunicationLogSchema>;
1677
1719
  /**
@@ -1877,6 +1919,7 @@ export declare const CompanyIntegrationRunAPILogSchema: z.ZodObject<{
1877
1919
  Parameters: z.ZodNullable<z.ZodString>;
1878
1920
  __mj_CreatedAt: z.ZodDate;
1879
1921
  __mj_UpdatedAt: z.ZodDate;
1922
+ CompanyIntegrationRun: z.ZodString;
1880
1923
  }, "strip", z.ZodTypeAny, {
1881
1924
  ID?: string;
1882
1925
  __mj_CreatedAt?: Date;
@@ -1887,6 +1930,7 @@ export declare const CompanyIntegrationRunAPILogSchema: z.ZodObject<{
1887
1930
  RequestMethod?: "DELETE" | "GET" | "HEAD" | "OPTIONS" | "PATCH" | "POST" | "PUT";
1888
1931
  URL?: string;
1889
1932
  Parameters?: string;
1933
+ CompanyIntegrationRun?: string;
1890
1934
  }, {
1891
1935
  ID?: string;
1892
1936
  __mj_CreatedAt?: Date;
@@ -1897,6 +1941,7 @@ export declare const CompanyIntegrationRunAPILogSchema: z.ZodObject<{
1897
1941
  RequestMethod?: "DELETE" | "GET" | "HEAD" | "OPTIONS" | "PATCH" | "POST" | "PUT";
1898
1942
  URL?: string;
1899
1943
  Parameters?: string;
1944
+ CompanyIntegrationRun?: string;
1900
1945
  }>;
1901
1946
  export type CompanyIntegrationRunAPILogEntityType = z.infer<typeof CompanyIntegrationRunAPILogSchema>;
1902
1947
  /**
@@ -2896,6 +2941,8 @@ export declare const DuplicateRunDetailMatchSchema: z.ZodObject<{
2896
2941
  MergedAt: z.ZodDate;
2897
2942
  __mj_CreatedAt: z.ZodDate;
2898
2943
  __mj_UpdatedAt: z.ZodDate;
2944
+ DuplicateRunDetail: z.ZodString;
2945
+ RecordMergeLog: z.ZodNullable<z.ZodString>;
2899
2946
  }, "strip", z.ZodTypeAny, {
2900
2947
  ID?: string;
2901
2948
  __mj_CreatedAt?: Date;
@@ -2910,6 +2957,8 @@ export declare const DuplicateRunDetailMatchSchema: z.ZodObject<{
2910
2957
  RecordMergeLogID?: string;
2911
2958
  MergeStatus?: "Pending" | "Complete" | "Error";
2912
2959
  MergedAt?: Date;
2960
+ DuplicateRunDetail?: string;
2961
+ RecordMergeLog?: string;
2913
2962
  }, {
2914
2963
  ID?: string;
2915
2964
  __mj_CreatedAt?: Date;
@@ -2924,6 +2973,8 @@ export declare const DuplicateRunDetailMatchSchema: z.ZodObject<{
2924
2973
  RecordMergeLogID?: string;
2925
2974
  MergeStatus?: "Pending" | "Complete" | "Error";
2926
2975
  MergedAt?: Date;
2976
+ DuplicateRunDetail?: string;
2977
+ RecordMergeLog?: string;
2927
2978
  }>;
2928
2979
  export type DuplicateRunDetailMatchEntityType = z.infer<typeof DuplicateRunDetailMatchSchema>;
2929
2980
  /**
@@ -2940,6 +2991,7 @@ export declare const DuplicateRunDetailSchema: z.ZodObject<{
2940
2991
  MergeErrorMessage: z.ZodNullable<z.ZodString>;
2941
2992
  __mj_CreatedAt: z.ZodDate;
2942
2993
  __mj_UpdatedAt: z.ZodDate;
2994
+ DuplicateRun: z.ZodString;
2943
2995
  }, "strip", z.ZodTypeAny, {
2944
2996
  ID?: string;
2945
2997
  __mj_CreatedAt?: Date;
@@ -2951,6 +3003,7 @@ export declare const DuplicateRunDetailSchema: z.ZodObject<{
2951
3003
  SkippedReason?: string;
2952
3004
  MatchErrorMessage?: string;
2953
3005
  MergeErrorMessage?: string;
3006
+ DuplicateRun?: string;
2954
3007
  }, {
2955
3008
  ID?: string;
2956
3009
  __mj_CreatedAt?: Date;
@@ -2962,6 +3015,7 @@ export declare const DuplicateRunDetailSchema: z.ZodObject<{
2962
3015
  SkippedReason?: string;
2963
3016
  MatchErrorMessage?: string;
2964
3017
  MergeErrorMessage?: string;
3018
+ DuplicateRun?: string;
2965
3019
  }>;
2966
3020
  export type DuplicateRunDetailEntityType = z.infer<typeof DuplicateRunDetailSchema>;
2967
3021
  /**
@@ -3034,6 +3088,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
3034
3088
  IsActive: z.ZodBoolean;
3035
3089
  __mj_CreatedAt: z.ZodDate;
3036
3090
  __mj_UpdatedAt: z.ZodDate;
3091
+ Employee: z.ZodNullable<z.ZodString>;
3037
3092
  CompanyIntegration: z.ZodString;
3038
3093
  }, "strip", z.ZodTypeAny, {
3039
3094
  ID?: string;
@@ -3044,6 +3099,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
3044
3099
  ExternalSystemRecordID?: string;
3045
3100
  CompanyIntegration?: string;
3046
3101
  EmployeeID?: string;
3102
+ Employee?: string;
3047
3103
  }, {
3048
3104
  ID?: string;
3049
3105
  __mj_CreatedAt?: Date;
@@ -3053,6 +3109,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
3053
3109
  ExternalSystemRecordID?: string;
3054
3110
  CompanyIntegration?: string;
3055
3111
  EmployeeID?: string;
3112
+ Employee?: string;
3056
3113
  }>;
3057
3114
  export type EmployeeCompanyIntegrationEntityType = z.infer<typeof EmployeeCompanyIntegrationSchema>;
3058
3115
  /**
@@ -3064,6 +3121,7 @@ export declare const EmployeeRoleSchema: z.ZodObject<{
3064
3121
  RoleID: z.ZodString;
3065
3122
  __mj_CreatedAt: z.ZodDate;
3066
3123
  __mj_UpdatedAt: z.ZodDate;
3124
+ Employee: z.ZodNullable<z.ZodString>;
3067
3125
  Role: z.ZodString;
3068
3126
  }, "strip", z.ZodTypeAny, {
3069
3127
  ID?: string;
@@ -3072,6 +3130,7 @@ export declare const EmployeeRoleSchema: z.ZodObject<{
3072
3130
  RoleID?: string;
3073
3131
  Role?: string;
3074
3132
  EmployeeID?: string;
3133
+ Employee?: string;
3075
3134
  }, {
3076
3135
  ID?: string;
3077
3136
  __mj_CreatedAt?: Date;
@@ -3079,6 +3138,7 @@ export declare const EmployeeRoleSchema: z.ZodObject<{
3079
3138
  RoleID?: string;
3080
3139
  Role?: string;
3081
3140
  EmployeeID?: string;
3141
+ Employee?: string;
3082
3142
  }>;
3083
3143
  export type EmployeeRoleEntityType = z.infer<typeof EmployeeRoleSchema>;
3084
3144
  /**
@@ -3090,12 +3150,14 @@ export declare const EmployeeSkillSchema: z.ZodObject<{
3090
3150
  SkillID: z.ZodString;
3091
3151
  __mj_CreatedAt: z.ZodDate;
3092
3152
  __mj_UpdatedAt: z.ZodDate;
3153
+ Employee: z.ZodNullable<z.ZodString>;
3093
3154
  Skill: z.ZodString;
3094
3155
  }, "strip", z.ZodTypeAny, {
3095
3156
  ID?: string;
3096
3157
  __mj_CreatedAt?: Date;
3097
3158
  __mj_UpdatedAt?: Date;
3098
3159
  EmployeeID?: string;
3160
+ Employee?: string;
3099
3161
  SkillID?: string;
3100
3162
  Skill?: string;
3101
3163
  }, {
@@ -3103,6 +3165,7 @@ export declare const EmployeeSkillSchema: z.ZodObject<{
3103
3165
  __mj_CreatedAt?: Date;
3104
3166
  __mj_UpdatedAt?: Date;
3105
3167
  EmployeeID?: string;
3168
+ Employee?: string;
3106
3169
  SkillID?: string;
3107
3170
  Skill?: string;
3108
3171
  }>;
@@ -3242,6 +3305,7 @@ export declare const EntitySchema: z.ZodObject<{
3242
3305
  ParentID?: string;
3243
3306
  Status?: "Active" | "Disabled" | "Deprecated";
3244
3307
  Icon?: string;
3308
+ ClassName?: string;
3245
3309
  CodeName?: string;
3246
3310
  NameSuffix?: string;
3247
3311
  AutoUpdateDescription?: boolean;
@@ -3292,7 +3356,6 @@ export declare const EntitySchema: z.ZodObject<{
3292
3356
  RowCount?: number;
3293
3357
  RowCountRunAt?: Date;
3294
3358
  DisplayName?: string;
3295
- ClassName?: string;
3296
3359
  BaseTableCodeName?: string;
3297
3360
  ParentEntity?: string;
3298
3361
  ParentBaseTable?: string;
@@ -3306,6 +3369,7 @@ export declare const EntitySchema: z.ZodObject<{
3306
3369
  ParentID?: string;
3307
3370
  Status?: "Active" | "Disabled" | "Deprecated";
3308
3371
  Icon?: string;
3372
+ ClassName?: string;
3309
3373
  CodeName?: string;
3310
3374
  NameSuffix?: string;
3311
3375
  AutoUpdateDescription?: boolean;
@@ -3356,7 +3420,6 @@ export declare const EntitySchema: z.ZodObject<{
3356
3420
  RowCount?: number;
3357
3421
  RowCountRunAt?: Date;
3358
3422
  DisplayName?: string;
3359
- ClassName?: string;
3360
3423
  BaseTableCodeName?: string;
3361
3424
  ParentEntity?: string;
3362
3425
  ParentBaseTable?: string;
@@ -3374,6 +3437,8 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
3374
3437
  Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Pending">]>;
3375
3438
  __mj_CreatedAt: z.ZodDate;
3376
3439
  __mj_UpdatedAt: z.ZodDate;
3440
+ EntityAction: z.ZodString;
3441
+ ActionFilter: z.ZodString;
3377
3442
  }, "strip", z.ZodTypeAny, {
3378
3443
  ID?: string;
3379
3444
  __mj_CreatedAt?: Date;
@@ -3382,6 +3447,8 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
3382
3447
  Sequence?: number;
3383
3448
  EntityActionID?: string;
3384
3449
  ActionFilterID?: string;
3450
+ EntityAction?: string;
3451
+ ActionFilter?: string;
3385
3452
  }, {
3386
3453
  ID?: string;
3387
3454
  __mj_CreatedAt?: Date;
@@ -3390,6 +3457,8 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
3390
3457
  Sequence?: number;
3391
3458
  EntityActionID?: string;
3392
3459
  ActionFilterID?: string;
3460
+ EntityAction?: string;
3461
+ ActionFilter?: string;
3393
3462
  }>;
3394
3463
  export type EntityActionFilterEntityType = z.infer<typeof EntityActionFilterSchema>;
3395
3464
  /**
@@ -3428,6 +3497,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
3428
3497
  Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Pending">]>;
3429
3498
  __mj_CreatedAt: z.ZodDate;
3430
3499
  __mj_UpdatedAt: z.ZodDate;
3500
+ EntityAction: z.ZodString;
3431
3501
  InvocationType: z.ZodString;
3432
3502
  }, "strip", z.ZodTypeAny, {
3433
3503
  ID?: string;
@@ -3435,6 +3505,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
3435
3505
  __mj_UpdatedAt?: Date;
3436
3506
  Status?: "Active" | "Disabled" | "Pending";
3437
3507
  EntityActionID?: string;
3508
+ EntityAction?: string;
3438
3509
  InvocationTypeID?: string;
3439
3510
  InvocationType?: string;
3440
3511
  }, {
@@ -3443,6 +3514,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
3443
3514
  __mj_UpdatedAt?: Date;
3444
3515
  Status?: "Active" | "Disabled" | "Pending";
3445
3516
  EntityActionID?: string;
3517
+ EntityAction?: string;
3446
3518
  InvocationTypeID?: string;
3447
3519
  InvocationType?: string;
3448
3520
  }>;
@@ -3459,6 +3531,7 @@ export declare const EntityActionParamSchema: z.ZodObject<{
3459
3531
  Comments: z.ZodNullable<z.ZodString>;
3460
3532
  __mj_CreatedAt: z.ZodDate;
3461
3533
  __mj_UpdatedAt: z.ZodDate;
3534
+ EntityAction: z.ZodString;
3462
3535
  ActionParam: z.ZodString;
3463
3536
  }, "strip", z.ZodTypeAny, {
3464
3537
  ID?: string;
@@ -3468,6 +3541,7 @@ export declare const EntityActionParamSchema: z.ZodObject<{
3468
3541
  ValueType?: "Entity Field" | "Entity Object" | "Script" | "Static";
3469
3542
  Value?: string;
3470
3543
  EntityActionID?: string;
3544
+ EntityAction?: string;
3471
3545
  ActionParamID?: string;
3472
3546
  ActionParam?: string;
3473
3547
  }, {
@@ -3478,6 +3552,7 @@ export declare const EntityActionParamSchema: z.ZodObject<{
3478
3552
  ValueType?: "Entity Field" | "Entity Object" | "Script" | "Static";
3479
3553
  Value?: string;
3480
3554
  EntityActionID?: string;
3555
+ EntityAction?: string;
3481
3556
  ActionParamID?: string;
3482
3557
  ActionParam?: string;
3483
3558
  }>;
@@ -3589,6 +3664,7 @@ export declare const EntityCommunicationFieldSchema: z.ZodObject<{
3589
3664
  Priority: z.ZodNumber;
3590
3665
  __mj_CreatedAt: z.ZodDate;
3591
3666
  __mj_UpdatedAt: z.ZodDate;
3667
+ EntityCommunicationMessageType: z.ZodString;
3592
3668
  }, "strip", z.ZodTypeAny, {
3593
3669
  ID?: string;
3594
3670
  __mj_CreatedAt?: Date;
@@ -3596,6 +3672,7 @@ export declare const EntityCommunicationFieldSchema: z.ZodObject<{
3596
3672
  Priority?: number;
3597
3673
  EntityCommunicationMessageTypeID?: string;
3598
3674
  FieldName?: string;
3675
+ EntityCommunicationMessageType?: string;
3599
3676
  }, {
3600
3677
  ID?: string;
3601
3678
  __mj_CreatedAt?: Date;
@@ -3603,6 +3680,7 @@ export declare const EntityCommunicationFieldSchema: z.ZodObject<{
3603
3680
  Priority?: number;
3604
3681
  EntityCommunicationMessageTypeID?: string;
3605
3682
  FieldName?: string;
3683
+ EntityCommunicationMessageType?: string;
3606
3684
  }>;
3607
3685
  export type EntityCommunicationFieldEntityType = z.infer<typeof EntityCommunicationFieldSchema>;
3608
3686
  /**
@@ -3875,6 +3953,8 @@ export declare const EntityFieldSchema: z.ZodObject<{
3875
3953
  AutoUpdateIsNameField: z.ZodBoolean;
3876
3954
  AutoUpdateDefaultInView: z.ZodBoolean;
3877
3955
  AutoUpdateCategory: z.ZodBoolean;
3956
+ AutoUpdateDisplayName: z.ZodBoolean;
3957
+ AutoUpdateIncludeInUserSearchAPI: z.ZodBoolean;
3878
3958
  FieldCodeName: z.ZodNullable<z.ZodString>;
3879
3959
  Entity: z.ZodString;
3880
3960
  SchemaName: z.ZodString;
@@ -3942,6 +4022,8 @@ export declare const EntityFieldSchema: z.ZodObject<{
3942
4022
  AutoUpdateIsNameField?: boolean;
3943
4023
  AutoUpdateDefaultInView?: boolean;
3944
4024
  AutoUpdateCategory?: boolean;
4025
+ AutoUpdateDisplayName?: boolean;
4026
+ AutoUpdateIncludeInUserSearchAPI?: boolean;
3945
4027
  FieldCodeName?: string;
3946
4028
  RelatedEntity?: string;
3947
4029
  RelatedEntitySchemaName?: string;
@@ -4003,6 +4085,8 @@ export declare const EntityFieldSchema: z.ZodObject<{
4003
4085
  AutoUpdateIsNameField?: boolean;
4004
4086
  AutoUpdateDefaultInView?: boolean;
4005
4087
  AutoUpdateCategory?: boolean;
4088
+ AutoUpdateDisplayName?: boolean;
4089
+ AutoUpdateIncludeInUserSearchAPI?: boolean;
4006
4090
  FieldCodeName?: string;
4007
4091
  RelatedEntity?: string;
4008
4092
  RelatedEntitySchemaName?: string;
@@ -4316,6 +4400,8 @@ export declare const ErrorLogSchema: z.ZodObject<{
4316
4400
  Details: z.ZodNullable<z.ZodString>;
4317
4401
  __mj_CreatedAt: z.ZodDate;
4318
4402
  __mj_UpdatedAt: z.ZodDate;
4403
+ CompanyIntegrationRun: z.ZodNullable<z.ZodString>;
4404
+ CompanyIntegrationRunDetail: z.ZodNullable<z.ZodString>;
4319
4405
  }, "strip", z.ZodTypeAny, {
4320
4406
  ID?: string;
4321
4407
  __mj_CreatedAt?: Date;
@@ -4326,8 +4412,10 @@ export declare const ErrorLogSchema: z.ZodObject<{
4326
4412
  Category?: string;
4327
4413
  Details?: string;
4328
4414
  CompanyIntegrationRunID?: string;
4415
+ CompanyIntegrationRun?: string;
4329
4416
  CompanyIntegrationRunDetailID?: string;
4330
4417
  CreatedBy?: string;
4418
+ CompanyIntegrationRunDetail?: string;
4331
4419
  }, {
4332
4420
  ID?: string;
4333
4421
  __mj_CreatedAt?: Date;
@@ -4338,8 +4426,10 @@ export declare const ErrorLogSchema: z.ZodObject<{
4338
4426
  Category?: string;
4339
4427
  Details?: string;
4340
4428
  CompanyIntegrationRunID?: string;
4429
+ CompanyIntegrationRun?: string;
4341
4430
  CompanyIntegrationRunDetailID?: string;
4342
4431
  CreatedBy?: string;
4432
+ CompanyIntegrationRunDetail?: string;
4343
4433
  }>;
4344
4434
  export type ErrorLogEntityType = z.infer<typeof ErrorLogSchema>;
4345
4435
  /**
@@ -5121,6 +5211,8 @@ export declare const AIAgentExampleSchema: z.ZodObject<{
5121
5211
  User: z.ZodNullable<z.ZodString>;
5122
5212
  Company: z.ZodNullable<z.ZodString>;
5123
5213
  SourceConversation: z.ZodNullable<z.ZodString>;
5214
+ SourceConversationDetail: z.ZodNullable<z.ZodString>;
5215
+ SourceAIAgentRun: z.ZodNullable<z.ZodString>;
5124
5216
  EmbeddingModel: z.ZodNullable<z.ZodString>;
5125
5217
  }, "strip", z.ZodTypeAny, {
5126
5218
  ID?: string;
@@ -5141,6 +5233,8 @@ export declare const AIAgentExampleSchema: z.ZodObject<{
5141
5233
  EmbeddingVector?: string;
5142
5234
  EmbeddingModelID?: string;
5143
5235
  SourceConversation?: string;
5236
+ SourceConversationDetail?: string;
5237
+ SourceAIAgentRun?: string;
5144
5238
  Company?: string;
5145
5239
  EmbeddingModel?: string;
5146
5240
  ExampleInput?: string;
@@ -5165,6 +5259,8 @@ export declare const AIAgentExampleSchema: z.ZodObject<{
5165
5259
  EmbeddingVector?: string;
5166
5260
  EmbeddingModelID?: string;
5167
5261
  SourceConversation?: string;
5262
+ SourceConversationDetail?: string;
5263
+ SourceAIAgentRun?: string;
5168
5264
  Company?: string;
5169
5265
  EmbeddingModel?: string;
5170
5266
  ExampleInput?: string;
@@ -5345,6 +5441,8 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
5345
5441
  FinalPayloadValidationMessages: z.ZodNullable<z.ZodString>;
5346
5442
  ParentID: z.ZodNullable<z.ZodString>;
5347
5443
  Comments: z.ZodNullable<z.ZodString>;
5444
+ AgentRun: z.ZodNullable<z.ZodString>;
5445
+ Parent: z.ZodNullable<z.ZodString>;
5348
5446
  RootParentID: z.ZodNullable<z.ZodString>;
5349
5447
  }, "strip", z.ZodTypeAny, {
5350
5448
  ID?: string;
@@ -5353,6 +5451,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
5353
5451
  __mj_UpdatedAt?: Date;
5354
5452
  ParentID?: string;
5355
5453
  Status?: "Failed" | "Cancelled" | "Completed" | "Running";
5454
+ Parent?: string;
5356
5455
  RootParentID?: string;
5357
5456
  StartedAt?: Date;
5358
5457
  Success?: boolean;
@@ -5370,6 +5469,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
5370
5469
  PayloadAtEnd?: string;
5371
5470
  FinalPayloadValidationResult?: "Fail" | "Retry" | "Warn" | "Pass";
5372
5471
  FinalPayloadValidationMessages?: string;
5472
+ AgentRun?: string;
5373
5473
  }, {
5374
5474
  ID?: string;
5375
5475
  Comments?: string;
@@ -5377,6 +5477,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
5377
5477
  __mj_UpdatedAt?: Date;
5378
5478
  ParentID?: string;
5379
5479
  Status?: "Failed" | "Cancelled" | "Completed" | "Running";
5480
+ Parent?: string;
5380
5481
  RootParentID?: string;
5381
5482
  StartedAt?: Date;
5382
5483
  Success?: boolean;
@@ -5394,6 +5495,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
5394
5495
  PayloadAtEnd?: string;
5395
5496
  FinalPayloadValidationResult?: "Fail" | "Retry" | "Warn" | "Pass";
5396
5497
  FinalPayloadValidationMessages?: string;
5498
+ AgentRun?: string;
5397
5499
  }>;
5398
5500
  export type AIAgentRunStepEntityType = z.infer<typeof AIAgentRunStepSchema>;
5399
5501
  /**
@@ -6200,6 +6302,7 @@ export declare const AIPromptRunSchema: z.ZodObject<{
6200
6302
  AgentRunID?: string;
6201
6303
  Cancelled?: boolean;
6202
6304
  CompletedAt?: Date;
6305
+ AgentRun?: string;
6203
6306
  Result?: string;
6204
6307
  TotalCost?: number;
6205
6308
  CancellationReason?: string;
@@ -6250,7 +6353,6 @@ export declare const AIPromptRunSchema: z.ZodObject<{
6250
6353
  QueueTime?: number;
6251
6354
  PromptTime?: number;
6252
6355
  ModelSpecificResponseDetails?: string;
6253
- AgentRun?: string;
6254
6356
  OriginalModel?: string;
6255
6357
  RerunFromPromptRun?: string;
6256
6358
  Judge?: string;
@@ -6298,6 +6400,7 @@ export declare const AIPromptRunSchema: z.ZodObject<{
6298
6400
  AgentRunID?: string;
6299
6401
  Cancelled?: boolean;
6300
6402
  CompletedAt?: Date;
6403
+ AgentRun?: string;
6301
6404
  Result?: string;
6302
6405
  TotalCost?: number;
6303
6406
  CancellationReason?: string;
@@ -6348,7 +6451,6 @@ export declare const AIPromptRunSchema: z.ZodObject<{
6348
6451
  QueueTime?: number;
6349
6452
  PromptTime?: number;
6350
6453
  ModelSpecificResponseDetails?: string;
6351
- AgentRun?: string;
6352
6454
  OriginalModel?: string;
6353
6455
  RerunFromPromptRun?: string;
6354
6456
  Judge?: string;
@@ -6807,9 +6909,9 @@ export declare const CollectionSchema: z.ZodObject<{
6807
6909
  RootParentID?: string;
6808
6910
  Sequence?: number;
6809
6911
  Icon?: string;
6912
+ Color?: string;
6810
6913
  EnvironmentID?: string;
6811
6914
  Environment?: string;
6812
- Color?: string;
6813
6915
  OwnerID?: string;
6814
6916
  Owner?: string;
6815
6917
  }, {
@@ -6823,9 +6925,9 @@ export declare const CollectionSchema: z.ZodObject<{
6823
6925
  RootParentID?: string;
6824
6926
  Sequence?: number;
6825
6927
  Icon?: string;
6928
+ Color?: string;
6826
6929
  EnvironmentID?: string;
6827
6930
  Environment?: string;
6828
- Color?: string;
6829
6931
  OwnerID?: string;
6830
6932
  Owner?: string;
6831
6933
  }>;
@@ -7192,6 +7294,7 @@ export declare const ConversationDetailArtifactSchema: z.ZodObject<{
7192
7294
  Direction: z.ZodUnion<[z.ZodLiteral<"Input">, z.ZodLiteral<"Output">]>;
7193
7295
  __mj_CreatedAt: z.ZodDate;
7194
7296
  __mj_UpdatedAt: z.ZodDate;
7297
+ ConversationDetail: z.ZodString;
7195
7298
  ArtifactVersion: z.ZodNullable<z.ZodString>;
7196
7299
  }, "strip", z.ZodTypeAny, {
7197
7300
  ID?: string;
@@ -7201,6 +7304,7 @@ export declare const ConversationDetailArtifactSchema: z.ZodObject<{
7201
7304
  ArtifactVersionID?: string;
7202
7305
  ArtifactVersion?: string;
7203
7306
  ConversationDetailID?: string;
7307
+ ConversationDetail?: string;
7204
7308
  }, {
7205
7309
  ID?: string;
7206
7310
  __mj_CreatedAt?: Date;
@@ -7209,6 +7313,7 @@ export declare const ConversationDetailArtifactSchema: z.ZodObject<{
7209
7313
  ArtifactVersionID?: string;
7210
7314
  ArtifactVersion?: string;
7211
7315
  ConversationDetailID?: string;
7316
+ ConversationDetail?: string;
7212
7317
  }>;
7213
7318
  export type ConversationDetailArtifactEntityType = z.infer<typeof ConversationDetailArtifactSchema>;
7214
7319
  /**
@@ -7222,6 +7327,7 @@ export declare const ConversationDetailRatingSchema: z.ZodObject<{
7222
7327
  Comments: z.ZodNullable<z.ZodString>;
7223
7328
  __mj_CreatedAt: z.ZodDate;
7224
7329
  __mj_UpdatedAt: z.ZodDate;
7330
+ ConversationDetail: z.ZodString;
7225
7331
  User: z.ZodString;
7226
7332
  }, "strip", z.ZodTypeAny, {
7227
7333
  ID?: string;
@@ -7231,6 +7337,7 @@ export declare const ConversationDetailRatingSchema: z.ZodObject<{
7231
7337
  UserID?: string;
7232
7338
  User?: string;
7233
7339
  ConversationDetailID?: string;
7340
+ ConversationDetail?: string;
7234
7341
  Rating?: number;
7235
7342
  }, {
7236
7343
  ID?: string;
@@ -7240,6 +7347,7 @@ export declare const ConversationDetailRatingSchema: z.ZodObject<{
7240
7347
  UserID?: string;
7241
7348
  User?: string;
7242
7349
  ConversationDetailID?: string;
7350
+ ConversationDetail?: string;
7243
7351
  Rating?: number;
7244
7352
  }>;
7245
7353
  export type ConversationDetailRatingEntityType = z.infer<typeof ConversationDetailRatingSchema>;
@@ -7372,10 +7480,10 @@ export declare const ProjectSchema: z.ZodObject<{
7372
7480
  Parent?: string;
7373
7481
  RootParentID?: string;
7374
7482
  Icon?: string;
7483
+ Color?: string;
7375
7484
  IsArchived?: boolean;
7376
7485
  EnvironmentID?: string;
7377
7486
  Environment?: string;
7378
- Color?: string;
7379
7487
  }, {
7380
7488
  ID?: string;
7381
7489
  __mj_CreatedAt?: Date;
@@ -7386,10 +7494,10 @@ export declare const ProjectSchema: z.ZodObject<{
7386
7494
  Parent?: string;
7387
7495
  RootParentID?: string;
7388
7496
  Icon?: string;
7497
+ Color?: string;
7389
7498
  IsArchived?: boolean;
7390
7499
  EnvironmentID?: string;
7391
7500
  Environment?: string;
7392
- Color?: string;
7393
7501
  }>;
7394
7502
  export type ProjectEntityType = z.infer<typeof ProjectSchema>;
7395
7503
  /**
@@ -7869,6 +7977,7 @@ export declare const TaskSchema: z.ZodObject<{
7869
7977
  Type: z.ZodString;
7870
7978
  Environment: z.ZodString;
7871
7979
  Project: z.ZodNullable<z.ZodString>;
7980
+ ConversationDetail: z.ZodNullable<z.ZodString>;
7872
7981
  User: z.ZodNullable<z.ZodString>;
7873
7982
  Agent: z.ZodNullable<z.ZodString>;
7874
7983
  RootParentID: z.ZodNullable<z.ZodString>;
@@ -7895,6 +8004,7 @@ export declare const TaskSchema: z.ZodObject<{
7895
8004
  Project?: string;
7896
8005
  CompletedAt?: Date;
7897
8006
  ConversationDetailID?: string;
8007
+ ConversationDetail?: string;
7898
8008
  PercentComplete?: number;
7899
8009
  DueAt?: Date;
7900
8010
  }, {
@@ -7920,6 +8030,7 @@ export declare const TaskSchema: z.ZodObject<{
7920
8030
  Project?: string;
7921
8031
  CompletedAt?: Date;
7922
8032
  ConversationDetailID?: string;
8033
+ ConversationDetail?: string;
7923
8034
  PercentComplete?: number;
7924
8035
  DueAt?: Date;
7925
8036
  }>;
@@ -8333,6 +8444,35 @@ export declare const TestSchema: z.ZodObject<{
8333
8444
  RepeatCount?: number;
8334
8445
  }>;
8335
8446
  export type TestEntityType = z.infer<typeof TestSchema>;
8447
+ /**
8448
+ * zod schema definition for the entity MJ: User Settings
8449
+ */
8450
+ export declare const UserSettingSchema: z.ZodObject<{
8451
+ ID: z.ZodString;
8452
+ UserID: z.ZodString;
8453
+ Setting: z.ZodString;
8454
+ Value: z.ZodNullable<z.ZodString>;
8455
+ __mj_CreatedAt: z.ZodDate;
8456
+ __mj_UpdatedAt: z.ZodDate;
8457
+ User: z.ZodString;
8458
+ }, "strip", z.ZodTypeAny, {
8459
+ ID?: string;
8460
+ __mj_CreatedAt?: Date;
8461
+ __mj_UpdatedAt?: Date;
8462
+ UserID?: string;
8463
+ User?: string;
8464
+ Value?: string;
8465
+ Setting?: string;
8466
+ }, {
8467
+ ID?: string;
8468
+ __mj_CreatedAt?: Date;
8469
+ __mj_UpdatedAt?: Date;
8470
+ UserID?: string;
8471
+ User?: string;
8472
+ Value?: string;
8473
+ Setting?: string;
8474
+ }>;
8475
+ export type UserSettingEntityType = z.infer<typeof UserSettingSchema>;
8336
8476
  /**
8337
8477
  * zod schema definition for the entity Output Delivery Types
8338
8478
  */
@@ -8819,6 +8959,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
8819
8959
  MatchProbability: z.ZodNullable<z.ZodNumber>;
8820
8960
  __mj_CreatedAt: z.ZodDate;
8821
8961
  __mj_UpdatedAt: z.ZodDate;
8962
+ Recommendation: z.ZodString;
8822
8963
  DestinationEntity: z.ZodString;
8823
8964
  }, "strip", z.ZodTypeAny, {
8824
8965
  ID?: string;
@@ -8828,6 +8969,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
8828
8969
  RecommendationID?: string;
8829
8970
  DestinationEntityID?: string;
8830
8971
  DestinationEntityRecordID?: string;
8972
+ Recommendation?: string;
8831
8973
  DestinationEntity?: string;
8832
8974
  }, {
8833
8975
  ID?: string;
@@ -8837,6 +8979,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
8837
8979
  RecommendationID?: string;
8838
8980
  DestinationEntityID?: string;
8839
8981
  DestinationEntityRecordID?: string;
8982
+ Recommendation?: string;
8840
8983
  DestinationEntity?: string;
8841
8984
  }>;
8842
8985
  export type RecommendationItemEntityType = z.infer<typeof RecommendationItemSchema>;
@@ -8914,6 +9057,7 @@ export declare const RecommendationSchema: z.ZodObject<{
8914
9057
  SourceEntityRecordID: z.ZodString;
8915
9058
  __mj_CreatedAt: z.ZodDate;
8916
9059
  __mj_UpdatedAt: z.ZodDate;
9060
+ RecommendationRun: z.ZodString;
8917
9061
  SourceEntity: z.ZodString;
8918
9062
  }, "strip", z.ZodTypeAny, {
8919
9063
  ID?: string;
@@ -8923,6 +9067,7 @@ export declare const RecommendationSchema: z.ZodObject<{
8923
9067
  SourceEntity?: string;
8924
9068
  RecommendationRunID?: string;
8925
9069
  SourceEntityRecordID?: string;
9070
+ RecommendationRun?: string;
8926
9071
  }, {
8927
9072
  ID?: string;
8928
9073
  __mj_CreatedAt?: Date;
@@ -8931,6 +9076,7 @@ export declare const RecommendationSchema: z.ZodObject<{
8931
9076
  SourceEntity?: string;
8932
9077
  RecommendationRunID?: string;
8933
9078
  SourceEntityRecordID?: string;
9079
+ RecommendationRun?: string;
8934
9080
  }>;
8935
9081
  export type RecommendationEntityType = z.infer<typeof RecommendationSchema>;
8936
9082
  /**
@@ -8988,6 +9134,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
8988
9134
  UpdatedAt: z.ZodDate;
8989
9135
  Entity: z.ZodString;
8990
9136
  User: z.ZodString;
9137
+ ReplayRun: z.ZodNullable<z.ZodString>;
8991
9138
  Integration: z.ZodNullable<z.ZodString>;
8992
9139
  }, "strip", z.ZodTypeAny, {
8993
9140
  ID?: string;
@@ -9010,6 +9157,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
9010
9157
  ReplayRunID?: string;
9011
9158
  CreatedAt?: Date;
9012
9159
  UpdatedAt?: Date;
9160
+ ReplayRun?: string;
9013
9161
  }, {
9014
9162
  ID?: string;
9015
9163
  Comments?: string;
@@ -9031,6 +9179,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
9031
9179
  ReplayRunID?: string;
9032
9180
  CreatedAt?: Date;
9033
9181
  UpdatedAt?: Date;
9182
+ ReplayRun?: string;
9034
9183
  }>;
9035
9184
  export type RecordChangeEntityType = z.infer<typeof RecordChangeSchema>;
9036
9185
  /**
@@ -9044,12 +9193,14 @@ export declare const RecordMergeDeletionLogSchema: z.ZodObject<{
9044
9193
  ProcessingLog: z.ZodNullable<z.ZodString>;
9045
9194
  __mj_CreatedAt: z.ZodDate;
9046
9195
  __mj_UpdatedAt: z.ZodDate;
9196
+ RecordMergeLog: z.ZodString;
9047
9197
  }, "strip", z.ZodTypeAny, {
9048
9198
  ID?: string;
9049
9199
  __mj_CreatedAt?: Date;
9050
9200
  __mj_UpdatedAt?: Date;
9051
9201
  Status?: "Pending" | "Complete" | "Error";
9052
9202
  RecordMergeLogID?: string;
9203
+ RecordMergeLog?: string;
9053
9204
  DeletedRecordID?: string;
9054
9205
  ProcessingLog?: string;
9055
9206
  }, {
@@ -9058,6 +9209,7 @@ export declare const RecordMergeDeletionLogSchema: z.ZodObject<{
9058
9209
  __mj_UpdatedAt?: Date;
9059
9210
  Status?: "Pending" | "Complete" | "Error";
9060
9211
  RecordMergeLogID?: string;
9212
+ RecordMergeLog?: string;
9061
9213
  DeletedRecordID?: string;
9062
9214
  ProcessingLog?: string;
9063
9215
  }>;
@@ -9215,6 +9367,7 @@ export declare const ReportSchema: z.ZodObject<{
9215
9367
  Category: z.ZodNullable<z.ZodString>;
9216
9368
  User: z.ZodString;
9217
9369
  Conversation: z.ZodNullable<z.ZodString>;
9370
+ ConversationDetail: z.ZodNullable<z.ZodString>;
9218
9371
  DataContext: z.ZodNullable<z.ZodString>;
9219
9372
  OutputTriggerType: z.ZodNullable<z.ZodString>;
9220
9373
  OutputFormatType: z.ZodNullable<z.ZodString>;
@@ -9240,6 +9393,7 @@ export declare const ReportSchema: z.ZodObject<{
9240
9393
  Environment?: string;
9241
9394
  Thumbnail?: string;
9242
9395
  ConversationDetailID?: string;
9396
+ ConversationDetail?: string;
9243
9397
  SharingScope?: "None" | "Specific" | "Everyone";
9244
9398
  OutputTriggerTypeID?: string;
9245
9399
  OutputFormatTypeID?: string;
@@ -9270,6 +9424,7 @@ export declare const ReportSchema: z.ZodObject<{
9270
9424
  Environment?: string;
9271
9425
  Thumbnail?: string;
9272
9426
  ConversationDetailID?: string;
9427
+ ConversationDetail?: string;
9273
9428
  SharingScope?: "None" | "Specific" | "Everyone";
9274
9429
  OutputTriggerTypeID?: string;
9275
9430
  OutputFormatTypeID?: string;
@@ -9384,6 +9539,7 @@ export declare const ResourceTypeSchema: z.ZodObject<{
9384
9539
  __mj_CreatedAt: z.ZodDate;
9385
9540
  __mj_UpdatedAt: z.ZodDate;
9386
9541
  CategoryEntityID: z.ZodNullable<z.ZodString>;
9542
+ DriverClass: z.ZodNullable<z.ZodString>;
9387
9543
  Entity: z.ZodNullable<z.ZodString>;
9388
9544
  CategoryEntity: z.ZodNullable<z.ZodString>;
9389
9545
  }, "strip", z.ZodTypeAny, {
@@ -9392,6 +9548,7 @@ export declare const ResourceTypeSchema: z.ZodObject<{
9392
9548
  __mj_UpdatedAt?: Date;
9393
9549
  Name?: string;
9394
9550
  Description?: string;
9551
+ DriverClass?: string;
9395
9552
  EntityID?: string;
9396
9553
  Entity?: string;
9397
9554
  Icon?: string;
@@ -9404,6 +9561,7 @@ export declare const ResourceTypeSchema: z.ZodObject<{
9404
9561
  __mj_UpdatedAt?: Date;
9405
9562
  Name?: string;
9406
9563
  Description?: string;
9564
+ DriverClass?: string;
9407
9565
  EntityID?: string;
9408
9566
  Entity?: string;
9409
9567
  Icon?: string;
@@ -9819,6 +9977,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
9819
9977
  TemplateContentID: z.ZodNullable<z.ZodString>;
9820
9978
  Template: z.ZodString;
9821
9979
  Entity: z.ZodNullable<z.ZodString>;
9980
+ TemplateContent: z.ZodNullable<z.ZodString>;
9822
9981
  }, "strip", z.ZodTypeAny, {
9823
9982
  ID?: string;
9824
9983
  __mj_CreatedAt?: Date;
@@ -9838,6 +9997,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
9838
9997
  LinkedParameterName?: string;
9839
9998
  LinkedParameterField?: string;
9840
9999
  TemplateContentID?: string;
10000
+ TemplateContent?: string;
9841
10001
  }, {
9842
10002
  ID?: string;
9843
10003
  __mj_CreatedAt?: Date;
@@ -9857,6 +10017,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
9857
10017
  LinkedParameterName?: string;
9858
10018
  LinkedParameterField?: string;
9859
10019
  TemplateContentID?: string;
10020
+ TemplateContent?: string;
9860
10021
  }>;
9861
10022
  export type TemplateParamEntityType = z.infer<typeof TemplateParamSchema>;
9862
10023
  /**
@@ -10270,6 +10431,7 @@ export declare const UserViewSchema: z.ZodObject<{
10270
10431
  __mj_CreatedAt: z.ZodDate;
10271
10432
  __mj_UpdatedAt: z.ZodDate;
10272
10433
  Thumbnail: z.ZodNullable<z.ZodString>;
10434
+ CardState: z.ZodNullable<z.ZodString>;
10273
10435
  UserName: z.ZodString;
10274
10436
  UserFirstLast: z.ZodNullable<z.ZodString>;
10275
10437
  UserEmail: z.ZodString;
@@ -10303,6 +10465,7 @@ export declare const UserViewSchema: z.ZodObject<{
10303
10465
  SmartFilterExplanation?: string;
10304
10466
  CustomWhereClause?: boolean;
10305
10467
  SortState?: string;
10468
+ CardState?: string;
10306
10469
  UserType?: string;
10307
10470
  }, {
10308
10471
  ID?: string;
@@ -10331,6 +10494,7 @@ export declare const UserViewSchema: z.ZodObject<{
10331
10494
  SmartFilterExplanation?: string;
10332
10495
  CustomWhereClause?: boolean;
10333
10496
  SortState?: string;
10497
+ CardState?: string;
10334
10498
  UserType?: string;
10335
10499
  }>;
10336
10500
  export type UserViewEntityType = z.infer<typeof UserViewSchema>;
@@ -10684,6 +10848,7 @@ export declare const WorkspaceSchema: z.ZodObject<{
10684
10848
  UserID: z.ZodString;
10685
10849
  __mj_CreatedAt: z.ZodDate;
10686
10850
  __mj_UpdatedAt: z.ZodDate;
10851
+ Configuration: z.ZodNullable<z.ZodString>;
10687
10852
  User: z.ZodString;
10688
10853
  }, "strip", z.ZodTypeAny, {
10689
10854
  ID?: string;
@@ -10693,6 +10858,7 @@ export declare const WorkspaceSchema: z.ZodObject<{
10693
10858
  Description?: string;
10694
10859
  UserID?: string;
10695
10860
  User?: string;
10861
+ Configuration?: string;
10696
10862
  }, {
10697
10863
  ID?: string;
10698
10864
  __mj_CreatedAt?: Date;
@@ -10701,6 +10867,7 @@ export declare const WorkspaceSchema: z.ZodObject<{
10701
10867
  Description?: string;
10702
10868
  UserID?: string;
10703
10869
  User?: string;
10870
+ Configuration?: string;
10704
10871
  }>;
10705
10872
  export type WorkspaceEntityType = z.infer<typeof WorkspaceSchema>;
10706
10873
  /**
@@ -12607,6 +12774,18 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
12607
12774
  */
12608
12775
  get SourceConversation(): string | null;
12609
12776
  /**
12777
+ * * Field Name: SourceConversationDetail
12778
+ * * Display Name: Source Conversation Detail
12779
+ * * SQL Data Type: nvarchar(MAX)
12780
+ */
12781
+ get SourceConversationDetail(): string | null;
12782
+ /**
12783
+ * * Field Name: SourceAIAgentRun
12784
+ * * Display Name: Source AI Agent Run
12785
+ * * SQL Data Type: nvarchar(255)
12786
+ */
12787
+ get SourceAIAgentRun(): string | null;
12788
+ /**
12610
12789
  * * Field Name: Company
12611
12790
  * * Display Name: Company
12612
12791
  * * SQL Data Type: nvarchar(50)
@@ -14705,6 +14884,12 @@ export declare class AIResultCacheEntity extends BaseEntity<AIResultCacheEntityT
14705
14884
  * * SQL Data Type: nvarchar(100)
14706
14885
  */
14707
14886
  get Configuration(): string | null;
14887
+ /**
14888
+ * * Field Name: PromptRun
14889
+ * * Display Name: Prompt Run
14890
+ * * SQL Data Type: nvarchar(255)
14891
+ */
14892
+ get PromptRun(): string | null;
14708
14893
  }
14709
14894
  /**
14710
14895
  * Application Entities - strongly typed entity sub-class
@@ -14927,6 +15112,7 @@ export declare class ApplicationEntity extends BaseEntity<ApplicationEntityType>
14927
15112
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
14928
15113
  /**
14929
15114
  * * Field Name: ID
15115
+ * * Display Name: ID
14930
15116
  * * SQL Data Type: uniqueidentifier
14931
15117
  * * Default Value: newsequentialid()
14932
15118
  */
@@ -14934,12 +15120,14 @@ export declare class ApplicationEntity extends BaseEntity<ApplicationEntityType>
14934
15120
  set ID(value: string);
14935
15121
  /**
14936
15122
  * * Field Name: Name
15123
+ * * Display Name: Name
14937
15124
  * * SQL Data Type: nvarchar(100)
14938
15125
  */
14939
15126
  get Name(): string;
14940
15127
  set Name(value: string);
14941
15128
  /**
14942
15129
  * * Field Name: Description
15130
+ * * Display Name: Description
14943
15131
  * * SQL Data Type: nvarchar(MAX)
14944
15132
  */
14945
15133
  get Description(): string | null;
@@ -14963,14 +15151,14 @@ export declare class ApplicationEntity extends BaseEntity<ApplicationEntityType>
14963
15151
  set DefaultForNewUser(value: boolean);
14964
15152
  /**
14965
15153
  * * Field Name: __mj_CreatedAt
14966
- * * Display Name: __mj _Created At
15154
+ * * Display Name: Created At
14967
15155
  * * SQL Data Type: datetimeoffset
14968
15156
  * * Default Value: getutcdate()
14969
15157
  */
14970
15158
  get __mj_CreatedAt(): Date;
14971
15159
  /**
14972
15160
  * * Field Name: __mj_UpdatedAt
14973
- * * Display Name: __mj _Updated At
15161
+ * * Display Name: Updated At
14974
15162
  * * SQL Data Type: datetimeoffset
14975
15163
  * * Default Value: getutcdate()
14976
15164
  */
@@ -14983,6 +15171,106 @@ export declare class ApplicationEntity extends BaseEntity<ApplicationEntityType>
14983
15171
  */
14984
15172
  get SchemaAutoAddNewEntities(): string | null;
14985
15173
  set SchemaAutoAddNewEntities(value: string | null);
15174
+ /**
15175
+ * * Field Name: Color
15176
+ * * Display Name: Color
15177
+ * * SQL Data Type: nvarchar(20)
15178
+ * * Description: Hex color code for visual theming (e.g., #4caf50)
15179
+ */
15180
+ get Color(): string | null;
15181
+ set Color(value: string | null);
15182
+ /**
15183
+ * * Field Name: DefaultNavItems
15184
+ * * Display Name: Default Nav Items
15185
+ * * SQL Data Type: nvarchar(MAX)
15186
+ * * Description: JSON array of default navigation items for this application. Parsed by BaseApplication.GetNavItems()
15187
+ */
15188
+ get DefaultNavItems(): string | null;
15189
+ set DefaultNavItems(value: string | null);
15190
+ /**
15191
+ * * Field Name: ClassName
15192
+ * * Display Name: Class Name
15193
+ * * SQL Data Type: nvarchar(255)
15194
+ * * Description: TypeScript class name for ClassFactory registration (e.g., CRMApplication)
15195
+ */
15196
+ get ClassName(): string | null;
15197
+ set ClassName(value: string | null);
15198
+ /**
15199
+ * * Field Name: DefaultSequence
15200
+ * * Display Name: Default Sequence
15201
+ * * SQL Data Type: int
15202
+ * * Default Value: 100
15203
+ * * Description: Default sequence position when adding this application to a new user's User Applications. Lower values appear first. Used when DefaultForNewUser is true.
15204
+ */
15205
+ get DefaultSequence(): number;
15206
+ set DefaultSequence(value: number);
15207
+ /**
15208
+ * * Field Name: Status
15209
+ * * Display Name: Status
15210
+ * * SQL Data Type: nvarchar(20)
15211
+ * * Default Value: Active
15212
+ * * Value List Type: List
15213
+ * * Possible Values
15214
+ * * Active
15215
+ * * Deprecated
15216
+ * * Disabled
15217
+ * * Pending
15218
+ * * Description: Application lifecycle status. Pending = not yet ready, Active = available for use, Disabled = temporarily unavailable, Deprecated = being phased out. Only Active applications are shown to users.
15219
+ */
15220
+ get Status(): 'Active' | 'Deprecated' | 'Disabled' | 'Pending';
15221
+ set Status(value: 'Active' | 'Deprecated' | 'Disabled' | 'Pending');
15222
+ /**
15223
+ * * Field Name: NavigationStyle
15224
+ * * Display Name: Navigation Style
15225
+ * * SQL Data Type: nvarchar(20)
15226
+ * * Default Value: App Switcher
15227
+ * * Value List Type: List
15228
+ * * Possible Values
15229
+ * * App Switcher
15230
+ * * Both
15231
+ * * Nav Bar
15232
+ * * Description: How the application appears in navigation. App Switcher = only in dropdown menu, Nav Bar = permanent icon in top nav, Both = shown in both locations.
15233
+ */
15234
+ get NavigationStyle(): 'App Switcher' | 'Both' | 'Nav Bar';
15235
+ set NavigationStyle(value: 'App Switcher' | 'Both' | 'Nav Bar');
15236
+ /**
15237
+ * * Field Name: TopNavLocation
15238
+ * * Display Name: Top Nav Location
15239
+ * * SQL Data Type: nvarchar(30)
15240
+ * * Value List Type: List
15241
+ * * Possible Values
15242
+ * * Left of App Switcher
15243
+ * * Left of User Menu
15244
+ * * Description: Position of the permanent nav icon when NavigationStyle is Nav Bar or Both. Left of App Switcher = appears before the app switcher, Left of User Menu = appears near the user avatar. Ignored when NavigationStyle is App Switcher.
15245
+ */
15246
+ get TopNavLocation(): 'Left of App Switcher' | 'Left of User Menu' | null;
15247
+ set TopNavLocation(value: 'Left of App Switcher' | 'Left of User Menu' | null);
15248
+ /**
15249
+ * * Field Name: HideNavBarIconWhenActive
15250
+ * * Display Name: Hide Nav Bar Icon When Active
15251
+ * * SQL Data Type: bit
15252
+ * * Default Value: 0
15253
+ * * Description: When true, the Nav Bar icon for this application is hidden when the application is active. Useful for launcher-style apps like Home that should only be visible when the user is NOT in that app. Only applies when NavigationStyle is Nav Bar or Both.
15254
+ */
15255
+ get HideNavBarIconWhenActive(): boolean;
15256
+ set HideNavBarIconWhenActive(value: boolean);
15257
+ /**
15258
+ * * Field Name: Path
15259
+ * * Display Name: Path
15260
+ * * SQL Data Type: nvarchar(100)
15261
+ * * Description: URL-friendly slug for the application (e.g., "data-explorer" for "Data Explorer"). Used in URLs instead of the full Name. Auto-generated from Name when AutoUpdatePath is true. Must be unique across all applications.
15262
+ */
15263
+ get Path(): string;
15264
+ set Path(value: string);
15265
+ /**
15266
+ * * Field Name: AutoUpdatePath
15267
+ * * Display Name: Auto Update Path
15268
+ * * SQL Data Type: bit
15269
+ * * Default Value: 1
15270
+ * * Description: When true, Path is automatically generated from Name on save. Set to false to manually control the Path value. Defaults to true for new applications.
15271
+ */
15272
+ get AutoUpdatePath(): boolean;
15273
+ set AutoUpdatePath(value: boolean);
14986
15274
  }
14987
15275
  /**
14988
15276
  * Audit Log Types - strongly typed entity sub-class
@@ -15627,6 +15915,12 @@ export declare class CommunicationLogEntity extends BaseEntity<CommunicationLogE
15627
15915
  * * SQL Data Type: nvarchar(255)
15628
15916
  */
15629
15917
  get CommunicationProviderMessageType(): string;
15918
+ /**
15919
+ * * Field Name: CommunicationRun
15920
+ * * Display Name: Communication Run
15921
+ * * SQL Data Type: nvarchar(100)
15922
+ */
15923
+ get CommunicationRun(): string | null;
15630
15924
  }
15631
15925
  /**
15632
15926
  * Communication Provider Message Types - strongly typed entity sub-class
@@ -16264,6 +16558,12 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity<Compan
16264
16558
  * * Default Value: getutcdate()
16265
16559
  */
16266
16560
  get __mj_UpdatedAt(): Date;
16561
+ /**
16562
+ * * Field Name: CompanyIntegrationRun
16563
+ * * Display Name: Company Integration Run
16564
+ * * SQL Data Type: nvarchar(100)
16565
+ */
16566
+ get CompanyIntegrationRun(): string;
16267
16567
  }
16268
16568
  /**
16269
16569
  * Company Integration Run Details - strongly typed entity sub-class
@@ -19021,6 +19321,18 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity<DuplicateR
19021
19321
  * * Default Value: getutcdate()
19022
19322
  */
19023
19323
  get __mj_UpdatedAt(): Date;
19324
+ /**
19325
+ * * Field Name: DuplicateRunDetail
19326
+ * * Display Name: Duplicate Run Detail
19327
+ * * SQL Data Type: nvarchar(500)
19328
+ */
19329
+ get DuplicateRunDetail(): string;
19330
+ /**
19331
+ * * Field Name: RecordMergeLog
19332
+ * * Display Name: Record Merge Log
19333
+ * * SQL Data Type: nvarchar(450)
19334
+ */
19335
+ get RecordMergeLog(): string | null;
19024
19336
  }
19025
19337
  /**
19026
19338
  * Duplicate Run Details - strongly typed entity sub-class
@@ -19138,6 +19450,12 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
19138
19450
  * * Default Value: getutcdate()
19139
19451
  */
19140
19452
  get __mj_UpdatedAt(): Date;
19453
+ /**
19454
+ * * Field Name: DuplicateRun
19455
+ * * Display Name: Duplicate Run
19456
+ * * SQL Data Type: nvarchar(255)
19457
+ */
19458
+ get DuplicateRun(): string;
19141
19459
  }
19142
19460
  /**
19143
19461
  * Duplicate Runs - strongly typed entity sub-class
@@ -19381,6 +19699,12 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
19381
19699
  */
19382
19700
  get __mj_UpdatedAt(): Date;
19383
19701
  /**
19702
+ * * Field Name: Employee
19703
+ * * Display Name: Employee
19704
+ * * SQL Data Type: nvarchar(81)
19705
+ */
19706
+ get Employee(): string | null;
19707
+ /**
19384
19708
  * * Field Name: CompanyIntegration
19385
19709
  * * Display Name: Company Integration
19386
19710
  * * SQL Data Type: nvarchar(255)
@@ -19450,6 +19774,12 @@ export declare class EmployeeRoleEntity extends BaseEntity<EmployeeRoleEntityTyp
19450
19774
  */
19451
19775
  get __mj_UpdatedAt(): Date;
19452
19776
  /**
19777
+ * * Field Name: Employee
19778
+ * * Display Name: Employee
19779
+ * * SQL Data Type: nvarchar(81)
19780
+ */
19781
+ get Employee(): string | null;
19782
+ /**
19453
19783
  * * Field Name: Role
19454
19784
  * * Display Name: Role
19455
19785
  * * SQL Data Type: nvarchar(50)
@@ -19519,6 +19849,12 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
19519
19849
  */
19520
19850
  get __mj_UpdatedAt(): Date;
19521
19851
  /**
19852
+ * * Field Name: Employee
19853
+ * * Display Name: Employee
19854
+ * * SQL Data Type: nvarchar(81)
19855
+ */
19856
+ get Employee(): string | null;
19857
+ /**
19522
19858
  * * Field Name: Skill
19523
19859
  * * Display Name: Skill
19524
19860
  * * SQL Data Type: nvarchar(50)
@@ -20331,6 +20667,18 @@ export declare class EntityActionFilterEntity extends BaseEntity<EntityActionFil
20331
20667
  * * Default Value: getutcdate()
20332
20668
  */
20333
20669
  get __mj_UpdatedAt(): Date;
20670
+ /**
20671
+ * * Field Name: EntityAction
20672
+ * * Display Name: Entity Action
20673
+ * * SQL Data Type: nvarchar(425)
20674
+ */
20675
+ get EntityAction(): string;
20676
+ /**
20677
+ * * Field Name: ActionFilter
20678
+ * * Display Name: Action Filter
20679
+ * * SQL Data Type: nvarchar(MAX)
20680
+ */
20681
+ get ActionFilter(): string;
20334
20682
  }
20335
20683
  /**
20336
20684
  * Entity Action Invocation Types - strongly typed entity sub-class
@@ -20481,6 +20829,12 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
20481
20829
  */
20482
20830
  get __mj_UpdatedAt(): Date;
20483
20831
  /**
20832
+ * * Field Name: EntityAction
20833
+ * * Display Name: Entity Action
20834
+ * * SQL Data Type: nvarchar(425)
20835
+ */
20836
+ get EntityAction(): string;
20837
+ /**
20484
20838
  * * Field Name: InvocationType
20485
20839
  * * Display Name: Invocation Type
20486
20840
  * * SQL Data Type: nvarchar(255)
@@ -20580,6 +20934,12 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
20580
20934
  */
20581
20935
  get __mj_UpdatedAt(): Date;
20582
20936
  /**
20937
+ * * Field Name: EntityAction
20938
+ * * Display Name: Entity Action
20939
+ * * SQL Data Type: nvarchar(425)
20940
+ */
20941
+ get EntityAction(): string;
20942
+ /**
20583
20943
  * * Field Name: ActionParam
20584
20944
  * * Display Name: Action Param
20585
20945
  * * SQL Data Type: nvarchar(255)
@@ -20922,6 +21282,12 @@ export declare class EntityCommunicationFieldEntity extends BaseEntity<EntityCom
20922
21282
  * * Default Value: getutcdate()
20923
21283
  */
20924
21284
  get __mj_UpdatedAt(): Date;
21285
+ /**
21286
+ * * Field Name: EntityCommunicationMessageType
21287
+ * * Display Name: Entity Communication Message Type
21288
+ * * SQL Data Type: nvarchar(100)
21289
+ */
21290
+ get EntityCommunicationMessageType(): string;
20925
21291
  }
20926
21292
  /**
20927
21293
  * Entity Communication Message Types - strongly typed entity sub-class
@@ -21539,6 +21905,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21539
21905
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
21540
21906
  /**
21541
21907
  * * Field Name: ID
21908
+ * * Display Name: ID
21542
21909
  * * SQL Data Type: uniqueidentifier
21543
21910
  * * Default Value: newsequentialid()
21544
21911
  */
@@ -21546,13 +21913,14 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21546
21913
  set ID(value: string);
21547
21914
  /**
21548
21915
  * * Field Name: EntityID
21549
- * * Display Name: Entity ID
21916
+ * * Display Name: Entity
21550
21917
  * * SQL Data Type: uniqueidentifier
21551
21918
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
21552
21919
  */
21553
21920
  get EntityID(): string;
21554
21921
  /**
21555
21922
  * * Field Name: Sequence
21923
+ * * Display Name: Sequence
21556
21924
  * * SQL Data Type: int
21557
21925
  * * Default Value: 0
21558
21926
  * * Description: Display order of the field within the entity
@@ -21560,6 +21928,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21560
21928
  get Sequence(): number;
21561
21929
  /**
21562
21930
  * * Field Name: Name
21931
+ * * Display Name: Name
21563
21932
  * * SQL Data Type: nvarchar(255)
21564
21933
  * * Description: Name of the field within the database table
21565
21934
  */
@@ -21574,6 +21943,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21574
21943
  set DisplayName(value: string | null);
21575
21944
  /**
21576
21945
  * * Field Name: Description
21946
+ * * Display Name: Description
21577
21947
  * * SQL Data Type: nvarchar(MAX)
21578
21948
  * * Description: Descriptive text explaining the purpose of the field
21579
21949
  */
@@ -21590,7 +21960,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21590
21960
  set AutoUpdateDescription(value: boolean);
21591
21961
  /**
21592
21962
  * * Field Name: IsPrimaryKey
21593
- * * Display Name: Is Primary Key
21963
+ * * Display Name: Primary Key
21594
21964
  * * SQL Data Type: bit
21595
21965
  * * Default Value: 0
21596
21966
  * * Description: Indicates if the field is part of the primary key for the entity (auto maintained by CodeGen)
@@ -21599,7 +21969,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21599
21969
  set IsPrimaryKey(value: boolean);
21600
21970
  /**
21601
21971
  * * Field Name: IsUnique
21602
- * * Display Name: Is Unique
21972
+ * * Display Name: Unique
21603
21973
  * * SQL Data Type: bit
21604
21974
  * * Default Value: 0
21605
21975
  * * Description: Indicates if the field must have unique values within the entity.
@@ -21616,24 +21986,28 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21616
21986
  set Category(value: string | null);
21617
21987
  /**
21618
21988
  * * Field Name: Type
21989
+ * * Display Name: Type
21619
21990
  * * SQL Data Type: nvarchar(100)
21620
21991
  * * Description: SQL Data type (auto maintained by CodeGen)
21621
21992
  */
21622
21993
  get Type(): string;
21623
21994
  /**
21624
21995
  * * Field Name: Length
21996
+ * * Display Name: Length
21625
21997
  * * SQL Data Type: int
21626
21998
  * * Description: SQL data length (auto maintained by CodeGen)
21627
21999
  */
21628
22000
  get Length(): number | null;
21629
22001
  /**
21630
22002
  * * Field Name: Precision
22003
+ * * Display Name: Precision
21631
22004
  * * SQL Data Type: int
21632
22005
  * * Description: SQL precision (auto maintained by CodeGen)
21633
22006
  */
21634
22007
  get Precision(): number | null;
21635
22008
  /**
21636
22009
  * * Field Name: Scale
22010
+ * * Display Name: Scale
21637
22011
  * * SQL Data Type: int
21638
22012
  * * Description: SQL scale (auto maintained by CodeGen)
21639
22013
  */
@@ -21808,7 +22182,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21808
22182
  set GeneratedFormSection(value: 'Category' | 'Details' | 'Top');
21809
22183
  /**
21810
22184
  * * Field Name: IsVirtual
21811
- * * Display Name: Is Virtual
22185
+ * * Display Name: Virtual
21812
22186
  * * SQL Data Type: bit
21813
22187
  * * Default Value: 0
21814
22188
  * * Description: NULL
@@ -21816,7 +22190,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21816
22190
  get IsVirtual(): boolean;
21817
22191
  /**
21818
22192
  * * Field Name: IsNameField
21819
- * * Display Name: Is Name Field
22193
+ * * Display Name: Name Field
21820
22194
  * * SQL Data Type: bit
21821
22195
  * * Default Value: 0
21822
22196
  * * Description: If set to 1, this column will be used as the "Name" field for the entity and will be used to display the name of the record in various places in the UI.
@@ -21825,7 +22199,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21825
22199
  set IsNameField(value: boolean);
21826
22200
  /**
21827
22201
  * * Field Name: RelatedEntityID
21828
- * * Display Name: RelatedEntity ID
22202
+ * * Display Name: Related Entity
21829
22203
  * * SQL Data Type: uniqueidentifier
21830
22204
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
21831
22205
  */
@@ -21867,7 +22241,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21867
22241
  set RelatedEntityDisplayType(value: string);
21868
22242
  /**
21869
22243
  * * Field Name: EntityIDFieldName
21870
- * * Display Name: Entity IDField Name
22244
+ * * Display Name: Entity ID Field Name
21871
22245
  * * SQL Data Type: nvarchar(100)
21872
22246
  * * Description: Optional, used for "Soft Keys" to link records to different entity/record combinations on a per-record basis (for example the FileEntityRecordLink table has an EntityID/RecordID field pair. For that entity, the RecordID specifies "EntityID" for this field. This information allows MJ to detect soft keys/links for dependency detection, merging and for preventing orphaned soft-linked records during delete operations.
21873
22247
  */
@@ -21875,14 +22249,14 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21875
22249
  set EntityIDFieldName(value: string | null);
21876
22250
  /**
21877
22251
  * * Field Name: __mj_CreatedAt
21878
- * * Display Name: __mj _Created At
22252
+ * * Display Name: Created At
21879
22253
  * * SQL Data Type: datetimeoffset
21880
22254
  * * Default Value: getutcdate()
21881
22255
  */
21882
22256
  get __mj_CreatedAt(): Date;
21883
22257
  /**
21884
22258
  * * Field Name: __mj_UpdatedAt
21885
- * * Display Name: __mj _Updated At
22259
+ * * Display Name: Updated At
21886
22260
  * * SQL Data Type: datetimeoffset
21887
22261
  * * Default Value: getutcdate()
21888
22262
  */
@@ -21960,6 +22334,24 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21960
22334
  get AutoUpdateCategory(): boolean;
21961
22335
  set AutoUpdateCategory(value: boolean);
21962
22336
  /**
22337
+ * * Field Name: AutoUpdateDisplayName
22338
+ * * Display Name: Auto Update Display Name
22339
+ * * SQL Data Type: bit
22340
+ * * Default Value: 1
22341
+ * * Description: When 1, allows system/LLM to auto-update DisplayName during CodeGen; when 0, user has locked this field
22342
+ */
22343
+ get AutoUpdateDisplayName(): boolean;
22344
+ set AutoUpdateDisplayName(value: boolean);
22345
+ /**
22346
+ * * Field Name: AutoUpdateIncludeInUserSearchAPI
22347
+ * * Display Name: Auto Update Include In User Search API
22348
+ * * SQL Data Type: bit
22349
+ * * Default Value: 1
22350
+ * * Description: When 1, allows system/LLM to auto-update IncludeInUserSearchAPI during CodeGen; when 0, user has locked this field
22351
+ */
22352
+ get AutoUpdateIncludeInUserSearchAPI(): boolean;
22353
+ set AutoUpdateIncludeInUserSearchAPI(value: boolean);
22354
+ /**
21963
22355
  * * Field Name: FieldCodeName
21964
22356
  * * Display Name: Field Code Name
21965
22357
  * * SQL Data Type: nvarchar(MAX)
@@ -21967,6 +22359,7 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
21967
22359
  get FieldCodeName(): string | null;
21968
22360
  /**
21969
22361
  * * Field Name: Entity
22362
+ * * Display Name: Entity
21970
22363
  * * SQL Data Type: nvarchar(255)
21971
22364
  */
21972
22365
  get Entity(): string;
@@ -22900,6 +23293,18 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
22900
23293
  * * Default Value: getutcdate()
22901
23294
  */
22902
23295
  get __mj_UpdatedAt(): Date;
23296
+ /**
23297
+ * * Field Name: CompanyIntegrationRun
23298
+ * * Display Name: Company Integration Run
23299
+ * * SQL Data Type: nvarchar(100)
23300
+ */
23301
+ get CompanyIntegrationRun(): string | null;
23302
+ /**
23303
+ * * Field Name: CompanyIntegrationRunDetail
23304
+ * * Display Name: Company Integration Run Detail
23305
+ * * SQL Data Type: nvarchar(450)
23306
+ */
23307
+ get CompanyIntegrationRunDetail(): string | null;
22903
23308
  }
22904
23309
  /**
22905
23310
  * Explorer Navigation Items - strongly typed entity sub-class
@@ -22911,6 +23316,7 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
22911
23316
  * @extends {BaseEntity}
22912
23317
  * @class
22913
23318
  * @public
23319
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
22914
23320
  */
22915
23321
  export declare class ExplorerNavigationItemEntity extends BaseEntity<ExplorerNavigationItemEntityType> {
22916
23322
  /**
@@ -25216,6 +25622,18 @@ export declare class AIAgentExampleEntity extends BaseEntity<AIAgentExampleEntit
25216
25622
  */
25217
25623
  get SourceConversation(): string | null;
25218
25624
  /**
25625
+ * * Field Name: SourceConversationDetail
25626
+ * * Display Name: Source Conversation Detail
25627
+ * * SQL Data Type: nvarchar(MAX)
25628
+ */
25629
+ get SourceConversationDetail(): string | null;
25630
+ /**
25631
+ * * Field Name: SourceAIAgentRun
25632
+ * * Display Name: Source AI Agent Run
25633
+ * * SQL Data Type: nvarchar(255)
25634
+ */
25635
+ get SourceAIAgentRun(): string | null;
25636
+ /**
25219
25637
  * * Field Name: EmbeddingModel
25220
25638
  * * Display Name: Embedding Model
25221
25639
  * * SQL Data Type: nvarchar(50)
@@ -25938,6 +26356,18 @@ detailed information about what validation rules failed.
25938
26356
  get Comments(): string | null;
25939
26357
  set Comments(value: string | null);
25940
26358
  /**
26359
+ * * Field Name: AgentRun
26360
+ * * Display Name: Agent Run
26361
+ * * SQL Data Type: nvarchar(255)
26362
+ */
26363
+ get AgentRun(): string | null;
26364
+ /**
26365
+ * * Field Name: Parent
26366
+ * * Display Name: Parent
26367
+ * * SQL Data Type: nvarchar(255)
26368
+ */
26369
+ get Parent(): string | null;
26370
+ /**
25941
26371
  * * Field Name: RootParentID
25942
26372
  * * Display Name: Root Parent ID
25943
26373
  * * SQL Data Type: uniqueidentifier
@@ -31253,6 +31683,12 @@ export declare class ConversationDetailArtifactEntity extends BaseEntity<Convers
31253
31683
  */
31254
31684
  get __mj_UpdatedAt(): Date;
31255
31685
  /**
31686
+ * * Field Name: ConversationDetail
31687
+ * * Display Name: Conversation Detail
31688
+ * * SQL Data Type: nvarchar(MAX)
31689
+ */
31690
+ get ConversationDetail(): string;
31691
+ /**
31256
31692
  * * Field Name: ArtifactVersion
31257
31693
  * * Display Name: Artifact Version
31258
31694
  * * SQL Data Type: nvarchar(255)
@@ -31355,6 +31791,12 @@ export declare class ConversationDetailRatingEntity extends BaseEntity<Conversat
31355
31791
  */
31356
31792
  get __mj_UpdatedAt(): Date;
31357
31793
  /**
31794
+ * * Field Name: ConversationDetail
31795
+ * * Display Name: Conversation Detail
31796
+ * * SQL Data Type: nvarchar(MAX)
31797
+ */
31798
+ get ConversationDetail(): string;
31799
+ /**
31358
31800
  * * Field Name: User
31359
31801
  * * Display Name: User
31360
31802
  * * SQL Data Type: nvarchar(100)
@@ -33309,6 +33751,12 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
33309
33751
  */
33310
33752
  get Project(): string | null;
33311
33753
  /**
33754
+ * * Field Name: ConversationDetail
33755
+ * * Display Name: Conversation Detail
33756
+ * * SQL Data Type: nvarchar(MAX)
33757
+ */
33758
+ get ConversationDetail(): string | null;
33759
+ /**
33312
33760
  * * Field Name: User
33313
33761
  * * Display Name: User
33314
33762
  * * SQL Data Type: nvarchar(100)
@@ -34501,6 +34949,84 @@ export declare class TestEntity extends BaseEntity<TestEntityType> {
34501
34949
  */
34502
34950
  get Type(): string;
34503
34951
  }
34952
+ /**
34953
+ * MJ: User Settings - strongly typed entity sub-class
34954
+ * * Schema: __mj
34955
+ * * Base Table: UserSetting
34956
+ * * Base View: vwUserSettings
34957
+ * * @description Generic key-value store for per-user settings. Allows any application or feature to persist user preferences.
34958
+ * * Primary Key: ID
34959
+ * @extends {BaseEntity}
34960
+ * @class
34961
+ * @public
34962
+ */
34963
+ export declare class UserSettingEntity extends BaseEntity<UserSettingEntityType> {
34964
+ /**
34965
+ * Loads the MJ: User Settings record from the database
34966
+ * @param ID: string - primary key value to load the MJ: User Settings record.
34967
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
34968
+ * @returns {Promise<boolean>} - true if successful, false otherwise
34969
+ * @public
34970
+ * @async
34971
+ * @memberof UserSettingEntity
34972
+ * @method
34973
+ * @override
34974
+ */
34975
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
34976
+ /**
34977
+ * * Field Name: ID
34978
+ * * Display Name: ID
34979
+ * * SQL Data Type: uniqueidentifier
34980
+ * * Default Value: newsequentialid()
34981
+ */
34982
+ get ID(): string;
34983
+ set ID(value: string);
34984
+ /**
34985
+ * * Field Name: UserID
34986
+ * * Display Name: User ID
34987
+ * * SQL Data Type: uniqueidentifier
34988
+ * * Related Entity/Foreign Key: Users (vwUsers.ID)
34989
+ * * Description: The user this setting belongs to.
34990
+ */
34991
+ get UserID(): string;
34992
+ set UserID(value: string);
34993
+ /**
34994
+ * * Field Name: Setting
34995
+ * * Display Name: Setting
34996
+ * * SQL Data Type: nvarchar(255)
34997
+ * * Description: The setting key/name. Use namespaced keys like "DataExplorer.ViewMode" or "Dashboard.AI.CollapsedSections" to avoid collisions.
34998
+ */
34999
+ get Setting(): string;
35000
+ set Setting(value: string);
35001
+ /**
35002
+ * * Field Name: Value
35003
+ * * Display Name: Value
35004
+ * * SQL Data Type: nvarchar(MAX)
35005
+ * * Description: The setting value. Can be simple text, numbers, booleans, or JSON for complex configuration objects.
35006
+ */
35007
+ get Value(): string | null;
35008
+ set Value(value: string | null);
35009
+ /**
35010
+ * * Field Name: __mj_CreatedAt
35011
+ * * Display Name: Created At
35012
+ * * SQL Data Type: datetimeoffset
35013
+ * * Default Value: getutcdate()
35014
+ */
35015
+ get __mj_CreatedAt(): Date;
35016
+ /**
35017
+ * * Field Name: __mj_UpdatedAt
35018
+ * * Display Name: Updated At
35019
+ * * SQL Data Type: datetimeoffset
35020
+ * * Default Value: getutcdate()
35021
+ */
35022
+ get __mj_UpdatedAt(): Date;
35023
+ /**
35024
+ * * Field Name: User
35025
+ * * Display Name: User
35026
+ * * SQL Data Type: nvarchar(100)
35027
+ */
35028
+ get User(): string;
35029
+ }
34504
35030
  /**
34505
35031
  * Output Delivery Types - strongly typed entity sub-class
34506
35032
  * * Schema: __mj
@@ -35884,6 +36410,12 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
35884
36410
  */
35885
36411
  get __mj_UpdatedAt(): Date;
35886
36412
  /**
36413
+ * * Field Name: Recommendation
36414
+ * * Display Name: Recommendation
36415
+ * * SQL Data Type: nvarchar(MAX)
36416
+ */
36417
+ get Recommendation(): string;
36418
+ /**
35887
36419
  * * Field Name: DestinationEntity
35888
36420
  * * Display Name: Destination Entity
35889
36421
  * * SQL Data Type: nvarchar(255)
@@ -36135,6 +36667,12 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
36135
36667
  */
36136
36668
  get __mj_UpdatedAt(): Date;
36137
36669
  /**
36670
+ * * Field Name: RecommendationRun
36671
+ * * Display Name: Recommendation Run
36672
+ * * SQL Data Type: nvarchar(255)
36673
+ */
36674
+ get RecommendationRun(): string;
36675
+ /**
36138
36676
  * * Field Name: SourceEntity
36139
36677
  * * Display Name: Source Entity
36140
36678
  * * SQL Data Type: nvarchar(255)
@@ -36419,6 +36957,12 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
36419
36957
  */
36420
36958
  get User(): string;
36421
36959
  /**
36960
+ * * Field Name: ReplayRun
36961
+ * * Display Name: Replay Run
36962
+ * * SQL Data Type: nvarchar(100)
36963
+ */
36964
+ get ReplayRun(): string | null;
36965
+ /**
36422
36966
  * * Field Name: Integration
36423
36967
  * * Display Name: Integration
36424
36968
  * * SQL Data Type: nvarchar(100)
@@ -36508,6 +37052,12 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
36508
37052
  * * Default Value: getutcdate()
36509
37053
  */
36510
37054
  get __mj_UpdatedAt(): Date;
37055
+ /**
37056
+ * * Field Name: RecordMergeLog
37057
+ * * Display Name: Record Merge Log
37058
+ * * SQL Data Type: nvarchar(450)
37059
+ */
37060
+ get RecordMergeLog(): string;
36511
37061
  }
36512
37062
  /**
36513
37063
  * Record Merge Logs - strongly typed entity sub-class
@@ -37060,6 +37610,12 @@ export declare class ReportEntity extends BaseEntity<ReportEntityType> {
37060
37610
  */
37061
37611
  get Conversation(): string | null;
37062
37612
  /**
37613
+ * * Field Name: ConversationDetail
37614
+ * * Display Name: Conversation Detail
37615
+ * * SQL Data Type: nvarchar(MAX)
37616
+ */
37617
+ get ConversationDetail(): string | null;
37618
+ /**
37063
37619
  * * Field Name: DataContext
37064
37620
  * * Display Name: Data Context
37065
37621
  * * SQL Data Type: nvarchar(255)
@@ -37453,6 +38009,14 @@ export declare class ResourceTypeEntity extends BaseEntity<ResourceTypeEntityTyp
37453
38009
  get CategoryEntityID(): string | null;
37454
38010
  set CategoryEntityID(value: string | null);
37455
38011
  /**
38012
+ * * Field Name: DriverClass
38013
+ * * Display Name: Driver Class
38014
+ * * SQL Data Type: nvarchar(255)
38015
+ * * Description: The Angular component class name to instantiate for this resource type. NULL for Custom resource type (uses NavItem DriverClass instead).
38016
+ */
38017
+ get DriverClass(): string | null;
38018
+ set DriverClass(value: string | null);
38019
+ /**
37456
38020
  * * Field Name: Entity
37457
38021
  * * Display Name: Entity
37458
38022
  * * SQL Data Type: nvarchar(255)
@@ -38689,6 +39253,12 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
38689
39253
  * * SQL Data Type: nvarchar(255)
38690
39254
  */
38691
39255
  get Entity(): string | null;
39256
+ /**
39257
+ * * Field Name: TemplateContent
39258
+ * * Display Name: Template Content
39259
+ * * SQL Data Type: nvarchar(255)
39260
+ */
39261
+ get TemplateContent(): string | null;
38692
39262
  }
38693
39263
  /**
38694
39264
  * Templates - strongly typed entity sub-class
@@ -39703,6 +40273,7 @@ export declare class UserViewEntity extends BaseEntity<UserViewEntityType> {
39703
40273
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
39704
40274
  /**
39705
40275
  * * Field Name: ID
40276
+ * * Display Name: ID
39706
40277
  * * SQL Data Type: uniqueidentifier
39707
40278
  * * Default Value: newsequentialid()
39708
40279
  */
@@ -39710,7 +40281,7 @@ export declare class UserViewEntity extends BaseEntity<UserViewEntityType> {
39710
40281
  set ID(value: string);
39711
40282
  /**
39712
40283
  * * Field Name: UserID
39713
- * * Display Name: User ID
40284
+ * * Display Name: User
39714
40285
  * * SQL Data Type: uniqueidentifier
39715
40286
  * * Related Entity/Foreign Key: Users (vwUsers.ID)
39716
40287
  */
@@ -39718,7 +40289,7 @@ export declare class UserViewEntity extends BaseEntity<UserViewEntityType> {
39718
40289
  set UserID(value: string);
39719
40290
  /**
39720
40291
  * * Field Name: EntityID
39721
- * * Display Name: Entity ID
40292
+ * * Display Name: Entity
39722
40293
  * * SQL Data Type: uniqueidentifier
39723
40294
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
39724
40295
  */
@@ -39726,19 +40297,21 @@ export declare class UserViewEntity extends BaseEntity<UserViewEntityType> {
39726
40297
  set EntityID(value: string);
39727
40298
  /**
39728
40299
  * * Field Name: Name
40300
+ * * Display Name: Name
39729
40301
  * * SQL Data Type: nvarchar(100)
39730
40302
  */
39731
40303
  get Name(): string;
39732
40304
  set Name(value: string);
39733
40305
  /**
39734
40306
  * * Field Name: Description
40307
+ * * Display Name: Description
39735
40308
  * * SQL Data Type: nvarchar(MAX)
39736
40309
  */
39737
40310
  get Description(): string | null;
39738
40311
  set Description(value: string | null);
39739
40312
  /**
39740
40313
  * * Field Name: CategoryID
39741
- * * Display Name: Category ID
40314
+ * * Display Name: Category
39742
40315
  * * SQL Data Type: uniqueidentifier
39743
40316
  * * Related Entity/Foreign Key: User View Categories (vwUserViewCategories.ID)
39744
40317
  */
@@ -39746,7 +40319,7 @@ export declare class UserViewEntity extends BaseEntity<UserViewEntityType> {
39746
40319
  set CategoryID(value: string | null);
39747
40320
  /**
39748
40321
  * * Field Name: IsShared
39749
- * * Display Name: Is Shared
40322
+ * * Display Name: Shared
39750
40323
  * * SQL Data Type: bit
39751
40324
  * * Default Value: 0
39752
40325
  * * Description: Whether this view is shared with other users.
@@ -39755,7 +40328,7 @@ export declare class UserViewEntity extends BaseEntity<UserViewEntityType> {
39755
40328
  set IsShared(value: boolean);
39756
40329
  /**
39757
40330
  * * Field Name: IsDefault
39758
- * * Display Name: Is Default
40331
+ * * Display Name: Default
39759
40332
  * * SQL Data Type: bit
39760
40333
  * * Default Value: 0
39761
40334
  * * Description: Whether this is the user's default view for the entity.
@@ -39780,7 +40353,7 @@ export declare class UserViewEntity extends BaseEntity<UserViewEntityType> {
39780
40353
  set FilterState(value: string | null);
39781
40354
  /**
39782
40355
  * * Field Name: CustomFilterState
39783
- * * Display Name: Custom Filter State
40356
+ * * Display Name: Custom Filter
39784
40357
  * * SQL Data Type: bit
39785
40358
  * * Default Value: 0
39786
40359
  * * Description: Indicates if custom filters beyond standard options are applied.
@@ -39847,14 +40420,14 @@ export declare class UserViewEntity extends BaseEntity<UserViewEntityType> {
39847
40420
  set SortState(value: string | null);
39848
40421
  /**
39849
40422
  * * Field Name: __mj_CreatedAt
39850
- * * Display Name: __mj _Created At
40423
+ * * Display Name: Created At
39851
40424
  * * SQL Data Type: datetimeoffset
39852
40425
  * * Default Value: getutcdate()
39853
40426
  */
39854
40427
  get __mj_CreatedAt(): Date;
39855
40428
  /**
39856
40429
  * * Field Name: __mj_UpdatedAt
39857
- * * Display Name: __mj _Updated At
40430
+ * * Display Name: Updated At
39858
40431
  * * SQL Data Type: datetimeoffset
39859
40432
  * * Default Value: getutcdate()
39860
40433
  */
@@ -39868,6 +40441,14 @@ export declare class UserViewEntity extends BaseEntity<UserViewEntityType> {
39868
40441
  get Thumbnail(): string | null;
39869
40442
  set Thumbnail(value: string | null);
39870
40443
  /**
40444
+ * * Field Name: CardState
40445
+ * * Display Name: Card State
40446
+ * * SQL Data Type: nvarchar(MAX)
40447
+ * * Description: JSON configuration for card display mode in Data Explorer. Stores card layout settings including title field, subtitle, display fields, thumbnails, and layout density. When null, defaults are derived from entity metadata. See CardState interface in packages/Angular/Generic/entity-viewer/src/lib/types.ts for the current schema definition.
40448
+ */
40449
+ get CardState(): string | null;
40450
+ set CardState(value: string | null);
40451
+ /**
39871
40452
  * * Field Name: UserName
39872
40453
  * * Display Name: User Name
39873
40454
  * * SQL Data Type: nvarchar(100)
@@ -40703,6 +41284,7 @@ export declare class WorkflowEntity extends BaseEntity<WorkflowEntityType> {
40703
41284
  * @extends {BaseEntity}
40704
41285
  * @class
40705
41286
  * @public
41287
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
40706
41288
  */
40707
41289
  export declare class WorkspaceItemEntity extends BaseEntity<WorkspaceItemEntityType> {
40708
41290
  /**
@@ -40875,6 +41457,14 @@ export declare class WorkspaceEntity extends BaseEntity<WorkspaceEntityType> {
40875
41457
  */
40876
41458
  get __mj_UpdatedAt(): Date;
40877
41459
  /**
41460
+ * * Field Name: Configuration
41461
+ * * Display Name: Configuration
41462
+ * * SQL Data Type: nvarchar(MAX)
41463
+ * * Description: JSON blob containing all workspace state: tabs, layout configuration, theme preferences, and active tab. Replaces WorkspaceItem table.
41464
+ */
41465
+ get Configuration(): string | null;
41466
+ set Configuration(value: string | null);
41467
+ /**
40878
41468
  * * Field Name: User
40879
41469
  * * Display Name: User
40880
41470
  * * SQL Data Type: nvarchar(100)