@memberjunction/core-entities 2.2.0 → 2.3.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.
@@ -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,9 @@ 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>>;
482
+ ModelSelectionInsights: z.ZodOptional<z.ZodNullable<z.ZodString>>;
477
483
  AIModelType: z.ZodString;
478
484
  }, "strip", z.ZodTypeAny, {
479
485
  ID?: string;
@@ -488,6 +494,9 @@ export declare const AIModelSchema: z.ZodObject<{
488
494
  DriverClass?: string;
489
495
  DriverImportPath?: string;
490
496
  APIName?: string;
497
+ SpeedRank?: number;
498
+ CostRank?: number;
499
+ ModelSelectionInsights?: string;
491
500
  AIModelType?: string;
492
501
  }, {
493
502
  ID?: string;
@@ -502,9 +511,158 @@ export declare const AIModelSchema: z.ZodObject<{
502
511
  DriverClass?: string;
503
512
  DriverImportPath?: string;
504
513
  APIName?: string;
514
+ SpeedRank?: number;
515
+ CostRank?: number;
516
+ ModelSelectionInsights?: string;
505
517
  AIModelType?: string;
506
518
  }>;
507
519
  export type AIModelEntityType = z.infer<typeof AIModelSchema>;
520
+ /**
521
+ * zod schema definition for the entity AI Prompt Categories
522
+ */
523
+ export declare const AIPromptCategorySchema: z.ZodObject<{
524
+ ID: z.ZodString;
525
+ Name: z.ZodString;
526
+ ParentID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
527
+ Description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
528
+ __mj_CreatedAt: z.ZodDate;
529
+ __mj_UpdatedAt: z.ZodDate;
530
+ Parent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
531
+ }, "strip", z.ZodTypeAny, {
532
+ ID?: string;
533
+ __mj_CreatedAt?: Date;
534
+ __mj_UpdatedAt?: Date;
535
+ Name?: string;
536
+ Description?: string;
537
+ ParentID?: string;
538
+ Parent?: string;
539
+ }, {
540
+ ID?: string;
541
+ __mj_CreatedAt?: Date;
542
+ __mj_UpdatedAt?: Date;
543
+ Name?: string;
544
+ Description?: string;
545
+ ParentID?: string;
546
+ Parent?: string;
547
+ }>;
548
+ export type AIPromptCategoryEntityType = z.infer<typeof AIPromptCategorySchema>;
549
+ /**
550
+ * zod schema definition for the entity AI Prompt Types
551
+ */
552
+ export declare const AIPromptTypeSchema: z.ZodObject<{
553
+ ID: z.ZodString;
554
+ Name: z.ZodString;
555
+ Description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
556
+ __mj_CreatedAt: z.ZodDate;
557
+ __mj_UpdatedAt: z.ZodDate;
558
+ }, "strip", z.ZodTypeAny, {
559
+ ID?: string;
560
+ __mj_CreatedAt?: Date;
561
+ __mj_UpdatedAt?: Date;
562
+ Name?: string;
563
+ Description?: string;
564
+ }, {
565
+ ID?: string;
566
+ __mj_CreatedAt?: Date;
567
+ __mj_UpdatedAt?: Date;
568
+ Name?: string;
569
+ Description?: string;
570
+ }>;
571
+ export type AIPromptTypeEntityType = z.infer<typeof AIPromptTypeSchema>;
572
+ /**
573
+ * zod schema definition for the entity AI Prompts
574
+ */
575
+ export declare const AIPromptSchema: z.ZodObject<{
576
+ ID: z.ZodString;
577
+ Name: z.ZodString;
578
+ Description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
579
+ TemplateID: z.ZodString;
580
+ CategoryID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
581
+ TypeID: z.ZodString;
582
+ Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">]>;
583
+ CacheResults: z.ZodBoolean;
584
+ CacheExpiration: z.ZodNumber;
585
+ __mj_CreatedAt: z.ZodDate;
586
+ __mj_UpdatedAt: z.ZodDate;
587
+ Template: z.ZodString;
588
+ Category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
589
+ Type: z.ZodString;
590
+ }, "strip", z.ZodTypeAny, {
591
+ Category?: string;
592
+ ID?: string;
593
+ __mj_CreatedAt?: Date;
594
+ __mj_UpdatedAt?: Date;
595
+ Name?: string;
596
+ Description?: string;
597
+ Status?: "Pending" | "Active" | "Disabled";
598
+ Type?: string;
599
+ CategoryID?: string;
600
+ TemplateID?: string;
601
+ TypeID?: string;
602
+ CacheResults?: boolean;
603
+ CacheExpiration?: number;
604
+ Template?: string;
605
+ }, {
606
+ Category?: string;
607
+ ID?: string;
608
+ __mj_CreatedAt?: Date;
609
+ __mj_UpdatedAt?: Date;
610
+ Name?: string;
611
+ Description?: string;
612
+ Status?: "Pending" | "Active" | "Disabled";
613
+ Type?: string;
614
+ CategoryID?: string;
615
+ TemplateID?: string;
616
+ TypeID?: string;
617
+ CacheResults?: boolean;
618
+ CacheExpiration?: number;
619
+ Template?: string;
620
+ }>;
621
+ export type AIPromptEntityType = z.infer<typeof AIPromptSchema>;
622
+ /**
623
+ * zod schema definition for the entity AI Result Cache
624
+ */
625
+ export declare const AIResultCacheSchema: z.ZodObject<{
626
+ ID: z.ZodString;
627
+ AIPromptID: z.ZodString;
628
+ AIModelID: z.ZodString;
629
+ RunAt: z.ZodDate;
630
+ PromptText: z.ZodString;
631
+ ResultText: z.ZodOptional<z.ZodNullable<z.ZodString>>;
632
+ Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Expired">]>;
633
+ ExpiredOn: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
634
+ __mj_CreatedAt: z.ZodDate;
635
+ __mj_UpdatedAt: z.ZodDate;
636
+ AIPrompt: z.ZodString;
637
+ AIModel: z.ZodString;
638
+ }, "strip", z.ZodTypeAny, {
639
+ ID?: string;
640
+ __mj_CreatedAt?: Date;
641
+ __mj_UpdatedAt?: Date;
642
+ Status?: "Active" | "Expired";
643
+ AIModelID?: string;
644
+ AIModel?: string;
645
+ AIPromptID?: string;
646
+ RunAt?: Date;
647
+ PromptText?: string;
648
+ ResultText?: string;
649
+ ExpiredOn?: Date;
650
+ AIPrompt?: string;
651
+ }, {
652
+ ID?: string;
653
+ __mj_CreatedAt?: Date;
654
+ __mj_UpdatedAt?: Date;
655
+ Status?: "Active" | "Expired";
656
+ AIModelID?: string;
657
+ AIModel?: string;
658
+ AIPromptID?: string;
659
+ RunAt?: Date;
660
+ PromptText?: string;
661
+ ResultText?: string;
662
+ ExpiredOn?: Date;
663
+ AIPrompt?: string;
664
+ }>;
665
+ export type AIResultCacheEntityType = z.infer<typeof AIResultCacheSchema>;
508
666
  /**
509
667
  * zod schema definition for the entity Application Entities
510
668
  */
@@ -563,6 +721,7 @@ export declare const ApplicationSettingSchema: z.ZodObject<{
563
721
  Comments: z.ZodOptional<z.ZodNullable<z.ZodString>>;
564
722
  __mj_CreatedAt: z.ZodDate;
565
723
  __mj_UpdatedAt: z.ZodDate;
724
+ Application: z.ZodString;
566
725
  }, "strip", z.ZodTypeAny, {
567
726
  ID?: string;
568
727
  Comments?: string;
@@ -570,6 +729,7 @@ export declare const ApplicationSettingSchema: z.ZodObject<{
570
729
  __mj_UpdatedAt?: Date;
571
730
  Name?: string;
572
731
  ApplicationID?: string;
732
+ Application?: string;
573
733
  Value?: string;
574
734
  }, {
575
735
  ID?: string;
@@ -578,6 +738,7 @@ export declare const ApplicationSettingSchema: z.ZodObject<{
578
738
  __mj_UpdatedAt?: Date;
579
739
  Name?: string;
580
740
  ApplicationID?: string;
741
+ Application?: string;
581
742
  Value?: string;
582
743
  }>;
583
744
  export type ApplicationSettingEntityType = z.infer<typeof ApplicationSettingSchema>;
@@ -622,11 +783,13 @@ export declare const AuditLogTypeSchema: z.ZodObject<{
622
783
  __mj_CreatedAt: z.ZodDate;
623
784
  __mj_UpdatedAt: z.ZodDate;
624
785
  Parent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
786
+ Authorization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
625
787
  }, "strip", z.ZodTypeAny, {
626
788
  ID?: string;
627
789
  AuthorizationID?: string;
628
790
  __mj_CreatedAt?: Date;
629
791
  __mj_UpdatedAt?: Date;
792
+ Authorization?: string;
630
793
  Name?: string;
631
794
  Description?: string;
632
795
  ParentID?: string;
@@ -636,6 +799,7 @@ export declare const AuditLogTypeSchema: z.ZodObject<{
636
799
  AuthorizationID?: string;
637
800
  __mj_CreatedAt?: Date;
638
801
  __mj_UpdatedAt?: Date;
802
+ Authorization?: string;
639
803
  Name?: string;
640
804
  Description?: string;
641
805
  ParentID?: string;
@@ -658,6 +822,8 @@ export declare const AuditLogSchema: z.ZodObject<{
658
822
  __mj_CreatedAt: z.ZodDate;
659
823
  __mj_UpdatedAt: z.ZodDate;
660
824
  User: z.ZodString;
825
+ AuditLogType: z.ZodString;
826
+ Authorization: z.ZodOptional<z.ZodNullable<z.ZodString>>;
661
827
  Entity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
662
828
  }, "strip", z.ZodTypeAny, {
663
829
  Details?: string;
@@ -665,6 +831,7 @@ export declare const AuditLogSchema: z.ZodObject<{
665
831
  AuthorizationID?: string;
666
832
  __mj_CreatedAt?: Date;
667
833
  __mj_UpdatedAt?: Date;
834
+ Authorization?: string;
668
835
  Description?: string;
669
836
  Status?: "Success" | "Failed";
670
837
  UserID?: string;
@@ -673,12 +840,14 @@ export declare const AuditLogSchema: z.ZodObject<{
673
840
  Entity?: string;
674
841
  AuditLogTypeID?: string;
675
842
  RecordID?: string;
843
+ AuditLogType?: string;
676
844
  }, {
677
845
  Details?: string;
678
846
  ID?: string;
679
847
  AuthorizationID?: string;
680
848
  __mj_CreatedAt?: Date;
681
849
  __mj_UpdatedAt?: Date;
850
+ Authorization?: string;
682
851
  Description?: string;
683
852
  Status?: "Success" | "Failed";
684
853
  UserID?: string;
@@ -687,6 +856,7 @@ export declare const AuditLogSchema: z.ZodObject<{
687
856
  Entity?: string;
688
857
  AuditLogTypeID?: string;
689
858
  RecordID?: string;
859
+ AuditLogType?: string;
690
860
  }>;
691
861
  export type AuditLogEntityType = z.infer<typeof AuditLogSchema>;
692
862
  /**
@@ -699,20 +869,26 @@ export declare const AuthorizationRoleSchema: z.ZodObject<{
699
869
  Type: z.ZodUnion<[z.ZodLiteral<"Allow">, z.ZodLiteral<"Deny">]>;
700
870
  __mj_CreatedAt: z.ZodDate;
701
871
  __mj_UpdatedAt: z.ZodDate;
872
+ Authorization: z.ZodString;
873
+ Role: z.ZodString;
702
874
  }, "strip", z.ZodTypeAny, {
703
875
  ID?: string;
704
876
  AuthorizationID?: string;
705
877
  __mj_CreatedAt?: Date;
706
878
  __mj_UpdatedAt?: Date;
879
+ Authorization?: string;
707
880
  Type?: "Allow" | "Deny";
708
881
  RoleID?: string;
882
+ Role?: string;
709
883
  }, {
710
884
  ID?: string;
711
885
  AuthorizationID?: string;
712
886
  __mj_CreatedAt?: Date;
713
887
  __mj_UpdatedAt?: Date;
888
+ Authorization?: string;
714
889
  Type?: "Allow" | "Deny";
715
890
  RoleID?: string;
891
+ Role?: string;
716
892
  }>;
717
893
  export type AuthorizationRoleEntityType = z.infer<typeof AuthorizationRoleSchema>;
718
894
  /**
@@ -1214,9 +1390,9 @@ export declare const ConversationDetailSchema: z.ZodObject<{
1214
1390
  ID?: string;
1215
1391
  __mj_CreatedAt?: Date;
1216
1392
  __mj_UpdatedAt?: Date;
1393
+ Role?: "Error" | "User" | "AI";
1217
1394
  ConversationID?: string;
1218
1395
  ExternalID?: string;
1219
- Role?: "Error" | "User" | "AI";
1220
1396
  Message?: string;
1221
1397
  HiddenToUser?: boolean;
1222
1398
  Conversation?: string;
@@ -1225,9 +1401,9 @@ export declare const ConversationDetailSchema: z.ZodObject<{
1225
1401
  ID?: string;
1226
1402
  __mj_CreatedAt?: Date;
1227
1403
  __mj_UpdatedAt?: Date;
1404
+ Role?: "Error" | "User" | "AI";
1228
1405
  ConversationID?: string;
1229
1406
  ExternalID?: string;
1230
- Role?: "Error" | "User" | "AI";
1231
1407
  Message?: string;
1232
1408
  HiddenToUser?: boolean;
1233
1409
  Conversation?: string;
@@ -1251,6 +1427,7 @@ export declare const ConversationSchema: z.ZodObject<{
1251
1427
  __mj_UpdatedAt: z.ZodDate;
1252
1428
  User: z.ZodString;
1253
1429
  LinkedEntity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1430
+ DataContext: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1254
1431
  }, "strip", z.ZodTypeAny, {
1255
1432
  ID?: string;
1256
1433
  __mj_CreatedAt?: Date;
@@ -1266,6 +1443,7 @@ export declare const ConversationSchema: z.ZodObject<{
1266
1443
  LinkedRecordID?: string;
1267
1444
  DataContextID?: string;
1268
1445
  LinkedEntity?: string;
1446
+ DataContext?: string;
1269
1447
  }, {
1270
1448
  ID?: string;
1271
1449
  __mj_CreatedAt?: Date;
@@ -1281,6 +1459,7 @@ export declare const ConversationSchema: z.ZodObject<{
1281
1459
  LinkedRecordID?: string;
1282
1460
  DataContextID?: string;
1283
1461
  LinkedEntity?: string;
1462
+ DataContext?: string;
1284
1463
  }>;
1285
1464
  export type ConversationEntityType = z.infer<typeof ConversationSchema>;
1286
1465
  /**
@@ -1385,12 +1564,12 @@ export declare const DataContextItemSchema: z.ZodObject<{
1385
1564
  Entity?: string;
1386
1565
  RecordID?: string;
1387
1566
  DataContextID?: string;
1567
+ DataContext?: string;
1388
1568
  ViewID?: string;
1389
1569
  QueryID?: string;
1390
1570
  SQL?: string;
1391
1571
  DataJSON?: string;
1392
1572
  LastRefreshedAt?: Date;
1393
- DataContext?: string;
1394
1573
  View?: string;
1395
1574
  Query?: string;
1396
1575
  }, {
@@ -1402,12 +1581,12 @@ export declare const DataContextItemSchema: z.ZodObject<{
1402
1581
  Entity?: string;
1403
1582
  RecordID?: string;
1404
1583
  DataContextID?: string;
1584
+ DataContext?: string;
1405
1585
  ViewID?: string;
1406
1586
  QueryID?: string;
1407
1587
  SQL?: string;
1408
1588
  DataJSON?: string;
1409
1589
  LastRefreshedAt?: Date;
1410
- DataContext?: string;
1411
1590
  View?: string;
1412
1591
  Query?: string;
1413
1592
  }>;
@@ -1458,6 +1637,7 @@ export declare const DatasetItemSchema: z.ZodObject<{
1458
1637
  Description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1459
1638
  __mj_CreatedAt: z.ZodDate;
1460
1639
  __mj_UpdatedAt: z.ZodDate;
1640
+ Dataset: z.ZodString;
1461
1641
  Entity: z.ZodString;
1462
1642
  }, "strip", z.ZodTypeAny, {
1463
1643
  ID?: string;
@@ -1471,6 +1651,7 @@ export declare const DatasetItemSchema: z.ZodObject<{
1471
1651
  DatasetID?: string;
1472
1652
  WhereClause?: string;
1473
1653
  DateFieldToCheck?: string;
1654
+ Dataset?: string;
1474
1655
  }, {
1475
1656
  ID?: string;
1476
1657
  __mj_CreatedAt?: Date;
@@ -1483,6 +1664,7 @@ export declare const DatasetItemSchema: z.ZodObject<{
1483
1664
  DatasetID?: string;
1484
1665
  WhereClause?: string;
1485
1666
  DateFieldToCheck?: string;
1667
+ Dataset?: string;
1486
1668
  }>;
1487
1669
  export type DatasetItemEntityType = z.infer<typeof DatasetItemSchema>;
1488
1670
  /**
@@ -2338,6 +2520,9 @@ export declare const EntityDocumentSchema: z.ZodObject<{
2338
2520
  __mj_UpdatedAt: z.ZodDate;
2339
2521
  Type: z.ZodString;
2340
2522
  Entity: z.ZodString;
2523
+ VectorDatabase: z.ZodString;
2524
+ Template: z.ZodString;
2525
+ AIModel: z.ZodString;
2341
2526
  }, "strip", z.ZodTypeAny, {
2342
2527
  ID?: string;
2343
2528
  __mj_CreatedAt?: Date;
@@ -2346,13 +2531,16 @@ export declare const EntityDocumentSchema: z.ZodObject<{
2346
2531
  Status?: "Active" | "Inactive";
2347
2532
  Type?: string;
2348
2533
  AIModelID?: string;
2534
+ AIModel?: string;
2535
+ TemplateID?: string;
2536
+ TypeID?: string;
2537
+ Template?: string;
2349
2538
  EntityID?: string;
2350
2539
  Entity?: string;
2351
- TypeID?: string;
2352
2540
  VectorDatabaseID?: string;
2353
- TemplateID?: string;
2354
2541
  PotentialMatchThreshold?: number;
2355
2542
  AbsoluteMatchThreshold?: number;
2543
+ VectorDatabase?: string;
2356
2544
  }, {
2357
2545
  ID?: string;
2358
2546
  __mj_CreatedAt?: Date;
@@ -2361,13 +2549,16 @@ export declare const EntityDocumentSchema: z.ZodObject<{
2361
2549
  Status?: "Active" | "Inactive";
2362
2550
  Type?: string;
2363
2551
  AIModelID?: string;
2552
+ AIModel?: string;
2553
+ TemplateID?: string;
2554
+ TypeID?: string;
2555
+ Template?: string;
2364
2556
  EntityID?: string;
2365
2557
  Entity?: string;
2366
- TypeID?: string;
2367
2558
  VectorDatabaseID?: string;
2368
- TemplateID?: string;
2369
2559
  PotentialMatchThreshold?: number;
2370
2560
  AbsoluteMatchThreshold?: number;
2561
+ VectorDatabase?: string;
2371
2562
  }>;
2372
2563
  export type EntityDocumentEntityType = z.infer<typeof EntityDocumentSchema>;
2373
2564
  /**
@@ -2658,30 +2849,39 @@ export declare const EntityRecordDocumentSchema: z.ZodObject<{
2658
2849
  EntityRecordUpdatedAt: z.ZodDate;
2659
2850
  __mj_CreatedAt: z.ZodDate;
2660
2851
  __mj_UpdatedAt: z.ZodDate;
2852
+ Entity: z.ZodString;
2853
+ EntityDocument: z.ZodString;
2854
+ VectorIndex: z.ZodString;
2661
2855
  }, "strip", z.ZodTypeAny, {
2662
2856
  ID?: string;
2663
2857
  __mj_CreatedAt?: Date;
2664
2858
  __mj_UpdatedAt?: Date;
2665
2859
  EntityID?: string;
2860
+ Entity?: string;
2666
2861
  RecordID?: string;
2667
2862
  EntityDocumentID?: string;
2863
+ EntityDocument?: string;
2668
2864
  DocumentText?: string;
2669
2865
  VectorIndexID?: string;
2670
2866
  VectorID?: string;
2671
2867
  VectorJSON?: string;
2672
2868
  EntityRecordUpdatedAt?: Date;
2869
+ VectorIndex?: string;
2673
2870
  }, {
2674
2871
  ID?: string;
2675
2872
  __mj_CreatedAt?: Date;
2676
2873
  __mj_UpdatedAt?: Date;
2677
2874
  EntityID?: string;
2875
+ Entity?: string;
2678
2876
  RecordID?: string;
2679
2877
  EntityDocumentID?: string;
2878
+ EntityDocument?: string;
2680
2879
  DocumentText?: string;
2681
2880
  VectorIndexID?: string;
2682
2881
  VectorID?: string;
2683
2882
  VectorJSON?: string;
2684
2883
  EntityRecordUpdatedAt?: Date;
2884
+ VectorIndex?: string;
2685
2885
  }>;
2686
2886
  export type EntityRecordDocumentEntityType = z.infer<typeof EntityRecordDocumentSchema>;
2687
2887
  /**
@@ -3263,6 +3463,8 @@ export declare const ListCategorySchema: z.ZodObject<{
3263
3463
  UserID: z.ZodString;
3264
3464
  __mj_CreatedAt: z.ZodDate;
3265
3465
  __mj_UpdatedAt: z.ZodDate;
3466
+ Parent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3467
+ User: z.ZodString;
3266
3468
  }, "strip", z.ZodTypeAny, {
3267
3469
  ID?: string;
3268
3470
  __mj_CreatedAt?: Date;
@@ -3270,7 +3472,9 @@ export declare const ListCategorySchema: z.ZodObject<{
3270
3472
  Name?: string;
3271
3473
  Description?: string;
3272
3474
  ParentID?: string;
3475
+ Parent?: string;
3273
3476
  UserID?: string;
3477
+ User?: string;
3274
3478
  }, {
3275
3479
  ID?: string;
3276
3480
  __mj_CreatedAt?: Date;
@@ -3278,7 +3482,9 @@ export declare const ListCategorySchema: z.ZodObject<{
3278
3482
  Name?: string;
3279
3483
  Description?: string;
3280
3484
  ParentID?: string;
3485
+ Parent?: string;
3281
3486
  UserID?: string;
3487
+ User?: string;
3282
3488
  }>;
3283
3489
  export type ListCategoryEntityType = z.infer<typeof ListCategorySchema>;
3284
3490
  /**
@@ -3291,23 +3497,29 @@ export declare const ListDetailSchema: z.ZodObject<{
3291
3497
  Sequence: z.ZodNumber;
3292
3498
  __mj_CreatedAt: z.ZodDate;
3293
3499
  __mj_UpdatedAt: z.ZodDate;
3500
+ Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Rejected">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Error">, z.ZodLiteral<"Other">]>;
3501
+ AdditionalData: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3294
3502
  List: z.ZodString;
3295
3503
  }, "strip", z.ZodTypeAny, {
3296
3504
  List?: string;
3297
3505
  ID?: string;
3298
3506
  __mj_CreatedAt?: Date;
3299
3507
  __mj_UpdatedAt?: Date;
3508
+ Status?: "Other" | "Pending" | "Complete" | "Error" | "Rejected" | "Active" | "Disabled";
3300
3509
  Sequence?: number;
3301
3510
  RecordID?: string;
3302
3511
  ListID?: string;
3512
+ AdditionalData?: string;
3303
3513
  }, {
3304
3514
  List?: string;
3305
3515
  ID?: string;
3306
3516
  __mj_CreatedAt?: Date;
3307
3517
  __mj_UpdatedAt?: Date;
3518
+ Status?: "Other" | "Pending" | "Complete" | "Error" | "Rejected" | "Active" | "Disabled";
3308
3519
  Sequence?: number;
3309
3520
  RecordID?: string;
3310
3521
  ListID?: string;
3522
+ AdditionalData?: string;
3311
3523
  }>;
3312
3524
  export type ListDetailEntityType = z.infer<typeof ListDetailSchema>;
3313
3525
  /**
@@ -3326,7 +3538,9 @@ export declare const ListSchema: z.ZodObject<{
3326
3538
  __mj_UpdatedAt: z.ZodDate;
3327
3539
  Entity: z.ZodString;
3328
3540
  User: z.ZodString;
3541
+ Category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3329
3542
  }, "strip", z.ZodTypeAny, {
3543
+ Category?: string;
3330
3544
  ID?: string;
3331
3545
  __mj_CreatedAt?: Date;
3332
3546
  __mj_UpdatedAt?: Date;
@@ -3340,6 +3554,7 @@ export declare const ListSchema: z.ZodObject<{
3340
3554
  CompanyIntegrationID?: string;
3341
3555
  ExternalSystemRecordID?: string;
3342
3556
  }, {
3557
+ Category?: string;
3343
3558
  ID?: string;
3344
3559
  __mj_CreatedAt?: Date;
3345
3560
  __mj_UpdatedAt?: Date;
@@ -3582,18 +3797,24 @@ export declare const QueryPermissionSchema: z.ZodObject<{
3582
3797
  RoleID: z.ZodString;
3583
3798
  __mj_CreatedAt: z.ZodDate;
3584
3799
  __mj_UpdatedAt: z.ZodDate;
3800
+ Query: z.ZodString;
3801
+ Role: z.ZodString;
3585
3802
  }, "strip", z.ZodTypeAny, {
3586
3803
  ID?: string;
3587
3804
  __mj_CreatedAt?: Date;
3588
3805
  __mj_UpdatedAt?: Date;
3589
3806
  RoleID?: string;
3807
+ Role?: string;
3590
3808
  QueryID?: string;
3809
+ Query?: string;
3591
3810
  }, {
3592
3811
  ID?: string;
3593
3812
  __mj_CreatedAt?: Date;
3594
3813
  __mj_UpdatedAt?: Date;
3595
3814
  RoleID?: string;
3815
+ Role?: string;
3596
3816
  QueryID?: string;
3817
+ Query?: string;
3597
3818
  }>;
3598
3819
  export type QueryPermissionEntityType = z.infer<typeof QueryPermissionSchema>;
3599
3820
  /**
@@ -4016,6 +4237,7 @@ export declare const RecordMergeLogSchema: z.ZodObject<{
4016
4237
  __mj_UpdatedAt: z.ZodDate;
4017
4238
  Entity: z.ZodString;
4018
4239
  InitiatedByUser: z.ZodString;
4240
+ ApprovedByUser: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4019
4241
  }, "strip", z.ZodTypeAny, {
4020
4242
  ID?: string;
4021
4243
  Comments?: string;
@@ -4026,6 +4248,7 @@ export declare const RecordMergeLogSchema: z.ZodObject<{
4026
4248
  ApprovalStatus?: "Pending" | "Approved" | "Rejected";
4027
4249
  ApprovedByUserID?: string;
4028
4250
  ProcessingStatus?: "Complete" | "Error" | "Started";
4251
+ ApprovedByUser?: string;
4029
4252
  ProcessingLog?: string;
4030
4253
  SurvivingRecordID?: string;
4031
4254
  InitiatedByUserID?: string;
@@ -4042,6 +4265,7 @@ export declare const RecordMergeLogSchema: z.ZodObject<{
4042
4265
  ApprovalStatus?: "Pending" | "Approved" | "Rejected";
4043
4266
  ApprovedByUserID?: string;
4044
4267
  ProcessingStatus?: "Complete" | "Error" | "Started";
4268
+ ApprovedByUser?: string;
4045
4269
  ProcessingLog?: string;
4046
4270
  SurvivingRecordID?: string;
4047
4271
  InitiatedByUserID?: string;
@@ -4305,6 +4529,8 @@ export declare const ScheduledActionParamSchema: z.ZodObject<{
4305
4529
  Comments: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4306
4530
  __mj_CreatedAt: z.ZodDate;
4307
4531
  __mj_UpdatedAt: z.ZodDate;
4532
+ ScheduledAction: z.ZodString;
4533
+ ActionParam: z.ZodString;
4308
4534
  }, "strip", z.ZodTypeAny, {
4309
4535
  ID?: string;
4310
4536
  Comments?: string;
@@ -4313,7 +4539,9 @@ export declare const ScheduledActionParamSchema: z.ZodObject<{
4313
4539
  ValueType?: "Static" | "SQL Statement";
4314
4540
  Value?: string;
4315
4541
  ActionParamID?: string;
4542
+ ActionParam?: string;
4316
4543
  ScheduledActionID?: string;
4544
+ ScheduledAction?: string;
4317
4545
  }, {
4318
4546
  ID?: string;
4319
4547
  Comments?: string;
@@ -4322,7 +4550,9 @@ export declare const ScheduledActionParamSchema: z.ZodObject<{
4322
4550
  ValueType?: "Static" | "SQL Statement";
4323
4551
  Value?: string;
4324
4552
  ActionParamID?: string;
4553
+ ActionParam?: string;
4325
4554
  ScheduledActionID?: string;
4555
+ ScheduledAction?: string;
4326
4556
  }>;
4327
4557
  export type ScheduledActionParamEntityType = z.infer<typeof ScheduledActionParamSchema>;
4328
4558
  /**
@@ -4345,11 +4575,14 @@ export declare const ScheduledActionSchema: z.ZodObject<{
4345
4575
  CustomCronExpression: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4346
4576
  __mj_CreatedAt: z.ZodDate;
4347
4577
  __mj_UpdatedAt: z.ZodDate;
4578
+ CreatedByUser: z.ZodString;
4579
+ Action: z.ZodString;
4348
4580
  }, "strip", z.ZodTypeAny, {
4349
4581
  ID?: string;
4350
4582
  ActionID?: string;
4351
4583
  __mj_CreatedAt?: Date;
4352
4584
  __mj_UpdatedAt?: Date;
4585
+ Action?: string;
4353
4586
  Name?: string;
4354
4587
  Description?: string;
4355
4588
  Status?: "Pending" | "Active" | "Disabled" | "Expired";
@@ -4362,11 +4595,13 @@ export declare const ScheduledActionSchema: z.ZodObject<{
4362
4595
  DayOfMonth?: number;
4363
4596
  Month?: string;
4364
4597
  CustomCronExpression?: string;
4598
+ CreatedByUser?: string;
4365
4599
  }, {
4366
4600
  ID?: string;
4367
4601
  ActionID?: string;
4368
4602
  __mj_CreatedAt?: Date;
4369
4603
  __mj_UpdatedAt?: Date;
4604
+ Action?: string;
4370
4605
  Name?: string;
4371
4606
  Description?: string;
4372
4607
  Status?: "Pending" | "Active" | "Disabled" | "Expired";
@@ -4379,6 +4614,7 @@ export declare const ScheduledActionSchema: z.ZodObject<{
4379
4614
  DayOfMonth?: number;
4380
4615
  Month?: string;
4381
4616
  CustomCronExpression?: string;
4617
+ CreatedByUser?: string;
4382
4618
  }>;
4383
4619
  export type ScheduledActionEntityType = z.infer<typeof ScheduledActionSchema>;
4384
4620
  /**
@@ -4581,22 +4817,22 @@ export declare const TemplateContentSchema: z.ZodObject<{
4581
4817
  __mj_UpdatedAt?: Date;
4582
4818
  Type?: string;
4583
4819
  IsActive?: boolean;
4584
- Priority?: number;
4585
- TypeID?: string;
4586
4820
  TemplateID?: string;
4587
- TemplateText?: string;
4821
+ TypeID?: string;
4588
4822
  Template?: string;
4823
+ Priority?: number;
4824
+ TemplateText?: string;
4589
4825
  }, {
4590
4826
  ID?: string;
4591
4827
  __mj_CreatedAt?: Date;
4592
4828
  __mj_UpdatedAt?: Date;
4593
4829
  Type?: string;
4594
4830
  IsActive?: boolean;
4595
- Priority?: number;
4596
- TypeID?: string;
4597
4831
  TemplateID?: string;
4598
- TemplateText?: string;
4832
+ TypeID?: string;
4599
4833
  Template?: string;
4834
+ Priority?: number;
4835
+ TemplateText?: string;
4600
4836
  }>;
4601
4837
  export type TemplateContentEntityType = z.infer<typeof TemplateContentSchema>;
4602
4838
  /**
@@ -4628,11 +4864,11 @@ export declare const TemplateParamSchema: z.ZodObject<{
4628
4864
  DefaultValue?: string;
4629
4865
  Type?: "Scalar" | "Entity" | "Array" | "Object" | "Record";
4630
4866
  IsRequired?: boolean;
4867
+ TemplateID?: string;
4868
+ Template?: string;
4631
4869
  EntityID?: string;
4632
4870
  Entity?: string;
4633
4871
  RecordID?: string;
4634
- TemplateID?: string;
4635
- Template?: string;
4636
4872
  LinkedParameterName?: string;
4637
4873
  LinkedParameterField?: string;
4638
4874
  ExtraFilter?: string;
@@ -4645,11 +4881,11 @@ export declare const TemplateParamSchema: z.ZodObject<{
4645
4881
  DefaultValue?: string;
4646
4882
  Type?: "Scalar" | "Entity" | "Array" | "Object" | "Record";
4647
4883
  IsRequired?: boolean;
4884
+ TemplateID?: string;
4885
+ Template?: string;
4648
4886
  EntityID?: string;
4649
4887
  Entity?: string;
4650
4888
  RecordID?: string;
4651
- TemplateID?: string;
4652
- Template?: string;
4653
4889
  LinkedParameterName?: string;
4654
4890
  LinkedParameterField?: string;
4655
4891
  ExtraFilter?: string;
@@ -4816,12 +5052,12 @@ export declare const UserNotificationSchema: z.ZodObject<{
4816
5052
  Title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4817
5053
  Message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4818
5054
  ResourceTypeID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4819
- ResourceRecordID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4820
5055
  ResourceConfiguration: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4821
5056
  Unread: z.ZodBoolean;
4822
5057
  ReadAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
4823
5058
  __mj_CreatedAt: z.ZodDate;
4824
5059
  __mj_UpdatedAt: z.ZodDate;
5060
+ ResourceRecordID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4825
5061
  User: z.ZodString;
4826
5062
  ResourceType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4827
5063
  }, "strip", z.ZodTypeAny, {
@@ -4833,10 +5069,10 @@ export declare const UserNotificationSchema: z.ZodObject<{
4833
5069
  Message?: string;
4834
5070
  Title?: string;
4835
5071
  ResourceTypeID?: string;
4836
- ResourceRecordID?: string;
4837
5072
  ResourceConfiguration?: string;
4838
5073
  Unread?: boolean;
4839
5074
  ReadAt?: Date;
5075
+ ResourceRecordID?: string;
4840
5076
  ResourceType?: string;
4841
5077
  }, {
4842
5078
  ID?: string;
@@ -4847,10 +5083,10 @@ export declare const UserNotificationSchema: z.ZodObject<{
4847
5083
  Message?: string;
4848
5084
  Title?: string;
4849
5085
  ResourceTypeID?: string;
4850
- ResourceRecordID?: string;
4851
5086
  ResourceConfiguration?: string;
4852
5087
  Unread?: boolean;
4853
5088
  ReadAt?: Date;
5089
+ ResourceRecordID?: string;
4854
5090
  ResourceType?: string;
4855
5091
  }>;
4856
5092
  export type UserNotificationEntityType = z.infer<typeof UserNotificationSchema>;
@@ -4949,6 +5185,7 @@ export declare const UserViewCategorySchema: z.ZodObject<{
4949
5185
  __mj_CreatedAt: z.ZodDate;
4950
5186
  __mj_UpdatedAt: z.ZodDate;
4951
5187
  Parent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5188
+ Entity: z.ZodString;
4952
5189
  User: z.ZodString;
4953
5190
  }, "strip", z.ZodTypeAny, {
4954
5191
  ID?: string;
@@ -4961,6 +5198,7 @@ export declare const UserViewCategorySchema: z.ZodObject<{
4961
5198
  UserID?: string;
4962
5199
  User?: string;
4963
5200
  EntityID?: string;
5201
+ Entity?: string;
4964
5202
  }, {
4965
5203
  ID?: string;
4966
5204
  __mj_CreatedAt?: Date;
@@ -4972,6 +5210,7 @@ export declare const UserViewCategorySchema: z.ZodObject<{
4972
5210
  UserID?: string;
4973
5211
  User?: string;
4974
5212
  EntityID?: string;
5213
+ Entity?: string;
4975
5214
  }>;
4976
5215
  export type UserViewCategoryEntityType = z.infer<typeof UserViewCategorySchema>;
4977
5216
  /**
@@ -5019,19 +5258,19 @@ export declare const UserViewRunSchema: z.ZodObject<{
5019
5258
  ID?: string;
5020
5259
  __mj_CreatedAt?: Date;
5021
5260
  __mj_UpdatedAt?: Date;
5261
+ RunAt?: Date;
5022
5262
  RunByUserID?: string;
5023
5263
  RunByUser?: string;
5024
5264
  UserViewID?: string;
5025
- RunAt?: Date;
5026
5265
  UserView?: string;
5027
5266
  }, {
5028
5267
  ID?: string;
5029
5268
  __mj_CreatedAt?: Date;
5030
5269
  __mj_UpdatedAt?: Date;
5270
+ RunAt?: Date;
5031
5271
  RunByUserID?: string;
5032
5272
  RunByUser?: string;
5033
5273
  UserViewID?: string;
5034
- RunAt?: Date;
5035
5274
  UserView?: string;
5036
5275
  }>;
5037
5276
  export type UserViewRunEntityType = z.infer<typeof UserViewRunSchema>;
@@ -5238,8 +5477,8 @@ export declare const VectorIndexSchema: z.ZodObject<{
5238
5477
  Name?: string;
5239
5478
  Description?: string;
5240
5479
  VectorDatabaseID?: string;
5241
- EmbeddingModelID?: string;
5242
5480
  VectorDatabase?: string;
5481
+ EmbeddingModelID?: string;
5243
5482
  EmbeddingModel?: string;
5244
5483
  }, {
5245
5484
  ID?: string;
@@ -5248,8 +5487,8 @@ export declare const VectorIndexSchema: z.ZodObject<{
5248
5487
  Name?: string;
5249
5488
  Description?: string;
5250
5489
  VectorDatabaseID?: string;
5251
- EmbeddingModelID?: string;
5252
5490
  VectorDatabase?: string;
5491
+ EmbeddingModelID?: string;
5253
5492
  EmbeddingModel?: string;
5254
5493
  }>;
5255
5494
  export type VectorIndexEntityType = z.infer<typeof VectorIndexSchema>;
@@ -5558,6 +5797,12 @@ export declare class ActionAuthorizationEntity extends BaseEntity<ActionAuthoriz
5558
5797
  * * SQL Data Type: nvarchar(425)
5559
5798
  */
5560
5799
  get Action(): string;
5800
+ /**
5801
+ * * Field Name: Authorization
5802
+ * * Display Name: Authorization
5803
+ * * SQL Data Type: nvarchar(100)
5804
+ */
5805
+ get Authorization(): string;
5561
5806
  }
5562
5807
  /**
5563
5808
  * Action Categories - strongly typed entity sub-class
@@ -6700,33 +6945,450 @@ export declare class AIModelTypeEntity extends BaseEntity<AIModelTypeEntityType>
6700
6945
  */
6701
6946
  get __mj_CreatedAt(): Date;
6702
6947
  /**
6703
- * * Field Name: __mj_UpdatedAt
6704
- * * Display Name: Updated At
6705
- * * SQL Data Type: datetimeoffset
6706
- * * Default Value: getutcdate()
6948
+ * * Field Name: __mj_UpdatedAt
6949
+ * * Display Name: Updated At
6950
+ * * SQL Data Type: datetimeoffset
6951
+ * * Default Value: getutcdate()
6952
+ */
6953
+ get __mj_UpdatedAt(): Date;
6954
+ }
6955
+ /**
6956
+ * AI Models - strongly typed entity sub-class
6957
+ * * Schema: __mj
6958
+ * * Base Table: AIModel
6959
+ * * Base View: vwAIModels
6960
+ * * @description Catalog of all AI Models configured in the system
6961
+ * * Primary Key: ID
6962
+ * @extends {BaseEntity}
6963
+ * @class
6964
+ * @public
6965
+ */
6966
+ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
6967
+ /**
6968
+ * Loads the AI Models record from the database
6969
+ * @param ID: string - primary key value to load the AI Models record.
6970
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
6971
+ * @returns {Promise<boolean>} - true if successful, false otherwise
6972
+ * @public
6973
+ * @async
6974
+ * @memberof AIModelEntity
6975
+ * @method
6976
+ * @override
6977
+ */
6978
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
6979
+ /**
6980
+ * * Field Name: ID
6981
+ * * Display Name: ID
6982
+ * * SQL Data Type: uniqueidentifier
6983
+ * * Default Value: newsequentialid()
6984
+ */
6985
+ get ID(): string;
6986
+ /**
6987
+ * * Field Name: Name
6988
+ * * Display Name: Name
6989
+ * * SQL Data Type: nvarchar(50)
6990
+ */
6991
+ get Name(): string;
6992
+ set Name(value: string);
6993
+ /**
6994
+ * * Field Name: Description
6995
+ * * Display Name: Description
6996
+ * * SQL Data Type: nvarchar(MAX)
6997
+ */
6998
+ get Description(): string | null;
6999
+ set Description(value: string | null);
7000
+ /**
7001
+ * * Field Name: Vendor
7002
+ * * Display Name: Vendor
7003
+ * * SQL Data Type: nvarchar(50)
7004
+ */
7005
+ get Vendor(): string | null;
7006
+ set Vendor(value: string | null);
7007
+ /**
7008
+ * * Field Name: AIModelTypeID
7009
+ * * Display Name: AI Model Type ID
7010
+ * * SQL Data Type: uniqueidentifier
7011
+ * * Related Entity/Foreign Key: AI Model Types (vwAIModelTypes.ID)
7012
+ */
7013
+ get AIModelTypeID(): string;
7014
+ set AIModelTypeID(value: string);
7015
+ /**
7016
+ * * Field Name: PowerRank
7017
+ * * Display Name: Power Rank
7018
+ * * SQL Data Type: int
7019
+ * * Default Value: 0
7020
+ * * Description: Optional column that ranks the power of the AI model. Default is 0 and should be non-negative.
7021
+ */
7022
+ get PowerRank(): number | null;
7023
+ set PowerRank(value: number | null);
7024
+ /**
7025
+ * * Field Name: IsActive
7026
+ * * Display Name: Is Active
7027
+ * * SQL Data Type: bit
7028
+ * * Default Value: 1
7029
+ */
7030
+ get IsActive(): boolean;
7031
+ set IsActive(value: boolean);
7032
+ /**
7033
+ * * Field Name: DriverClass
7034
+ * * Display Name: Driver Class
7035
+ * * SQL Data Type: nvarchar(100)
7036
+ */
7037
+ get DriverClass(): string | null;
7038
+ set DriverClass(value: string | null);
7039
+ /**
7040
+ * * Field Name: DriverImportPath
7041
+ * * Display Name: Driver Import Path
7042
+ * * SQL Data Type: nvarchar(255)
7043
+ */
7044
+ get DriverImportPath(): string | null;
7045
+ set DriverImportPath(value: string | null);
7046
+ /**
7047
+ * * Field Name: APIName
7048
+ * * Display Name: APIName
7049
+ * * SQL Data Type: nvarchar(100)
7050
+ * * Description: The name of the model to use with API calls which might differ from the Name, if APIName is not provided, Name will be used for API calls
7051
+ */
7052
+ get APIName(): string | null;
7053
+ set APIName(value: string | null);
7054
+ /**
7055
+ * * Field Name: __mj_CreatedAt
7056
+ * * Display Name: Created At
7057
+ * * SQL Data Type: datetimeoffset
7058
+ * * Default Value: getutcdate()
7059
+ */
7060
+ get __mj_CreatedAt(): Date;
7061
+ /**
7062
+ * * Field Name: __mj_UpdatedAt
7063
+ * * Display Name: Updated At
7064
+ * * SQL Data Type: datetimeoffset
7065
+ * * Default Value: getutcdate()
7066
+ */
7067
+ get __mj_UpdatedAt(): Date;
7068
+ /**
7069
+ * * Field Name: SpeedRank
7070
+ * * Display Name: Speed Rank
7071
+ * * SQL Data Type: int
7072
+ * * Default Value: 0
7073
+ * * Description: Optional column that ranks the speed of the AI model. Default is 0 and should be non-negative.
7074
+ */
7075
+ get SpeedRank(): number | null;
7076
+ set SpeedRank(value: number | null);
7077
+ /**
7078
+ * * Field Name: CostRank
7079
+ * * Display Name: Cost Rank
7080
+ * * SQL Data Type: int
7081
+ * * Default Value: 0
7082
+ * * Description: Optional column that ranks the cost of the AI model. Default is 0 and should be non-negative.
7083
+ */
7084
+ get CostRank(): number | null;
7085
+ set CostRank(value: number | null);
7086
+ /**
7087
+ * * Field Name: ModelSelectionInsights
7088
+ * * Display Name: Model Selection Insights
7089
+ * * SQL Data Type: nvarchar(MAX)
7090
+ * * Default Value: null
7091
+ * * Description: This column stores unstructured text notes that provide insights into what the model is particularly good at and areas where it may not perform as well. These notes can be used by a human or an AI to determine if the model is a good fit for various purposes.
7092
+ */
7093
+ get ModelSelectionInsights(): string | null;
7094
+ set ModelSelectionInsights(value: string | null);
7095
+ /**
7096
+ * * Field Name: AIModelType
7097
+ * * Display Name: AIModel Type
7098
+ * * SQL Data Type: nvarchar(50)
7099
+ */
7100
+ get AIModelType(): string;
7101
+ }
7102
+ /**
7103
+ * AI Prompt Categories - strongly typed entity sub-class
7104
+ * * Schema: __mj
7105
+ * * Base Table: AIPromptCategory
7106
+ * * Base View: vwAIPromptCategories
7107
+ * * @description Categories for organizing AI prompts in a hierarchical structure.
7108
+ * * Primary Key: ID
7109
+ * @extends {BaseEntity}
7110
+ * @class
7111
+ * @public
7112
+ */
7113
+ export declare class AIPromptCategoryEntity extends BaseEntity<AIPromptCategoryEntityType> {
7114
+ /**
7115
+ * Loads the AI Prompt Categories record from the database
7116
+ * @param ID: string - primary key value to load the AI Prompt Categories record.
7117
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
7118
+ * @returns {Promise<boolean>} - true if successful, false otherwise
7119
+ * @public
7120
+ * @async
7121
+ * @memberof AIPromptCategoryEntity
7122
+ * @method
7123
+ * @override
7124
+ */
7125
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7126
+ /**
7127
+ * * Field Name: ID
7128
+ * * Display Name: ID
7129
+ * * SQL Data Type: uniqueidentifier
7130
+ * * Default Value: newsequentialid()
7131
+ */
7132
+ get ID(): string;
7133
+ /**
7134
+ * * Field Name: Name
7135
+ * * Display Name: Name
7136
+ * * SQL Data Type: nvarchar(255)
7137
+ */
7138
+ get Name(): string;
7139
+ set Name(value: string);
7140
+ /**
7141
+ * * Field Name: ParentID
7142
+ * * Display Name: Parent ID
7143
+ * * SQL Data Type: uniqueidentifier
7144
+ * * Related Entity/Foreign Key: AI Prompt Categories (vwAIPromptCategories.ID)
7145
+ * * Description: Parent category ID for hierarchical organization.
7146
+ */
7147
+ get ParentID(): string | null;
7148
+ set ParentID(value: string | null);
7149
+ /**
7150
+ * * Field Name: Description
7151
+ * * Display Name: Description
7152
+ * * SQL Data Type: nvarchar(MAX)
7153
+ */
7154
+ get Description(): string | null;
7155
+ set Description(value: string | null);
7156
+ /**
7157
+ * * Field Name: __mj_CreatedAt
7158
+ * * Display Name: Created At
7159
+ * * SQL Data Type: datetimeoffset
7160
+ * * Default Value: getutcdate()
7161
+ */
7162
+ get __mj_CreatedAt(): Date;
7163
+ /**
7164
+ * * Field Name: __mj_UpdatedAt
7165
+ * * Display Name: Updated At
7166
+ * * SQL Data Type: datetimeoffset
7167
+ * * Default Value: getutcdate()
7168
+ */
7169
+ get __mj_UpdatedAt(): Date;
7170
+ /**
7171
+ * * Field Name: Parent
7172
+ * * Display Name: Parent
7173
+ * * SQL Data Type: nvarchar(255)
7174
+ */
7175
+ get Parent(): string | null;
7176
+ }
7177
+ /**
7178
+ * AI Prompt Types - strongly typed entity sub-class
7179
+ * * Schema: __mj
7180
+ * * Base Table: AIPromptType
7181
+ * * Base View: vwAIPromptTypes
7182
+ * * @description Types of AI prompts such as Chat, Text-to-Image, Text-to-Video, etc.
7183
+ * * Primary Key: ID
7184
+ * @extends {BaseEntity}
7185
+ * @class
7186
+ * @public
7187
+ */
7188
+ export declare class AIPromptTypeEntity extends BaseEntity<AIPromptTypeEntityType> {
7189
+ /**
7190
+ * Loads the AI Prompt Types record from the database
7191
+ * @param ID: string - primary key value to load the AI Prompt Types record.
7192
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
7193
+ * @returns {Promise<boolean>} - true if successful, false otherwise
7194
+ * @public
7195
+ * @async
7196
+ * @memberof AIPromptTypeEntity
7197
+ * @method
7198
+ * @override
7199
+ */
7200
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7201
+ /**
7202
+ * * Field Name: ID
7203
+ * * Display Name: ID
7204
+ * * SQL Data Type: uniqueidentifier
7205
+ * * Default Value: newsequentialid()
7206
+ */
7207
+ get ID(): string;
7208
+ /**
7209
+ * * Field Name: Name
7210
+ * * Display Name: Name
7211
+ * * SQL Data Type: nvarchar(255)
7212
+ */
7213
+ get Name(): string;
7214
+ set Name(value: string);
7215
+ /**
7216
+ * * Field Name: Description
7217
+ * * Display Name: Description
7218
+ * * SQL Data Type: nvarchar(MAX)
7219
+ */
7220
+ get Description(): string | null;
7221
+ set Description(value: string | null);
7222
+ /**
7223
+ * * Field Name: __mj_CreatedAt
7224
+ * * Display Name: Created At
7225
+ * * SQL Data Type: datetimeoffset
7226
+ * * Default Value: getutcdate()
7227
+ */
7228
+ get __mj_CreatedAt(): Date;
7229
+ /**
7230
+ * * Field Name: __mj_UpdatedAt
7231
+ * * Display Name: Updated At
7232
+ * * SQL Data Type: datetimeoffset
7233
+ * * Default Value: getutcdate()
7234
+ */
7235
+ get __mj_UpdatedAt(): Date;
7236
+ }
7237
+ /**
7238
+ * AI Prompts - strongly typed entity sub-class
7239
+ * * Schema: __mj
7240
+ * * Base Table: AIPrompt
7241
+ * * Base View: vwAIPrompts
7242
+ * * @description Stores AI prompts, including references to categories, types, and templates.
7243
+ * * Primary Key: ID
7244
+ * @extends {BaseEntity}
7245
+ * @class
7246
+ * @public
7247
+ */
7248
+ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
7249
+ /**
7250
+ * Loads the AI Prompts record from the database
7251
+ * @param ID: string - primary key value to load the AI Prompts record.
7252
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
7253
+ * @returns {Promise<boolean>} - true if successful, false otherwise
7254
+ * @public
7255
+ * @async
7256
+ * @memberof AIPromptEntity
7257
+ * @method
7258
+ * @override
7259
+ */
7260
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
7261
+ /**
7262
+ * * Field Name: ID
7263
+ * * Display Name: ID
7264
+ * * SQL Data Type: uniqueidentifier
7265
+ * * Default Value: newsequentialid()
7266
+ */
7267
+ get ID(): string;
7268
+ /**
7269
+ * * Field Name: Name
7270
+ * * Display Name: Name
7271
+ * * SQL Data Type: nvarchar(255)
7272
+ */
7273
+ get Name(): string;
7274
+ set Name(value: string);
7275
+ /**
7276
+ * * Field Name: Description
7277
+ * * Display Name: Description
7278
+ * * SQL Data Type: nvarchar(MAX)
7279
+ */
7280
+ get Description(): string | null;
7281
+ set Description(value: string | null);
7282
+ /**
7283
+ * * Field Name: TemplateID
7284
+ * * Display Name: Template ID
7285
+ * * SQL Data Type: uniqueidentifier
7286
+ * * Related Entity/Foreign Key: Templates (vwTemplates.ID)
7287
+ * * Description: Reference to the template used for the prompt.
7288
+ */
7289
+ get TemplateID(): string;
7290
+ set TemplateID(value: string);
7291
+ /**
7292
+ * * Field Name: CategoryID
7293
+ * * Display Name: Category ID
7294
+ * * SQL Data Type: uniqueidentifier
7295
+ * * Related Entity/Foreign Key: AI Prompt Categories (vwAIPromptCategories.ID)
7296
+ * * Description: Reference to the category the prompt belongs to.
7297
+ */
7298
+ get CategoryID(): string | null;
7299
+ set CategoryID(value: string | null);
7300
+ /**
7301
+ * * Field Name: TypeID
7302
+ * * Display Name: Type ID
7303
+ * * SQL Data Type: uniqueidentifier
7304
+ * * Related Entity/Foreign Key: AI Prompt Types (vwAIPromptTypes.ID)
7305
+ * * Description: Reference to the type of the prompt.
7306
+ */
7307
+ get TypeID(): string;
7308
+ set TypeID(value: string);
7309
+ /**
7310
+ * * Field Name: Status
7311
+ * * Display Name: Status
7312
+ * * SQL Data Type: nvarchar(50)
7313
+ * * Value List Type: List
7314
+ * * Possible Values
7315
+ * * Pending
7316
+ * * Active
7317
+ * * Disabled
7318
+ */
7319
+ get Status(): 'Pending' | 'Active' | 'Disabled';
7320
+ set Status(value: 'Pending' | 'Active' | 'Disabled');
7321
+ /**
7322
+ * * Field Name: CacheResults
7323
+ * * Display Name: Cache Results
7324
+ * * SQL Data Type: bit
7325
+ * * Default Value: 0
7326
+ * * Description: Indicates whether the results of the prompt should be cached.
7327
+ */
7328
+ get CacheResults(): boolean;
7329
+ set CacheResults(value: boolean);
7330
+ /**
7331
+ * * Field Name: CacheExpiration
7332
+ * * Display Name: Cache Expiration
7333
+ * * SQL Data Type: decimal(10, 2)
7334
+ * * Default Value: 0
7335
+ * * Description: Number of hours the cache is valid for; can be fractional or 0 if the cache never expires.
7336
+ */
7337
+ get CacheExpiration(): number;
7338
+ set CacheExpiration(value: number);
7339
+ /**
7340
+ * * Field Name: __mj_CreatedAt
7341
+ * * Display Name: Created At
7342
+ * * SQL Data Type: datetimeoffset
7343
+ * * Default Value: getutcdate()
7344
+ */
7345
+ get __mj_CreatedAt(): Date;
7346
+ /**
7347
+ * * Field Name: __mj_UpdatedAt
7348
+ * * Display Name: Updated At
7349
+ * * SQL Data Type: datetimeoffset
7350
+ * * Default Value: getutcdate()
7351
+ */
7352
+ get __mj_UpdatedAt(): Date;
7353
+ /**
7354
+ * * Field Name: Template
7355
+ * * Display Name: Template
7356
+ * * SQL Data Type: nvarchar(255)
7357
+ */
7358
+ get Template(): string;
7359
+ /**
7360
+ * * Field Name: Category
7361
+ * * Display Name: Category
7362
+ * * SQL Data Type: nvarchar(255)
7363
+ */
7364
+ get Category(): string | null;
7365
+ /**
7366
+ * * Field Name: Type
7367
+ * * Display Name: Type
7368
+ * * SQL Data Type: nvarchar(255)
6707
7369
  */
6708
- get __mj_UpdatedAt(): Date;
7370
+ get Type(): string;
6709
7371
  }
6710
7372
  /**
6711
- * AI Models - strongly typed entity sub-class
7373
+ * AI Result Cache - strongly typed entity sub-class
6712
7374
  * * Schema: __mj
6713
- * * Base Table: AIModel
6714
- * * Base View: vwAIModels
6715
- * * @description Catalog of all AI Models configured in the system
7375
+ * * Base Table: AIResultCache
7376
+ * * Base View: vwAIResultCaches
7377
+ * * @description Stores cached results of AI prompts, including multiple runs for history and tracking purposes.
6716
7378
  * * Primary Key: ID
6717
7379
  * @extends {BaseEntity}
6718
7380
  * @class
6719
7381
  * @public
6720
7382
  */
6721
- export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
7383
+ export declare class AIResultCacheEntity extends BaseEntity<AIResultCacheEntityType> {
6722
7384
  /**
6723
- * Loads the AI Models record from the database
6724
- * @param ID: string - primary key value to load the AI Models record.
7385
+ * Loads the AI Result Cache record from the database
7386
+ * @param ID: string - primary key value to load the AI Result Cache record.
6725
7387
  * @param EntityRelationshipsToLoad - (optional) the relationships to load
6726
7388
  * @returns {Promise<boolean>} - true if successful, false otherwise
6727
7389
  * @public
6728
7390
  * @async
6729
- * @memberof AIModelEntity
7391
+ * @memberof AIResultCacheEntity
6730
7392
  * @method
6731
7393
  * @override
6732
7394
  */
@@ -6739,72 +7401,67 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
6739
7401
  */
6740
7402
  get ID(): string;
6741
7403
  /**
6742
- * * Field Name: Name
6743
- * * Display Name: Name
6744
- * * SQL Data Type: nvarchar(50)
6745
- */
6746
- get Name(): string;
6747
- set Name(value: string);
6748
- /**
6749
- * * Field Name: Description
6750
- * * Display Name: Description
6751
- * * SQL Data Type: nvarchar(MAX)
6752
- */
6753
- get Description(): string | null;
6754
- set Description(value: string | null);
6755
- /**
6756
- * * Field Name: Vendor
6757
- * * Display Name: Vendor
6758
- * * SQL Data Type: nvarchar(50)
7404
+ * * Field Name: AIPromptID
7405
+ * * Display Name: AIPrompt ID
7406
+ * * SQL Data Type: uniqueidentifier
7407
+ * * Related Entity/Foreign Key: AI Prompts (vwAIPrompts.ID)
7408
+ * * Description: Reference to the AI prompt this result corresponds to.
6759
7409
  */
6760
- get Vendor(): string | null;
6761
- set Vendor(value: string | null);
7410
+ get AIPromptID(): string;
7411
+ set AIPromptID(value: string);
6762
7412
  /**
6763
- * * Field Name: AIModelTypeID
6764
- * * Display Name: AI Model Type ID
7413
+ * * Field Name: AIModelID
7414
+ * * Display Name: AIModel ID
6765
7415
  * * SQL Data Type: uniqueidentifier
6766
- * * Related Entity/Foreign Key: AI Model Types (vwAIModelTypes.ID)
7416
+ * * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
7417
+ * * Description: Reference to the AI model that generated this result.
6767
7418
  */
6768
- get AIModelTypeID(): string;
6769
- set AIModelTypeID(value: string);
7419
+ get AIModelID(): string;
7420
+ set AIModelID(value: string);
6770
7421
  /**
6771
- * * Field Name: PowerRank
6772
- * * Display Name: Power Rank
6773
- * * 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.
7422
+ * * Field Name: RunAt
7423
+ * * Display Name: Run At
7424
+ * * SQL Data Type: datetimeoffset
7425
+ * * Description: Timestamp of when this result was generated.
6775
7426
  */
6776
- get PowerRank(): number | null;
6777
- set PowerRank(value: number | null);
7427
+ get RunAt(): Date;
7428
+ set RunAt(value: Date);
6778
7429
  /**
6779
- * * Field Name: IsActive
6780
- * * Display Name: Is Active
6781
- * * SQL Data Type: bit
6782
- * * Default Value: 1
7430
+ * * Field Name: PromptText
7431
+ * * Display Name: Prompt Text
7432
+ * * SQL Data Type: nvarchar(MAX)
7433
+ * * Description: The prompt text used to generate this result.
6783
7434
  */
6784
- get IsActive(): boolean;
6785
- set IsActive(value: boolean);
7435
+ get PromptText(): string;
7436
+ set PromptText(value: string);
6786
7437
  /**
6787
- * * Field Name: DriverClass
6788
- * * Display Name: Driver Class
6789
- * * SQL Data Type: nvarchar(100)
7438
+ * * Field Name: ResultText
7439
+ * * Display Name: Result Text
7440
+ * * SQL Data Type: nvarchar(MAX)
7441
+ * * Description: The text of the result generated by the AI model.
6790
7442
  */
6791
- get DriverClass(): string | null;
6792
- set DriverClass(value: string | null);
7443
+ get ResultText(): string | null;
7444
+ set ResultText(value: string | null);
6793
7445
  /**
6794
- * * Field Name: DriverImportPath
6795
- * * Display Name: Driver Import Path
6796
- * * SQL Data Type: nvarchar(255)
7446
+ * * Field Name: Status
7447
+ * * Display Name: Status
7448
+ * * SQL Data Type: nvarchar(50)
7449
+ * * Value List Type: List
7450
+ * * Possible Values
7451
+ * * Active
7452
+ * * Expired
7453
+ * * Description: The status of this result, indicating whether it is currently active or expired.
6797
7454
  */
6798
- get DriverImportPath(): string | null;
6799
- set DriverImportPath(value: string | null);
7455
+ get Status(): 'Active' | 'Expired';
7456
+ set Status(value: 'Active' | 'Expired');
6800
7457
  /**
6801
- * * Field Name: APIName
6802
- * * Display Name: APIName
6803
- * * SQL Data Type: nvarchar(100)
6804
- * * Description: The name of the model to use with API calls which might differ from the Name, if APIName is not provided, Name will be used for API calls
7458
+ * * Field Name: ExpiredOn
7459
+ * * Display Name: Expired On
7460
+ * * SQL Data Type: datetimeoffset
7461
+ * * Description: Timestamp of when this result was marked as expired.
6805
7462
  */
6806
- get APIName(): string | null;
6807
- set APIName(value: string | null);
7463
+ get ExpiredOn(): Date | null;
7464
+ set ExpiredOn(value: Date | null);
6808
7465
  /**
6809
7466
  * * Field Name: __mj_CreatedAt
6810
7467
  * * Display Name: Created At
@@ -6820,11 +7477,17 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
6820
7477
  */
6821
7478
  get __mj_UpdatedAt(): Date;
6822
7479
  /**
6823
- * * Field Name: AIModelType
6824
- * * Display Name: AIModel Type
7480
+ * * Field Name: AIPrompt
7481
+ * * Display Name: AIPrompt
7482
+ * * SQL Data Type: nvarchar(255)
7483
+ */
7484
+ get AIPrompt(): string;
7485
+ /**
7486
+ * * Field Name: AIModel
7487
+ * * Display Name: AIModel
6825
7488
  * * SQL Data Type: nvarchar(50)
6826
7489
  */
6827
- get AIModelType(): string;
7490
+ get AIModel(): string;
6828
7491
  }
6829
7492
  /**
6830
7493
  * Application Entities - strongly typed entity sub-class
@@ -7009,6 +7672,12 @@ export declare class ApplicationSettingEntity extends BaseEntity<ApplicationSett
7009
7672
  * * Default Value: getutcdate()
7010
7673
  */
7011
7674
  get __mj_UpdatedAt(): Date;
7675
+ /**
7676
+ * * Field Name: Application
7677
+ * * Display Name: Application
7678
+ * * SQL Data Type: nvarchar(100)
7679
+ */
7680
+ get Application(): string;
7012
7681
  }
7013
7682
  /**
7014
7683
  * Applications - strongly typed entity sub-class
@@ -7182,6 +7851,12 @@ export declare class AuditLogTypeEntity extends BaseEntity<AuditLogTypeEntityTyp
7182
7851
  * * SQL Data Type: nvarchar(50)
7183
7852
  */
7184
7853
  get Parent(): string | null;
7854
+ /**
7855
+ * * Field Name: Authorization
7856
+ * * Display Name: Authorization
7857
+ * * SQL Data Type: nvarchar(100)
7858
+ */
7859
+ get Authorization(): string | null;
7185
7860
  }
7186
7861
  /**
7187
7862
  * Audit Logs - strongly typed entity sub-class
@@ -7308,6 +7983,18 @@ export declare class AuditLogEntity extends BaseEntity<AuditLogEntityType> {
7308
7983
  */
7309
7984
  get User(): string;
7310
7985
  /**
7986
+ * * Field Name: AuditLogType
7987
+ * * Display Name: Audit Log Type
7988
+ * * SQL Data Type: nvarchar(50)
7989
+ */
7990
+ get AuditLogType(): string;
7991
+ /**
7992
+ * * Field Name: Authorization
7993
+ * * Display Name: Authorization
7994
+ * * SQL Data Type: nvarchar(100)
7995
+ */
7996
+ get Authorization(): string | null;
7997
+ /**
7311
7998
  * * Field Name: Entity
7312
7999
  * * Display Name: Entity
7313
8000
  * * SQL Data Type: nvarchar(255)
@@ -7404,6 +8091,18 @@ export declare class AuthorizationRoleEntity extends BaseEntity<AuthorizationRol
7404
8091
  * * Default Value: getutcdate()
7405
8092
  */
7406
8093
  get __mj_UpdatedAt(): Date;
8094
+ /**
8095
+ * * Field Name: Authorization
8096
+ * * Display Name: Authorization
8097
+ * * SQL Data Type: nvarchar(100)
8098
+ */
8099
+ get Authorization(): string;
8100
+ /**
8101
+ * * Field Name: Role
8102
+ * * Display Name: Role
8103
+ * * SQL Data Type: nvarchar(50)
8104
+ */
8105
+ get Role(): string;
7407
8106
  }
7408
8107
  /**
7409
8108
  * Authorizations - strongly typed entity sub-class
@@ -8564,6 +9263,7 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity<CompanyInteg
8564
9263
  * * Field Name: RunByUser
8565
9264
  * * Display Name: Run By User
8566
9265
  * * SQL Data Type: nvarchar(100)
9266
+ * * Default Value: null
8567
9267
  */
8568
9268
  get RunByUser(): string;
8569
9269
  }
@@ -8972,6 +9672,12 @@ export declare class ConversationEntity extends BaseEntity<ConversationEntityTyp
8972
9672
  * * SQL Data Type: nvarchar(255)
8973
9673
  */
8974
9674
  get LinkedEntity(): string | null;
9675
+ /**
9676
+ * * Field Name: DataContext
9677
+ * * Display Name: Data Context
9678
+ * * SQL Data Type: nvarchar(255)
9679
+ */
9680
+ get DataContext(): string | null;
8975
9681
  }
8976
9682
  /**
8977
9683
  * Dashboard Categories - strongly typed entity sub-class
@@ -9501,6 +10207,12 @@ export declare class DatasetItemEntity extends BaseEntity<DatasetItemEntityType>
9501
10207
  */
9502
10208
  get __mj_UpdatedAt(): Date;
9503
10209
  /**
10210
+ * * Field Name: Dataset
10211
+ * * Display Name: Dataset
10212
+ * * SQL Data Type: nvarchar(100)
10213
+ */
10214
+ get Dataset(): string;
10215
+ /**
9504
10216
  * * Field Name: Entity
9505
10217
  * * Display Name: Entity
9506
10218
  * * SQL Data Type: nvarchar(255)
@@ -11990,6 +12702,24 @@ export declare class EntityDocumentEntity extends BaseEntity<EntityDocumentEntit
11990
12702
  * * SQL Data Type: nvarchar(255)
11991
12703
  */
11992
12704
  get Entity(): string;
12705
+ /**
12706
+ * * Field Name: VectorDatabase
12707
+ * * Display Name: Vector Database
12708
+ * * SQL Data Type: nvarchar(100)
12709
+ */
12710
+ get VectorDatabase(): string;
12711
+ /**
12712
+ * * Field Name: Template
12713
+ * * Display Name: Template
12714
+ * * SQL Data Type: nvarchar(255)
12715
+ */
12716
+ get Template(): string;
12717
+ /**
12718
+ * * Field Name: AIModel
12719
+ * * Display Name: AIModel
12720
+ * * SQL Data Type: nvarchar(50)
12721
+ */
12722
+ get AIModel(): string;
11993
12723
  }
11994
12724
  /**
11995
12725
  * Entity Field Values - strongly typed entity sub-class
@@ -12822,6 +13552,24 @@ export declare class EntityRecordDocumentEntity extends BaseEntity<EntityRecordD
12822
13552
  * * Default Value: getutcdate()
12823
13553
  */
12824
13554
  get __mj_UpdatedAt(): Date;
13555
+ /**
13556
+ * * Field Name: Entity
13557
+ * * Display Name: Entity
13558
+ * * SQL Data Type: nvarchar(255)
13559
+ */
13560
+ get Entity(): string;
13561
+ /**
13562
+ * * Field Name: EntityDocument
13563
+ * * Display Name: Entity Document
13564
+ * * SQL Data Type: nvarchar(250)
13565
+ */
13566
+ get EntityDocument(): string;
13567
+ /**
13568
+ * * Field Name: VectorIndex
13569
+ * * Display Name: Vector Index
13570
+ * * SQL Data Type: nvarchar(255)
13571
+ */
13572
+ get VectorIndex(): string;
12825
13573
  }
12826
13574
  /**
12827
13575
  * Entity Relationship Display Components - strongly typed entity sub-class
@@ -14445,6 +15193,18 @@ export declare class ListCategoryEntity extends BaseEntity<ListCategoryEntityTyp
14445
15193
  * * Default Value: getutcdate()
14446
15194
  */
14447
15195
  get __mj_UpdatedAt(): Date;
15196
+ /**
15197
+ * * Field Name: Parent
15198
+ * * Display Name: Parent
15199
+ * * SQL Data Type: nvarchar(100)
15200
+ */
15201
+ get Parent(): string | null;
15202
+ /**
15203
+ * * Field Name: User
15204
+ * * Display Name: User
15205
+ * * SQL Data Type: nvarchar(100)
15206
+ */
15207
+ get User(): string;
14448
15208
  }
14449
15209
  /**
14450
15210
  * List Details - strongly typed entity sub-class
@@ -14513,6 +15273,32 @@ export declare class ListDetailEntity extends BaseEntity<ListDetailEntityType> {
14513
15273
  */
14514
15274
  get __mj_UpdatedAt(): Date;
14515
15275
  /**
15276
+ * * Field Name: Status
15277
+ * * Display Name: Status
15278
+ * * SQL Data Type: nvarchar(30)
15279
+ * * Default Value: Pending
15280
+ * * Value List Type: List
15281
+ * * Possible Values
15282
+ * * Pending
15283
+ * * Active
15284
+ * * Disabled
15285
+ * * Rejected
15286
+ * * Complete
15287
+ * * Error
15288
+ * * Other
15289
+ * * 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.
15290
+ */
15291
+ get Status(): 'Pending' | 'Active' | 'Disabled' | 'Rejected' | 'Complete' | 'Error' | 'Other';
15292
+ set Status(value: 'Pending' | 'Active' | 'Disabled' | 'Rejected' | 'Complete' | 'Error' | 'Other');
15293
+ /**
15294
+ * * Field Name: AdditionalData
15295
+ * * Display Name: Additional Data
15296
+ * * SQL Data Type: nvarchar(MAX)
15297
+ * * Description: Optional column that allows for tracking any additional data for each ListDetail row
15298
+ */
15299
+ get AdditionalData(): string | null;
15300
+ set AdditionalData(value: string | null);
15301
+ /**
14516
15302
  * * Field Name: List
14517
15303
  * * Display Name: List
14518
15304
  * * SQL Data Type: nvarchar(100)
@@ -14626,6 +15412,12 @@ export declare class ListEntity extends BaseEntity<ListEntityType> {
14626
15412
  * * SQL Data Type: nvarchar(100)
14627
15413
  */
14628
15414
  get User(): string;
15415
+ /**
15416
+ * * Field Name: Category
15417
+ * * Display Name: Category
15418
+ * * SQL Data Type: nvarchar(100)
15419
+ */
15420
+ get Category(): string | null;
14629
15421
  }
14630
15422
  /**
14631
15423
  * Output Delivery Types - strongly typed entity sub-class
@@ -15326,6 +16118,18 @@ export declare class QueryPermissionEntity extends BaseEntity<QueryPermissionEnt
15326
16118
  * * Default Value: getutcdate()
15327
16119
  */
15328
16120
  get __mj_UpdatedAt(): Date;
16121
+ /**
16122
+ * * Field Name: Query
16123
+ * * Display Name: Query
16124
+ * * SQL Data Type: nvarchar(255)
16125
+ */
16126
+ get Query(): string;
16127
+ /**
16128
+ * * Field Name: Role
16129
+ * * Display Name: Role
16130
+ * * SQL Data Type: nvarchar(50)
16131
+ */
16132
+ get Role(): string;
15329
16133
  }
15330
16134
  /**
15331
16135
  * Queue Tasks - strongly typed entity sub-class
@@ -16636,6 +17440,12 @@ export declare class RecordMergeLogEntity extends BaseEntity<RecordMergeLogEntit
16636
17440
  * * SQL Data Type: nvarchar(100)
16637
17441
  */
16638
17442
  get InitiatedByUser(): string;
17443
+ /**
17444
+ * * Field Name: ApprovedByUser
17445
+ * * Display Name: Approved By User
17446
+ * * SQL Data Type: nvarchar(100)
17447
+ */
17448
+ get ApprovedByUser(): string | null;
16639
17449
  }
16640
17450
  /**
16641
17451
  * Report Categories - strongly typed entity sub-class
@@ -17364,6 +18174,18 @@ export declare class ScheduledActionParamEntity extends BaseEntity<ScheduledActi
17364
18174
  * * Default Value: getutcdate()
17365
18175
  */
17366
18176
  get __mj_UpdatedAt(): Date;
18177
+ /**
18178
+ * * Field Name: ScheduledAction
18179
+ * * Display Name: Scheduled Action
18180
+ * * SQL Data Type: nvarchar(255)
18181
+ */
18182
+ get ScheduledAction(): string;
18183
+ /**
18184
+ * * Field Name: ActionParam
18185
+ * * Display Name: Action Param
18186
+ * * SQL Data Type: nvarchar(255)
18187
+ */
18188
+ get ActionParam(): string;
17367
18189
  }
17368
18190
  /**
17369
18191
  * Scheduled Actions - strongly typed entity sub-class
@@ -17525,6 +18347,18 @@ export declare class ScheduledActionEntity extends BaseEntity<ScheduledActionEnt
17525
18347
  * * Default Value: getutcdate()
17526
18348
  */
17527
18349
  get __mj_UpdatedAt(): Date;
18350
+ /**
18351
+ * * Field Name: CreatedByUser
18352
+ * * Display Name: Created By User
18353
+ * * SQL Data Type: nvarchar(100)
18354
+ */
18355
+ get CreatedByUser(): string;
18356
+ /**
18357
+ * * Field Name: Action
18358
+ * * Display Name: Action
18359
+ * * SQL Data Type: nvarchar(425)
18360
+ */
18361
+ get Action(): string;
17528
18362
  }
17529
18363
  /**
17530
18364
  * Schema Info - strongly typed entity sub-class
@@ -18790,13 +19624,6 @@ export declare class UserNotificationEntity extends BaseEntity<UserNotificationE
18790
19624
  get ResourceTypeID(): string | null;
18791
19625
  set ResourceTypeID(value: string | null);
18792
19626
  /**
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
19627
  * * Field Name: ResourceConfiguration
18801
19628
  * * Display Name: Resource Configuration
18802
19629
  * * SQL Data Type: nvarchar(MAX)
@@ -18833,6 +19660,13 @@ export declare class UserNotificationEntity extends BaseEntity<UserNotificationE
18833
19660
  */
18834
19661
  get __mj_UpdatedAt(): Date;
18835
19662
  /**
19663
+ * * Field Name: ResourceRecordID
19664
+ * * Display Name: Resource Record ID
19665
+ * * SQL Data Type: uniqueidentifier
19666
+ */
19667
+ get ResourceRecordID(): string | null;
19668
+ set ResourceRecordID(value: string | null);
19669
+ /**
18836
19670
  * * Field Name: User
18837
19671
  * * Display Name: User
18838
19672
  * * SQL Data Type: nvarchar(100)
@@ -19143,6 +19977,12 @@ export declare class UserViewCategoryEntity extends BaseEntity<UserViewCategoryE
19143
19977
  */
19144
19978
  get Parent(): string | null;
19145
19979
  /**
19980
+ * * Field Name: Entity
19981
+ * * Display Name: Entity
19982
+ * * SQL Data Type: nvarchar(255)
19983
+ */
19984
+ get Entity(): string;
19985
+ /**
19146
19986
  * * Field Name: User
19147
19987
  * * Display Name: User
19148
19988
  * * SQL Data Type: nvarchar(100)