@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.
- package/dist/generated/generated.d.ts +41 -3
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +234 -17
- package/dist/generated/generated.js.map +1 -1
- package/dist/resolvers/AskSkipResolver.d.ts.map +1 -1
- package/dist/resolvers/AskSkipResolver.js +8 -5
- package/dist/resolvers/AskSkipResolver.js.map +1 -1
- package/package.json +22 -22
- package/src/generated/generated.ts +153 -12
- package/src/resolvers/AskSkipResolver.ts +7 -4
|
@@ -30,6 +30,8 @@ let ScheduledAction_ = class ScheduledAction_ {
|
|
|
30
30
|
CustomCronExpression;
|
|
31
31
|
_mj__CreatedAt;
|
|
32
32
|
_mj__UpdatedAt;
|
|
33
|
+
CreatedByUser;
|
|
34
|
+
Action;
|
|
33
35
|
ScheduledActionParamsArray;
|
|
34
36
|
};
|
|
35
37
|
__decorate([
|
|
@@ -109,6 +111,16 @@ __decorate([
|
|
|
109
111
|
MaxLength(10),
|
|
110
112
|
__metadata("design:type", Date)
|
|
111
113
|
], ScheduledAction_.prototype, "_mj__UpdatedAt", void 0);
|
|
114
|
+
__decorate([
|
|
115
|
+
Field(),
|
|
116
|
+
MaxLength(200),
|
|
117
|
+
__metadata("design:type", String)
|
|
118
|
+
], ScheduledAction_.prototype, "CreatedByUser", void 0);
|
|
119
|
+
__decorate([
|
|
120
|
+
Field(),
|
|
121
|
+
MaxLength(850),
|
|
122
|
+
__metadata("design:type", String)
|
|
123
|
+
], ScheduledAction_.prototype, "Action", void 0);
|
|
112
124
|
__decorate([
|
|
113
125
|
Field(() => [ScheduledActionParam_]),
|
|
114
126
|
__metadata("design:type", Array)
|
|
@@ -430,6 +442,8 @@ let ScheduledActionParam_ = class ScheduledActionParam_ {
|
|
|
430
442
|
Comments;
|
|
431
443
|
_mj__CreatedAt;
|
|
432
444
|
_mj__UpdatedAt;
|
|
445
|
+
ScheduledAction;
|
|
446
|
+
ActionParam;
|
|
433
447
|
};
|
|
434
448
|
__decorate([
|
|
435
449
|
Field(),
|
|
@@ -469,6 +483,16 @@ __decorate([
|
|
|
469
483
|
MaxLength(10),
|
|
470
484
|
__metadata("design:type", Date)
|
|
471
485
|
], ScheduledActionParam_.prototype, "_mj__UpdatedAt", void 0);
|
|
486
|
+
__decorate([
|
|
487
|
+
Field(),
|
|
488
|
+
MaxLength(510),
|
|
489
|
+
__metadata("design:type", String)
|
|
490
|
+
], ScheduledActionParam_.prototype, "ScheduledAction", void 0);
|
|
491
|
+
__decorate([
|
|
492
|
+
Field(),
|
|
493
|
+
MaxLength(510),
|
|
494
|
+
__metadata("design:type", String)
|
|
495
|
+
], ScheduledActionParam_.prototype, "ActionParam", void 0);
|
|
472
496
|
ScheduledActionParam_ = __decorate([
|
|
473
497
|
ObjectType()
|
|
474
498
|
], ScheduledActionParam_);
|
|
@@ -11659,6 +11683,7 @@ let List_ = class List_ {
|
|
|
11659
11683
|
_mj__UpdatedAt;
|
|
11660
11684
|
Entity;
|
|
11661
11685
|
User;
|
|
11686
|
+
Category;
|
|
11662
11687
|
ListDetailsArray;
|
|
11663
11688
|
DuplicateRunsArray;
|
|
11664
11689
|
};
|
|
@@ -11721,6 +11746,11 @@ __decorate([
|
|
|
11721
11746
|
MaxLength(200),
|
|
11722
11747
|
__metadata("design:type", String)
|
|
11723
11748
|
], List_.prototype, "User", void 0);
|
|
11749
|
+
__decorate([
|
|
11750
|
+
Field({ nullable: true }),
|
|
11751
|
+
MaxLength(200),
|
|
11752
|
+
__metadata("design:type", String)
|
|
11753
|
+
], List_.prototype, "Category", void 0);
|
|
11724
11754
|
__decorate([
|
|
11725
11755
|
Field(() => [ListDetail_]),
|
|
11726
11756
|
__metadata("design:type", Array)
|
|
@@ -11999,6 +12029,8 @@ let ListDetail_ = class ListDetail_ {
|
|
|
11999
12029
|
Sequence;
|
|
12000
12030
|
_mj__CreatedAt;
|
|
12001
12031
|
_mj__UpdatedAt;
|
|
12032
|
+
Status;
|
|
12033
|
+
AdditionalData;
|
|
12002
12034
|
List;
|
|
12003
12035
|
};
|
|
12004
12036
|
__decorate([
|
|
@@ -12030,6 +12062,15 @@ __decorate([
|
|
|
12030
12062
|
MaxLength(10),
|
|
12031
12063
|
__metadata("design:type", Date)
|
|
12032
12064
|
], ListDetail_.prototype, "_mj__UpdatedAt", void 0);
|
|
12065
|
+
__decorate([
|
|
12066
|
+
Field({ 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.' }),
|
|
12067
|
+
MaxLength(60),
|
|
12068
|
+
__metadata("design:type", String)
|
|
12069
|
+
], ListDetail_.prototype, "Status", void 0);
|
|
12070
|
+
__decorate([
|
|
12071
|
+
Field({ nullable: true, description: 'Optional column that allows for tracking any additional data for each ListDetail row' }),
|
|
12072
|
+
__metadata("design:type", String)
|
|
12073
|
+
], ListDetail_.prototype, "AdditionalData", void 0);
|
|
12033
12074
|
__decorate([
|
|
12034
12075
|
Field(),
|
|
12035
12076
|
MaxLength(200),
|
|
@@ -12043,6 +12084,8 @@ let CreateListDetailInput = class CreateListDetailInput {
|
|
|
12043
12084
|
ListID;
|
|
12044
12085
|
RecordID;
|
|
12045
12086
|
Sequence;
|
|
12087
|
+
Status;
|
|
12088
|
+
AdditionalData;
|
|
12046
12089
|
};
|
|
12047
12090
|
__decorate([
|
|
12048
12091
|
Field(),
|
|
@@ -12056,6 +12099,14 @@ __decorate([
|
|
|
12056
12099
|
Field(() => Int),
|
|
12057
12100
|
__metadata("design:type", Number)
|
|
12058
12101
|
], CreateListDetailInput.prototype, "Sequence", void 0);
|
|
12102
|
+
__decorate([
|
|
12103
|
+
Field(),
|
|
12104
|
+
__metadata("design:type", String)
|
|
12105
|
+
], CreateListDetailInput.prototype, "Status", void 0);
|
|
12106
|
+
__decorate([
|
|
12107
|
+
Field({ nullable: true }),
|
|
12108
|
+
__metadata("design:type", String)
|
|
12109
|
+
], CreateListDetailInput.prototype, "AdditionalData", void 0);
|
|
12059
12110
|
CreateListDetailInput = __decorate([
|
|
12060
12111
|
InputType()
|
|
12061
12112
|
], CreateListDetailInput);
|
|
@@ -12065,6 +12116,8 @@ let UpdateListDetailInput = class UpdateListDetailInput {
|
|
|
12065
12116
|
ListID;
|
|
12066
12117
|
RecordID;
|
|
12067
12118
|
Sequence;
|
|
12119
|
+
Status;
|
|
12120
|
+
AdditionalData;
|
|
12068
12121
|
OldValues___;
|
|
12069
12122
|
};
|
|
12070
12123
|
__decorate([
|
|
@@ -12083,6 +12136,14 @@ __decorate([
|
|
|
12083
12136
|
Field(() => Int),
|
|
12084
12137
|
__metadata("design:type", Number)
|
|
12085
12138
|
], UpdateListDetailInput.prototype, "Sequence", void 0);
|
|
12139
|
+
__decorate([
|
|
12140
|
+
Field(),
|
|
12141
|
+
__metadata("design:type", String)
|
|
12142
|
+
], UpdateListDetailInput.prototype, "Status", void 0);
|
|
12143
|
+
__decorate([
|
|
12144
|
+
Field({ nullable: true }),
|
|
12145
|
+
__metadata("design:type", String)
|
|
12146
|
+
], UpdateListDetailInput.prototype, "AdditionalData", void 0);
|
|
12086
12147
|
__decorate([
|
|
12087
12148
|
Field(() => [KeyValuePairInput], { nullable: true }),
|
|
12088
12149
|
__metadata("design:type", Array)
|
|
@@ -14208,6 +14269,8 @@ let AuditLog_ = class AuditLog_ {
|
|
|
14208
14269
|
_mj__CreatedAt;
|
|
14209
14270
|
_mj__UpdatedAt;
|
|
14210
14271
|
User;
|
|
14272
|
+
AuditLogType;
|
|
14273
|
+
Authorization;
|
|
14211
14274
|
Entity;
|
|
14212
14275
|
};
|
|
14213
14276
|
__decorate([
|
|
@@ -14268,6 +14331,16 @@ __decorate([
|
|
|
14268
14331
|
MaxLength(200),
|
|
14269
14332
|
__metadata("design:type", String)
|
|
14270
14333
|
], AuditLog_.prototype, "User", void 0);
|
|
14334
|
+
__decorate([
|
|
14335
|
+
Field(),
|
|
14336
|
+
MaxLength(100),
|
|
14337
|
+
__metadata("design:type", String)
|
|
14338
|
+
], AuditLog_.prototype, "AuditLogType", void 0);
|
|
14339
|
+
__decorate([
|
|
14340
|
+
Field({ nullable: true }),
|
|
14341
|
+
MaxLength(200),
|
|
14342
|
+
__metadata("design:type", String)
|
|
14343
|
+
], AuditLog_.prototype, "Authorization", void 0);
|
|
14271
14344
|
__decorate([
|
|
14272
14345
|
Field({ nullable: true }),
|
|
14273
14346
|
MaxLength(510),
|
|
@@ -14779,6 +14852,8 @@ let AuthorizationRole_ = class AuthorizationRole_ {
|
|
|
14779
14852
|
Type;
|
|
14780
14853
|
_mj__CreatedAt;
|
|
14781
14854
|
_mj__UpdatedAt;
|
|
14855
|
+
Authorization;
|
|
14856
|
+
Role;
|
|
14782
14857
|
};
|
|
14783
14858
|
__decorate([
|
|
14784
14859
|
Field(),
|
|
@@ -14810,6 +14885,16 @@ __decorate([
|
|
|
14810
14885
|
MaxLength(10),
|
|
14811
14886
|
__metadata("design:type", Date)
|
|
14812
14887
|
], AuthorizationRole_.prototype, "_mj__UpdatedAt", void 0);
|
|
14888
|
+
__decorate([
|
|
14889
|
+
Field(),
|
|
14890
|
+
MaxLength(200),
|
|
14891
|
+
__metadata("design:type", String)
|
|
14892
|
+
], AuthorizationRole_.prototype, "Authorization", void 0);
|
|
14893
|
+
__decorate([
|
|
14894
|
+
Field(),
|
|
14895
|
+
MaxLength(100),
|
|
14896
|
+
__metadata("design:type", String)
|
|
14897
|
+
], AuthorizationRole_.prototype, "Role", void 0);
|
|
14813
14898
|
AuthorizationRole_ = __decorate([
|
|
14814
14899
|
ObjectType()
|
|
14815
14900
|
], AuthorizationRole_);
|
|
@@ -14936,6 +15021,7 @@ let AuditLogType_ = class AuditLogType_ {
|
|
|
14936
15021
|
_mj__CreatedAt;
|
|
14937
15022
|
_mj__UpdatedAt;
|
|
14938
15023
|
Parent;
|
|
15024
|
+
Authorization;
|
|
14939
15025
|
AuditLogTypesArray;
|
|
14940
15026
|
AuditLogsArray;
|
|
14941
15027
|
};
|
|
@@ -14978,6 +15064,11 @@ __decorate([
|
|
|
14978
15064
|
MaxLength(100),
|
|
14979
15065
|
__metadata("design:type", String)
|
|
14980
15066
|
], AuditLogType_.prototype, "Parent", void 0);
|
|
15067
|
+
__decorate([
|
|
15068
|
+
Field({ nullable: true }),
|
|
15069
|
+
MaxLength(200),
|
|
15070
|
+
__metadata("design:type", String)
|
|
15071
|
+
], AuditLogType_.prototype, "Authorization", void 0);
|
|
14981
15072
|
__decorate([
|
|
14982
15073
|
Field(() => [AuditLogType_]),
|
|
14983
15074
|
__metadata("design:type", Array)
|
|
@@ -15382,6 +15473,8 @@ let AIModel_ = class AIModel_ {
|
|
|
15382
15473
|
APIName;
|
|
15383
15474
|
_mj__CreatedAt;
|
|
15384
15475
|
_mj__UpdatedAt;
|
|
15476
|
+
SpeedRank;
|
|
15477
|
+
CostRank;
|
|
15385
15478
|
AIModelType;
|
|
15386
15479
|
AIActionsArray;
|
|
15387
15480
|
EntityDocumentsArray;
|
|
@@ -15414,7 +15507,7 @@ __decorate([
|
|
|
15414
15507
|
__metadata("design:type", String)
|
|
15415
15508
|
], AIModel_.prototype, "AIModelTypeID", void 0);
|
|
15416
15509
|
__decorate([
|
|
15417
|
-
Field(() => Int, { nullable: true, description: '
|
|
15510
|
+
Field(() => Int, { nullable: true, description: 'Optional column that ranks the power of the AI model. Default is 0 and should be non-negative.' }),
|
|
15418
15511
|
__metadata("design:type", Number)
|
|
15419
15512
|
], AIModel_.prototype, "PowerRank", void 0);
|
|
15420
15513
|
__decorate([
|
|
@@ -15446,6 +15539,14 @@ __decorate([
|
|
|
15446
15539
|
MaxLength(10),
|
|
15447
15540
|
__metadata("design:type", Date)
|
|
15448
15541
|
], AIModel_.prototype, "_mj__UpdatedAt", void 0);
|
|
15542
|
+
__decorate([
|
|
15543
|
+
Field(() => Int, { nullable: true, description: 'Optional column that ranks the speed of the AI model. Default is 0 and should be non-negative.' }),
|
|
15544
|
+
__metadata("design:type", Number)
|
|
15545
|
+
], AIModel_.prototype, "SpeedRank", void 0);
|
|
15546
|
+
__decorate([
|
|
15547
|
+
Field(() => Int, { nullable: true, description: 'Optional column that ranks the cost of the AI model. Default is 0 and should be non-negative.' }),
|
|
15548
|
+
__metadata("design:type", Number)
|
|
15549
|
+
], AIModel_.prototype, "CostRank", void 0);
|
|
15449
15550
|
__decorate([
|
|
15450
15551
|
Field(),
|
|
15451
15552
|
MaxLength(100),
|
|
@@ -15485,6 +15586,8 @@ let CreateAIModelInput = class CreateAIModelInput {
|
|
|
15485
15586
|
DriverClass;
|
|
15486
15587
|
DriverImportPath;
|
|
15487
15588
|
APIName;
|
|
15589
|
+
SpeedRank;
|
|
15590
|
+
CostRank;
|
|
15488
15591
|
};
|
|
15489
15592
|
__decorate([
|
|
15490
15593
|
Field(),
|
|
@@ -15522,6 +15625,14 @@ __decorate([
|
|
|
15522
15625
|
Field({ nullable: true }),
|
|
15523
15626
|
__metadata("design:type", String)
|
|
15524
15627
|
], CreateAIModelInput.prototype, "APIName", void 0);
|
|
15628
|
+
__decorate([
|
|
15629
|
+
Field(() => Int, { nullable: true }),
|
|
15630
|
+
__metadata("design:type", Number)
|
|
15631
|
+
], CreateAIModelInput.prototype, "SpeedRank", void 0);
|
|
15632
|
+
__decorate([
|
|
15633
|
+
Field(() => Int, { nullable: true }),
|
|
15634
|
+
__metadata("design:type", Number)
|
|
15635
|
+
], CreateAIModelInput.prototype, "CostRank", void 0);
|
|
15525
15636
|
CreateAIModelInput = __decorate([
|
|
15526
15637
|
InputType()
|
|
15527
15638
|
], CreateAIModelInput);
|
|
@@ -15537,6 +15648,8 @@ let UpdateAIModelInput = class UpdateAIModelInput {
|
|
|
15537
15648
|
DriverClass;
|
|
15538
15649
|
DriverImportPath;
|
|
15539
15650
|
APIName;
|
|
15651
|
+
SpeedRank;
|
|
15652
|
+
CostRank;
|
|
15540
15653
|
OldValues___;
|
|
15541
15654
|
};
|
|
15542
15655
|
__decorate([
|
|
@@ -15579,6 +15692,14 @@ __decorate([
|
|
|
15579
15692
|
Field({ nullable: true }),
|
|
15580
15693
|
__metadata("design:type", String)
|
|
15581
15694
|
], UpdateAIModelInput.prototype, "APIName", void 0);
|
|
15695
|
+
__decorate([
|
|
15696
|
+
Field(() => Int, { nullable: true }),
|
|
15697
|
+
__metadata("design:type", Number)
|
|
15698
|
+
], UpdateAIModelInput.prototype, "SpeedRank", void 0);
|
|
15699
|
+
__decorate([
|
|
15700
|
+
Field(() => Int, { nullable: true }),
|
|
15701
|
+
__metadata("design:type", Number)
|
|
15702
|
+
], UpdateAIModelInput.prototype, "CostRank", void 0);
|
|
15582
15703
|
__decorate([
|
|
15583
15704
|
Field(() => [KeyValuePairInput], { nullable: true }),
|
|
15584
15705
|
__metadata("design:type", Array)
|
|
@@ -20718,6 +20839,7 @@ let DatasetItem_ = class DatasetItem_ {
|
|
|
20718
20839
|
Description;
|
|
20719
20840
|
_mj__CreatedAt;
|
|
20720
20841
|
_mj__UpdatedAt;
|
|
20842
|
+
Dataset;
|
|
20721
20843
|
Entity;
|
|
20722
20844
|
};
|
|
20723
20845
|
__decorate([
|
|
@@ -20767,6 +20889,11 @@ __decorate([
|
|
|
20767
20889
|
MaxLength(10),
|
|
20768
20890
|
__metadata("design:type", Date)
|
|
20769
20891
|
], DatasetItem_.prototype, "_mj__UpdatedAt", void 0);
|
|
20892
|
+
__decorate([
|
|
20893
|
+
Field(),
|
|
20894
|
+
MaxLength(200),
|
|
20895
|
+
__metadata("design:type", String)
|
|
20896
|
+
], DatasetItem_.prototype, "Dataset", void 0);
|
|
20770
20897
|
__decorate([
|
|
20771
20898
|
Field(),
|
|
20772
20899
|
MaxLength(510),
|
|
@@ -21192,6 +21319,7 @@ let Conversation_ = class Conversation_ {
|
|
|
21192
21319
|
_mj__UpdatedAt;
|
|
21193
21320
|
User;
|
|
21194
21321
|
LinkedEntity;
|
|
21322
|
+
DataContext;
|
|
21195
21323
|
ConversationDetailsArray;
|
|
21196
21324
|
ReportsArray;
|
|
21197
21325
|
};
|
|
@@ -21263,6 +21391,11 @@ __decorate([
|
|
|
21263
21391
|
MaxLength(510),
|
|
21264
21392
|
__metadata("design:type", String)
|
|
21265
21393
|
], Conversation_.prototype, "LinkedEntity", void 0);
|
|
21394
|
+
__decorate([
|
|
21395
|
+
Field({ nullable: true }),
|
|
21396
|
+
MaxLength(510),
|
|
21397
|
+
__metadata("design:type", String)
|
|
21398
|
+
], Conversation_.prototype, "DataContext", void 0);
|
|
21266
21399
|
__decorate([
|
|
21267
21400
|
Field(() => [ConversationDetail_]),
|
|
21268
21401
|
__metadata("design:type", Array)
|
|
@@ -21560,12 +21693,12 @@ let UserNotification_ = class UserNotification_ {
|
|
|
21560
21693
|
Title;
|
|
21561
21694
|
Message;
|
|
21562
21695
|
ResourceTypeID;
|
|
21563
|
-
ResourceRecordID;
|
|
21564
21696
|
ResourceConfiguration;
|
|
21565
21697
|
Unread;
|
|
21566
21698
|
ReadAt;
|
|
21567
21699
|
_mj__CreatedAt;
|
|
21568
21700
|
_mj__UpdatedAt;
|
|
21701
|
+
ResourceRecordID;
|
|
21569
21702
|
User;
|
|
21570
21703
|
ResourceType;
|
|
21571
21704
|
};
|
|
@@ -21593,11 +21726,6 @@ __decorate([
|
|
|
21593
21726
|
MaxLength(16),
|
|
21594
21727
|
__metadata("design:type", String)
|
|
21595
21728
|
], UserNotification_.prototype, "ResourceTypeID", void 0);
|
|
21596
|
-
__decorate([
|
|
21597
|
-
Field({ nullable: true }),
|
|
21598
|
-
MaxLength(16),
|
|
21599
|
-
__metadata("design:type", String)
|
|
21600
|
-
], UserNotification_.prototype, "ResourceRecordID", void 0);
|
|
21601
21729
|
__decorate([
|
|
21602
21730
|
Field({ nullable: true }),
|
|
21603
21731
|
__metadata("design:type", String)
|
|
@@ -21621,6 +21749,11 @@ __decorate([
|
|
|
21621
21749
|
MaxLength(10),
|
|
21622
21750
|
__metadata("design:type", Date)
|
|
21623
21751
|
], UserNotification_.prototype, "_mj__UpdatedAt", void 0);
|
|
21752
|
+
__decorate([
|
|
21753
|
+
Field({ nullable: true }),
|
|
21754
|
+
MaxLength(16),
|
|
21755
|
+
__metadata("design:type", String)
|
|
21756
|
+
], UserNotification_.prototype, "ResourceRecordID", void 0);
|
|
21624
21757
|
__decorate([
|
|
21625
21758
|
Field(),
|
|
21626
21759
|
MaxLength(200),
|
|
@@ -21640,10 +21773,10 @@ let CreateUserNotificationInput = class CreateUserNotificationInput {
|
|
|
21640
21773
|
Title;
|
|
21641
21774
|
Message;
|
|
21642
21775
|
ResourceTypeID;
|
|
21643
|
-
ResourceRecordID;
|
|
21644
21776
|
ResourceConfiguration;
|
|
21645
21777
|
Unread;
|
|
21646
21778
|
ReadAt;
|
|
21779
|
+
ResourceRecordID;
|
|
21647
21780
|
};
|
|
21648
21781
|
__decorate([
|
|
21649
21782
|
Field(),
|
|
@@ -21661,10 +21794,6 @@ __decorate([
|
|
|
21661
21794
|
Field({ nullable: true }),
|
|
21662
21795
|
__metadata("design:type", String)
|
|
21663
21796
|
], CreateUserNotificationInput.prototype, "ResourceTypeID", void 0);
|
|
21664
|
-
__decorate([
|
|
21665
|
-
Field({ nullable: true }),
|
|
21666
|
-
__metadata("design:type", String)
|
|
21667
|
-
], CreateUserNotificationInput.prototype, "ResourceRecordID", void 0);
|
|
21668
21797
|
__decorate([
|
|
21669
21798
|
Field({ nullable: true }),
|
|
21670
21799
|
__metadata("design:type", String)
|
|
@@ -21677,6 +21806,10 @@ __decorate([
|
|
|
21677
21806
|
Field({ nullable: true }),
|
|
21678
21807
|
__metadata("design:type", Date)
|
|
21679
21808
|
], CreateUserNotificationInput.prototype, "ReadAt", void 0);
|
|
21809
|
+
__decorate([
|
|
21810
|
+
Field({ nullable: true }),
|
|
21811
|
+
__metadata("design:type", String)
|
|
21812
|
+
], CreateUserNotificationInput.prototype, "ResourceRecordID", void 0);
|
|
21680
21813
|
CreateUserNotificationInput = __decorate([
|
|
21681
21814
|
InputType()
|
|
21682
21815
|
], CreateUserNotificationInput);
|
|
@@ -21687,10 +21820,10 @@ let UpdateUserNotificationInput = class UpdateUserNotificationInput {
|
|
|
21687
21820
|
Title;
|
|
21688
21821
|
Message;
|
|
21689
21822
|
ResourceTypeID;
|
|
21690
|
-
ResourceRecordID;
|
|
21691
21823
|
ResourceConfiguration;
|
|
21692
21824
|
Unread;
|
|
21693
21825
|
ReadAt;
|
|
21826
|
+
ResourceRecordID;
|
|
21694
21827
|
OldValues___;
|
|
21695
21828
|
};
|
|
21696
21829
|
__decorate([
|
|
@@ -21713,10 +21846,6 @@ __decorate([
|
|
|
21713
21846
|
Field({ nullable: true }),
|
|
21714
21847
|
__metadata("design:type", String)
|
|
21715
21848
|
], UpdateUserNotificationInput.prototype, "ResourceTypeID", void 0);
|
|
21716
|
-
__decorate([
|
|
21717
|
-
Field({ nullable: true }),
|
|
21718
|
-
__metadata("design:type", String)
|
|
21719
|
-
], UpdateUserNotificationInput.prototype, "ResourceRecordID", void 0);
|
|
21720
21849
|
__decorate([
|
|
21721
21850
|
Field({ nullable: true }),
|
|
21722
21851
|
__metadata("design:type", String)
|
|
@@ -21729,6 +21858,10 @@ __decorate([
|
|
|
21729
21858
|
Field({ nullable: true }),
|
|
21730
21859
|
__metadata("design:type", Date)
|
|
21731
21860
|
], UpdateUserNotificationInput.prototype, "ReadAt", void 0);
|
|
21861
|
+
__decorate([
|
|
21862
|
+
Field({ nullable: true }),
|
|
21863
|
+
__metadata("design:type", String)
|
|
21864
|
+
], UpdateUserNotificationInput.prototype, "ResourceRecordID", void 0);
|
|
21732
21865
|
__decorate([
|
|
21733
21866
|
Field(() => [KeyValuePairInput], { nullable: true }),
|
|
21734
21867
|
__metadata("design:type", Array)
|
|
@@ -22359,6 +22492,7 @@ let RecordMergeLog_ = class RecordMergeLog_ {
|
|
|
22359
22492
|
_mj__UpdatedAt;
|
|
22360
22493
|
Entity;
|
|
22361
22494
|
InitiatedByUser;
|
|
22495
|
+
ApprovedByUser;
|
|
22362
22496
|
RecordMergeDeletionLogsArray;
|
|
22363
22497
|
DuplicateRunDetailMatchesArray;
|
|
22364
22498
|
};
|
|
@@ -22435,6 +22569,11 @@ __decorate([
|
|
|
22435
22569
|
MaxLength(200),
|
|
22436
22570
|
__metadata("design:type", String)
|
|
22437
22571
|
], RecordMergeLog_.prototype, "InitiatedByUser", void 0);
|
|
22572
|
+
__decorate([
|
|
22573
|
+
Field({ nullable: true }),
|
|
22574
|
+
MaxLength(200),
|
|
22575
|
+
__metadata("design:type", String)
|
|
22576
|
+
], RecordMergeLog_.prototype, "ApprovedByUser", void 0);
|
|
22438
22577
|
__decorate([
|
|
22439
22578
|
Field(() => [RecordMergeDeletionLog_]),
|
|
22440
22579
|
__metadata("design:type", Array)
|
|
@@ -24028,6 +24167,8 @@ let QueryPermission_ = class QueryPermission_ {
|
|
|
24028
24167
|
RoleID;
|
|
24029
24168
|
_mj__CreatedAt;
|
|
24030
24169
|
_mj__UpdatedAt;
|
|
24170
|
+
Query;
|
|
24171
|
+
Role;
|
|
24031
24172
|
};
|
|
24032
24173
|
__decorate([
|
|
24033
24174
|
Field(),
|
|
@@ -24054,6 +24195,16 @@ __decorate([
|
|
|
24054
24195
|
MaxLength(10),
|
|
24055
24196
|
__metadata("design:type", Date)
|
|
24056
24197
|
], QueryPermission_.prototype, "_mj__UpdatedAt", void 0);
|
|
24198
|
+
__decorate([
|
|
24199
|
+
Field(),
|
|
24200
|
+
MaxLength(510),
|
|
24201
|
+
__metadata("design:type", String)
|
|
24202
|
+
], QueryPermission_.prototype, "Query", void 0);
|
|
24203
|
+
__decorate([
|
|
24204
|
+
Field(),
|
|
24205
|
+
MaxLength(100),
|
|
24206
|
+
__metadata("design:type", String)
|
|
24207
|
+
], QueryPermission_.prototype, "Role", void 0);
|
|
24057
24208
|
QueryPermission_ = __decorate([
|
|
24058
24209
|
ObjectType()
|
|
24059
24210
|
], QueryPermission_);
|
|
@@ -25230,6 +25381,9 @@ let EntityRecordDocument_ = class EntityRecordDocument_ {
|
|
|
25230
25381
|
EntityRecordUpdatedAt;
|
|
25231
25382
|
_mj__CreatedAt;
|
|
25232
25383
|
_mj__UpdatedAt;
|
|
25384
|
+
Entity;
|
|
25385
|
+
EntityDocument;
|
|
25386
|
+
VectorIndex;
|
|
25233
25387
|
};
|
|
25234
25388
|
__decorate([
|
|
25235
25389
|
Field(),
|
|
@@ -25284,6 +25438,21 @@ __decorate([
|
|
|
25284
25438
|
MaxLength(10),
|
|
25285
25439
|
__metadata("design:type", Date)
|
|
25286
25440
|
], EntityRecordDocument_.prototype, "_mj__UpdatedAt", void 0);
|
|
25441
|
+
__decorate([
|
|
25442
|
+
Field(),
|
|
25443
|
+
MaxLength(510),
|
|
25444
|
+
__metadata("design:type", String)
|
|
25445
|
+
], EntityRecordDocument_.prototype, "Entity", void 0);
|
|
25446
|
+
__decorate([
|
|
25447
|
+
Field(),
|
|
25448
|
+
MaxLength(500),
|
|
25449
|
+
__metadata("design:type", String)
|
|
25450
|
+
], EntityRecordDocument_.prototype, "EntityDocument", void 0);
|
|
25451
|
+
__decorate([
|
|
25452
|
+
Field(),
|
|
25453
|
+
MaxLength(510),
|
|
25454
|
+
__metadata("design:type", String)
|
|
25455
|
+
], EntityRecordDocument_.prototype, "VectorIndex", void 0);
|
|
25287
25456
|
EntityRecordDocument_ = __decorate([
|
|
25288
25457
|
ObjectType()
|
|
25289
25458
|
], EntityRecordDocument_);
|
|
@@ -25528,6 +25697,9 @@ let EntityDocument_ = class EntityDocument_ {
|
|
|
25528
25697
|
_mj__UpdatedAt;
|
|
25529
25698
|
Type;
|
|
25530
25699
|
Entity;
|
|
25700
|
+
VectorDatabase;
|
|
25701
|
+
Template;
|
|
25702
|
+
AIModel;
|
|
25531
25703
|
EntityDocumentSettingsArray;
|
|
25532
25704
|
EntityDocumentRunsArray;
|
|
25533
25705
|
EntityRecordDocumentsArray;
|
|
@@ -25600,6 +25772,21 @@ __decorate([
|
|
|
25600
25772
|
MaxLength(510),
|
|
25601
25773
|
__metadata("design:type", String)
|
|
25602
25774
|
], EntityDocument_.prototype, "Entity", void 0);
|
|
25775
|
+
__decorate([
|
|
25776
|
+
Field(),
|
|
25777
|
+
MaxLength(200),
|
|
25778
|
+
__metadata("design:type", String)
|
|
25779
|
+
], EntityDocument_.prototype, "VectorDatabase", void 0);
|
|
25780
|
+
__decorate([
|
|
25781
|
+
Field(),
|
|
25782
|
+
MaxLength(510),
|
|
25783
|
+
__metadata("design:type", String)
|
|
25784
|
+
], EntityDocument_.prototype, "Template", void 0);
|
|
25785
|
+
__decorate([
|
|
25786
|
+
Field(),
|
|
25787
|
+
MaxLength(100),
|
|
25788
|
+
__metadata("design:type", String)
|
|
25789
|
+
], EntityDocument_.prototype, "AIModel", void 0);
|
|
25603
25790
|
__decorate([
|
|
25604
25791
|
Field(() => [EntityDocumentSetting_]),
|
|
25605
25792
|
__metadata("design:type", Array)
|
|
@@ -26567,6 +26754,7 @@ let UserViewCategory_ = class UserViewCategory_ {
|
|
|
26567
26754
|
_mj__CreatedAt;
|
|
26568
26755
|
_mj__UpdatedAt;
|
|
26569
26756
|
Parent;
|
|
26757
|
+
Entity;
|
|
26570
26758
|
User;
|
|
26571
26759
|
UserViewCategoriesArray;
|
|
26572
26760
|
UserViewsArray;
|
|
@@ -26615,6 +26803,11 @@ __decorate([
|
|
|
26615
26803
|
MaxLength(200),
|
|
26616
26804
|
__metadata("design:type", String)
|
|
26617
26805
|
], UserViewCategory_.prototype, "Parent", void 0);
|
|
26806
|
+
__decorate([
|
|
26807
|
+
Field(),
|
|
26808
|
+
MaxLength(510),
|
|
26809
|
+
__metadata("design:type", String)
|
|
26810
|
+
], UserViewCategory_.prototype, "Entity", void 0);
|
|
26618
26811
|
__decorate([
|
|
26619
26812
|
Field(),
|
|
26620
26813
|
MaxLength(200),
|
|
@@ -30357,6 +30550,7 @@ let ApplicationSetting_ = class ApplicationSetting_ {
|
|
|
30357
30550
|
Comments;
|
|
30358
30551
|
_mj__CreatedAt;
|
|
30359
30552
|
_mj__UpdatedAt;
|
|
30553
|
+
Application;
|
|
30360
30554
|
};
|
|
30361
30555
|
__decorate([
|
|
30362
30556
|
Field(),
|
|
@@ -30391,6 +30585,11 @@ __decorate([
|
|
|
30391
30585
|
MaxLength(10),
|
|
30392
30586
|
__metadata("design:type", Date)
|
|
30393
30587
|
], ApplicationSetting_.prototype, "_mj__UpdatedAt", void 0);
|
|
30588
|
+
__decorate([
|
|
30589
|
+
Field(),
|
|
30590
|
+
MaxLength(200),
|
|
30591
|
+
__metadata("design:type", String)
|
|
30592
|
+
], ApplicationSetting_.prototype, "Application", void 0);
|
|
30394
30593
|
ApplicationSetting_ = __decorate([
|
|
30395
30594
|
ObjectType()
|
|
30396
30595
|
], ApplicationSetting_);
|
|
@@ -31434,6 +31633,7 @@ let ActionAuthorization_ = class ActionAuthorization_ {
|
|
|
31434
31633
|
_mj__CreatedAt;
|
|
31435
31634
|
_mj__UpdatedAt;
|
|
31436
31635
|
Action;
|
|
31636
|
+
Authorization;
|
|
31437
31637
|
};
|
|
31438
31638
|
__decorate([
|
|
31439
31639
|
Field(),
|
|
@@ -31469,6 +31669,11 @@ __decorate([
|
|
|
31469
31669
|
MaxLength(850),
|
|
31470
31670
|
__metadata("design:type", String)
|
|
31471
31671
|
], ActionAuthorization_.prototype, "Action", void 0);
|
|
31672
|
+
__decorate([
|
|
31673
|
+
Field(),
|
|
31674
|
+
MaxLength(200),
|
|
31675
|
+
__metadata("design:type", String)
|
|
31676
|
+
], ActionAuthorization_.prototype, "Authorization", void 0);
|
|
31472
31677
|
ActionAuthorization_ = __decorate([
|
|
31473
31678
|
ObjectType({ description: 'Links actions to authorizations, one or more of these must be possessed by a user in order to execute the action.' })
|
|
31474
31679
|
], ActionAuthorization_);
|
|
@@ -34944,6 +35149,8 @@ let ListCategory_ = class ListCategory_ {
|
|
|
34944
35149
|
UserID;
|
|
34945
35150
|
_mj__CreatedAt;
|
|
34946
35151
|
_mj__UpdatedAt;
|
|
35152
|
+
Parent;
|
|
35153
|
+
User;
|
|
34947
35154
|
ListCategoriesArray;
|
|
34948
35155
|
ListsArray;
|
|
34949
35156
|
};
|
|
@@ -34981,6 +35188,16 @@ __decorate([
|
|
|
34981
35188
|
MaxLength(10),
|
|
34982
35189
|
__metadata("design:type", Date)
|
|
34983
35190
|
], ListCategory_.prototype, "_mj__UpdatedAt", void 0);
|
|
35191
|
+
__decorate([
|
|
35192
|
+
Field({ nullable: true }),
|
|
35193
|
+
MaxLength(200),
|
|
35194
|
+
__metadata("design:type", String)
|
|
35195
|
+
], ListCategory_.prototype, "Parent", void 0);
|
|
35196
|
+
__decorate([
|
|
35197
|
+
Field(),
|
|
35198
|
+
MaxLength(200),
|
|
35199
|
+
__metadata("design:type", String)
|
|
35200
|
+
], ListCategory_.prototype, "User", void 0);
|
|
34984
35201
|
__decorate([
|
|
34985
35202
|
Field(() => [ListCategory_]),
|
|
34986
35203
|
__metadata("design:type", Array)
|