@memberjunction/server 2.133.0 → 3.0.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.
- package/dist/apolloServer/TransactionPlugin.d.ts +4 -0
- package/dist/apolloServer/TransactionPlugin.d.ts.map +1 -0
- package/dist/apolloServer/TransactionPlugin.js +46 -0
- package/dist/apolloServer/TransactionPlugin.js.map +1 -0
- package/dist/config.d.ts +1 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +125 -4
- package/dist/config.js.map +1 -1
- package/dist/generated/generated.d.ts +29 -0
- package/dist/generated/generated.d.ts.map +1 -1
- package/dist/generated/generated.js +166 -0
- package/dist/generated/generated.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +44 -43
- package/src/config.ts +167 -4
- package/src/generated/generated.ts +108 -0
- package/src/index.ts +4 -4
|
@@ -4966,6 +4966,8 @@ let MJAIAgentNote_ = class MJAIAgentNote_ {
|
|
|
4966
4966
|
AgentNoteType;
|
|
4967
4967
|
User;
|
|
4968
4968
|
SourceConversation;
|
|
4969
|
+
SourceConversationDetail;
|
|
4970
|
+
SourceAIAgentRun;
|
|
4969
4971
|
Company;
|
|
4970
4972
|
EmbeddingModel;
|
|
4971
4973
|
};
|
|
@@ -5070,6 +5072,15 @@ __decorate([
|
|
|
5070
5072
|
MaxLength(510),
|
|
5071
5073
|
__metadata("design:type", String)
|
|
5072
5074
|
], MJAIAgentNote_.prototype, "SourceConversation", void 0);
|
|
5075
|
+
__decorate([
|
|
5076
|
+
Field({ nullable: true }),
|
|
5077
|
+
__metadata("design:type", String)
|
|
5078
|
+
], MJAIAgentNote_.prototype, "SourceConversationDetail", void 0);
|
|
5079
|
+
__decorate([
|
|
5080
|
+
Field({ nullable: true }),
|
|
5081
|
+
MaxLength(510),
|
|
5082
|
+
__metadata("design:type", String)
|
|
5083
|
+
], MJAIAgentNote_.prototype, "SourceAIAgentRun", void 0);
|
|
5073
5084
|
__decorate([
|
|
5074
5085
|
Field({ nullable: true }),
|
|
5075
5086
|
MaxLength(100),
|
|
@@ -10628,6 +10639,7 @@ let MJAIResultCache_ = class MJAIResultCache_ {
|
|
|
10628
10639
|
Vendor;
|
|
10629
10640
|
Agent;
|
|
10630
10641
|
Configuration;
|
|
10642
|
+
PromptRun;
|
|
10631
10643
|
};
|
|
10632
10644
|
__decorate([
|
|
10633
10645
|
Field(),
|
|
@@ -10726,6 +10738,11 @@ __decorate([
|
|
|
10726
10738
|
MaxLength(200),
|
|
10727
10739
|
__metadata("design:type", String)
|
|
10728
10740
|
], MJAIResultCache_.prototype, "Configuration", void 0);
|
|
10741
|
+
__decorate([
|
|
10742
|
+
Field({ nullable: true }),
|
|
10743
|
+
MaxLength(510),
|
|
10744
|
+
__metadata("design:type", String)
|
|
10745
|
+
], MJAIResultCache_.prototype, "PromptRun", void 0);
|
|
10729
10746
|
MJAIResultCache_ = __decorate([
|
|
10730
10747
|
ObjectType({ description: `Stores cached results of AI prompts, including multiple runs for history and tracking purposes.` })
|
|
10731
10748
|
], MJAIResultCache_);
|
|
@@ -21524,6 +21541,7 @@ let MJConversation_ = class MJConversation_ {
|
|
|
21524
21541
|
DataContext;
|
|
21525
21542
|
Environment;
|
|
21526
21543
|
Project;
|
|
21544
|
+
TestRun;
|
|
21527
21545
|
ConversationDetails_ConversationIDArray;
|
|
21528
21546
|
Reports_ConversationIDArray;
|
|
21529
21547
|
MJ_ConversationArtifacts_ConversationIDArray;
|
|
@@ -21638,6 +21656,11 @@ __decorate([
|
|
|
21638
21656
|
MaxLength(510),
|
|
21639
21657
|
__metadata("design:type", String)
|
|
21640
21658
|
], MJConversation_.prototype, "Project", void 0);
|
|
21659
|
+
__decorate([
|
|
21660
|
+
Field({ nullable: true }),
|
|
21661
|
+
MaxLength(510),
|
|
21662
|
+
__metadata("design:type", String)
|
|
21663
|
+
], MJConversation_.prototype, "TestRun", void 0);
|
|
21641
21664
|
__decorate([
|
|
21642
21665
|
Field(() => [MJConversationDetail_]),
|
|
21643
21666
|
__metadata("design:type", Array)
|
|
@@ -24559,6 +24582,7 @@ let MJDuplicateRunDetail_ = class MJDuplicateRunDetail_ {
|
|
|
24559
24582
|
MergeErrorMessage;
|
|
24560
24583
|
_mj__CreatedAt;
|
|
24561
24584
|
_mj__UpdatedAt;
|
|
24585
|
+
DuplicateRun;
|
|
24562
24586
|
DuplicateRunDetailMatches_DuplicateRunDetailIDArray;
|
|
24563
24587
|
};
|
|
24564
24588
|
__decorate([
|
|
@@ -24608,6 +24632,11 @@ __decorate([
|
|
|
24608
24632
|
MaxLength(10),
|
|
24609
24633
|
__metadata("design:type", Date)
|
|
24610
24634
|
], MJDuplicateRunDetail_.prototype, "_mj__UpdatedAt", void 0);
|
|
24635
|
+
__decorate([
|
|
24636
|
+
Field(),
|
|
24637
|
+
MaxLength(510),
|
|
24638
|
+
__metadata("design:type", String)
|
|
24639
|
+
], MJDuplicateRunDetail_.prototype, "DuplicateRun", void 0);
|
|
24611
24640
|
__decorate([
|
|
24612
24641
|
Field(() => [MJDuplicateRunDetailMatch_]),
|
|
24613
24642
|
__metadata("design:type", Array)
|
|
@@ -25287,6 +25316,7 @@ let MJEmployeeCompanyIntegration_ = class MJEmployeeCompanyIntegration_ {
|
|
|
25287
25316
|
IsActive;
|
|
25288
25317
|
_mj__CreatedAt;
|
|
25289
25318
|
_mj__UpdatedAt;
|
|
25319
|
+
Employee;
|
|
25290
25320
|
CompanyIntegration;
|
|
25291
25321
|
};
|
|
25292
25322
|
__decorate([
|
|
@@ -25323,6 +25353,11 @@ __decorate([
|
|
|
25323
25353
|
MaxLength(10),
|
|
25324
25354
|
__metadata("design:type", Date)
|
|
25325
25355
|
], MJEmployeeCompanyIntegration_.prototype, "_mj__UpdatedAt", void 0);
|
|
25356
|
+
__decorate([
|
|
25357
|
+
Field({ nullable: true }),
|
|
25358
|
+
MaxLength(162),
|
|
25359
|
+
__metadata("design:type", String)
|
|
25360
|
+
], MJEmployeeCompanyIntegration_.prototype, "Employee", void 0);
|
|
25326
25361
|
__decorate([
|
|
25327
25362
|
Field(),
|
|
25328
25363
|
MaxLength(510),
|
|
@@ -25551,6 +25586,7 @@ let MJEmployeeRole_ = class MJEmployeeRole_ {
|
|
|
25551
25586
|
RoleID;
|
|
25552
25587
|
_mj__CreatedAt;
|
|
25553
25588
|
_mj__UpdatedAt;
|
|
25589
|
+
Employee;
|
|
25554
25590
|
Role;
|
|
25555
25591
|
};
|
|
25556
25592
|
__decorate([
|
|
@@ -25578,6 +25614,11 @@ __decorate([
|
|
|
25578
25614
|
MaxLength(10),
|
|
25579
25615
|
__metadata("design:type", Date)
|
|
25580
25616
|
], MJEmployeeRole_.prototype, "_mj__UpdatedAt", void 0);
|
|
25617
|
+
__decorate([
|
|
25618
|
+
Field({ nullable: true }),
|
|
25619
|
+
MaxLength(162),
|
|
25620
|
+
__metadata("design:type", String)
|
|
25621
|
+
], MJEmployeeRole_.prototype, "Employee", void 0);
|
|
25581
25622
|
__decorate([
|
|
25582
25623
|
Field(),
|
|
25583
25624
|
MaxLength(100),
|
|
@@ -25786,6 +25827,7 @@ let MJEmployeeSkill_ = class MJEmployeeSkill_ {
|
|
|
25786
25827
|
SkillID;
|
|
25787
25828
|
_mj__CreatedAt;
|
|
25788
25829
|
_mj__UpdatedAt;
|
|
25830
|
+
Employee;
|
|
25789
25831
|
Skill;
|
|
25790
25832
|
};
|
|
25791
25833
|
__decorate([
|
|
@@ -25813,6 +25855,11 @@ __decorate([
|
|
|
25813
25855
|
MaxLength(10),
|
|
25814
25856
|
__metadata("design:type", Date)
|
|
25815
25857
|
], MJEmployeeSkill_.prototype, "_mj__UpdatedAt", void 0);
|
|
25858
|
+
__decorate([
|
|
25859
|
+
Field({ nullable: true }),
|
|
25860
|
+
MaxLength(162),
|
|
25861
|
+
__metadata("design:type", String)
|
|
25862
|
+
], MJEmployeeSkill_.prototype, "Employee", void 0);
|
|
25816
25863
|
__decorate([
|
|
25817
25864
|
Field(),
|
|
25818
25865
|
MaxLength(100),
|
|
@@ -28520,6 +28567,8 @@ let MJEntityActionFilter_ = class MJEntityActionFilter_ {
|
|
|
28520
28567
|
Status;
|
|
28521
28568
|
_mj__CreatedAt;
|
|
28522
28569
|
_mj__UpdatedAt;
|
|
28570
|
+
EntityAction;
|
|
28571
|
+
ActionFilter;
|
|
28523
28572
|
};
|
|
28524
28573
|
__decorate([
|
|
28525
28574
|
Field(),
|
|
@@ -28555,6 +28604,15 @@ __decorate([
|
|
|
28555
28604
|
MaxLength(10),
|
|
28556
28605
|
__metadata("design:type", Date)
|
|
28557
28606
|
], MJEntityActionFilter_.prototype, "_mj__UpdatedAt", void 0);
|
|
28607
|
+
__decorate([
|
|
28608
|
+
Field(),
|
|
28609
|
+
MaxLength(850),
|
|
28610
|
+
__metadata("design:type", String)
|
|
28611
|
+
], MJEntityActionFilter_.prototype, "EntityAction", void 0);
|
|
28612
|
+
__decorate([
|
|
28613
|
+
Field(),
|
|
28614
|
+
__metadata("design:type", String)
|
|
28615
|
+
], MJEntityActionFilter_.prototype, "ActionFilter", void 0);
|
|
28558
28616
|
MJEntityActionFilter_ = __decorate([
|
|
28559
28617
|
ObjectType({ description: `Optional use. Maps Action Filters to specific EntityAction instances, specifying execution order and status. This allows for “pre-processing” before an Action actually is fired off, to check for various state/dirty/value conditions.` })
|
|
28560
28618
|
], MJEntityActionFilter_);
|
|
@@ -29045,6 +29103,7 @@ let MJEntityActionInvocation_ = class MJEntityActionInvocation_ {
|
|
|
29045
29103
|
Status;
|
|
29046
29104
|
_mj__CreatedAt;
|
|
29047
29105
|
_mj__UpdatedAt;
|
|
29106
|
+
EntityAction;
|
|
29048
29107
|
InvocationType;
|
|
29049
29108
|
};
|
|
29050
29109
|
__decorate([
|
|
@@ -29077,6 +29136,11 @@ __decorate([
|
|
|
29077
29136
|
MaxLength(10),
|
|
29078
29137
|
__metadata("design:type", Date)
|
|
29079
29138
|
], MJEntityActionInvocation_.prototype, "_mj__UpdatedAt", void 0);
|
|
29139
|
+
__decorate([
|
|
29140
|
+
Field(),
|
|
29141
|
+
MaxLength(850),
|
|
29142
|
+
__metadata("design:type", String)
|
|
29143
|
+
], MJEntityActionInvocation_.prototype, "EntityAction", void 0);
|
|
29080
29144
|
__decorate([
|
|
29081
29145
|
Field(),
|
|
29082
29146
|
MaxLength(510),
|
|
@@ -29298,6 +29362,7 @@ let MJEntityActionParam_ = class MJEntityActionParam_ {
|
|
|
29298
29362
|
Comments;
|
|
29299
29363
|
_mj__CreatedAt;
|
|
29300
29364
|
_mj__UpdatedAt;
|
|
29365
|
+
EntityAction;
|
|
29301
29366
|
ActionParam;
|
|
29302
29367
|
};
|
|
29303
29368
|
__decorate([
|
|
@@ -29338,6 +29403,11 @@ __decorate([
|
|
|
29338
29403
|
MaxLength(10),
|
|
29339
29404
|
__metadata("design:type", Date)
|
|
29340
29405
|
], MJEntityActionParam_.prototype, "_mj__UpdatedAt", void 0);
|
|
29406
|
+
__decorate([
|
|
29407
|
+
Field(),
|
|
29408
|
+
MaxLength(850),
|
|
29409
|
+
__metadata("design:type", String)
|
|
29410
|
+
], MJEntityActionParam_.prototype, "EntityAction", void 0);
|
|
29341
29411
|
__decorate([
|
|
29342
29412
|
Field(),
|
|
29343
29413
|
MaxLength(510),
|
|
@@ -30329,6 +30399,7 @@ let MJEntityCommunicationField_ = class MJEntityCommunicationField_ {
|
|
|
30329
30399
|
Priority;
|
|
30330
30400
|
_mj__CreatedAt;
|
|
30331
30401
|
_mj__UpdatedAt;
|
|
30402
|
+
EntityCommunicationMessageType;
|
|
30332
30403
|
};
|
|
30333
30404
|
__decorate([
|
|
30334
30405
|
Field(),
|
|
@@ -30359,6 +30430,11 @@ __decorate([
|
|
|
30359
30430
|
MaxLength(10),
|
|
30360
30431
|
__metadata("design:type", Date)
|
|
30361
30432
|
], MJEntityCommunicationField_.prototype, "_mj__UpdatedAt", void 0);
|
|
30433
|
+
__decorate([
|
|
30434
|
+
Field(),
|
|
30435
|
+
MaxLength(200),
|
|
30436
|
+
__metadata("design:type", String)
|
|
30437
|
+
], MJEntityCommunicationField_.prototype, "EntityCommunicationMessageType", void 0);
|
|
30362
30438
|
MJEntityCommunicationField_ = __decorate([
|
|
30363
30439
|
ObjectType({ description: `Mapping between entity fields and communication base message types with priority` })
|
|
30364
30440
|
], MJEntityCommunicationField_);
|
|
@@ -35248,6 +35324,8 @@ let MJErrorLog_ = class MJErrorLog_ {
|
|
|
35248
35324
|
Details;
|
|
35249
35325
|
_mj__CreatedAt;
|
|
35250
35326
|
_mj__UpdatedAt;
|
|
35327
|
+
CompanyIntegrationRun;
|
|
35328
|
+
CompanyIntegrationRunDetail;
|
|
35251
35329
|
};
|
|
35252
35330
|
__decorate([
|
|
35253
35331
|
Field(),
|
|
@@ -35302,6 +35380,16 @@ __decorate([
|
|
|
35302
35380
|
MaxLength(10),
|
|
35303
35381
|
__metadata("design:type", Date)
|
|
35304
35382
|
], MJErrorLog_.prototype, "_mj__UpdatedAt", void 0);
|
|
35383
|
+
__decorate([
|
|
35384
|
+
Field({ nullable: true }),
|
|
35385
|
+
MaxLength(200),
|
|
35386
|
+
__metadata("design:type", String)
|
|
35387
|
+
], MJErrorLog_.prototype, "CompanyIntegrationRun", void 0);
|
|
35388
|
+
__decorate([
|
|
35389
|
+
Field({ nullable: true }),
|
|
35390
|
+
MaxLength(900),
|
|
35391
|
+
__metadata("design:type", String)
|
|
35392
|
+
], MJErrorLog_.prototype, "CompanyIntegrationRunDetail", void 0);
|
|
35305
35393
|
MJErrorLog_ = __decorate([
|
|
35306
35394
|
ObjectType({ description: `Captures system errors, exceptions, and failures with stack traces, context, and debugging info.` })
|
|
35307
35395
|
], MJErrorLog_);
|
|
@@ -41663,6 +41751,8 @@ let MJAIAgentExample_ = class MJAIAgentExample_ {
|
|
|
41663
41751
|
User;
|
|
41664
41752
|
Company;
|
|
41665
41753
|
SourceConversation;
|
|
41754
|
+
SourceConversationDetail;
|
|
41755
|
+
SourceAIAgentRun;
|
|
41666
41756
|
EmbeddingModel;
|
|
41667
41757
|
};
|
|
41668
41758
|
__decorate([
|
|
@@ -41769,6 +41859,15 @@ __decorate([
|
|
|
41769
41859
|
MaxLength(510),
|
|
41770
41860
|
__metadata("design:type", String)
|
|
41771
41861
|
], MJAIAgentExample_.prototype, "SourceConversation", void 0);
|
|
41862
|
+
__decorate([
|
|
41863
|
+
Field({ nullable: true }),
|
|
41864
|
+
__metadata("design:type", String)
|
|
41865
|
+
], MJAIAgentExample_.prototype, "SourceConversationDetail", void 0);
|
|
41866
|
+
__decorate([
|
|
41867
|
+
Field({ nullable: true }),
|
|
41868
|
+
MaxLength(510),
|
|
41869
|
+
__metadata("design:type", String)
|
|
41870
|
+
], MJAIAgentExample_.prototype, "SourceAIAgentRun", void 0);
|
|
41772
41871
|
__decorate([
|
|
41773
41872
|
Field({ nullable: true }),
|
|
41774
41873
|
MaxLength(100),
|
|
@@ -43437,6 +43536,8 @@ let MJAIAgentRunStep_ = class MJAIAgentRunStep_ {
|
|
|
43437
43536
|
FinalPayloadValidationMessages;
|
|
43438
43537
|
ParentID;
|
|
43439
43538
|
Comments;
|
|
43539
|
+
AgentRun;
|
|
43540
|
+
Parent;
|
|
43440
43541
|
RootParentID;
|
|
43441
43542
|
MJ_AIAgentRunSteps_ParentIDArray;
|
|
43442
43543
|
};
|
|
@@ -43544,6 +43645,16 @@ __decorate([
|
|
|
43544
43645
|
Field({ nullable: true, description: `Human-readable notes and comments about this agent run step` }),
|
|
43545
43646
|
__metadata("design:type", String)
|
|
43546
43647
|
], MJAIAgentRunStep_.prototype, "Comments", void 0);
|
|
43648
|
+
__decorate([
|
|
43649
|
+
Field({ nullable: true }),
|
|
43650
|
+
MaxLength(510),
|
|
43651
|
+
__metadata("design:type", String)
|
|
43652
|
+
], MJAIAgentRunStep_.prototype, "AgentRun", void 0);
|
|
43653
|
+
__decorate([
|
|
43654
|
+
Field({ nullable: true }),
|
|
43655
|
+
MaxLength(510),
|
|
43656
|
+
__metadata("design:type", String)
|
|
43657
|
+
], MJAIAgentRunStep_.prototype, "Parent", void 0);
|
|
43547
43658
|
__decorate([
|
|
43548
43659
|
Field({ nullable: true }),
|
|
43549
43660
|
MaxLength(16),
|
|
@@ -43990,6 +44101,7 @@ let MJAIAgentRun_ = class MJAIAgentRun_ {
|
|
|
43990
44101
|
OverrideModel;
|
|
43991
44102
|
OverrideVendor;
|
|
43992
44103
|
ScheduledJobRun;
|
|
44104
|
+
TestRun;
|
|
43993
44105
|
RootParentRunID;
|
|
43994
44106
|
RootLastRunID;
|
|
43995
44107
|
MJ_AIAgentRunSteps_AgentRunIDArray;
|
|
@@ -44232,6 +44344,11 @@ __decorate([
|
|
|
44232
44344
|
MaxLength(400),
|
|
44233
44345
|
__metadata("design:type", String)
|
|
44234
44346
|
], MJAIAgentRun_.prototype, "ScheduledJobRun", void 0);
|
|
44347
|
+
__decorate([
|
|
44348
|
+
Field({ nullable: true }),
|
|
44349
|
+
MaxLength(510),
|
|
44350
|
+
__metadata("design:type", String)
|
|
44351
|
+
], MJAIAgentRun_.prototype, "TestRun", void 0);
|
|
44235
44352
|
__decorate([
|
|
44236
44353
|
Field({ nullable: true }),
|
|
44237
44354
|
MaxLength(16),
|
|
@@ -59118,6 +59235,7 @@ let MJConversationDetailArtifact_ = class MJConversationDetailArtifact_ {
|
|
|
59118
59235
|
Direction;
|
|
59119
59236
|
_mj__CreatedAt;
|
|
59120
59237
|
_mj__UpdatedAt;
|
|
59238
|
+
ConversationDetail;
|
|
59121
59239
|
ArtifactVersion;
|
|
59122
59240
|
};
|
|
59123
59241
|
__decorate([
|
|
@@ -59150,6 +59268,10 @@ __decorate([
|
|
|
59150
59268
|
MaxLength(10),
|
|
59151
59269
|
__metadata("design:type", Date)
|
|
59152
59270
|
], MJConversationDetailArtifact_.prototype, "_mj__UpdatedAt", void 0);
|
|
59271
|
+
__decorate([
|
|
59272
|
+
Field(),
|
|
59273
|
+
__metadata("design:type", String)
|
|
59274
|
+
], MJConversationDetailArtifact_.prototype, "ConversationDetail", void 0);
|
|
59153
59275
|
__decorate([
|
|
59154
59276
|
Field({ nullable: true }),
|
|
59155
59277
|
MaxLength(510),
|
|
@@ -59769,6 +59891,7 @@ let MJConversationDetailRating_ = class MJConversationDetailRating_ {
|
|
|
59769
59891
|
Comments;
|
|
59770
59892
|
_mj__CreatedAt;
|
|
59771
59893
|
_mj__UpdatedAt;
|
|
59894
|
+
ConversationDetail;
|
|
59772
59895
|
User;
|
|
59773
59896
|
};
|
|
59774
59897
|
__decorate([
|
|
@@ -59804,6 +59927,10 @@ __decorate([
|
|
|
59804
59927
|
MaxLength(10),
|
|
59805
59928
|
__metadata("design:type", Date)
|
|
59806
59929
|
], MJConversationDetailRating_.prototype, "_mj__UpdatedAt", void 0);
|
|
59930
|
+
__decorate([
|
|
59931
|
+
Field(),
|
|
59932
|
+
__metadata("design:type", String)
|
|
59933
|
+
], MJConversationDetailRating_.prototype, "ConversationDetail", void 0);
|
|
59807
59934
|
__decorate([
|
|
59808
59935
|
Field(),
|
|
59809
59936
|
MaxLength(200),
|
|
@@ -67521,6 +67648,7 @@ let MJTask_ = class MJTask_ {
|
|
|
67521
67648
|
Type;
|
|
67522
67649
|
Environment;
|
|
67523
67650
|
Project;
|
|
67651
|
+
ConversationDetail;
|
|
67524
67652
|
User;
|
|
67525
67653
|
Agent;
|
|
67526
67654
|
RootParentID;
|
|
@@ -67631,6 +67759,10 @@ __decorate([
|
|
|
67631
67759
|
MaxLength(510),
|
|
67632
67760
|
__metadata("design:type", String)
|
|
67633
67761
|
], MJTask_.prototype, "Project", void 0);
|
|
67762
|
+
__decorate([
|
|
67763
|
+
Field({ nullable: true }),
|
|
67764
|
+
__metadata("design:type", String)
|
|
67765
|
+
], MJTask_.prototype, "ConversationDetail", void 0);
|
|
67634
67766
|
__decorate([
|
|
67635
67767
|
Field({ nullable: true }),
|
|
67636
67768
|
MaxLength(200),
|
|
@@ -75554,6 +75686,7 @@ let MJRecommendationItem_ = class MJRecommendationItem_ {
|
|
|
75554
75686
|
MatchProbability;
|
|
75555
75687
|
_mj__CreatedAt;
|
|
75556
75688
|
_mj__UpdatedAt;
|
|
75689
|
+
Recommendation;
|
|
75557
75690
|
DestinationEntity;
|
|
75558
75691
|
};
|
|
75559
75692
|
__decorate([
|
|
@@ -75590,6 +75723,10 @@ __decorate([
|
|
|
75590
75723
|
MaxLength(10),
|
|
75591
75724
|
__metadata("design:type", Date)
|
|
75592
75725
|
], MJRecommendationItem_.prototype, "_mj__UpdatedAt", void 0);
|
|
75726
|
+
__decorate([
|
|
75727
|
+
Field(),
|
|
75728
|
+
__metadata("design:type", String)
|
|
75729
|
+
], MJRecommendationItem_.prototype, "Recommendation", void 0);
|
|
75593
75730
|
__decorate([
|
|
75594
75731
|
Field(),
|
|
75595
75732
|
MaxLength(510),
|
|
@@ -76397,6 +76534,7 @@ let MJRecommendation_ = class MJRecommendation_ {
|
|
|
76397
76534
|
SourceEntityRecordID;
|
|
76398
76535
|
_mj__CreatedAt;
|
|
76399
76536
|
_mj__UpdatedAt;
|
|
76537
|
+
RecommendationRun;
|
|
76400
76538
|
SourceEntity;
|
|
76401
76539
|
RecommendationItems_RecommendationIDArray;
|
|
76402
76540
|
};
|
|
@@ -76429,6 +76567,11 @@ __decorate([
|
|
|
76429
76567
|
MaxLength(10),
|
|
76430
76568
|
__metadata("design:type", Date)
|
|
76431
76569
|
], MJRecommendation_.prototype, "_mj__UpdatedAt", void 0);
|
|
76570
|
+
__decorate([
|
|
76571
|
+
Field(),
|
|
76572
|
+
MaxLength(510),
|
|
76573
|
+
__metadata("design:type", String)
|
|
76574
|
+
], MJRecommendation_.prototype, "RecommendationRun", void 0);
|
|
76432
76575
|
__decorate([
|
|
76433
76576
|
Field(),
|
|
76434
76577
|
MaxLength(510),
|
|
@@ -76973,6 +77116,7 @@ let MJRecordChange_ = class MJRecordChange_ {
|
|
|
76973
77116
|
UpdatedAt;
|
|
76974
77117
|
Entity;
|
|
76975
77118
|
User;
|
|
77119
|
+
ReplayRun;
|
|
76976
77120
|
Integration;
|
|
76977
77121
|
};
|
|
76978
77122
|
__decorate([
|
|
@@ -77065,6 +77209,11 @@ __decorate([
|
|
|
77065
77209
|
MaxLength(200),
|
|
77066
77210
|
__metadata("design:type", String)
|
|
77067
77211
|
], MJRecordChange_.prototype, "User", void 0);
|
|
77212
|
+
__decorate([
|
|
77213
|
+
Field({ nullable: true }),
|
|
77214
|
+
MaxLength(200),
|
|
77215
|
+
__metadata("design:type", String)
|
|
77216
|
+
], MJRecordChange_.prototype, "ReplayRun", void 0);
|
|
77068
77217
|
__decorate([
|
|
77069
77218
|
Field({ nullable: true }),
|
|
77070
77219
|
MaxLength(200),
|
|
@@ -77395,6 +77544,7 @@ let MJRecordMergeDeletionLog_ = class MJRecordMergeDeletionLog_ {
|
|
|
77395
77544
|
ProcessingLog;
|
|
77396
77545
|
_mj__CreatedAt;
|
|
77397
77546
|
_mj__UpdatedAt;
|
|
77547
|
+
RecordMergeLog;
|
|
77398
77548
|
};
|
|
77399
77549
|
__decorate([
|
|
77400
77550
|
Field(),
|
|
@@ -77430,6 +77580,11 @@ __decorate([
|
|
|
77430
77580
|
MaxLength(10),
|
|
77431
77581
|
__metadata("design:type", Date)
|
|
77432
77582
|
], MJRecordMergeDeletionLog_.prototype, "_mj__UpdatedAt", void 0);
|
|
77583
|
+
__decorate([
|
|
77584
|
+
Field(),
|
|
77585
|
+
MaxLength(900),
|
|
77586
|
+
__metadata("design:type", String)
|
|
77587
|
+
], MJRecordMergeDeletionLog_.prototype, "RecordMergeLog", void 0);
|
|
77433
77588
|
MJRecordMergeDeletionLog_ = __decorate([
|
|
77434
77589
|
ObjectType({ description: `Tracks records deleted during merge operations, maintaining an audit trail of data consolidation activities.` })
|
|
77435
77590
|
], MJRecordMergeDeletionLog_);
|
|
@@ -78670,6 +78825,7 @@ let MJReport_ = class MJReport_ {
|
|
|
78670
78825
|
Category;
|
|
78671
78826
|
User;
|
|
78672
78827
|
Conversation;
|
|
78828
|
+
ConversationDetail;
|
|
78673
78829
|
DataContext;
|
|
78674
78830
|
OutputTriggerType;
|
|
78675
78831
|
OutputFormatType;
|
|
@@ -78792,6 +78948,10 @@ __decorate([
|
|
|
78792
78948
|
MaxLength(510),
|
|
78793
78949
|
__metadata("design:type", String)
|
|
78794
78950
|
], MJReport_.prototype, "Conversation", void 0);
|
|
78951
|
+
__decorate([
|
|
78952
|
+
Field({ nullable: true }),
|
|
78953
|
+
__metadata("design:type", String)
|
|
78954
|
+
], MJReport_.prototype, "ConversationDetail", void 0);
|
|
78795
78955
|
__decorate([
|
|
78796
78956
|
Field({ nullable: true }),
|
|
78797
78957
|
MaxLength(510),
|
|
@@ -83795,6 +83955,7 @@ let MJTemplateParam_ = class MJTemplateParam_ {
|
|
|
83795
83955
|
TemplateContentID;
|
|
83796
83956
|
Template;
|
|
83797
83957
|
Entity;
|
|
83958
|
+
TemplateContent;
|
|
83798
83959
|
};
|
|
83799
83960
|
__decorate([
|
|
83800
83961
|
Field(),
|
|
@@ -83881,6 +84042,11 @@ __decorate([
|
|
|
83881
84042
|
MaxLength(510),
|
|
83882
84043
|
__metadata("design:type", String)
|
|
83883
84044
|
], MJTemplateParam_.prototype, "Entity", void 0);
|
|
84045
|
+
__decorate([
|
|
84046
|
+
Field({ nullable: true }),
|
|
84047
|
+
MaxLength(510),
|
|
84048
|
+
__metadata("design:type", String)
|
|
84049
|
+
], MJTemplateParam_.prototype, "TemplateContent", void 0);
|
|
83884
84050
|
MJTemplateParam_ = __decorate([
|
|
83885
84051
|
ObjectType({ description: `Parameters allowed for use inside the template` })
|
|
83886
84052
|
], MJTemplateParam_);
|