@memberjunction/core-entities 2.1.6 → 2.2.1

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.
@@ -11,6 +11,7 @@ export declare const ActionAuthorizationSchema: z.ZodObject<{
11
11
  __mj_CreatedAt: z.ZodDate;
12
12
  __mj_UpdatedAt: z.ZodDate;
13
13
  Action: z.ZodString;
14
+ Authorization: z.ZodString;
14
15
  }, "strip", z.ZodTypeAny, {
15
16
  ID?: string;
16
17
  ActionID?: string;
@@ -19,6 +20,7 @@ export declare const ActionAuthorizationSchema: z.ZodObject<{
19
20
  __mj_CreatedAt?: Date;
20
21
  __mj_UpdatedAt?: Date;
21
22
  Action?: string;
23
+ Authorization?: string;
22
24
  }, {
23
25
  ID?: string;
24
26
  ActionID?: string;
@@ -27,6 +29,7 @@ export declare const ActionAuthorizationSchema: z.ZodObject<{
27
29
  __mj_CreatedAt?: Date;
28
30
  __mj_UpdatedAt?: Date;
29
31
  Action?: string;
32
+ Authorization?: string;
30
33
  }>;
31
34
  export type ActionAuthorizationEntityType = z.infer<typeof ActionAuthorizationSchema>;
32
35
  /**
@@ -474,6 +477,8 @@ export declare const AIModelSchema: z.ZodObject<{
474
477
  APIName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
475
478
  __mj_CreatedAt: z.ZodDate;
476
479
  __mj_UpdatedAt: z.ZodDate;
480
+ SpeedRank: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
481
+ CostRank: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
477
482
  AIModelType: z.ZodString;
478
483
  }, "strip", z.ZodTypeAny, {
479
484
  ID?: string;
@@ -488,6 +493,8 @@ export declare const AIModelSchema: z.ZodObject<{
488
493
  DriverClass?: string;
489
494
  DriverImportPath?: string;
490
495
  APIName?: string;
496
+ SpeedRank?: number;
497
+ CostRank?: number;
491
498
  AIModelType?: string;
492
499
  }, {
493
500
  ID?: string;
@@ -502,6 +509,8 @@ export declare const AIModelSchema: z.ZodObject<{
502
509
  DriverClass?: string;
503
510
  DriverImportPath?: string;
504
511
  APIName?: string;
512
+ SpeedRank?: number;
513
+ CostRank?: number;
505
514
  AIModelType?: string;
506
515
  }>;
507
516
  export type AIModelEntityType = z.infer<typeof AIModelSchema>;
@@ -563,6 +572,7 @@ export declare const ApplicationSettingSchema: z.ZodObject<{
563
572
  Comments: z.ZodOptional<z.ZodNullable<z.ZodString>>;
564
573
  __mj_CreatedAt: z.ZodDate;
565
574
  __mj_UpdatedAt: z.ZodDate;
575
+ Application: z.ZodString;
566
576
  }, "strip", z.ZodTypeAny, {
567
577
  ID?: string;
568
578
  Comments?: string;
@@ -570,6 +580,7 @@ export declare const ApplicationSettingSchema: z.ZodObject<{
570
580
  __mj_UpdatedAt?: Date;
571
581
  Name?: string;
572
582
  ApplicationID?: string;
583
+ Application?: string;
573
584
  Value?: string;
574
585
  }, {
575
586
  ID?: string;
@@ -578,6 +589,7 @@ export declare const ApplicationSettingSchema: z.ZodObject<{
578
589
  __mj_UpdatedAt?: Date;
579
590
  Name?: string;
580
591
  ApplicationID?: string;
592
+ Application?: string;
581
593
  Value?: string;
582
594
  }>;
583
595
  export type ApplicationSettingEntityType = z.infer<typeof ApplicationSettingSchema>;
@@ -622,11 +634,13 @@ export declare const AuditLogTypeSchema: z.ZodObject<{
622
634
  __mj_CreatedAt: z.ZodDate;
623
635
  __mj_UpdatedAt: z.ZodDate;
624
636
  Parent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
637
+ Authorization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
625
638
  }, "strip", z.ZodTypeAny, {
626
639
  ID?: string;
627
640
  AuthorizationID?: string;
628
641
  __mj_CreatedAt?: Date;
629
642
  __mj_UpdatedAt?: Date;
643
+ Authorization?: string;
630
644
  Name?: string;
631
645
  Description?: string;
632
646
  ParentID?: string;
@@ -636,6 +650,7 @@ export declare const AuditLogTypeSchema: z.ZodObject<{
636
650
  AuthorizationID?: string;
637
651
  __mj_CreatedAt?: Date;
638
652
  __mj_UpdatedAt?: Date;
653
+ Authorization?: string;
639
654
  Name?: string;
640
655
  Description?: string;
641
656
  ParentID?: string;
@@ -658,6 +673,8 @@ export declare const AuditLogSchema: z.ZodObject<{
658
673
  __mj_CreatedAt: z.ZodDate;
659
674
  __mj_UpdatedAt: z.ZodDate;
660
675
  User: z.ZodString;
676
+ AuditLogType: z.ZodString;
677
+ Authorization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
661
678
  Entity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
662
679
  }, "strip", z.ZodTypeAny, {
663
680
  Details?: string;
@@ -665,6 +682,7 @@ export declare const AuditLogSchema: z.ZodObject<{
665
682
  AuthorizationID?: string;
666
683
  __mj_CreatedAt?: Date;
667
684
  __mj_UpdatedAt?: Date;
685
+ Authorization?: string;
668
686
  Description?: string;
669
687
  Status?: "Success" | "Failed";
670
688
  UserID?: string;
@@ -673,12 +691,14 @@ export declare const AuditLogSchema: z.ZodObject<{
673
691
  Entity?: string;
674
692
  AuditLogTypeID?: string;
675
693
  RecordID?: string;
694
+ AuditLogType?: string;
676
695
  }, {
677
696
  Details?: string;
678
697
  ID?: string;
679
698
  AuthorizationID?: string;
680
699
  __mj_CreatedAt?: Date;
681
700
  __mj_UpdatedAt?: Date;
701
+ Authorization?: string;
682
702
  Description?: string;
683
703
  Status?: "Success" | "Failed";
684
704
  UserID?: string;
@@ -687,6 +707,7 @@ export declare const AuditLogSchema: z.ZodObject<{
687
707
  Entity?: string;
688
708
  AuditLogTypeID?: string;
689
709
  RecordID?: string;
710
+ AuditLogType?: string;
690
711
  }>;
691
712
  export type AuditLogEntityType = z.infer<typeof AuditLogSchema>;
692
713
  /**
@@ -699,20 +720,26 @@ export declare const AuthorizationRoleSchema: z.ZodObject<{
699
720
  Type: z.ZodUnion<[z.ZodLiteral<"Allow">, z.ZodLiteral<"Deny">]>;
700
721
  __mj_CreatedAt: z.ZodDate;
701
722
  __mj_UpdatedAt: z.ZodDate;
723
+ Authorization: z.ZodString;
724
+ Role: z.ZodString;
702
725
  }, "strip", z.ZodTypeAny, {
703
726
  ID?: string;
704
727
  AuthorizationID?: string;
705
728
  __mj_CreatedAt?: Date;
706
729
  __mj_UpdatedAt?: Date;
730
+ Authorization?: string;
707
731
  Type?: "Allow" | "Deny";
708
732
  RoleID?: string;
733
+ Role?: string;
709
734
  }, {
710
735
  ID?: string;
711
736
  AuthorizationID?: string;
712
737
  __mj_CreatedAt?: Date;
713
738
  __mj_UpdatedAt?: Date;
739
+ Authorization?: string;
714
740
  Type?: "Allow" | "Deny";
715
741
  RoleID?: string;
742
+ Role?: string;
716
743
  }>;
717
744
  export type AuthorizationRoleEntityType = z.infer<typeof AuthorizationRoleSchema>;
718
745
  /**
@@ -1214,9 +1241,9 @@ export declare const ConversationDetailSchema: z.ZodObject<{
1214
1241
  ID?: string;
1215
1242
  __mj_CreatedAt?: Date;
1216
1243
  __mj_UpdatedAt?: Date;
1244
+ Role?: "Error" | "User" | "AI";
1217
1245
  ConversationID?: string;
1218
1246
  ExternalID?: string;
1219
- Role?: "Error" | "User" | "AI";
1220
1247
  Message?: string;
1221
1248
  HiddenToUser?: boolean;
1222
1249
  Conversation?: string;
@@ -1225,9 +1252,9 @@ export declare const ConversationDetailSchema: z.ZodObject<{
1225
1252
  ID?: string;
1226
1253
  __mj_CreatedAt?: Date;
1227
1254
  __mj_UpdatedAt?: Date;
1255
+ Role?: "Error" | "User" | "AI";
1228
1256
  ConversationID?: string;
1229
1257
  ExternalID?: string;
1230
- Role?: "Error" | "User" | "AI";
1231
1258
  Message?: string;
1232
1259
  HiddenToUser?: boolean;
1233
1260
  Conversation?: string;
@@ -1251,6 +1278,7 @@ export declare const ConversationSchema: z.ZodObject<{
1251
1278
  __mj_UpdatedAt: z.ZodDate;
1252
1279
  User: z.ZodString;
1253
1280
  LinkedEntity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1281
+ DataContext: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1254
1282
  }, "strip", z.ZodTypeAny, {
1255
1283
  ID?: string;
1256
1284
  __mj_CreatedAt?: Date;
@@ -1266,6 +1294,7 @@ export declare const ConversationSchema: z.ZodObject<{
1266
1294
  LinkedRecordID?: string;
1267
1295
  DataContextID?: string;
1268
1296
  LinkedEntity?: string;
1297
+ DataContext?: string;
1269
1298
  }, {
1270
1299
  ID?: string;
1271
1300
  __mj_CreatedAt?: Date;
@@ -1281,6 +1310,7 @@ export declare const ConversationSchema: z.ZodObject<{
1281
1310
  LinkedRecordID?: string;
1282
1311
  DataContextID?: string;
1283
1312
  LinkedEntity?: string;
1313
+ DataContext?: string;
1284
1314
  }>;
1285
1315
  export type ConversationEntityType = z.infer<typeof ConversationSchema>;
1286
1316
  /**
@@ -1385,12 +1415,12 @@ export declare const DataContextItemSchema: z.ZodObject<{
1385
1415
  Entity?: string;
1386
1416
  RecordID?: string;
1387
1417
  DataContextID?: string;
1418
+ DataContext?: string;
1388
1419
  ViewID?: string;
1389
1420
  QueryID?: string;
1390
1421
  SQL?: string;
1391
1422
  DataJSON?: string;
1392
1423
  LastRefreshedAt?: Date;
1393
- DataContext?: string;
1394
1424
  View?: string;
1395
1425
  Query?: string;
1396
1426
  }, {
@@ -1402,12 +1432,12 @@ export declare const DataContextItemSchema: z.ZodObject<{
1402
1432
  Entity?: string;
1403
1433
  RecordID?: string;
1404
1434
  DataContextID?: string;
1435
+ DataContext?: string;
1405
1436
  ViewID?: string;
1406
1437
  QueryID?: string;
1407
1438
  SQL?: string;
1408
1439
  DataJSON?: string;
1409
1440
  LastRefreshedAt?: Date;
1410
- DataContext?: string;
1411
1441
  View?: string;
1412
1442
  Query?: string;
1413
1443
  }>;
@@ -1458,6 +1488,7 @@ export declare const DatasetItemSchema: z.ZodObject<{
1458
1488
  Description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1459
1489
  __mj_CreatedAt: z.ZodDate;
1460
1490
  __mj_UpdatedAt: z.ZodDate;
1491
+ Dataset: z.ZodString;
1461
1492
  Entity: z.ZodString;
1462
1493
  }, "strip", z.ZodTypeAny, {
1463
1494
  ID?: string;
@@ -1471,6 +1502,7 @@ export declare const DatasetItemSchema: z.ZodObject<{
1471
1502
  DatasetID?: string;
1472
1503
  WhereClause?: string;
1473
1504
  DateFieldToCheck?: string;
1505
+ Dataset?: string;
1474
1506
  }, {
1475
1507
  ID?: string;
1476
1508
  __mj_CreatedAt?: Date;
@@ -1483,6 +1515,7 @@ export declare const DatasetItemSchema: z.ZodObject<{
1483
1515
  DatasetID?: string;
1484
1516
  WhereClause?: string;
1485
1517
  DateFieldToCheck?: string;
1518
+ Dataset?: string;
1486
1519
  }>;
1487
1520
  export type DatasetItemEntityType = z.infer<typeof DatasetItemSchema>;
1488
1521
  /**
@@ -2338,6 +2371,9 @@ export declare const EntityDocumentSchema: z.ZodObject<{
2338
2371
  __mj_UpdatedAt: z.ZodDate;
2339
2372
  Type: z.ZodString;
2340
2373
  Entity: z.ZodString;
2374
+ VectorDatabase: z.ZodString;
2375
+ Template: z.ZodString;
2376
+ AIModel: z.ZodString;
2341
2377
  }, "strip", z.ZodTypeAny, {
2342
2378
  ID?: string;
2343
2379
  __mj_CreatedAt?: Date;
@@ -2346,6 +2382,7 @@ export declare const EntityDocumentSchema: z.ZodObject<{
2346
2382
  Status?: "Active" | "Inactive";
2347
2383
  Type?: string;
2348
2384
  AIModelID?: string;
2385
+ AIModel?: string;
2349
2386
  EntityID?: string;
2350
2387
  Entity?: string;
2351
2388
  TypeID?: string;
@@ -2353,6 +2390,8 @@ export declare const EntityDocumentSchema: z.ZodObject<{
2353
2390
  TemplateID?: string;
2354
2391
  PotentialMatchThreshold?: number;
2355
2392
  AbsoluteMatchThreshold?: number;
2393
+ VectorDatabase?: string;
2394
+ Template?: string;
2356
2395
  }, {
2357
2396
  ID?: string;
2358
2397
  __mj_CreatedAt?: Date;
@@ -2361,6 +2400,7 @@ export declare const EntityDocumentSchema: z.ZodObject<{
2361
2400
  Status?: "Active" | "Inactive";
2362
2401
  Type?: string;
2363
2402
  AIModelID?: string;
2403
+ AIModel?: string;
2364
2404
  EntityID?: string;
2365
2405
  Entity?: string;
2366
2406
  TypeID?: string;
@@ -2368,6 +2408,8 @@ export declare const EntityDocumentSchema: z.ZodObject<{
2368
2408
  TemplateID?: string;
2369
2409
  PotentialMatchThreshold?: number;
2370
2410
  AbsoluteMatchThreshold?: number;
2411
+ VectorDatabase?: string;
2412
+ Template?: string;
2371
2413
  }>;
2372
2414
  export type EntityDocumentEntityType = z.infer<typeof EntityDocumentSchema>;
2373
2415
  /**
@@ -2658,30 +2700,39 @@ export declare const EntityRecordDocumentSchema: z.ZodObject<{
2658
2700
  EntityRecordUpdatedAt: z.ZodDate;
2659
2701
  __mj_CreatedAt: z.ZodDate;
2660
2702
  __mj_UpdatedAt: z.ZodDate;
2703
+ Entity: z.ZodString;
2704
+ EntityDocument: z.ZodString;
2705
+ VectorIndex: z.ZodString;
2661
2706
  }, "strip", z.ZodTypeAny, {
2662
2707
  ID?: string;
2663
2708
  __mj_CreatedAt?: Date;
2664
2709
  __mj_UpdatedAt?: Date;
2665
2710
  EntityID?: string;
2711
+ Entity?: string;
2666
2712
  RecordID?: string;
2667
2713
  EntityDocumentID?: string;
2714
+ EntityDocument?: string;
2668
2715
  DocumentText?: string;
2669
2716
  VectorIndexID?: string;
2670
2717
  VectorID?: string;
2671
2718
  VectorJSON?: string;
2672
2719
  EntityRecordUpdatedAt?: Date;
2720
+ VectorIndex?: string;
2673
2721
  }, {
2674
2722
  ID?: string;
2675
2723
  __mj_CreatedAt?: Date;
2676
2724
  __mj_UpdatedAt?: Date;
2677
2725
  EntityID?: string;
2726
+ Entity?: string;
2678
2727
  RecordID?: string;
2679
2728
  EntityDocumentID?: string;
2729
+ EntityDocument?: string;
2680
2730
  DocumentText?: string;
2681
2731
  VectorIndexID?: string;
2682
2732
  VectorID?: string;
2683
2733
  VectorJSON?: string;
2684
2734
  EntityRecordUpdatedAt?: Date;
2735
+ VectorIndex?: string;
2685
2736
  }>;
2686
2737
  export type EntityRecordDocumentEntityType = z.infer<typeof EntityRecordDocumentSchema>;
2687
2738
  /**
@@ -3263,6 +3314,8 @@ export declare const ListCategorySchema: z.ZodObject<{
3263
3314
  UserID: z.ZodString;
3264
3315
  __mj_CreatedAt: z.ZodDate;
3265
3316
  __mj_UpdatedAt: z.ZodDate;
3317
+ Parent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3318
+ User: z.ZodString;
3266
3319
  }, "strip", z.ZodTypeAny, {
3267
3320
  ID?: string;
3268
3321
  __mj_CreatedAt?: Date;
@@ -3270,7 +3323,9 @@ export declare const ListCategorySchema: z.ZodObject<{
3270
3323
  Name?: string;
3271
3324
  Description?: string;
3272
3325
  ParentID?: string;
3326
+ Parent?: string;
3273
3327
  UserID?: string;
3328
+ User?: string;
3274
3329
  }, {
3275
3330
  ID?: string;
3276
3331
  __mj_CreatedAt?: Date;
@@ -3278,7 +3333,9 @@ export declare const ListCategorySchema: z.ZodObject<{
3278
3333
  Name?: string;
3279
3334
  Description?: string;
3280
3335
  ParentID?: string;
3336
+ Parent?: string;
3281
3337
  UserID?: string;
3338
+ User?: string;
3282
3339
  }>;
3283
3340
  export type ListCategoryEntityType = z.infer<typeof ListCategorySchema>;
3284
3341
  /**
@@ -3291,23 +3348,29 @@ export declare const ListDetailSchema: z.ZodObject<{
3291
3348
  Sequence: z.ZodNumber;
3292
3349
  __mj_CreatedAt: z.ZodDate;
3293
3350
  __mj_UpdatedAt: z.ZodDate;
3351
+ Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Rejected">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Error">, z.ZodLiteral<"Other">]>;
3352
+ AdditionalData: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3294
3353
  List: z.ZodString;
3295
3354
  }, "strip", z.ZodTypeAny, {
3296
3355
  List?: string;
3297
3356
  ID?: string;
3298
3357
  __mj_CreatedAt?: Date;
3299
3358
  __mj_UpdatedAt?: Date;
3359
+ Status?: "Other" | "Pending" | "Complete" | "Error" | "Rejected" | "Active" | "Disabled";
3300
3360
  Sequence?: number;
3301
3361
  RecordID?: string;
3302
3362
  ListID?: string;
3363
+ AdditionalData?: string;
3303
3364
  }, {
3304
3365
  List?: string;
3305
3366
  ID?: string;
3306
3367
  __mj_CreatedAt?: Date;
3307
3368
  __mj_UpdatedAt?: Date;
3369
+ Status?: "Other" | "Pending" | "Complete" | "Error" | "Rejected" | "Active" | "Disabled";
3308
3370
  Sequence?: number;
3309
3371
  RecordID?: string;
3310
3372
  ListID?: string;
3373
+ AdditionalData?: string;
3311
3374
  }>;
3312
3375
  export type ListDetailEntityType = z.infer<typeof ListDetailSchema>;
3313
3376
  /**
@@ -3326,7 +3389,9 @@ export declare const ListSchema: z.ZodObject<{
3326
3389
  __mj_UpdatedAt: z.ZodDate;
3327
3390
  Entity: z.ZodString;
3328
3391
  User: z.ZodString;
3392
+ Category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3329
3393
  }, "strip", z.ZodTypeAny, {
3394
+ Category?: string;
3330
3395
  ID?: string;
3331
3396
  __mj_CreatedAt?: Date;
3332
3397
  __mj_UpdatedAt?: Date;
@@ -3340,6 +3405,7 @@ export declare const ListSchema: z.ZodObject<{
3340
3405
  CompanyIntegrationID?: string;
3341
3406
  ExternalSystemRecordID?: string;
3342
3407
  }, {
3408
+ Category?: string;
3343
3409
  ID?: string;
3344
3410
  __mj_CreatedAt?: Date;
3345
3411
  __mj_UpdatedAt?: Date;
@@ -3582,18 +3648,24 @@ export declare const QueryPermissionSchema: z.ZodObject<{
3582
3648
  RoleID: z.ZodString;
3583
3649
  __mj_CreatedAt: z.ZodDate;
3584
3650
  __mj_UpdatedAt: z.ZodDate;
3651
+ Query: z.ZodString;
3652
+ Role: z.ZodString;
3585
3653
  }, "strip", z.ZodTypeAny, {
3586
3654
  ID?: string;
3587
3655
  __mj_CreatedAt?: Date;
3588
3656
  __mj_UpdatedAt?: Date;
3589
3657
  RoleID?: string;
3658
+ Role?: string;
3590
3659
  QueryID?: string;
3660
+ Query?: string;
3591
3661
  }, {
3592
3662
  ID?: string;
3593
3663
  __mj_CreatedAt?: Date;
3594
3664
  __mj_UpdatedAt?: Date;
3595
3665
  RoleID?: string;
3666
+ Role?: string;
3596
3667
  QueryID?: string;
3668
+ Query?: string;
3597
3669
  }>;
3598
3670
  export type QueryPermissionEntityType = z.infer<typeof QueryPermissionSchema>;
3599
3671
  /**
@@ -4016,6 +4088,7 @@ export declare const RecordMergeLogSchema: z.ZodObject<{
4016
4088
  __mj_UpdatedAt: z.ZodDate;
4017
4089
  Entity: z.ZodString;
4018
4090
  InitiatedByUser: z.ZodString;
4091
+ ApprovedByUser: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4019
4092
  }, "strip", z.ZodTypeAny, {
4020
4093
  ID?: string;
4021
4094
  Comments?: string;
@@ -4026,6 +4099,7 @@ export declare const RecordMergeLogSchema: z.ZodObject<{
4026
4099
  ApprovalStatus?: "Pending" | "Approved" | "Rejected";
4027
4100
  ApprovedByUserID?: string;
4028
4101
  ProcessingStatus?: "Complete" | "Error" | "Started";
4102
+ ApprovedByUser?: string;
4029
4103
  ProcessingLog?: string;
4030
4104
  SurvivingRecordID?: string;
4031
4105
  InitiatedByUserID?: string;
@@ -4042,6 +4116,7 @@ export declare const RecordMergeLogSchema: z.ZodObject<{
4042
4116
  ApprovalStatus?: "Pending" | "Approved" | "Rejected";
4043
4117
  ApprovedByUserID?: string;
4044
4118
  ProcessingStatus?: "Complete" | "Error" | "Started";
4119
+ ApprovedByUser?: string;
4045
4120
  ProcessingLog?: string;
4046
4121
  SurvivingRecordID?: string;
4047
4122
  InitiatedByUserID?: string;
@@ -4305,6 +4380,8 @@ export declare const ScheduledActionParamSchema: z.ZodObject<{
4305
4380
  Comments: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4306
4381
  __mj_CreatedAt: z.ZodDate;
4307
4382
  __mj_UpdatedAt: z.ZodDate;
4383
+ ScheduledAction: z.ZodString;
4384
+ ActionParam: z.ZodString;
4308
4385
  }, "strip", z.ZodTypeAny, {
4309
4386
  ID?: string;
4310
4387
  Comments?: string;
@@ -4313,7 +4390,9 @@ export declare const ScheduledActionParamSchema: z.ZodObject<{
4313
4390
  ValueType?: "Static" | "SQL Statement";
4314
4391
  Value?: string;
4315
4392
  ActionParamID?: string;
4393
+ ActionParam?: string;
4316
4394
  ScheduledActionID?: string;
4395
+ ScheduledAction?: string;
4317
4396
  }, {
4318
4397
  ID?: string;
4319
4398
  Comments?: string;
@@ -4322,7 +4401,9 @@ export declare const ScheduledActionParamSchema: z.ZodObject<{
4322
4401
  ValueType?: "Static" | "SQL Statement";
4323
4402
  Value?: string;
4324
4403
  ActionParamID?: string;
4404
+ ActionParam?: string;
4325
4405
  ScheduledActionID?: string;
4406
+ ScheduledAction?: string;
4326
4407
  }>;
4327
4408
  export type ScheduledActionParamEntityType = z.infer<typeof ScheduledActionParamSchema>;
4328
4409
  /**
@@ -4345,11 +4426,14 @@ export declare const ScheduledActionSchema: z.ZodObject<{
4345
4426
  CustomCronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4346
4427
  __mj_CreatedAt: z.ZodDate;
4347
4428
  __mj_UpdatedAt: z.ZodDate;
4429
+ CreatedByUser: z.ZodString;
4430
+ Action: z.ZodString;
4348
4431
  }, "strip", z.ZodTypeAny, {
4349
4432
  ID?: string;
4350
4433
  ActionID?: string;
4351
4434
  __mj_CreatedAt?: Date;
4352
4435
  __mj_UpdatedAt?: Date;
4436
+ Action?: string;
4353
4437
  Name?: string;
4354
4438
  Description?: string;
4355
4439
  Status?: "Pending" | "Active" | "Disabled" | "Expired";
@@ -4362,11 +4446,13 @@ export declare const ScheduledActionSchema: z.ZodObject<{
4362
4446
  DayOfMonth?: number;
4363
4447
  Month?: string;
4364
4448
  CustomCronExpression?: string;
4449
+ CreatedByUser?: string;
4365
4450
  }, {
4366
4451
  ID?: string;
4367
4452
  ActionID?: string;
4368
4453
  __mj_CreatedAt?: Date;
4369
4454
  __mj_UpdatedAt?: Date;
4455
+ Action?: string;
4370
4456
  Name?: string;
4371
4457
  Description?: string;
4372
4458
  Status?: "Pending" | "Active" | "Disabled" | "Expired";
@@ -4379,6 +4465,7 @@ export declare const ScheduledActionSchema: z.ZodObject<{
4379
4465
  DayOfMonth?: number;
4380
4466
  Month?: string;
4381
4467
  CustomCronExpression?: string;
4468
+ CreatedByUser?: string;
4382
4469
  }>;
4383
4470
  export type ScheduledActionEntityType = z.infer<typeof ScheduledActionSchema>;
4384
4471
  /**
@@ -4584,8 +4671,8 @@ export declare const TemplateContentSchema: z.ZodObject<{
4584
4671
  Priority?: number;
4585
4672
  TypeID?: string;
4586
4673
  TemplateID?: string;
4587
- TemplateText?: string;
4588
4674
  Template?: string;
4675
+ TemplateText?: string;
4589
4676
  }, {
4590
4677
  ID?: string;
4591
4678
  __mj_CreatedAt?: Date;
@@ -4595,8 +4682,8 @@ export declare const TemplateContentSchema: z.ZodObject<{
4595
4682
  Priority?: number;
4596
4683
  TypeID?: string;
4597
4684
  TemplateID?: string;
4598
- TemplateText?: string;
4599
4685
  Template?: string;
4686
+ TemplateText?: string;
4600
4687
  }>;
4601
4688
  export type TemplateContentEntityType = z.infer<typeof TemplateContentSchema>;
4602
4689
  /**
@@ -4816,12 +4903,12 @@ export declare const UserNotificationSchema: z.ZodObject<{
4816
4903
  Title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4817
4904
  Message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4818
4905
  ResourceTypeID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4819
- ResourceRecordID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4820
4906
  ResourceConfiguration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4821
4907
  Unread: z.ZodBoolean;
4822
4908
  ReadAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
4823
4909
  __mj_CreatedAt: z.ZodDate;
4824
4910
  __mj_UpdatedAt: z.ZodDate;
4911
+ ResourceRecordID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4825
4912
  User: z.ZodString;
4826
4913
  ResourceType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4827
4914
  }, "strip", z.ZodTypeAny, {
@@ -4833,10 +4920,10 @@ export declare const UserNotificationSchema: z.ZodObject<{
4833
4920
  Message?: string;
4834
4921
  Title?: string;
4835
4922
  ResourceTypeID?: string;
4836
- ResourceRecordID?: string;
4837
4923
  ResourceConfiguration?: string;
4838
4924
  Unread?: boolean;
4839
4925
  ReadAt?: Date;
4926
+ ResourceRecordID?: string;
4840
4927
  ResourceType?: string;
4841
4928
  }, {
4842
4929
  ID?: string;
@@ -4847,10 +4934,10 @@ export declare const UserNotificationSchema: z.ZodObject<{
4847
4934
  Message?: string;
4848
4935
  Title?: string;
4849
4936
  ResourceTypeID?: string;
4850
- ResourceRecordID?: string;
4851
4937
  ResourceConfiguration?: string;
4852
4938
  Unread?: boolean;
4853
4939
  ReadAt?: Date;
4940
+ ResourceRecordID?: string;
4854
4941
  ResourceType?: string;
4855
4942
  }>;
4856
4943
  export type UserNotificationEntityType = z.infer<typeof UserNotificationSchema>;
@@ -4949,6 +5036,7 @@ export declare const UserViewCategorySchema: z.ZodObject<{
4949
5036
  __mj_CreatedAt: z.ZodDate;
4950
5037
  __mj_UpdatedAt: z.ZodDate;
4951
5038
  Parent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5039
+ Entity: z.ZodString;
4952
5040
  User: z.ZodString;
4953
5041
  }, "strip", z.ZodTypeAny, {
4954
5042
  ID?: string;
@@ -4961,6 +5049,7 @@ export declare const UserViewCategorySchema: z.ZodObject<{
4961
5049
  UserID?: string;
4962
5050
  User?: string;
4963
5051
  EntityID?: string;
5052
+ Entity?: string;
4964
5053
  }, {
4965
5054
  ID?: string;
4966
5055
  __mj_CreatedAt?: Date;
@@ -4972,6 +5061,7 @@ export declare const UserViewCategorySchema: z.ZodObject<{
4972
5061
  UserID?: string;
4973
5062
  User?: string;
4974
5063
  EntityID?: string;
5064
+ Entity?: string;
4975
5065
  }>;
4976
5066
  export type UserViewCategoryEntityType = z.infer<typeof UserViewCategorySchema>;
4977
5067
  /**
@@ -5238,8 +5328,8 @@ export declare const VectorIndexSchema: z.ZodObject<{
5238
5328
  Name?: string;
5239
5329
  Description?: string;
5240
5330
  VectorDatabaseID?: string;
5241
- EmbeddingModelID?: string;
5242
5331
  VectorDatabase?: string;
5332
+ EmbeddingModelID?: string;
5243
5333
  EmbeddingModel?: string;
5244
5334
  }, {
5245
5335
  ID?: string;
@@ -5248,8 +5338,8 @@ export declare const VectorIndexSchema: z.ZodObject<{
5248
5338
  Name?: string;
5249
5339
  Description?: string;
5250
5340
  VectorDatabaseID?: string;
5251
- EmbeddingModelID?: string;
5252
5341
  VectorDatabase?: string;
5342
+ EmbeddingModelID?: string;
5253
5343
  EmbeddingModel?: string;
5254
5344
  }>;
5255
5345
  export type VectorIndexEntityType = z.infer<typeof VectorIndexSchema>;
@@ -5558,6 +5648,12 @@ export declare class ActionAuthorizationEntity extends BaseEntity<ActionAuthoriz
5558
5648
  * * SQL Data Type: nvarchar(425)
5559
5649
  */
5560
5650
  get Action(): string;
5651
+ /**
5652
+ * * Field Name: Authorization
5653
+ * * Display Name: Authorization
5654
+ * * SQL Data Type: nvarchar(100)
5655
+ */
5656
+ get Authorization(): string;
5561
5657
  }
5562
5658
  /**
5563
5659
  * Action Categories - strongly typed entity sub-class
@@ -6771,7 +6867,8 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
6771
6867
  * * Field Name: PowerRank
6772
6868
  * * Display Name: Power Rank
6773
6869
  * * SQL Data Type: int
6774
- * * Description: A simplified power rank of each model for a given AI Model Type. For example, if we have GPT 3, GPT 3.5, and GPT 4, we would have a PowerRank of 1 for GPT3, 2 for GPT 3.5, and 3 for GPT 4. This can be used within model families like OpenAI or across all models. For example if you had Llama 2 in the mix which is similar to GPT 3.5 it would also have a PowerRank of 2. This can be used at runtime to pick the most/least powerful or compare model relative power.
6870
+ * * Default Value: 0
6871
+ * * Description: Optional column that ranks the power of the AI model. Default is 0 and should be non-negative.
6775
6872
  */
6776
6873
  get PowerRank(): number | null;
6777
6874
  set PowerRank(value: number | null);
@@ -6820,6 +6917,24 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
6820
6917
  */
6821
6918
  get __mj_UpdatedAt(): Date;
6822
6919
  /**
6920
+ * * Field Name: SpeedRank
6921
+ * * Display Name: Speed Rank
6922
+ * * SQL Data Type: int
6923
+ * * Default Value: 0
6924
+ * * Description: Optional column that ranks the speed of the AI model. Default is 0 and should be non-negative.
6925
+ */
6926
+ get SpeedRank(): number | null;
6927
+ set SpeedRank(value: number | null);
6928
+ /**
6929
+ * * Field Name: CostRank
6930
+ * * Display Name: Cost Rank
6931
+ * * SQL Data Type: int
6932
+ * * Default Value: 0
6933
+ * * Description: Optional column that ranks the cost of the AI model. Default is 0 and should be non-negative.
6934
+ */
6935
+ get CostRank(): number | null;
6936
+ set CostRank(value: number | null);
6937
+ /**
6823
6938
  * * Field Name: AIModelType
6824
6939
  * * Display Name: AIModel Type
6825
6940
  * * SQL Data Type: nvarchar(50)
@@ -7009,6 +7124,12 @@ export declare class ApplicationSettingEntity extends BaseEntity<ApplicationSett
7009
7124
  * * Default Value: getutcdate()
7010
7125
  */
7011
7126
  get __mj_UpdatedAt(): Date;
7127
+ /**
7128
+ * * Field Name: Application
7129
+ * * Display Name: Application
7130
+ * * SQL Data Type: nvarchar(100)
7131
+ */
7132
+ get Application(): string;
7012
7133
  }
7013
7134
  /**
7014
7135
  * Applications - strongly typed entity sub-class
@@ -7182,6 +7303,12 @@ export declare class AuditLogTypeEntity extends BaseEntity<AuditLogTypeEntityTyp
7182
7303
  * * SQL Data Type: nvarchar(50)
7183
7304
  */
7184
7305
  get Parent(): string | null;
7306
+ /**
7307
+ * * Field Name: Authorization
7308
+ * * Display Name: Authorization
7309
+ * * SQL Data Type: nvarchar(100)
7310
+ */
7311
+ get Authorization(): string | null;
7185
7312
  }
7186
7313
  /**
7187
7314
  * Audit Logs - strongly typed entity sub-class
@@ -7308,6 +7435,18 @@ export declare class AuditLogEntity extends BaseEntity<AuditLogEntityType> {
7308
7435
  */
7309
7436
  get User(): string;
7310
7437
  /**
7438
+ * * Field Name: AuditLogType
7439
+ * * Display Name: Audit Log Type
7440
+ * * SQL Data Type: nvarchar(50)
7441
+ */
7442
+ get AuditLogType(): string;
7443
+ /**
7444
+ * * Field Name: Authorization
7445
+ * * Display Name: Authorization
7446
+ * * SQL Data Type: nvarchar(100)
7447
+ */
7448
+ get Authorization(): string | null;
7449
+ /**
7311
7450
  * * Field Name: Entity
7312
7451
  * * Display Name: Entity
7313
7452
  * * SQL Data Type: nvarchar(255)
@@ -7404,6 +7543,18 @@ export declare class AuthorizationRoleEntity extends BaseEntity<AuthorizationRol
7404
7543
  * * Default Value: getutcdate()
7405
7544
  */
7406
7545
  get __mj_UpdatedAt(): Date;
7546
+ /**
7547
+ * * Field Name: Authorization
7548
+ * * Display Name: Authorization
7549
+ * * SQL Data Type: nvarchar(100)
7550
+ */
7551
+ get Authorization(): string;
7552
+ /**
7553
+ * * Field Name: Role
7554
+ * * Display Name: Role
7555
+ * * SQL Data Type: nvarchar(50)
7556
+ */
7557
+ get Role(): string;
7407
7558
  }
7408
7559
  /**
7409
7560
  * Authorizations - strongly typed entity sub-class
@@ -8972,6 +9123,12 @@ export declare class ConversationEntity extends BaseEntity<ConversationEntityTyp
8972
9123
  * * SQL Data Type: nvarchar(255)
8973
9124
  */
8974
9125
  get LinkedEntity(): string | null;
9126
+ /**
9127
+ * * Field Name: DataContext
9128
+ * * Display Name: Data Context
9129
+ * * SQL Data Type: nvarchar(255)
9130
+ */
9131
+ get DataContext(): string | null;
8975
9132
  }
8976
9133
  /**
8977
9134
  * Dashboard Categories - strongly typed entity sub-class
@@ -9501,6 +9658,12 @@ export declare class DatasetItemEntity extends BaseEntity<DatasetItemEntityType>
9501
9658
  */
9502
9659
  get __mj_UpdatedAt(): Date;
9503
9660
  /**
9661
+ * * Field Name: Dataset
9662
+ * * Display Name: Dataset
9663
+ * * SQL Data Type: nvarchar(100)
9664
+ */
9665
+ get Dataset(): string;
9666
+ /**
9504
9667
  * * Field Name: Entity
9505
9668
  * * Display Name: Entity
9506
9669
  * * SQL Data Type: nvarchar(255)
@@ -11990,6 +12153,24 @@ export declare class EntityDocumentEntity extends BaseEntity<EntityDocumentEntit
11990
12153
  * * SQL Data Type: nvarchar(255)
11991
12154
  */
11992
12155
  get Entity(): string;
12156
+ /**
12157
+ * * Field Name: VectorDatabase
12158
+ * * Display Name: Vector Database
12159
+ * * SQL Data Type: nvarchar(100)
12160
+ */
12161
+ get VectorDatabase(): string;
12162
+ /**
12163
+ * * Field Name: Template
12164
+ * * Display Name: Template
12165
+ * * SQL Data Type: nvarchar(255)
12166
+ */
12167
+ get Template(): string;
12168
+ /**
12169
+ * * Field Name: AIModel
12170
+ * * Display Name: AIModel
12171
+ * * SQL Data Type: nvarchar(50)
12172
+ */
12173
+ get AIModel(): string;
11993
12174
  }
11994
12175
  /**
11995
12176
  * Entity Field Values - strongly typed entity sub-class
@@ -12822,6 +13003,24 @@ export declare class EntityRecordDocumentEntity extends BaseEntity<EntityRecordD
12822
13003
  * * Default Value: getutcdate()
12823
13004
  */
12824
13005
  get __mj_UpdatedAt(): Date;
13006
+ /**
13007
+ * * Field Name: Entity
13008
+ * * Display Name: Entity
13009
+ * * SQL Data Type: nvarchar(255)
13010
+ */
13011
+ get Entity(): string;
13012
+ /**
13013
+ * * Field Name: EntityDocument
13014
+ * * Display Name: Entity Document
13015
+ * * SQL Data Type: nvarchar(250)
13016
+ */
13017
+ get EntityDocument(): string;
13018
+ /**
13019
+ * * Field Name: VectorIndex
13020
+ * * Display Name: Vector Index
13021
+ * * SQL Data Type: nvarchar(255)
13022
+ */
13023
+ get VectorIndex(): string;
12825
13024
  }
12826
13025
  /**
12827
13026
  * Entity Relationship Display Components - strongly typed entity sub-class
@@ -14445,6 +14644,18 @@ export declare class ListCategoryEntity extends BaseEntity<ListCategoryEntityTyp
14445
14644
  * * Default Value: getutcdate()
14446
14645
  */
14447
14646
  get __mj_UpdatedAt(): Date;
14647
+ /**
14648
+ * * Field Name: Parent
14649
+ * * Display Name: Parent
14650
+ * * SQL Data Type: nvarchar(100)
14651
+ */
14652
+ get Parent(): string | null;
14653
+ /**
14654
+ * * Field Name: User
14655
+ * * Display Name: User
14656
+ * * SQL Data Type: nvarchar(100)
14657
+ */
14658
+ get User(): string;
14448
14659
  }
14449
14660
  /**
14450
14661
  * List Details - strongly typed entity sub-class
@@ -14513,6 +14724,32 @@ export declare class ListDetailEntity extends BaseEntity<ListDetailEntityType> {
14513
14724
  */
14514
14725
  get __mj_UpdatedAt(): Date;
14515
14726
  /**
14727
+ * * Field Name: Status
14728
+ * * Display Name: Status
14729
+ * * SQL Data Type: nvarchar(30)
14730
+ * * Default Value: Pending
14731
+ * * Value List Type: List
14732
+ * * Possible Values
14733
+ * * Pending
14734
+ * * Active
14735
+ * * Disabled
14736
+ * * Rejected
14737
+ * * Complete
14738
+ * * Error
14739
+ * * Other
14740
+ * * Description: Tracks the status of each individual list detail row to enable processing of various types and the use of the status column for filtering list detail rows within a list that are in a particular state.
14741
+ */
14742
+ get Status(): 'Pending' | 'Active' | 'Disabled' | 'Rejected' | 'Complete' | 'Error' | 'Other';
14743
+ set Status(value: 'Pending' | 'Active' | 'Disabled' | 'Rejected' | 'Complete' | 'Error' | 'Other');
14744
+ /**
14745
+ * * Field Name: AdditionalData
14746
+ * * Display Name: Additional Data
14747
+ * * SQL Data Type: nvarchar(MAX)
14748
+ * * Description: Optional column that allows for tracking any additional data for each ListDetail row
14749
+ */
14750
+ get AdditionalData(): string | null;
14751
+ set AdditionalData(value: string | null);
14752
+ /**
14516
14753
  * * Field Name: List
14517
14754
  * * Display Name: List
14518
14755
  * * SQL Data Type: nvarchar(100)
@@ -14626,6 +14863,12 @@ export declare class ListEntity extends BaseEntity<ListEntityType> {
14626
14863
  * * SQL Data Type: nvarchar(100)
14627
14864
  */
14628
14865
  get User(): string;
14866
+ /**
14867
+ * * Field Name: Category
14868
+ * * Display Name: Category
14869
+ * * SQL Data Type: nvarchar(100)
14870
+ */
14871
+ get Category(): string | null;
14629
14872
  }
14630
14873
  /**
14631
14874
  * Output Delivery Types - strongly typed entity sub-class
@@ -15326,6 +15569,18 @@ export declare class QueryPermissionEntity extends BaseEntity<QueryPermissionEnt
15326
15569
  * * Default Value: getutcdate()
15327
15570
  */
15328
15571
  get __mj_UpdatedAt(): Date;
15572
+ /**
15573
+ * * Field Name: Query
15574
+ * * Display Name: Query
15575
+ * * SQL Data Type: nvarchar(255)
15576
+ */
15577
+ get Query(): string;
15578
+ /**
15579
+ * * Field Name: Role
15580
+ * * Display Name: Role
15581
+ * * SQL Data Type: nvarchar(50)
15582
+ */
15583
+ get Role(): string;
15329
15584
  }
15330
15585
  /**
15331
15586
  * Queue Tasks - strongly typed entity sub-class
@@ -16636,6 +16891,12 @@ export declare class RecordMergeLogEntity extends BaseEntity<RecordMergeLogEntit
16636
16891
  * * SQL Data Type: nvarchar(100)
16637
16892
  */
16638
16893
  get InitiatedByUser(): string;
16894
+ /**
16895
+ * * Field Name: ApprovedByUser
16896
+ * * Display Name: Approved By User
16897
+ * * SQL Data Type: nvarchar(100)
16898
+ */
16899
+ get ApprovedByUser(): string | null;
16639
16900
  }
16640
16901
  /**
16641
16902
  * Report Categories - strongly typed entity sub-class
@@ -17364,6 +17625,18 @@ export declare class ScheduledActionParamEntity extends BaseEntity<ScheduledActi
17364
17625
  * * Default Value: getutcdate()
17365
17626
  */
17366
17627
  get __mj_UpdatedAt(): Date;
17628
+ /**
17629
+ * * Field Name: ScheduledAction
17630
+ * * Display Name: Scheduled Action
17631
+ * * SQL Data Type: nvarchar(255)
17632
+ */
17633
+ get ScheduledAction(): string;
17634
+ /**
17635
+ * * Field Name: ActionParam
17636
+ * * Display Name: Action Param
17637
+ * * SQL Data Type: nvarchar(255)
17638
+ */
17639
+ get ActionParam(): string;
17367
17640
  }
17368
17641
  /**
17369
17642
  * Scheduled Actions - strongly typed entity sub-class
@@ -17525,6 +17798,18 @@ export declare class ScheduledActionEntity extends BaseEntity<ScheduledActionEnt
17525
17798
  * * Default Value: getutcdate()
17526
17799
  */
17527
17800
  get __mj_UpdatedAt(): Date;
17801
+ /**
17802
+ * * Field Name: CreatedByUser
17803
+ * * Display Name: Created By User
17804
+ * * SQL Data Type: nvarchar(100)
17805
+ */
17806
+ get CreatedByUser(): string;
17807
+ /**
17808
+ * * Field Name: Action
17809
+ * * Display Name: Action
17810
+ * * SQL Data Type: nvarchar(425)
17811
+ */
17812
+ get Action(): string;
17528
17813
  }
17529
17814
  /**
17530
17815
  * Schema Info - strongly typed entity sub-class
@@ -18790,13 +19075,6 @@ export declare class UserNotificationEntity extends BaseEntity<UserNotificationE
18790
19075
  get ResourceTypeID(): string | null;
18791
19076
  set ResourceTypeID(value: string | null);
18792
19077
  /**
18793
- * * Field Name: ResourceRecordID
18794
- * * Display Name: Resource Record ID
18795
- * * SQL Data Type: uniqueidentifier
18796
- */
18797
- get ResourceRecordID(): string | null;
18798
- set ResourceRecordID(value: string | null);
18799
- /**
18800
19078
  * * Field Name: ResourceConfiguration
18801
19079
  * * Display Name: Resource Configuration
18802
19080
  * * SQL Data Type: nvarchar(MAX)
@@ -18833,6 +19111,13 @@ export declare class UserNotificationEntity extends BaseEntity<UserNotificationE
18833
19111
  */
18834
19112
  get __mj_UpdatedAt(): Date;
18835
19113
  /**
19114
+ * * Field Name: ResourceRecordID
19115
+ * * Display Name: Resource Record ID
19116
+ * * SQL Data Type: uniqueidentifier
19117
+ */
19118
+ get ResourceRecordID(): string | null;
19119
+ set ResourceRecordID(value: string | null);
19120
+ /**
18836
19121
  * * Field Name: User
18837
19122
  * * Display Name: User
18838
19123
  * * SQL Data Type: nvarchar(100)
@@ -19143,6 +19428,12 @@ export declare class UserViewCategoryEntity extends BaseEntity<UserViewCategoryE
19143
19428
  */
19144
19429
  get Parent(): string | null;
19145
19430
  /**
19431
+ * * Field Name: Entity
19432
+ * * Display Name: Entity
19433
+ * * SQL Data Type: nvarchar(255)
19434
+ */
19435
+ get Entity(): string;
19436
+ /**
19146
19437
  * * Field Name: User
19147
19438
  * * Display Name: User
19148
19439
  * * SQL Data Type: nvarchar(100)