@memberjunction/core-entities 5.43.0 → 5.44.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/custom/MJUserViewEntityExtended.d.ts.map +1 -1
- package/dist/custom/MJUserViewEntityExtended.js +16 -6
- package/dist/custom/MJUserViewEntityExtended.js.map +1 -1
- package/dist/custom/PermissionProviders/AISkillPermissionProvider.d.ts +35 -0
- package/dist/custom/PermissionProviders/AISkillPermissionProvider.d.ts.map +1 -0
- package/dist/custom/PermissionProviders/AISkillPermissionProvider.js +155 -0
- package/dist/custom/PermissionProviders/AISkillPermissionProvider.js.map +1 -0
- package/dist/custom/PermissionProviders/index.d.ts +1 -0
- package/dist/custom/PermissionProviders/index.d.ts.map +1 -1
- package/dist/custom/PermissionProviders/index.js +3 -0
- package/dist/custom/PermissionProviders/index.js.map +1 -1
- package/dist/engines/ApplicationSettingEngine.js +1 -1
- package/dist/engines/ApplicationSettingEngine.js.map +1 -1
- package/dist/engines/AuditLogTypeEngine.js +1 -1
- package/dist/engines/AuditLogTypeEngine.js.map +1 -1
- package/dist/engines/MCPEngine.js +7 -7
- package/dist/engines/MCPEngine.js.map +1 -1
- package/dist/engines/PermissionEngine.d.ts.map +1 -1
- package/dist/engines/PermissionEngine.js +3 -1
- package/dist/engines/PermissionEngine.js.map +1 -1
- package/dist/engines/QueryEngine.js +14 -14
- package/dist/engines/QueryEngine.js.map +1 -1
- package/dist/engines/ResourceTypeEngine.js +1 -1
- package/dist/engines/ResourceTypeEngine.js.map +1 -1
- package/dist/engines/SearchEngineBase.js +7 -7
- package/dist/engines/SearchEngineBase.js.map +1 -1
- package/dist/engines/TypeTablesCache.js +1 -1
- package/dist/engines/TypeTablesCache.js.map +1 -1
- package/dist/engines/UserInfoEngine.d.ts +57 -0
- package/dist/engines/UserInfoEngine.d.ts.map +1 -1
- package/dist/engines/UserInfoEngine.js +79 -17
- package/dist/engines/UserInfoEngine.js.map +1 -1
- package/dist/engines/UserViewEngine.js +1 -1
- package/dist/engines/UserViewEngine.js.map +1 -1
- package/dist/engines/artifacts.js +3 -3
- package/dist/engines/artifacts.js.map +1 -1
- package/dist/engines/conversations.d.ts +19 -0
- package/dist/engines/conversations.d.ts.map +1 -1
- package/dist/engines/conversations.js +76 -4
- package/dist/engines/conversations.js.map +1 -1
- package/dist/engines/dashboards.js +8 -8
- package/dist/engines/dashboards.js.map +1 -1
- package/dist/engines/interactive-forms.js +2 -2
- package/dist/engines/interactive-forms.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +3696 -132
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +23202 -18166
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/dist/generated/remote_operations.d.ts +584 -1
- package/dist/generated/remote_operations.d.ts.map +1 -1
- package/dist/generated/remote_operations.js +181 -1
- package/dist/generated/remote_operations.js.map +1 -1
- package/package.json +5 -5
|
@@ -6,10 +6,190 @@
|
|
|
6
6
|
* emitted from the operation's metadata: OperationKey, ExecutionMode, RequiredScope, and the raw
|
|
7
7
|
* TypeScript Input/Output type definitions. GenerationType=Manual rows emit a typed SHELL — a
|
|
8
8
|
* hand-authored server subclass (registered via @RegisterClass) supplies the InternalExecute body.
|
|
9
|
-
* GenerationType=AI/Default rows with Approved Code emit a complete, registered class
|
|
9
|
+
* GenerationType=AI/Default rows with Approved Code emit a complete, registered class whose body imports
|
|
10
|
+
* the default libraries plus whatever it declared in its Libraries metadata.
|
|
10
11
|
**************************************************/
|
|
11
12
|
import { BaseRemotableOperation } from "@memberjunction/core";
|
|
12
13
|
// ============================================================
|
|
14
|
+
// AISkill.ExportMarkdown — Export AI Skill Markdown
|
|
15
|
+
// ============================================================
|
|
16
|
+
/**
|
|
17
|
+
* Export AI Skill Markdown
|
|
18
|
+
* Exports an MJ: AI Skills record to the portable SKILL.md format (frontmatter + Instructions body). Bundled Action/sub-agent IDs are resolved to their current Names for cross-instance portability. Implemented by AISkillExportMarkdownServerOperation in @memberjunction/ai-agents.
|
|
19
|
+
* GenerationType=Manual — the server body is supplied by a hand-authored subclass registered
|
|
20
|
+
* under 'AISkill.ExportMarkdown'. This generated base provides the typed contract only (client-safe).
|
|
21
|
+
*/
|
|
22
|
+
export class AISkillExportMarkdownOperation extends BaseRemotableOperation {
|
|
23
|
+
constructor() {
|
|
24
|
+
super(...arguments);
|
|
25
|
+
this.OperationKey = "AISkill.ExportMarkdown";
|
|
26
|
+
this.ExecutionMode = 'Sync';
|
|
27
|
+
this.RequiredScope = "aiskill:manage";
|
|
28
|
+
this.RequiresSystemUser = false;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
// ============================================================
|
|
32
|
+
// AISkill.ImportMarkdown — Import AI Skill Markdown
|
|
33
|
+
// ============================================================
|
|
34
|
+
/**
|
|
35
|
+
* Import AI Skill Markdown
|
|
36
|
+
* Imports a SKILL.md document, resolving Action/sub-agent names against this instance's catalog (unresolvable names become non-fatal warnings), and creates or updates the MJ: AI Skills record plus its Action/sub-agent bundling junction rows. Implemented by AISkillImportMarkdownServerOperation in @memberjunction/ai-agents.
|
|
37
|
+
* GenerationType=Manual — the server body is supplied by a hand-authored subclass registered
|
|
38
|
+
* under 'AISkill.ImportMarkdown'. This generated base provides the typed contract only (client-safe).
|
|
39
|
+
*/
|
|
40
|
+
export class AISkillImportMarkdownOperation extends BaseRemotableOperation {
|
|
41
|
+
constructor() {
|
|
42
|
+
super(...arguments);
|
|
43
|
+
this.OperationKey = "AISkill.ImportMarkdown";
|
|
44
|
+
this.ExecutionMode = 'Sync';
|
|
45
|
+
this.RequiredScope = "aiskill:manage";
|
|
46
|
+
this.RequiresSystemUser = false;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
// ============================================================
|
|
50
|
+
// PredictiveStudio.ControlExperimentSession — Control Experiment Session
|
|
51
|
+
// ============================================================
|
|
52
|
+
/**
|
|
53
|
+
* Control Experiment Session
|
|
54
|
+
* Pause, resume, or cancel an MJ: Experiment Sessions run (honored at the next wave checkpoint). Returns the session's status after the control action. A quick lifecycle transition over the experiment orchestrator's session state.
|
|
55
|
+
* GenerationType=Manual — the server body is supplied by a hand-authored subclass registered
|
|
56
|
+
* under 'PredictiveStudio.ControlExperimentSession'. This generated base provides the typed contract only (client-safe).
|
|
57
|
+
*/
|
|
58
|
+
export class PredictiveStudioControlExperimentSessionOperation extends BaseRemotableOperation {
|
|
59
|
+
constructor() {
|
|
60
|
+
super(...arguments);
|
|
61
|
+
this.OperationKey = "PredictiveStudio.ControlExperimentSession";
|
|
62
|
+
this.ExecutionMode = 'Sync';
|
|
63
|
+
this.RequiredScope = "predictive:execute";
|
|
64
|
+
this.RequiresSystemUser = false;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
// ============================================================
|
|
68
|
+
// PredictiveStudio.CreateScoringProcess — Create Scoring Process
|
|
69
|
+
// ============================================================
|
|
70
|
+
/**
|
|
71
|
+
* Create Scoring Process
|
|
72
|
+
* Create an on-demand WorkType='ML Model' MJ: Record Processes row that scores a target entity's records with a trained MJ: ML Models (no schedule). The scope selects records (a saved view / a list / an entity filter / the whole entity). When outputField is supplied, the run writes the prediction into that column and a MJ: ML Model Scoring Bindings lineage row (Mode='OnDemand') is created; when omitted, output is generic (run history only) with no binding. Returns the new Record Process id, whether a write-back column was configured, and the scoring binding id (when created). The created row is then run-now via the Run Record Process operation or scheduled via the generic scheduling dialog. Delegates to createScoringProcess in @memberjunction/predictive-studio-engine.
|
|
73
|
+
* GenerationType=Manual — the server body is supplied by a hand-authored subclass registered
|
|
74
|
+
* under 'PredictiveStudio.CreateScoringProcess'. This generated base provides the typed contract only (client-safe).
|
|
75
|
+
*/
|
|
76
|
+
export class PredictiveStudioCreateScoringProcessOperation extends BaseRemotableOperation {
|
|
77
|
+
constructor() {
|
|
78
|
+
super(...arguments);
|
|
79
|
+
this.OperationKey = "PredictiveStudio.CreateScoringProcess";
|
|
80
|
+
this.ExecutionMode = 'Sync';
|
|
81
|
+
this.RequiredScope = "predictive:execute";
|
|
82
|
+
this.RequiresSystemUser = false;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
// ============================================================
|
|
86
|
+
// PredictiveStudio.PromoteModel — Promote ML Model
|
|
87
|
+
// ============================================================
|
|
88
|
+
/**
|
|
89
|
+
* Promote ML Model
|
|
90
|
+
* Transition an MJ: ML Models row through its lifecycle (Validated / Published / Archived). Enforces the leakage sign-off gate — a model flagged for possible target leakage cannot be promoted unless signOff=true. Lifecycle-only: never edits metrics or artifact, only Status. Returns whether the model was promoted and its new status. Delegates to the ProductionModelPromotionGate in @memberjunction/predictive-studio-engine.
|
|
91
|
+
* GenerationType=Manual — the server body is supplied by a hand-authored subclass registered
|
|
92
|
+
* under 'PredictiveStudio.PromoteModel'. This generated base provides the typed contract only (client-safe).
|
|
93
|
+
*/
|
|
94
|
+
export class PredictiveStudioPromoteModelOperation extends BaseRemotableOperation {
|
|
95
|
+
constructor() {
|
|
96
|
+
super(...arguments);
|
|
97
|
+
this.OperationKey = "PredictiveStudio.PromoteModel";
|
|
98
|
+
this.ExecutionMode = 'Sync';
|
|
99
|
+
this.RequiredScope = "predictive:execute";
|
|
100
|
+
this.RequiresSystemUser = false;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
// ============================================================
|
|
104
|
+
// PredictiveStudio.RunFeaturePipeline — Run Feature Pipeline
|
|
105
|
+
// ============================================================
|
|
106
|
+
/**
|
|
107
|
+
* Run Feature Pipeline
|
|
108
|
+
* Run a Feature Pipeline — a categorized MJ: Record Processes row — over an optional runtime scope (selected records / view / list / filter), optionally as a dry-run preview that computes feature values without writing. Returns processed/written/skipped/error counts plus the MJ: Process Runs id. Runs the underlying Record Process (no dedicated entity); delegates to the Record Process substrate.
|
|
109
|
+
* GenerationType=Manual — the server body is supplied by a hand-authored subclass registered
|
|
110
|
+
* under 'PredictiveStudio.RunFeaturePipeline'. This generated base provides the typed contract only (client-safe).
|
|
111
|
+
*/
|
|
112
|
+
export class PredictiveStudioRunFeaturePipelineOperation extends BaseRemotableOperation {
|
|
113
|
+
constructor() {
|
|
114
|
+
super(...arguments);
|
|
115
|
+
this.OperationKey = "PredictiveStudio.RunFeaturePipeline";
|
|
116
|
+
this.ExecutionMode = 'LongRunning';
|
|
117
|
+
this.RequiredScope = "predictive:execute";
|
|
118
|
+
this.RequiresSystemUser = false;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
// ============================================================
|
|
122
|
+
// PredictiveStudio.ScoreRecordSet — Score Record Set
|
|
123
|
+
// ============================================================
|
|
124
|
+
/**
|
|
125
|
+
* Score Record Set
|
|
126
|
+
* Score a set of records with a trained MJ: ML Models row. The scope selects records (explicit ids / a saved view / a list / an entity+filter / a single record). Optionally a dry-run preview, or a write-back to the target. Returns scored/failed/skipped counts plus either the ephemeral predictions or write-back confirmation. Delegates to the MLModelInferenceProcessor scoring work type in @memberjunction/predictive-studio-engine.
|
|
127
|
+
* GenerationType=Manual — the server body is supplied by a hand-authored subclass registered
|
|
128
|
+
* under 'PredictiveStudio.ScoreRecordSet'. This generated base provides the typed contract only (client-safe).
|
|
129
|
+
*/
|
|
130
|
+
export class PredictiveStudioScoreRecordSetOperation extends BaseRemotableOperation {
|
|
131
|
+
constructor() {
|
|
132
|
+
super(...arguments);
|
|
133
|
+
this.OperationKey = "PredictiveStudio.ScoreRecordSet";
|
|
134
|
+
this.ExecutionMode = 'LongRunning';
|
|
135
|
+
this.RequiredScope = "predictive:execute";
|
|
136
|
+
this.RequiresSystemUser = false;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
// ============================================================
|
|
140
|
+
// PredictiveStudio.StartExperimentSession — Start Experiment Session
|
|
141
|
+
// ============================================================
|
|
142
|
+
/**
|
|
143
|
+
* Start Experiment Session
|
|
144
|
+
* Start an experiment session from an approved ModelingPlanSpec — running its proposed experiments in waves under a Budget, maintaining a leaderboard. Optionally attaches to an existing MJ: Experiments definition or creates a new one. Returns the session id, experiment id, and initial status. Delegates to ExperimentOrchestrator.runSession in @memberjunction/predictive-studio-engine.
|
|
145
|
+
* GenerationType=Manual — the server body is supplied by a hand-authored subclass registered
|
|
146
|
+
* under 'PredictiveStudio.StartExperimentSession'. This generated base provides the typed contract only (client-safe).
|
|
147
|
+
*/
|
|
148
|
+
export class PredictiveStudioStartExperimentSessionOperation extends BaseRemotableOperation {
|
|
149
|
+
constructor() {
|
|
150
|
+
super(...arguments);
|
|
151
|
+
this.OperationKey = "PredictiveStudio.StartExperimentSession";
|
|
152
|
+
this.ExecutionMode = 'LongRunning';
|
|
153
|
+
this.RequiredScope = "predictive:execute";
|
|
154
|
+
this.RequiresSystemUser = false;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
// ============================================================
|
|
158
|
+
// PredictiveStudio.TrainModel — Train ML Model
|
|
159
|
+
// ============================================================
|
|
160
|
+
/**
|
|
161
|
+
* Train ML Model
|
|
162
|
+
* Train a predictive model from an MJ: ML Training Pipelines definition. Carves a locked holdout (point-in-time/as-of aware), trains via the sidecar, persists an immutable Draft MJ: ML Models row, and flags single-feature dominance (possible target leakage). Returns the new model id, its honest holdout metrics, the leakage flag, and the model version. Delegates to TrainingEngine.trainModel in @memberjunction/predictive-studio-engine.
|
|
163
|
+
* GenerationType=Manual — the server body is supplied by a hand-authored subclass registered
|
|
164
|
+
* under 'PredictiveStudio.TrainModel'. This generated base provides the typed contract only (client-safe).
|
|
165
|
+
*/
|
|
166
|
+
export class PredictiveStudioTrainModelOperation extends BaseRemotableOperation {
|
|
167
|
+
constructor() {
|
|
168
|
+
super(...arguments);
|
|
169
|
+
this.OperationKey = "PredictiveStudio.TrainModel";
|
|
170
|
+
this.ExecutionMode = 'LongRunning';
|
|
171
|
+
this.RequiredScope = "predictive:execute";
|
|
172
|
+
this.RequiresSystemUser = false;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
// ============================================================
|
|
176
|
+
// RecordComparison.Compare — Compare Records
|
|
177
|
+
// ============================================================
|
|
178
|
+
/**
|
|
179
|
+
* Compare Records
|
|
180
|
+
* Load a set of an entity's records (by composite key, column 0 = survivor/reference) and compute the field-level delta matrix between them. Read-only. Returns the loaded records + per-field deltas. Implemented by RecordComparisonCompareServerOperation in @memberjunction/record-comparison.
|
|
181
|
+
* GenerationType=Manual — the server body is supplied by a hand-authored subclass registered
|
|
182
|
+
* under 'RecordComparison.Compare'. This generated base provides the typed contract only (client-safe).
|
|
183
|
+
*/
|
|
184
|
+
export class RecordComparisonCompareOperation extends BaseRemotableOperation {
|
|
185
|
+
constructor() {
|
|
186
|
+
super(...arguments);
|
|
187
|
+
this.OperationKey = "RecordComparison.Compare";
|
|
188
|
+
this.ExecutionMode = 'Sync';
|
|
189
|
+
this.RequiresSystemUser = false;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
// ============================================================
|
|
13
193
|
// RecordProcess.CancelRun — Cancel Record Process Run
|
|
14
194
|
// ============================================================
|
|
15
195
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"remote_operations.js","sourceRoot":"","sources":["../../src/generated/remote_operations.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"remote_operations.js","sourceRoot":"","sources":["../../src/generated/remote_operations.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/core-entities",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.44.0",
|
|
5
5
|
"description": "Entity subclasses for the metadata layer of MemberJunction defined in the MJ_CORE schema (usually '__mj'), distributed as part of each release of MemberJunction",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"typescript": "^5.9.3"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@memberjunction/ai": "5.
|
|
25
|
-
"@memberjunction/core": "5.
|
|
26
|
-
"@memberjunction/global": "5.
|
|
27
|
-
"@memberjunction/interactive-component-types": "5.
|
|
24
|
+
"@memberjunction/ai": "5.44.0",
|
|
25
|
+
"@memberjunction/core": "5.44.0",
|
|
26
|
+
"@memberjunction/global": "5.44.0",
|
|
27
|
+
"@memberjunction/interactive-component-types": "5.44.0",
|
|
28
28
|
"rxjs": "^7.8.2",
|
|
29
29
|
"zod": "~3.24.4"
|
|
30
30
|
},
|