@memberjunction/server 1.8.0 → 1.8.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.
@@ -126,8 +126,8 @@ export declare class UserFavorite_ {
126
126
  UserID: number;
127
127
  EntityID: number;
128
128
  RecordID: string;
129
- CreatedAt: Date;
130
- UpdatedAt: Date;
129
+ _mj__CreatedAt: Date;
130
+ _mj__UpdatedAt: Date;
131
131
  Entity: string;
132
132
  EntityBaseTable: string;
133
133
  EntityBaseView: string;
@@ -168,8 +168,8 @@ export declare class EmployeeCompanyIntegration_ {
168
168
  CompanyIntegrationID: number;
169
169
  ExternalSystemRecordID: string;
170
170
  IsActive: boolean;
171
- CreatedAt: Date;
172
- UpdatedAt: Date;
171
+ _mj__CreatedAt: Date;
172
+ _mj__UpdatedAt: Date;
173
173
  }
174
174
  export declare class UpdateEmployeeCompanyIntegrationInput {
175
175
  ID: number;
@@ -311,8 +311,8 @@ export declare class Skill_ {
311
311
  ID: number;
312
312
  Name: string;
313
313
  ParentID?: number;
314
- CreatedAt: Date;
315
- UpdatedAt: Date;
314
+ _mj__CreatedAt: Date;
315
+ _mj__UpdatedAt: Date;
316
316
  Parent?: string;
317
317
  EmployeeSkillsArray: mj_core_schema_server_object_types.EmployeeSkill_[];
318
318
  SkillsArray: mj_core_schema_server_object_types.Skill_[];
@@ -340,6 +340,8 @@ export declare class IntegrationURLFormat_ {
340
340
  IntegrationName?: string;
341
341
  EntityID: number;
342
342
  URLFormat: string;
343
+ _mj__CreatedAt: Date;
344
+ _mj__UpdatedAt: Date;
343
345
  IntegrationID: number;
344
346
  Integration: string;
345
347
  NavigationBaseURL?: string;
@@ -378,8 +380,8 @@ export declare class Integration_ {
378
380
  ImportPath?: string;
379
381
  BatchMaxRequestCount: number;
380
382
  BatchRequestWaitTime: number;
381
- CreatedAt: Date;
382
- UpdatedAt: Date;
383
+ _mj__CreatedAt: Date;
384
+ _mj__UpdatedAt: Date;
383
385
  IntegrationURLFormatsArray: mj_core_schema_server_object_types.IntegrationURLFormat_[];
384
386
  CompanyIntegrationsArray: mj_core_schema_server_object_types.CompanyIntegration_[];
385
387
  RecordChangesArray: mj_core_schema_server_object_types.RecordChange_[];
@@ -424,13 +426,13 @@ export declare class CompanyIntegration_ {
424
426
  RefreshToken?: string;
425
427
  TokenExpirationDate?: Date;
426
428
  APIKey?: string;
427
- CreatedAt: Date;
428
- UpdatedAt: Date;
429
429
  ExternalSystemID?: string;
430
430
  IsExternalSystemReadOnly: boolean;
431
431
  ClientID?: string;
432
432
  ClientSecret?: string;
433
433
  CustomAttribute1?: string;
434
+ _mj__CreatedAt: Date;
435
+ _mj__UpdatedAt: Date;
434
436
  CompanyID: number;
435
437
  IntegrationID: number;
436
438
  Company: string;
@@ -656,6 +658,7 @@ export declare class Entity_ {
656
658
  Icon?: string;
657
659
  _mj__CreatedAt: Date;
658
660
  _mj__UpdatedAt: Date;
661
+ RelationshipDefaultDisplayType: string;
659
662
  CodeName?: string;
660
663
  ClassName?: string;
661
664
  BaseTableCodeName?: string;
@@ -740,6 +743,7 @@ export declare class CreateEntityInput {
740
743
  EntityObjectSubclassImport?: string;
741
744
  PreferredCommunicationField?: string;
742
745
  Icon?: string;
746
+ RelationshipDefaultDisplayType: string;
743
747
  }
744
748
  export declare class UpdateEntityInput {
745
749
  ID: number;
@@ -782,6 +786,7 @@ export declare class UpdateEntityInput {
782
786
  EntityObjectSubclassImport?: string;
783
787
  PreferredCommunicationField?: string;
784
788
  Icon?: string;
789
+ RelationshipDefaultDisplayType: string;
785
790
  OldValues___?: KeyValuePairInput[];
786
791
  }
787
792
  export declare class RunEntityViewResult {
@@ -1072,6 +1077,8 @@ export declare class UserRecordLog_ {
1072
1077
  EarliestAt: Date;
1073
1078
  LatestAt: Date;
1074
1079
  TotalCount: number;
1080
+ _mj__CreatedAt: Date;
1081
+ _mj__UpdatedAt: Date;
1075
1082
  Entity: string;
1076
1083
  UserName: string;
1077
1084
  UserFirstLast?: string;
@@ -1207,6 +1214,8 @@ export declare class CompanyIntegrationRun_ {
1207
1214
  EndedAt?: Date;
1208
1215
  TotalRecords: number;
1209
1216
  Comments?: string;
1217
+ _mj__CreatedAt: Date;
1218
+ _mj__UpdatedAt: Date;
1210
1219
  RunByUser: string;
1211
1220
  CompanyIntegrationRunAPILogsArray: mj_core_schema_server_object_types.CompanyIntegrationRunAPILog_[];
1212
1221
  ErrorLogsArray: mj_core_schema_server_object_types.ErrorLog_[];
@@ -1249,6 +1258,8 @@ export declare class CompanyIntegrationRunDetail_ {
1249
1258
  Action: string;
1250
1259
  ExecutedAt: Date;
1251
1260
  IsSuccess: boolean;
1261
+ _mj__CreatedAt: Date;
1262
+ _mj__UpdatedAt: Date;
1252
1263
  Entity: string;
1253
1264
  RunStartedAt?: Date;
1254
1265
  RunEndedAt?: Date;
@@ -1287,11 +1298,12 @@ export declare class ErrorLog_ {
1287
1298
  CompanyIntegrationRunDetailID?: number;
1288
1299
  Code?: string;
1289
1300
  Message?: string;
1290
- CreatedAt: Date;
1291
1301
  CreatedBy?: string;
1292
1302
  Status?: string;
1293
1303
  Category?: string;
1294
1304
  Details?: string;
1305
+ _mj__CreatedAt: Date;
1306
+ _mj__UpdatedAt: Date;
1295
1307
  }
1296
1308
  export declare class UpdateErrorLogInput {
1297
1309
  ID: number;
@@ -1487,6 +1499,8 @@ export declare class UserApplicationEntity_ {
1487
1499
  UserApplicationID: number;
1488
1500
  EntityID: number;
1489
1501
  Sequence: number;
1502
+ _mj__CreatedAt: Date;
1503
+ _mj__UpdatedAt: Date;
1490
1504
  Application: string;
1491
1505
  User: string;
1492
1506
  Entity: string;
@@ -1527,6 +1541,8 @@ export declare class UserApplication_ {
1527
1541
  ApplicationID: number;
1528
1542
  Sequence: number;
1529
1543
  IsActive: boolean;
1544
+ _mj__CreatedAt: Date;
1545
+ _mj__UpdatedAt: Date;
1530
1546
  User: string;
1531
1547
  Application: string;
1532
1548
  UserApplicationEntitiesArray: mj_core_schema_server_object_types.UserApplicationEntity_[];
@@ -1572,6 +1588,8 @@ export declare class CompanyIntegrationRunAPILog_ {
1572
1588
  RequestMethod?: string;
1573
1589
  URL?: string;
1574
1590
  Parameters?: string;
1591
+ _mj__CreatedAt: Date;
1592
+ _mj__UpdatedAt: Date;
1575
1593
  }
1576
1594
  export declare class UpdateCompanyIntegrationRunAPILogInput {
1577
1595
  ID: number;
@@ -1607,9 +1625,9 @@ export declare class List_ {
1607
1625
  UserID: number;
1608
1626
  ExternalSystemRecordID?: string;
1609
1627
  CompanyIntegrationID?: number;
1610
- CreatedAt: Date;
1611
- UpdatedAt: Date;
1612
1628
  CategoryID?: number;
1629
+ _mj__CreatedAt: Date;
1630
+ _mj__UpdatedAt: Date;
1613
1631
  Entity: string;
1614
1632
  User: string;
1615
1633
  ListDetailsArray: mj_core_schema_server_object_types.ListDetail_[];
@@ -1660,6 +1678,8 @@ export declare class ListDetail_ {
1660
1678
  ListID: number;
1661
1679
  RecordID: string;
1662
1680
  Sequence: number;
1681
+ _mj__CreatedAt: Date;
1682
+ _mj__UpdatedAt: Date;
1663
1683
  List: string;
1664
1684
  }
1665
1685
  export declare class CreateListDetailInput {
@@ -1697,6 +1717,8 @@ export declare class UserViewRun_ {
1697
1717
  UserViewID: number;
1698
1718
  RunAt: Date;
1699
1719
  RunByUserID: number;
1720
+ _mj__CreatedAt: Date;
1721
+ _mj__UpdatedAt: Date;
1700
1722
  UserView: string;
1701
1723
  RunByUser: string;
1702
1724
  UserViewRunDetailsArray: mj_core_schema_server_object_types.UserViewRunDetail_[];
@@ -1735,6 +1757,8 @@ export declare class UserViewRunDetail_ {
1735
1757
  ID: number;
1736
1758
  UserViewRunID: number;
1737
1759
  RecordID: string;
1760
+ _mj__CreatedAt: Date;
1761
+ _mj__UpdatedAt: Date;
1738
1762
  UserViewID: number;
1739
1763
  EntityID: number;
1740
1764
  }
@@ -1773,6 +1797,8 @@ export declare class WorkflowRun_ {
1773
1797
  EndedAt?: Date;
1774
1798
  Status: string;
1775
1799
  Results?: string;
1800
+ _mj__CreatedAt: Date;
1801
+ _mj__UpdatedAt: Date;
1776
1802
  Workflow: string;
1777
1803
  WorkflowEngineName: string;
1778
1804
  }
@@ -1809,12 +1835,12 @@ export declare class Workflow_ {
1809
1835
  WorkflowEngineName: string;
1810
1836
  CompanyName: string;
1811
1837
  ExternalSystemRecordID: string;
1812
- CreatedAt: Date;
1813
- UpdatedAt: Date;
1814
1838
  AutoRunEnabled: boolean;
1815
1839
  AutoRunIntervalUnits?: string;
1816
1840
  AutoRunInterval?: number;
1817
1841
  SubclassName?: string;
1842
+ _mj__CreatedAt: Date;
1843
+ _mj__UpdatedAt: Date;
1818
1844
  AutoRunIntervalMinutes?: number;
1819
1845
  ReportsArray: mj_core_schema_server_object_types.Report_[];
1820
1846
  WorkflowRunsArray: mj_core_schema_server_object_types.WorkflowRun_[];
@@ -1856,8 +1882,8 @@ export declare class WorkflowEngine_ {
1856
1882
  Description?: string;
1857
1883
  DriverPath: string;
1858
1884
  DriverClass: string;
1859
- CreatedAt: Date;
1860
- UpdatedAt: Date;
1885
+ _mj__CreatedAt: Date;
1886
+ _mj__UpdatedAt: Date;
1861
1887
  WorkflowsArray: mj_core_schema_server_object_types.Workflow_[];
1862
1888
  }
1863
1889
  export declare class UpdateWorkflowEngineInput {
@@ -2024,8 +2050,8 @@ export declare class AuditLog_ {
2024
2050
  Details?: string;
2025
2051
  EntityID?: number;
2026
2052
  RecordID?: string;
2027
- CreatedAt: Date;
2028
- UpdatedAt: Date;
2053
+ _mj__CreatedAt: Date;
2054
+ _mj__UpdatedAt: Date;
2029
2055
  User: string;
2030
2056
  Entity?: string;
2031
2057
  }
@@ -2110,8 +2136,8 @@ export declare class AuthorizationRole_ {
2110
2136
  AuthorizationName?: string;
2111
2137
  RoleName?: string;
2112
2138
  Type: string;
2113
- CreatedAt: Date;
2114
- UpdatedAt: Date;
2139
+ _mj__CreatedAt: Date;
2140
+ _mj__UpdatedAt: Date;
2115
2141
  }
2116
2142
  export declare class RunAuthorizationRoleViewResult {
2117
2143
  Results: AuthorizationRole_[];
@@ -2210,8 +2236,8 @@ export declare class AIModel_ {
2210
2236
  DriverImportPath?: string;
2211
2237
  APIName?: string;
2212
2238
  PowerRank?: number;
2213
- CreatedAt: Date;
2214
- UpdatedAt: Date;
2239
+ _mj__CreatedAt: Date;
2240
+ _mj__UpdatedAt: Date;
2215
2241
  AIModelType: string;
2216
2242
  AIActionsArray: mj_core_schema_server_object_types.AIAction_[];
2217
2243
  AIModelActionsArray: mj_core_schema_server_object_types.AIModelAction_[];
@@ -2274,8 +2300,8 @@ export declare class AIAction_ {
2274
2300
  DefaultModelID?: number;
2275
2301
  DefaultPrompt?: string;
2276
2302
  IsActive: boolean;
2277
- CreatedAt: Date;
2278
- UpdatedAt: Date;
2303
+ _mj__CreatedAt: Date;
2304
+ _mj__UpdatedAt: Date;
2279
2305
  DefaultModel?: string;
2280
2306
  AIModelActionsArray: mj_core_schema_server_object_types.AIModelAction_[];
2281
2307
  EntityAIActionsArray: mj_core_schema_server_object_types.EntityAIAction_[];
@@ -2322,8 +2348,8 @@ export declare class AIModelAction_ {
2322
2348
  AIModelID: number;
2323
2349
  AIActionID: number;
2324
2350
  IsActive: boolean;
2325
- CreatedAt: Date;
2326
- UpdatedAt: Date;
2351
+ _mj__CreatedAt: Date;
2352
+ _mj__UpdatedAt: Date;
2327
2353
  AIModel: string;
2328
2354
  AIAction: string;
2329
2355
  }
@@ -2432,6 +2458,8 @@ export declare class AIModelType_ {
2432
2458
  ID: number;
2433
2459
  Name: string;
2434
2460
  Description?: string;
2461
+ _mj__CreatedAt: Date;
2462
+ _mj__UpdatedAt: Date;
2435
2463
  AIModelsArray: mj_core_schema_server_object_types.AIModel_[];
2436
2464
  }
2437
2465
  export declare class CreateAIModelTypeInput {
@@ -2471,6 +2499,8 @@ export declare class QueueType_ {
2471
2499
  DriverClass: string;
2472
2500
  DriverImportPath?: string;
2473
2501
  IsActive: boolean;
2502
+ _mj__CreatedAt: Date;
2503
+ _mj__UpdatedAt: Date;
2474
2504
  QueuesArray: mj_core_schema_server_object_types.Queue_[];
2475
2505
  }
2476
2506
  export declare class RunQueueTypeViewResult {
@@ -2507,8 +2537,8 @@ export declare class Queue_ {
2507
2537
  ProcessUserID?: string;
2508
2538
  ProcessUserName?: string;
2509
2539
  LastHeartbeat: Date;
2510
- CreatedAt: Date;
2511
- UpdatedAt: Date;
2540
+ _mj__CreatedAt: Date;
2541
+ _mj__UpdatedAt: Date;
2512
2542
  QueueType: string;
2513
2543
  QueueTasksArray: mj_core_schema_server_object_types.QueueTask_[];
2514
2544
  }
@@ -2579,6 +2609,8 @@ export declare class QueueTask_ {
2579
2609
  Output?: string;
2580
2610
  ErrorMessage?: string;
2581
2611
  Comments?: string;
2612
+ _mj__CreatedAt: Date;
2613
+ _mj__UpdatedAt: Date;
2582
2614
  Queue: string;
2583
2615
  }
2584
2616
  export declare class CreateQueueTaskInput {
@@ -2629,6 +2661,8 @@ export declare class Dashboard_ {
2629
2661
  CategoryID?: number;
2630
2662
  UIConfigDetails: string;
2631
2663
  UserID?: number;
2664
+ _mj__CreatedAt: Date;
2665
+ _mj__UpdatedAt: Date;
2632
2666
  Category?: string;
2633
2667
  User?: string;
2634
2668
  }
@@ -2670,6 +2704,8 @@ export declare class OutputTriggerType_ {
2670
2704
  ID: number;
2671
2705
  Name: string;
2672
2706
  Description?: string;
2707
+ _mj__CreatedAt: Date;
2708
+ _mj__UpdatedAt: Date;
2673
2709
  ReportsArray: mj_core_schema_server_object_types.Report_[];
2674
2710
  }
2675
2711
  export declare class RunOutputTriggerTypeViewResult {
@@ -2693,6 +2729,8 @@ export declare class OutputFormatType_ {
2693
2729
  Name: string;
2694
2730
  Description?: string;
2695
2731
  DisplayFormat?: string;
2732
+ _mj__CreatedAt: Date;
2733
+ _mj__UpdatedAt: Date;
2696
2734
  ReportsArray: mj_core_schema_server_object_types.Report_[];
2697
2735
  }
2698
2736
  export declare class RunOutputFormatTypeViewResult {
@@ -2715,6 +2753,8 @@ export declare class OutputDeliveryType_ {
2715
2753
  ID: number;
2716
2754
  Name: string;
2717
2755
  Description?: string;
2756
+ _mj__CreatedAt: Date;
2757
+ _mj__UpdatedAt: Date;
2718
2758
  ReportsArray: mj_core_schema_server_object_types.Report_[];
2719
2759
  }
2720
2760
  export declare class RunOutputDeliveryTypeViewResult {
@@ -2751,8 +2791,8 @@ export declare class Report_ {
2751
2791
  OutputFrequency?: string;
2752
2792
  OutputTargetEmail?: string;
2753
2793
  OutputWorkflowID?: number;
2754
- CreatedAt: Date;
2755
- UpdatedAt: Date;
2794
+ _mj__CreatedAt: Date;
2795
+ _mj__UpdatedAt: Date;
2756
2796
  Category?: string;
2757
2797
  User: string;
2758
2798
  Conversation?: string;
@@ -2825,8 +2865,9 @@ export declare class ReportSnapshot_ {
2825
2865
  ID: number;
2826
2866
  ReportID: number;
2827
2867
  ResultSet: string;
2828
- CreatedAt: Date;
2829
2868
  UserID?: number;
2869
+ _mj__CreatedAt: Date;
2870
+ _mj__UpdatedAt: Date;
2830
2871
  Report: string;
2831
2872
  User?: string;
2832
2873
  }
@@ -2894,6 +2935,8 @@ export declare class Tag_ {
2894
2935
  DisplayName: string;
2895
2936
  Description?: string;
2896
2937
  ParentID?: number;
2938
+ _mj__CreatedAt: Date;
2939
+ _mj__UpdatedAt: Date;
2897
2940
  Parent?: string;
2898
2941
  TagsArray: mj_core_schema_server_object_types.Tag_[];
2899
2942
  TaggedItemsArray: mj_core_schema_server_object_types.TaggedItem_[];
@@ -2920,6 +2963,8 @@ export declare class TaggedItem_ {
2920
2963
  TagID: number;
2921
2964
  EntityID: number;
2922
2965
  RecordID: string;
2966
+ _mj__CreatedAt: Date;
2967
+ _mj__UpdatedAt: Date;
2923
2968
  Tag: string;
2924
2969
  Entity: string;
2925
2970
  }
@@ -2943,8 +2988,8 @@ export declare class Workspace_ {
2943
2988
  Name: string;
2944
2989
  Description?: string;
2945
2990
  UserID: number;
2946
- CreatedAt: Date;
2947
- UpdatedAt: Date;
2991
+ _mj__CreatedAt: Date;
2992
+ _mj__UpdatedAt: Date;
2948
2993
  User: string;
2949
2994
  WorkspaceItemsArray: mj_core_schema_server_object_types.WorkspaceItem_[];
2950
2995
  }
@@ -2988,8 +3033,8 @@ export declare class WorkspaceItem_ {
2988
3033
  ResourceRecordID?: string;
2989
3034
  Sequence: number;
2990
3035
  Configuration?: string;
2991
- CreatedAt: Date;
2992
- UpdatedAt: Date;
3036
+ _mj__CreatedAt: Date;
3037
+ _mj__UpdatedAt: Date;
2993
3038
  WorkSpace: string;
2994
3039
  ResourceType: string;
2995
3040
  }
@@ -3035,8 +3080,8 @@ export declare class Dataset_ {
3035
3080
  ID: number;
3036
3081
  Name: string;
3037
3082
  Description?: string;
3038
- CreatedAt: Date;
3039
- UpdatedAt: Date;
3083
+ _mj__CreatedAt: Date;
3084
+ _mj__UpdatedAt: Date;
3040
3085
  DatasetItemsArray: mj_core_schema_server_object_types.DatasetItem_[];
3041
3086
  }
3042
3087
  export declare class RunDatasetViewResult {
@@ -3064,8 +3109,8 @@ export declare class DatasetItem_ {
3064
3109
  WhereClause?: string;
3065
3110
  DateFieldToCheck: string;
3066
3111
  Description?: string;
3067
- CreatedAt: Date;
3068
- UpdatedAt: Date;
3112
+ _mj__CreatedAt: Date;
3113
+ _mj__UpdatedAt: Date;
3069
3114
  Entity: string;
3070
3115
  }
3071
3116
  export declare class RunDatasetItemViewResult {
@@ -3091,8 +3136,8 @@ export declare class ConversationDetail_ {
3091
3136
  Message: string;
3092
3137
  Error?: string;
3093
3138
  HiddenToUser: boolean;
3094
- CreatedAt: Date;
3095
- UpdatedAt: Date;
3139
+ _mj__CreatedAt: Date;
3140
+ _mj__UpdatedAt: Date;
3096
3141
  Conversation?: string;
3097
3142
  ReportsArray: mj_core_schema_server_object_types.Report_[];
3098
3143
  }
@@ -3144,8 +3189,8 @@ export declare class Conversation_ {
3144
3189
  LinkedEntityID?: number;
3145
3190
  LinkedRecordID?: string;
3146
3191
  DataContextID?: number;
3147
- CreatedAt: Date;
3148
- UpdatedAt: Date;
3192
+ _mj__CreatedAt: Date;
3193
+ _mj__UpdatedAt: Date;
3149
3194
  User: string;
3150
3195
  LinkedEntity?: string;
3151
3196
  ConversationDetailsArray: mj_core_schema_server_object_types.ConversationDetail_[];
@@ -3205,8 +3250,8 @@ export declare class UserNotification_ {
3205
3250
  ResourceConfiguration?: string;
3206
3251
  Unread: boolean;
3207
3252
  ReadAt?: Date;
3208
- CreatedAt: Date;
3209
- UpdatedAt: Date;
3253
+ _mj__CreatedAt: Date;
3254
+ _mj__UpdatedAt: Date;
3210
3255
  User: string;
3211
3256
  }
3212
3257
  export declare class CreateUserNotificationInput {
@@ -3255,8 +3300,8 @@ export declare class SchemaInfo_ {
3255
3300
  EntityIDMin: number;
3256
3301
  EntityIDMax: number;
3257
3302
  Comments?: string;
3258
- CreatedAt: Date;
3259
- UpdatedAt: Date;
3303
+ _mj__CreatedAt: Date;
3304
+ _mj__UpdatedAt: Date;
3260
3305
  }
3261
3306
  export declare class CreateSchemaInfoInput {
3262
3307
  SchemaName: string;
@@ -3295,8 +3340,8 @@ export declare class CompanyIntegrationRecordMap_ {
3295
3340
  ExternalSystemRecordID: string;
3296
3341
  EntityID: number;
3297
3342
  EntityRecordID: string;
3298
- CreatedAt: Date;
3299
- UpdatedAt: Date;
3343
+ _mj__CreatedAt: Date;
3344
+ _mj__UpdatedAt: Date;
3300
3345
  Entity: string;
3301
3346
  }
3302
3347
  export declare class CreateCompanyIntegrationRecordMapInput {
@@ -3342,8 +3387,8 @@ export declare class RecordMergeLog_ {
3342
3387
  ProcessingEndedAt?: Date;
3343
3388
  ProcessingLog?: string;
3344
3389
  Comments?: string;
3345
- CreatedAt: Date;
3346
- UpdatedAt?: Date;
3390
+ _mj__CreatedAt: Date;
3391
+ _mj__UpdatedAt: Date;
3347
3392
  Entity: string;
3348
3393
  InitiatedByUser: string;
3349
3394
  RecordMergeDeletionLogsArray: mj_core_schema_server_object_types.RecordMergeDeletionLog_[];
@@ -3400,8 +3445,8 @@ export declare class RecordMergeDeletionLog_ {
3400
3445
  DeletedRecordID: string;
3401
3446
  Status: string;
3402
3447
  ProcessingLog?: string;
3403
- CreatedAt: Date;
3404
- UpdatedAt: Date;
3448
+ _mj__CreatedAt: Date;
3449
+ _mj__UpdatedAt: Date;
3405
3450
  }
3406
3451
  export declare class CreateRecordMergeDeletionLogInput {
3407
3452
  RecordMergeLogID: number;
@@ -3655,8 +3700,8 @@ export declare class VectorIndex_ {
3655
3700
  Description?: string;
3656
3701
  VectorDatabaseID: number;
3657
3702
  EmbeddingModelID: number;
3658
- CreatedAt: Date;
3659
- UpdatedAt: Date;
3703
+ _mj__CreatedAt: Date;
3704
+ _mj__UpdatedAt: Date;
3660
3705
  VectorDatabase: string;
3661
3706
  EmbeddingModel: string;
3662
3707
  }
@@ -3774,8 +3819,8 @@ export declare class VectorDatabase_ {
3774
3819
  Description?: string;
3775
3820
  DefaultURL?: string;
3776
3821
  ClassKey?: string;
3777
- CreatedAt: Date;
3778
- UpdatedAt: Date;
3822
+ _mj__CreatedAt: Date;
3823
+ _mj__UpdatedAt: Date;
3779
3824
  VectorIndexesArray: mj_core_schema_server_object_types.VectorIndex_[];
3780
3825
  EntityDocumentsArray: mj_core_schema_server_object_types.EntityDocument_[];
3781
3826
  }
@@ -3936,8 +3981,8 @@ export declare class DataContextItem_ {
3936
3981
  SQL?: string;
3937
3982
  DataJSON?: string;
3938
3983
  LastRefreshedAt?: Date;
3939
- CreatedAt: Date;
3940
- UpdatedAt: Date;
3984
+ _mj__CreatedAt: Date;
3985
+ _mj__UpdatedAt: Date;
3941
3986
  DataContext: string;
3942
3987
  View?: string;
3943
3988
  Query?: string;
@@ -3991,8 +4036,8 @@ export declare class DataContext_ {
3991
4036
  UserID: number;
3992
4037
  Description?: string;
3993
4038
  LastRefreshedAt?: Date;
3994
- CreatedAt: Date;
3995
- UpdatedAt: Date;
4039
+ _mj__CreatedAt: Date;
4040
+ _mj__UpdatedAt: Date;
3996
4041
  User: string;
3997
4042
  DataContextItemsArray: mj_core_schema_server_object_types.DataContextItem_[];
3998
4043
  ReportsArray: mj_core_schema_server_object_types.Report_[];
@@ -4036,10 +4081,10 @@ export declare class UserViewCategory_ {
4036
4081
  Name: string;
4037
4082
  Description?: string;
4038
4083
  ParentID?: number;
4039
- CreatedAt: Date;
4040
- UpdatedAt: Date;
4041
4084
  EntityID: number;
4042
4085
  UserID: number;
4086
+ _mj__CreatedAt: Date;
4087
+ _mj__UpdatedAt: Date;
4043
4088
  Parent?: string;
4044
4089
  User: string;
4045
4090
  UserViewCategoriesArray: mj_core_schema_server_object_types.UserViewCategory_[];
@@ -4086,9 +4131,9 @@ export declare class DashboardCategory_ {
4086
4131
  Name: string;
4087
4132
  Description?: string;
4088
4133
  ParentID?: number;
4089
- CreatedAt: Date;
4090
- UpdatedAt: Date;
4091
4134
  UserID: number;
4135
+ _mj__CreatedAt: Date;
4136
+ _mj__UpdatedAt: Date;
4092
4137
  Parent?: string;
4093
4138
  User: string;
4094
4139
  DashboardsArray: mj_core_schema_server_object_types.Dashboard_[];
@@ -4133,9 +4178,9 @@ export declare class ReportCategory_ {
4133
4178
  Name: string;
4134
4179
  Description?: string;
4135
4180
  ParentID?: number;
4136
- CreatedAt: Date;
4137
- UpdatedAt: Date;
4138
4181
  UserID: number;
4182
+ _mj__CreatedAt: Date;
4183
+ _mj__UpdatedAt: Date;
4139
4184
  Parent?: string;
4140
4185
  User: string;
4141
4186
  ReportCategoriesArray: mj_core_schema_server_object_types.ReportCategory_[];
@@ -4183,8 +4228,8 @@ export declare class FileStorageProvider_ {
4183
4228
  ClientDriverKey: string;
4184
4229
  Priority: number;
4185
4230
  IsActive: boolean;
4186
- CreatedAt: Date;
4187
- UpdatedAt: Date;
4231
+ _mj__CreatedAt: Date;
4232
+ _mj__UpdatedAt: Date;
4188
4233
  FilesArray: mj_core_schema_server_object_types.File_[];
4189
4234
  }
4190
4235
  export declare class CreateFileStorageProviderInput {
@@ -4232,8 +4277,8 @@ export declare class File_ {
4232
4277
  ProviderKey?: string;
4233
4278
  CategoryID?: number;
4234
4279
  Status: string;
4235
- CreatedAt: Date;
4236
- UpdatedAt: Date;
4280
+ _mj__CreatedAt: Date;
4281
+ _mj__UpdatedAt: Date;
4237
4282
  Provider: string;
4238
4283
  Category?: string;
4239
4284
  FileEntityRecordLinksArray: mj_core_schema_server_object_types.FileEntityRecordLink_[];
@@ -4282,8 +4327,8 @@ export declare class FileCategory_ {
4282
4327
  Name: string;
4283
4328
  Description?: string;
4284
4329
  ParentID?: number;
4285
- CreatedAt: Date;
4286
- UpdatedAt: Date;
4330
+ _mj__CreatedAt: Date;
4331
+ _mj__UpdatedAt: Date;
4287
4332
  Parent?: string;
4288
4333
  FilesArray: mj_core_schema_server_object_types.File_[];
4289
4334
  FileCategoriesArray: mj_core_schema_server_object_types.FileCategory_[];
@@ -4325,8 +4370,8 @@ export declare class FileEntityRecordLink_ {
4325
4370
  FileID: number;
4326
4371
  EntityID: number;
4327
4372
  RecordID: string;
4328
- CreatedAt: Date;
4329
- UpdatedAt: Date;
4373
+ _mj__CreatedAt: Date;
4374
+ _mj__UpdatedAt: Date;
4330
4375
  File: string;
4331
4376
  Entity: string;
4332
4377
  }
@@ -4369,8 +4414,8 @@ export declare class VersionInstallation_ {
4369
4414
  Status: string;
4370
4415
  InstallLog?: string;
4371
4416
  Comments?: string;
4372
- CreatedAt: Date;
4373
- UpdatedAt: Date;
4417
+ _mj__CreatedAt: Date;
4418
+ _mj__UpdatedAt: Date;
4374
4419
  CompleteVersion?: string;
4375
4420
  }
4376
4421
  export declare class CreateVersionInstallationInput {
@@ -4424,8 +4469,8 @@ export declare class DuplicateRunDetailMatch_ {
4424
4469
  MergeStatus: string;
4425
4470
  MergedAt: Date;
4426
4471
  RecordMergeLogID?: number;
4427
- CreatedAt: Date;
4428
- UpdatedAt: Date;
4472
+ _mj__CreatedAt: Date;
4473
+ _mj__UpdatedAt: Date;
4429
4474
  }
4430
4475
  export declare class CreateDuplicateRunDetailMatchInput {
4431
4476
  DuplicateRunDetailID: number;
@@ -4564,8 +4609,8 @@ export declare class DuplicateRun_ {
4564
4609
  ProcessingStatus: string;
4565
4610
  ProcessingErrorMessage?: string;
4566
4611
  SourceListID: number;
4567
- CreatedAt: Date;
4568
- UpdatedAt: Date;
4612
+ _mj__CreatedAt: Date;
4613
+ _mj__UpdatedAt: Date;
4569
4614
  Entity: string;
4570
4615
  StartedByUser: string;
4571
4616
  ApprovedByUser?: string;
@@ -4625,8 +4670,8 @@ export declare class DuplicateRunDetail_ {
4625
4670
  MatchErrorMessage?: string;
4626
4671
  MergeStatus: string;
4627
4672
  MergeErrorMessage?: string;
4628
- CreatedAt: Date;
4629
- UpdatedAt: Date;
4673
+ _mj__CreatedAt: Date;
4674
+ _mj__UpdatedAt: Date;
4630
4675
  DuplicateRunDetailMatchesArray: mj_core_schema_server_object_types.DuplicateRunDetailMatch_[];
4631
4676
  }
4632
4677
  export declare class CreateDuplicateRunDetailInput {
@@ -4853,6 +4898,7 @@ export declare class EntityAction_ {
4853
4898
  Action: string;
4854
4899
  EntityActionInvocationsArray: mj_core_schema_server_object_types.EntityActionInvocation_[];
4855
4900
  EntityActionFiltersArray: mj_core_schema_server_object_types.EntityActionFilter_[];
4901
+ EntityActionParamsArray: mj_core_schema_server_object_types.EntityActionParam_[];
4856
4902
  }
4857
4903
  export declare class CreateEntityActionInput {
4858
4904
  EntityID: number;
@@ -4882,6 +4928,7 @@ export declare class EntityActionResolver extends ResolverBase {
4882
4928
  EntityAction(ID: number, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<EntityAction_ | null>;
4883
4929
  EntityActionInvocationsArray(entityaction_: EntityAction_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
4884
4930
  EntityActionFiltersArray(entityaction_: EntityAction_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
4931
+ EntityActionParamsArray(entityaction_: EntityAction_, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<[]>;
4885
4932
  CreateEntityAction(input: CreateEntityActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
4886
4933
  UpdateEntityAction(input: UpdateEntityActionInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<any>;
4887
4934
  DeleteEntityAction(ID: number, options: DeleteOptionsInput, { dataSource, userPayload }: AppContext, pubSub: PubSubEngine): Promise<{}>;
@@ -4930,8 +4977,8 @@ export declare class ActionAuthorization_ {
4930
4977
  ActionID: number;
4931
4978
  AuthorizationName: string;
4932
4979
  Comments?: string;
4933
- CreatedAt: Date;
4934
- UpdatedAt: Date;
4980
+ _mj__CreatedAt: Date;
4981
+ _mj__UpdatedAt: Date;
4935
4982
  Action: string;
4936
4983
  }
4937
4984
  export declare class CreateActionAuthorizationInput {
@@ -5008,7 +5055,9 @@ export declare class Action_ {
5008
5055
  ID: number;
5009
5056
  CategoryID?: number;
5010
5057
  Name: string;
5011
- UserPrompt: string;
5058
+ Description?: string;
5059
+ Type: string;
5060
+ UserPrompt?: string;
5012
5061
  UserComments?: string;
5013
5062
  Code?: string;
5014
5063
  CodeComments?: string;
@@ -5016,6 +5065,7 @@ export declare class Action_ {
5016
5065
  CodeApprovalComments?: string;
5017
5066
  CodeApprovedByUserID?: number;
5018
5067
  CodeApprovedAt?: Date;
5068
+ CodeLocked: boolean;
5019
5069
  ForceCodeGeneration: boolean;
5020
5070
  RetentionPeriod?: number;
5021
5071
  Status: string;
@@ -5034,7 +5084,9 @@ export declare class Action_ {
5034
5084
  export declare class CreateActionInput {
5035
5085
  CategoryID?: number;
5036
5086
  Name: string;
5037
- UserPrompt: string;
5087
+ Description?: string;
5088
+ Type: string;
5089
+ UserPrompt?: string;
5038
5090
  UserComments?: string;
5039
5091
  Code?: string;
5040
5092
  CodeComments?: string;
@@ -5042,6 +5094,7 @@ export declare class CreateActionInput {
5042
5094
  CodeApprovalComments?: string;
5043
5095
  CodeApprovedByUserID?: number;
5044
5096
  CodeApprovedAt?: Date;
5097
+ CodeLocked: boolean;
5045
5098
  ForceCodeGeneration: boolean;
5046
5099
  RetentionPeriod?: number;
5047
5100
  Status: string;
@@ -5050,7 +5103,9 @@ export declare class UpdateActionInput {
5050
5103
  ID: number;
5051
5104
  CategoryID?: number;
5052
5105
  Name: string;
5053
- UserPrompt: string;
5106
+ Description?: string;
5107
+ Type: string;
5108
+ UserPrompt?: string;
5054
5109
  UserComments?: string;
5055
5110
  Code?: string;
5056
5111
  CodeComments?: string;
@@ -5058,6 +5113,7 @@ export declare class UpdateActionInput {
5058
5113
  CodeApprovalComments?: string;
5059
5114
  CodeApprovedByUserID?: number;
5060
5115
  CodeApprovedAt?: Date;
5116
+ CodeLocked: boolean;
5061
5117
  ForceCodeGeneration: boolean;
5062
5118
  RetentionPeriod?: number;
5063
5119
  Status: string;
@@ -5176,8 +5232,8 @@ export declare class ActionContextType_ {
5176
5232
  ID: number;
5177
5233
  Name: string;
5178
5234
  Description?: string;
5179
- CreatedAt: Date;
5180
- UpdatedAt: Date;
5235
+ _mj__CreatedAt: Date;
5236
+ _mj__UpdatedAt: Date;
5181
5237
  ActionContextsArray: mj_core_schema_server_object_types.ActionContext_[];
5182
5238
  }
5183
5239
  export declare class CreateActionContextTypeInput {
@@ -5213,20 +5269,23 @@ export declare class ActionResultCode_ {
5213
5269
  ID: number;
5214
5270
  ActionID: number;
5215
5271
  ResultCode: string;
5272
+ IsSuccess: boolean;
5216
5273
  Description?: string;
5217
- CreatedAt: Date;
5218
- UpdatedAt: Date;
5274
+ _mj__CreatedAt: Date;
5275
+ _mj__UpdatedAt: Date;
5219
5276
  Action: string;
5220
5277
  }
5221
5278
  export declare class CreateActionResultCodeInput {
5222
5279
  ActionID: number;
5223
5280
  ResultCode: string;
5281
+ IsSuccess: boolean;
5224
5282
  Description?: string;
5225
5283
  }
5226
5284
  export declare class UpdateActionResultCodeInput {
5227
5285
  ID: number;
5228
5286
  ActionID: number;
5229
5287
  ResultCode: string;
5288
+ IsSuccess: boolean;
5230
5289
  Description?: string;
5231
5290
  OldValues___?: KeyValuePairInput[];
5232
5291
  }
@@ -5253,8 +5312,8 @@ export declare class ActionContext_ {
5253
5312
  ActionID: number;
5254
5313
  ContextTypeID: number;
5255
5314
  Status: string;
5256
- CreatedAt: Date;
5257
- UpdatedAt: Date;
5315
+ _mj__CreatedAt: Date;
5316
+ _mj__UpdatedAt: Date;
5258
5317
  Action: string;
5259
5318
  ContextType: string;
5260
5319
  }
@@ -5297,8 +5356,8 @@ export declare class ActionExecutionLog_ {
5297
5356
  ResultCode?: string;
5298
5357
  UserID: number;
5299
5358
  RetentionPeriod?: number;
5300
- CreatedAt: Date;
5301
- UpdatedAt: Date;
5359
+ _mj__CreatedAt: Date;
5360
+ _mj__UpdatedAt: Date;
5302
5361
  Action: string;
5303
5362
  User: string;
5304
5363
  }
@@ -5350,8 +5409,8 @@ export declare class ActionParam_ {
5350
5409
  IsArray: boolean;
5351
5410
  Description?: string;
5352
5411
  IsRequired: boolean;
5353
- CreatedAt: Date;
5354
- UpdatedAt: Date;
5412
+ _mj__CreatedAt: Date;
5413
+ _mj__UpdatedAt: Date;
5355
5414
  Action: string;
5356
5415
  EntityActionParamsArray: mj_core_schema_server_object_types.EntityActionParam_[];
5357
5416
  }
@@ -5401,8 +5460,8 @@ export declare class ActionLibrary_ {
5401
5460
  ActionID: number;
5402
5461
  LibraryID: number;
5403
5462
  ItemsUsed?: string;
5404
- CreatedAt: Date;
5405
- UpdatedAt: Date;
5463
+ _mj__CreatedAt: Date;
5464
+ _mj__UpdatedAt: Date;
5406
5465
  Action: string;
5407
5466
  Library: string;
5408
5467
  }
@@ -5488,9 +5547,9 @@ export declare class ListCategory_ {
5488
5547
  Name: string;
5489
5548
  Description?: string;
5490
5549
  ParentID?: number;
5491
- CreatedAt: Date;
5492
- UpdatedAt: Date;
5493
5550
  UserID: number;
5551
+ _mj__CreatedAt: Date;
5552
+ _mj__UpdatedAt: Date;
5494
5553
  }
5495
5554
  export declare class CreateListCategoryInput {
5496
5555
  Name: string;
@@ -5530,8 +5589,8 @@ export declare class CommunicationProvider_ {
5530
5589
  Status: string;
5531
5590
  SupportsSending: boolean;
5532
5591
  SupportsReceiving: boolean;
5533
- CreatedAt: Date;
5534
- UpdatedAt: Date;
5592
+ _mj__CreatedAt: Date;
5593
+ _mj__UpdatedAt: Date;
5535
5594
  CommunicationProviderMessageTypesArray: mj_core_schema_server_object_types.CommunicationProviderMessageType_[];
5536
5595
  CommunicationLogsArray: mj_core_schema_server_object_types.CommunicationLog_[];
5537
5596
  }
@@ -5579,8 +5638,8 @@ export declare class CommunicationRun_ {
5579
5638
  EndedAt?: Date;
5580
5639
  Comments?: string;
5581
5640
  ErrorMessage?: string;
5582
- CreatedAt: Date;
5583
- UpdatedAt: Date;
5641
+ _mj__CreatedAt: Date;
5642
+ _mj__UpdatedAt: Date;
5584
5643
  User: string;
5585
5644
  CommunicationLogsArray: mj_core_schema_server_object_types.CommunicationLog_[];
5586
5645
  }
@@ -5629,8 +5688,8 @@ export declare class CommunicationProviderMessageType_ {
5629
5688
  Name: string;
5630
5689
  Status: string;
5631
5690
  AdditionalAttributes?: string;
5632
- CreatedAt: Date;
5633
- UpdatedAt: Date;
5691
+ _mj__CreatedAt: Date;
5692
+ _mj__UpdatedAt: Date;
5634
5693
  CommunicationProvider: string;
5635
5694
  CommunicationBaseMessageType: string;
5636
5695
  CommunicationLogsArray: mj_core_schema_server_object_types.CommunicationLog_[];
@@ -5680,8 +5739,8 @@ export declare class CommunicationLog_ {
5680
5739
  Status: string;
5681
5740
  MessageContent?: string;
5682
5741
  ErrorMessage?: string;
5683
- CreatedAt: Date;
5684
- UpdatedAt: Date;
5742
+ _mj__CreatedAt: Date;
5743
+ _mj__UpdatedAt: Date;
5685
5744
  CommunicationProvider: string;
5686
5745
  CommunicationProviderMessageType: string;
5687
5746
  }
@@ -5731,8 +5790,8 @@ export declare class CommunicationBaseMessageType_ {
5731
5790
  SupportsSubjectLine: boolean;
5732
5791
  SupportsHtml: boolean;
5733
5792
  MaxBytes?: number;
5734
- CreatedAt: Date;
5735
- UpdatedAt: Date;
5793
+ _mj__CreatedAt: Date;
5794
+ _mj__UpdatedAt: Date;
5736
5795
  CommunicationProviderMessageTypesArray: mj_core_schema_server_object_types.CommunicationProviderMessageType_[];
5737
5796
  EntityCommunicationMessageTypesArray: mj_core_schema_server_object_types.EntityCommunicationMessageType_[];
5738
5797
  }
@@ -5781,8 +5840,8 @@ export declare class Template_ {
5781
5840
  ActiveAt?: Date;
5782
5841
  DisabledAt?: Date;
5783
5842
  IsActive: boolean;
5784
- CreatedAt: Date;
5785
- UpdatedAt: Date;
5843
+ _mj__CreatedAt: Date;
5844
+ _mj__UpdatedAt: Date;
5786
5845
  Category?: string;
5787
5846
  User: string;
5788
5847
  TemplateParamsArray: mj_core_schema_server_object_types.TemplateParam_[];
@@ -5835,8 +5894,8 @@ export declare class TemplateCategory_ {
5835
5894
  Description?: string;
5836
5895
  ParentID?: number;
5837
5896
  UserID: number;
5838
- CreatedAt: Date;
5839
- UpdatedAt: Date;
5897
+ _mj__CreatedAt: Date;
5898
+ _mj__UpdatedAt: Date;
5840
5899
  Parent?: string;
5841
5900
  User: string;
5842
5901
  TemplatesArray: mj_core_schema_server_object_types.Template_[];
@@ -5882,8 +5941,8 @@ export declare class TemplateContent_ {
5882
5941
  TemplateText?: string;
5883
5942
  Priority: number;
5884
5943
  IsActive: boolean;
5885
- CreatedAt: Date;
5886
- UpdatedAt: Date;
5944
+ _mj__CreatedAt: Date;
5945
+ _mj__UpdatedAt: Date;
5887
5946
  Template: string;
5888
5947
  Type: string;
5889
5948
  }
@@ -5930,8 +5989,8 @@ export declare class TemplateParam_ {
5930
5989
  IsRequired: boolean;
5931
5990
  EntityID?: number;
5932
5991
  RecordID?: string;
5933
- CreatedAt: Date;
5934
- UpdatedAt: Date;
5992
+ _mj__CreatedAt: Date;
5993
+ _mj__UpdatedAt: Date;
5935
5994
  Template: string;
5936
5995
  Entity?: string;
5937
5996
  }
@@ -5978,8 +6037,8 @@ export declare class TemplateContentType_ {
5978
6037
  ID: number;
5979
6038
  Name: string;
5980
6039
  Description?: string;
5981
- CreatedAt: Date;
5982
- UpdatedAt: Date;
6040
+ _mj__CreatedAt: Date;
6041
+ _mj__UpdatedAt: Date;
5983
6042
  TemplateContentsArray: mj_core_schema_server_object_types.TemplateContent_[];
5984
6043
  }
5985
6044
  export declare class CreateTemplateContentTypeInput {
@@ -6015,8 +6074,8 @@ export declare class Recommendation_ {
6015
6074
  RecommendationRunID: number;
6016
6075
  SourceEntityID: number;
6017
6076
  SourceEntityRecordID: string;
6018
- CreatedAt?: Date;
6019
- UpdatedAt?: Date;
6077
+ _mj__CreatedAt: Date;
6078
+ _mj__UpdatedAt: Date;
6020
6079
  SourceEntity: string;
6021
6080
  RecommendationItemsArray: mj_core_schema_server_object_types.RecommendationItem_[];
6022
6081
  }
@@ -6054,8 +6113,8 @@ export declare class RecommendationProvider_ {
6054
6113
  ID: number;
6055
6114
  Name: string;
6056
6115
  Description?: string;
6057
- CreatedAt?: Date;
6058
- UpdatedAt?: Date;
6116
+ _mj__CreatedAt: Date;
6117
+ _mj__UpdatedAt: Date;
6059
6118
  RecommendationRunsArray: mj_core_schema_server_object_types.RecommendationRun_[];
6060
6119
  }
6061
6120
  export declare class CreateRecommendationProviderInput {
@@ -6094,8 +6153,8 @@ export declare class RecommendationRun_ {
6094
6153
  Status: string;
6095
6154
  Description?: string;
6096
6155
  RunByUserID: number;
6097
- CreatedAt?: Date;
6098
- UpdatedAt?: Date;
6156
+ _mj__CreatedAt: Date;
6157
+ _mj__UpdatedAt: Date;
6099
6158
  RecommendationProvider: string;
6100
6159
  RunByUser: string;
6101
6160
  RecommendationsArray: mj_core_schema_server_object_types.Recommendation_[];
@@ -6142,8 +6201,8 @@ export declare class RecommendationItem_ {
6142
6201
  DestinationEntityID: number;
6143
6202
  DestinationEntityRecordID: string;
6144
6203
  MatchProbability?: number;
6145
- CreatedAt?: Date;
6146
- UpdatedAt?: Date;
6204
+ _mj__CreatedAt: Date;
6205
+ _mj__UpdatedAt: Date;
6147
6206
  DestinationEntity: string;
6148
6207
  }
6149
6208
  export declare class CreateRecommendationItemInput {
@@ -6261,8 +6320,8 @@ export declare class RecordChangeReplayRun_ {
6261
6320
  EndedAt?: Date;
6262
6321
  Status: string;
6263
6322
  UserID: number;
6264
- CreatedAt: Date;
6265
- UpdatedAt: Date;
6323
+ _mj__CreatedAt: Date;
6324
+ _mj__UpdatedAt: Date;
6266
6325
  User: string;
6267
6326
  RecordChangesArray: mj_core_schema_server_object_types.RecordChange_[];
6268
6327
  }
@@ -6303,8 +6362,8 @@ export declare class LibraryItem_ {
6303
6362
  Name: string;
6304
6363
  LibraryID: number;
6305
6364
  Type: string;
6306
- CreatedAt: Date;
6307
- UpdatedAt: Date;
6365
+ _mj__CreatedAt: Date;
6366
+ _mj__UpdatedAt: Date;
6308
6367
  Library: string;
6309
6368
  }
6310
6369
  export declare class CreateLibraryItemInput {
@@ -6377,6 +6436,7 @@ export declare class EntityRelationshipDisplayComponentResolver extends Resolver
6377
6436
  }
6378
6437
  export declare class EntityActionParam_ {
6379
6438
  ID: number;
6439
+ EntityActionID: number;
6380
6440
  ActionParamID: number;
6381
6441
  ValueType: string;
6382
6442
  Value?: string;
@@ -6386,6 +6446,7 @@ export declare class EntityActionParam_ {
6386
6446
  ActionParam: string;
6387
6447
  }
6388
6448
  export declare class CreateEntityActionParamInput {
6449
+ EntityActionID: number;
6389
6450
  ActionParamID: number;
6390
6451
  ValueType: string;
6391
6452
  Value?: string;
@@ -6393,6 +6454,7 @@ export declare class CreateEntityActionParamInput {
6393
6454
  }
6394
6455
  export declare class UpdateEntityActionParamInput {
6395
6456
  ID: number;
6457
+ EntityActionID: number;
6396
6458
  ActionParamID: number;
6397
6459
  ValueType: string;
6398
6460
  Value?: string;