@memberjunction/server 2.2.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,6 +16,8 @@ export declare class ScheduledAction_ {
16
16
  CustomCronExpression?: string;
17
17
  _mj__CreatedAt: Date;
18
18
  _mj__UpdatedAt: Date;
19
+ CreatedByUser: string;
20
+ Action: string;
19
21
  ScheduledActionParamsArray: ScheduledActionParam_[];
20
22
  }
21
23
  export declare class CreateScheduledActionInput {
@@ -78,6 +80,8 @@ export declare class ScheduledActionParam_ {
78
80
  Comments?: string;
79
81
  _mj__CreatedAt: Date;
80
82
  _mj__UpdatedAt: Date;
83
+ ScheduledAction: string;
84
+ ActionParam: string;
81
85
  }
82
86
  export declare class CreateScheduledActionParamInput {
83
87
  ScheduledActionID: string;
@@ -1864,6 +1868,7 @@ export declare class List_ {
1864
1868
  _mj__UpdatedAt: Date;
1865
1869
  Entity: string;
1866
1870
  User: string;
1871
+ Category?: string;
1867
1872
  ListDetailsArray: ListDetail_[];
1868
1873
  DuplicateRunsArray: DuplicateRun_[];
1869
1874
  }
@@ -1914,18 +1919,24 @@ export declare class ListDetail_ {
1914
1919
  Sequence: number;
1915
1920
  _mj__CreatedAt: Date;
1916
1921
  _mj__UpdatedAt: Date;
1922
+ Status: string;
1923
+ AdditionalData?: string;
1917
1924
  List: string;
1918
1925
  }
1919
1926
  export declare class CreateListDetailInput {
1920
1927
  ListID: string;
1921
1928
  RecordID: string;
1922
1929
  Sequence: number;
1930
+ Status: string;
1931
+ AdditionalData?: string;
1923
1932
  }
1924
1933
  export declare class UpdateListDetailInput {
1925
1934
  ID: string;
1926
1935
  ListID: string;
1927
1936
  RecordID: string;
1928
1937
  Sequence: number;
1938
+ Status: string;
1939
+ AdditionalData?: string;
1929
1940
  OldValues___?: KeyValuePairInput[];
1930
1941
  }
1931
1942
  export declare class RunListDetailViewResult {
@@ -2286,6 +2297,8 @@ export declare class AuditLog_ {
2286
2297
  _mj__CreatedAt: Date;
2287
2298
  _mj__UpdatedAt: Date;
2288
2299
  User: string;
2300
+ AuditLogType: string;
2301
+ Authorization?: string;
2289
2302
  Entity?: string;
2290
2303
  }
2291
2304
  export declare class CreateAuditLogInput {
@@ -2371,6 +2384,8 @@ export declare class AuthorizationRole_ {
2371
2384
  Type: string;
2372
2385
  _mj__CreatedAt: Date;
2373
2386
  _mj__UpdatedAt: Date;
2387
+ Authorization: string;
2388
+ Role: string;
2374
2389
  }
2375
2390
  export declare class RunAuthorizationRoleViewResult {
2376
2391
  Results: AuthorizationRole_[];
@@ -2397,6 +2412,7 @@ export declare class AuditLogType_ {
2397
2412
  _mj__CreatedAt: Date;
2398
2413
  _mj__UpdatedAt: Date;
2399
2414
  Parent?: string;
2415
+ Authorization?: string;
2400
2416
  AuditLogTypesArray: AuditLogType_[];
2401
2417
  AuditLogsArray: AuditLog_[];
2402
2418
  }
@@ -2470,6 +2486,8 @@ export declare class AIModel_ {
2470
2486
  APIName?: string;
2471
2487
  _mj__CreatedAt: Date;
2472
2488
  _mj__UpdatedAt: Date;
2489
+ SpeedRank?: number;
2490
+ CostRank?: number;
2473
2491
  AIModelType: string;
2474
2492
  AIActionsArray: AIAction_[];
2475
2493
  EntityDocumentsArray: EntityDocument_[];
@@ -2487,6 +2505,8 @@ export declare class CreateAIModelInput {
2487
2505
  DriverClass?: string;
2488
2506
  DriverImportPath?: string;
2489
2507
  APIName?: string;
2508
+ SpeedRank?: number;
2509
+ CostRank?: number;
2490
2510
  }
2491
2511
  export declare class UpdateAIModelInput {
2492
2512
  ID: string;
@@ -2499,6 +2519,8 @@ export declare class UpdateAIModelInput {
2499
2519
  DriverClass?: string;
2500
2520
  DriverImportPath?: string;
2501
2521
  APIName?: string;
2522
+ SpeedRank?: number;
2523
+ CostRank?: number;
2502
2524
  OldValues___?: KeyValuePairInput[];
2503
2525
  }
2504
2526
  export declare class RunAIModelViewResult {
@@ -3341,6 +3363,7 @@ export declare class DatasetItem_ {
3341
3363
  Description?: string;
3342
3364
  _mj__CreatedAt: Date;
3343
3365
  _mj__UpdatedAt: Date;
3366
+ Dataset: string;
3344
3367
  Entity: string;
3345
3368
  }
3346
3369
  export declare class RunDatasetItemViewResult {
@@ -3423,6 +3446,7 @@ export declare class Conversation_ {
3423
3446
  _mj__UpdatedAt: Date;
3424
3447
  User: string;
3425
3448
  LinkedEntity?: string;
3449
+ DataContext?: string;
3426
3450
  ConversationDetailsArray: ConversationDetail_[];
3427
3451
  ReportsArray: Report_[];
3428
3452
  }
@@ -3476,12 +3500,12 @@ export declare class UserNotification_ {
3476
3500
  Title?: string;
3477
3501
  Message?: string;
3478
3502
  ResourceTypeID?: string;
3479
- ResourceRecordID?: string;
3480
3503
  ResourceConfiguration?: string;
3481
3504
  Unread: boolean;
3482
3505
  ReadAt?: Date;
3483
3506
  _mj__CreatedAt: Date;
3484
3507
  _mj__UpdatedAt: Date;
3508
+ ResourceRecordID?: string;
3485
3509
  User: string;
3486
3510
  ResourceType?: string;
3487
3511
  }
@@ -3490,10 +3514,10 @@ export declare class CreateUserNotificationInput {
3490
3514
  Title?: string;
3491
3515
  Message?: string;
3492
3516
  ResourceTypeID?: string;
3493
- ResourceRecordID?: string;
3494
3517
  ResourceConfiguration?: string;
3495
3518
  Unread: boolean;
3496
3519
  ReadAt?: Date;
3520
+ ResourceRecordID?: string;
3497
3521
  }
3498
3522
  export declare class UpdateUserNotificationInput {
3499
3523
  ID: string;
@@ -3501,10 +3525,10 @@ export declare class UpdateUserNotificationInput {
3501
3525
  Title?: string;
3502
3526
  Message?: string;
3503
3527
  ResourceTypeID?: string;
3504
- ResourceRecordID?: string;
3505
3528
  ResourceConfiguration?: string;
3506
3529
  Unread: boolean;
3507
3530
  ReadAt?: Date;
3531
+ ResourceRecordID?: string;
3508
3532
  OldValues___?: KeyValuePairInput[];
3509
3533
  }
3510
3534
  export declare class RunUserNotificationViewResult {
@@ -3622,6 +3646,7 @@ export declare class RecordMergeLog_ {
3622
3646
  _mj__UpdatedAt: Date;
3623
3647
  Entity: string;
3624
3648
  InitiatedByUser: string;
3649
+ ApprovedByUser?: string;
3625
3650
  RecordMergeDeletionLogsArray: RecordMergeDeletionLog_[];
3626
3651
  DuplicateRunDetailMatchesArray: DuplicateRunDetailMatch_[];
3627
3652
  }
@@ -3897,6 +3922,8 @@ export declare class QueryPermission_ {
3897
3922
  RoleID: string;
3898
3923
  _mj__CreatedAt: Date;
3899
3924
  _mj__UpdatedAt: Date;
3925
+ Query: string;
3926
+ Role: string;
3900
3927
  }
3901
3928
  export declare class CreateQueryPermissionInput {
3902
3929
  QueryID: string;
@@ -4102,6 +4129,9 @@ export declare class EntityRecordDocument_ {
4102
4129
  EntityRecordUpdatedAt: Date;
4103
4130
  _mj__CreatedAt: Date;
4104
4131
  _mj__UpdatedAt: Date;
4132
+ Entity: string;
4133
+ EntityDocument: string;
4134
+ VectorIndex: string;
4105
4135
  }
4106
4136
  export declare class CreateEntityRecordDocumentInput {
4107
4137
  EntityID: string;
@@ -4157,6 +4187,9 @@ export declare class EntityDocument_ {
4157
4187
  _mj__UpdatedAt: Date;
4158
4188
  Type: string;
4159
4189
  Entity: string;
4190
+ VectorDatabase: string;
4191
+ Template: string;
4192
+ AIModel: string;
4160
4193
  EntityDocumentSettingsArray: EntityDocumentSetting_[];
4161
4194
  EntityDocumentRunsArray: EntityDocumentRun_[];
4162
4195
  EntityRecordDocumentsArray: EntityRecordDocument_[];
@@ -4323,6 +4356,7 @@ export declare class UserViewCategory_ {
4323
4356
  _mj__CreatedAt: Date;
4324
4357
  _mj__UpdatedAt: Date;
4325
4358
  Parent?: string;
4359
+ Entity: string;
4326
4360
  User: string;
4327
4361
  UserViewCategoriesArray: UserViewCategory_[];
4328
4362
  UserViewsArray: UserView_[];
@@ -4957,6 +4991,7 @@ export declare class ApplicationSetting_ {
4957
4991
  Comments?: string;
4958
4992
  _mj__CreatedAt: Date;
4959
4993
  _mj__UpdatedAt: Date;
4994
+ Application: string;
4960
4995
  }
4961
4996
  export declare class CreateApplicationSettingInput {
4962
4997
  ApplicationID: string;
@@ -5129,6 +5164,7 @@ export declare class ActionAuthorization_ {
5129
5164
  _mj__CreatedAt: Date;
5130
5165
  _mj__UpdatedAt: Date;
5131
5166
  Action: string;
5167
+ Authorization: string;
5132
5168
  }
5133
5169
  export declare class CreateActionAuthorizationInput {
5134
5170
  ActionID: string;
@@ -5703,6 +5739,8 @@ export declare class ListCategory_ {
5703
5739
  UserID: string;
5704
5740
  _mj__CreatedAt: Date;
5705
5741
  _mj__UpdatedAt: Date;
5742
+ Parent?: string;
5743
+ User: string;
5706
5744
  ListCategoriesArray: ListCategory_[];
5707
5745
  ListsArray: List_[];
5708
5746
  }