@memberjunction/react-runtime 5.45.1 → 5.47.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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +25 -0
- package/dist/324.runtime.umd.js +1 -1
- package/dist/runtime.umd.js +552 -199
- package/package.json +6 -6
package/dist/runtime.umd.js
CHANGED
|
@@ -20629,6 +20629,29 @@ var SQLServerDialect = /*#__PURE__*/function (_SQLDialect) {
|
|
|
20629
20629
|
objectExists: "SELECT OBJECT_ID(@objectName) AS object_id"
|
|
20630
20630
|
};
|
|
20631
20631
|
}
|
|
20632
|
+
/**
|
|
20633
|
+
* SQL Server FK-graph query for cascade planning — reads the `sys.foreign_keys` catalog.
|
|
20634
|
+
* Returns one row per FK column with `childNullable` (from `sys.columns.is_nullable`) and
|
|
20635
|
+
* `colCount` (columns in the constraint, for composite exclusion). Both parent + child are
|
|
20636
|
+
* filtered to `schema`. Schema is embedded as a literal (no bind params) so it runs via
|
|
20637
|
+
* `ExecuteSQL(sql)`.
|
|
20638
|
+
*/
|
|
20639
|
+
}, {
|
|
20640
|
+
key: "ForeignKeyGraphSQL",
|
|
20641
|
+
value: function ForeignKeyGraphSQL(schema) {
|
|
20642
|
+
var s = this.QuoteStringLiteral(schema);
|
|
20643
|
+
// Disabled FKs (fk.is_disabled = 1) are intentionally NOT filtered: a disabled FK can't block
|
|
20644
|
+
// the Entity delete, so including it only yields an extra, conservative-safe child clear.
|
|
20645
|
+
// ORDER BY fk.name makes edge order — and therefore statement + dry-run order — deterministic.
|
|
20646
|
+
return 'SELECT rt.name AS parentTable, rc.name AS parentRefCol, pt.name AS childTable, ' + 'pc.name AS childCol, pc.is_nullable AS childNullable, fk.name AS fkName, ' + '(SELECT COUNT(*) FROM sys.foreign_key_columns x WHERE x.constraint_object_id = fk.object_id) AS colCount ' + 'FROM sys.foreign_keys fk ' + 'JOIN sys.foreign_key_columns fkc ON fkc.constraint_object_id = fk.object_id ' + 'JOIN sys.objects rt ON rt.object_id = fk.referenced_object_id ' + 'JOIN sys.schemas rs ON rs.schema_id = rt.schema_id ' + 'JOIN sys.columns rc ON rc.object_id = fk.referenced_object_id AND rc.column_id = fkc.referenced_column_id ' + 'JOIN sys.objects pt ON pt.object_id = fk.parent_object_id ' + 'JOIN sys.schemas ps ON ps.schema_id = pt.schema_id ' + 'JOIN sys.columns pc ON pc.object_id = fk.parent_object_id AND pc.column_id = fkc.parent_column_id ' + "WHERE rs.name = ".concat(s, " AND ps.name = ").concat(s, " ") + 'ORDER BY fk.name';
|
|
20647
|
+
}
|
|
20648
|
+
}, {
|
|
20649
|
+
key: "AtomicBatchScript",
|
|
20650
|
+
value: function AtomicBatchScript(statements) {
|
|
20651
|
+
if (!statements || !statements.length) return '';
|
|
20652
|
+
var body = statements.join(';\n');
|
|
20653
|
+
return "SET QUOTED_IDENTIFIER ON;\nSET ANSI_NULLS ON;\nSET XACT_ABORT ON;\nBEGIN TRANSACTION;\n".concat(body, ";\nCOMMIT TRANSACTION;");
|
|
20654
|
+
}
|
|
20632
20655
|
// ─── IIF ─────────────────────────────────────────────────────────
|
|
20633
20656
|
}, {
|
|
20634
20657
|
key: "IIF",
|
|
@@ -21617,6 +21640,37 @@ var PostgreSQLDialect = /*#__PURE__*/function (_SQLDialect) {
|
|
|
21617
21640
|
objectExists: "\n SELECT EXISTS (\n SELECT 1 FROM pg_catalog.pg_class c\n JOIN pg_catalog.pg_namespace n ON c.relnamespace = n.oid\n WHERE n.nspname = $1 AND c.relname = $2\n ) AS exists"
|
|
21618
21641
|
};
|
|
21619
21642
|
}
|
|
21643
|
+
/**
|
|
21644
|
+
* PostgreSQL FK-graph query for cascade planning — reads `pg_catalog.pg_constraint`
|
|
21645
|
+
* (`contype = 'f'`). Returns one row per FK column (via `unnest(conkey, confkey)`, which
|
|
21646
|
+
* preserves column pairing/order), with `childNullable` (`NOT attnotnull`) and `colCount`
|
|
21647
|
+
* (`array_length(conkey, 1)`, for composite exclusion). Column aliases and semantics MATCH
|
|
21648
|
+
* the SQL Server variant so a single caller parses both. `relname`/`attname` preserve the
|
|
21649
|
+
* quoted mixed-case identifiers MJ creates on PG, so they feed straight into QuoteIdentifier.
|
|
21650
|
+
* Both parent + child are filtered to `schema`; the schema is embedded as a literal.
|
|
21651
|
+
*/
|
|
21652
|
+
}, {
|
|
21653
|
+
key: "ForeignKeyGraphSQL",
|
|
21654
|
+
value: function ForeignKeyGraphSQL(schema) {
|
|
21655
|
+
var s = this.QuoteStringLiteral(schema);
|
|
21656
|
+
// NOTE: deliberately avoids `unnest(...) WITH ORDINALITY` / `LATERAL`. This query is executed
|
|
21657
|
+
// through PostgreSQLDataProvider.ExecuteSQL, whose autoQuoteIdentifiers tokenizer quotes the
|
|
21658
|
+
// bare uppercase word `ORDINALITY` (not in its keyword set) → `WITH "ORDINALITY"` → a syntax
|
|
21659
|
+
// error. Using `= any(con.conkey)` (all-lowercase, autoQuote-safe) resolves the FK column via
|
|
21660
|
+
// array membership instead. For SINGLE-column FKs (the only ones the planner keeps, colCount=1)
|
|
21661
|
+
// this yields exactly one correctly-paired row; composite FKs (colCount>1) produce a cross
|
|
21662
|
+
// product of rows that the caller skips wholesale by fkName — so the mispairing is irrelevant.
|
|
21663
|
+
return 'SELECT pt.relname AS "parentTable", pa.attname AS "parentRefCol", ct.relname AS "childTable", ' + 'ca.attname AS "childCol", (NOT ca.attnotnull) AS "childNullable", con.conname AS "fkName", ' + 'array_length(con.conkey, 1) AS "colCount" ' + 'FROM pg_catalog.pg_constraint con ' + 'JOIN pg_catalog.pg_class ct ON ct.oid = con.conrelid ' + 'JOIN pg_catalog.pg_namespace cn ON cn.oid = ct.relnamespace ' + 'JOIN pg_catalog.pg_class pt ON pt.oid = con.confrelid ' + 'JOIN pg_catalog.pg_namespace pn ON pn.oid = pt.relnamespace ' + 'JOIN pg_catalog.pg_attribute ca ON ca.attrelid = con.conrelid AND ca.attnum = any(con.conkey) ' + 'JOIN pg_catalog.pg_attribute pa ON pa.attrelid = con.confrelid AND pa.attnum = any(con.confkey) ' + "WHERE con.contype = 'f' AND cn.nspname = ".concat(s, " AND pn.nspname = ").concat(s, " ") + 'ORDER BY con.conname';
|
|
21664
|
+
}
|
|
21665
|
+
}, {
|
|
21666
|
+
key: "AtomicBatchScript",
|
|
21667
|
+
value: function AtomicBatchScript(statements) {
|
|
21668
|
+
if (!statements || !statements.length) return '';
|
|
21669
|
+
var body = statements.join(';\n');
|
|
21670
|
+
// No session pragmas (QUOTED_IDENTIFIER/ANSI_NULLS are SQL-Server concepts) and PostgreSQL
|
|
21671
|
+
// already aborts the whole transaction on any error, so plain BEGIN … COMMIT is all-or-nothing.
|
|
21672
|
+
return "BEGIN;\n".concat(body, ";\nCOMMIT;");
|
|
21673
|
+
}
|
|
21620
21674
|
// ─── IIF ─────────────────────────────────────────────────────────
|
|
21621
21675
|
}, {
|
|
21622
21676
|
key: "IIF",
|
|
@@ -31864,18 +31918,37 @@ var BaseEntity = /*#__PURE__*/function () {
|
|
|
31864
31918
|
var success = _ref.success,
|
|
31865
31919
|
results = _ref.results,
|
|
31866
31920
|
error = _ref.error;
|
|
31867
|
-
|
|
31868
|
-
|
|
31869
|
-
|
|
31870
|
-
|
|
31871
|
-
|
|
31872
|
-
_this8.finalizeSave(transItem.Result, saveSubType); // we get the resulting data from the transaction result, not data above as that will be blank when in a TG
|
|
31873
|
-
} else {
|
|
31874
|
-
// should never get here, but if we do, we need to throw an error
|
|
31875
|
-
throw new Error('Transaction group did not return a result for the entity object');
|
|
31876
|
-
}
|
|
31921
|
+
var transItem = success && results ? results.find(function (r) {
|
|
31922
|
+
return r.Transaction.BaseEntity === _this8;
|
|
31923
|
+
}) : undefined;
|
|
31924
|
+
if (transItem) {
|
|
31925
|
+
_this8.finalizeSave(transItem.Result, saveSubType); // we get the resulting data from the transaction result, not data above as that will be blank when in a TG
|
|
31877
31926
|
} else {
|
|
31878
|
-
|
|
31927
|
+
// The transaction group failed / rolled back, OR (should never happen) reported success
|
|
31928
|
+
// without a result for this entity. Either way, RECORD the failure on ResultHistory rather
|
|
31929
|
+
// than throwing. This handler runs ASYNCHRONOUSLY — after Save() has already returned true and
|
|
31930
|
+
// its enclosing try/catch has unwound — so a throw here has no catch to reach: rxjs routes a
|
|
31931
|
+
// throwing next-handler to reportUnhandledError, which re-throws it on a fresh tick, producing
|
|
31932
|
+
// an uncaughtException that exits the whole host process (MJServer only guards
|
|
31933
|
+
// unhandledRejection). The transaction has already rolled back and Submit() returns false; the
|
|
31934
|
+
// caller's error handling still runs. Mirrors the Delete() transaction-group-failure path below.
|
|
31935
|
+
var err = error !== null && error !== void 0 ? error : success ? new Error('Transaction group did not return a result for the entity object') : undefined;
|
|
31936
|
+
if (currentResultCount === _this8.ResultHistory.length) {
|
|
31937
|
+
var _err$message;
|
|
31938
|
+
// no new result was recorded elsewhere, so add one here (mirrors Save()'s own catch block)
|
|
31939
|
+
newResult.Success = false;
|
|
31940
|
+
newResult.Type = saveSubType !== null && saveSubType !== void 0 ? saveSubType : _this8.IsSaved ? 'update' : 'create';
|
|
31941
|
+
newResult.Message = (_err$message = err === null || err === void 0 ? void 0 : err.message) !== null && _err$message !== void 0 ? _err$message : err != null ? String(err) : 'Transaction group failed';
|
|
31942
|
+
newResult.Errors = (err === null || err === void 0 ? void 0 : err.Errors) || [];
|
|
31943
|
+
newResult.OriginalValues = _this8.Fields.map(function (f) {
|
|
31944
|
+
return {
|
|
31945
|
+
FieldName: f.CodeName,
|
|
31946
|
+
Value: f.OldValue
|
|
31947
|
+
};
|
|
31948
|
+
});
|
|
31949
|
+
newResult.EndedAt = new Date();
|
|
31950
|
+
_this8.RegisterResultHistoryEntry(newResult);
|
|
31951
|
+
}
|
|
31879
31952
|
}
|
|
31880
31953
|
});
|
|
31881
31954
|
return _context11.a(2, true);
|
|
@@ -32898,19 +32971,30 @@ var BaseEntity = /*#__PURE__*/function () {
|
|
|
32898
32971
|
// wipe out the current data to flush out the DIRTY flags by calling NewRecord()
|
|
32899
32972
|
_this0.NewRecord(); // will trigger a new record event here too
|
|
32900
32973
|
} else {
|
|
32901
|
-
//
|
|
32902
|
-
|
|
32903
|
-
|
|
32904
|
-
|
|
32905
|
-
|
|
32906
|
-
|
|
32907
|
-
|
|
32908
|
-
|
|
32909
|
-
|
|
32910
|
-
|
|
32911
|
-
|
|
32912
|
-
|
|
32913
|
-
|
|
32974
|
+
// Transaction group failed / rolled back. RECORD the failure instead of
|
|
32975
|
+
// letting this async handler throw — exactly like the Save() subscriber above.
|
|
32976
|
+
// `error` may be UNDEFINED: the GraphQL-client transaction group signals
|
|
32977
|
+
// failure by RETURNING failed result items (no thrown error), so the old
|
|
32978
|
+
// `error.Errors` was a TypeError, which rxjs re-throws on a fresh tick as an
|
|
32979
|
+
// uncaughtException that exits the host process. Treat `error` as
|
|
32980
|
+
// possibly-absent, and guard on currentResultCount so a provider that already
|
|
32981
|
+
// recorded the failure (real providers do, before the notification fires)
|
|
32982
|
+
// isn't double-recorded.
|
|
32983
|
+
if (currentResultCount === _this0.ResultHistory.length) {
|
|
32984
|
+
var _error$message;
|
|
32985
|
+
newResult.Success = false;
|
|
32986
|
+
newResult.Type = 'delete';
|
|
32987
|
+
newResult.Message = (_error$message = error === null || error === void 0 ? void 0 : error.message) !== null && _error$message !== void 0 ? _error$message : error != null ? String(error) : 'Transaction group failed';
|
|
32988
|
+
newResult.Errors = (error === null || error === void 0 ? void 0 : error.Errors) || [];
|
|
32989
|
+
newResult.OriginalValues = _this0.Fields.map(function (f) {
|
|
32990
|
+
return {
|
|
32991
|
+
FieldName: f.CodeName,
|
|
32992
|
+
Value: f.OldValue
|
|
32993
|
+
};
|
|
32994
|
+
});
|
|
32995
|
+
newResult.EndedAt = new Date();
|
|
32996
|
+
_this0.RegisterResultHistoryEntry(newResult);
|
|
32997
|
+
}
|
|
32914
32998
|
}
|
|
32915
32999
|
});
|
|
32916
33000
|
}
|
|
@@ -46230,7 +46314,17 @@ var ProviderBase = /*#__PURE__*/function () {
|
|
|
46230
46314
|
return _preValidateAndRefresh.apply(this, arguments);
|
|
46231
46315
|
}
|
|
46232
46316
|
return preValidateAndRefresh;
|
|
46233
|
-
}()
|
|
46317
|
+
}()
|
|
46318
|
+
/**
|
|
46319
|
+
* @deprecated The reuse-global fast path now builds a shared shell instead — see
|
|
46320
|
+
* {@link CreateSharedMetadataShell}. The metadata graph is immutable after Config,
|
|
46321
|
+
* so re-instantiating every Info object (~1s of synchronous constructor work for a
|
|
46322
|
+
* ~600-entity install) bought no isolation the shell doesn't already provide.
|
|
46323
|
+
* Subclass OVERRIDES of this method are still honored on the fast path (see
|
|
46324
|
+
* {@link CopyMetadataFromGlobalProvider}) for backward compatibility; new
|
|
46325
|
+
* customizations should override {@link CreateSharedMetadataShell} instead.
|
|
46326
|
+
*/
|
|
46327
|
+
)
|
|
46234
46328
|
}, {
|
|
46235
46329
|
key: "CloneAllMetadata",
|
|
46236
46330
|
value: function CloneAllMetadata(toClone) {
|
|
@@ -46241,17 +46335,76 @@ var ProviderBase = /*#__PURE__*/function () {
|
|
|
46241
46335
|
return newmd;
|
|
46242
46336
|
}
|
|
46243
46337
|
/**
|
|
46244
|
-
*
|
|
46245
|
-
*
|
|
46246
|
-
*
|
|
46338
|
+
* Builds this instance's AllMetadata as a thin shell over another provider's
|
|
46339
|
+
* already-loaded metadata: every metadata array is a PER-INSTANCE shallow copy
|
|
46340
|
+
* whose elements are the SHARED Info object instances, and CurrentUser remains
|
|
46341
|
+
* this instance's own.
|
|
46342
|
+
*
|
|
46343
|
+
* Why sharing the instances is safe — and why this replaced the former deep
|
|
46344
|
+
* clone (CloneAllMetadata) on the reuse-global fast path: the metadata graph is
|
|
46345
|
+
* immutable after Config. Refreshes swap the WHOLE AllMetadata object
|
|
46346
|
+
* (UpdateLocalMetadata), never mutate the Info objects in place, so the only
|
|
46347
|
+
* per-instance datum inside the graph is CurrentUser — which this shell keeps
|
|
46348
|
+
* independent. The deep clone cost ~1s of event-loop-blocking constructor work
|
|
46349
|
+
* per provider on every server request (MemberJunction/MJ#3083); the shell is
|
|
46350
|
+
* ~20 array-of-pointer copies (microseconds).
|
|
46351
|
+
*
|
|
46352
|
+
* Why the array containers are copied rather than aliased: an in-place
|
|
46353
|
+
* `.sort()`/`.push()`/`.splice()` by request-scoped code then stays local to
|
|
46354
|
+
* that provider — matching the clone era's isolation for the common accidental
|
|
46355
|
+
* mutation class — instead of reordering the global graph for every other
|
|
46356
|
+
* in-flight request. Only the top-level AllMetadata collections get this
|
|
46357
|
+
* per-instance protection: everything below them is shared, including the
|
|
46358
|
+
* nested arrays owned by Info objects (`entity.Fields`,
|
|
46359
|
+
* `entity.RelatedEntities`, `application.ApplicationEntities`, ...) — an
|
|
46360
|
+
* in-place mutation of those is process-wide. Property writes on the shared
|
|
46361
|
+
* Info objects themselves are likewise visible process-wide (as they always
|
|
46362
|
+
* were on the client's global provider): treat Info objects and everything
|
|
46363
|
+
* they own as read-only; copy before sorting.
|
|
46364
|
+
*
|
|
46365
|
+
* Override precedence: if a subclass overrides BOTH this method and the
|
|
46366
|
+
* deprecated {@link CloneAllMetadata}, the CloneAllMetadata override wins on
|
|
46367
|
+
* the fast path (see {@link CopyMetadataFromGlobalProvider}) — the
|
|
46368
|
+
* conservative back-compat choice, since pre-#3083 subclasses could only have
|
|
46369
|
+
* customized adoption through CloneAllMetadata. Remove the CloneAllMetadata
|
|
46370
|
+
* override to activate a CreateSharedMetadataShell override.
|
|
46371
|
+
*/
|
|
46372
|
+
}, {
|
|
46373
|
+
key: "CreateSharedMetadataShell",
|
|
46374
|
+
value: function CreateSharedMetadataShell(shared) {
|
|
46375
|
+
var shell = new AllMetadata();
|
|
46376
|
+
for (var _i9 = 0, _AllMetadataArrays = AllMetadataArrays; _i9 < _AllMetadataArrays.length; _i9++) {
|
|
46377
|
+
var _shared$m$key;
|
|
46378
|
+
var m = _AllMetadataArrays[_i9];
|
|
46379
|
+
shell[m.key] = providerBase_toConsumableArray((_shared$m$key = shared[m.key]) !== null && _shared$m$key !== void 0 ? _shared$m$key : []);
|
|
46380
|
+
}
|
|
46381
|
+
shell.CurrentUser = this.CurrentUser; // same semantics the deep clone had — per-instance, not shared
|
|
46382
|
+
return shell;
|
|
46383
|
+
}
|
|
46384
|
+
/**
|
|
46385
|
+
* Adopts the global provider's metadata for this instance without reloading it
|
|
46386
|
+
* from the server: shares the (immutable post-Config) metadata arrays by
|
|
46387
|
+
* reference via {@link CreateSharedMetadataShell} and builds this instance's
|
|
46388
|
+
* entity lookup maps.
|
|
46247
46389
|
*/
|
|
46248
46390
|
}, {
|
|
46249
46391
|
key: "CopyMetadataFromGlobalProvider",
|
|
46250
46392
|
value: function CopyMetadataFromGlobalProvider() {
|
|
46251
46393
|
try {
|
|
46252
|
-
|
|
46253
|
-
|
|
46254
|
-
|
|
46394
|
+
var _Metadata$Provider, _globalMetadata$AllEn, _globalMetadata$AllEn2;
|
|
46395
|
+
// Require the global provider to actually HAVE metadata (entities loaded) — a
|
|
46396
|
+
// registered-but-not-yet-configured global would otherwise donate an empty graph
|
|
46397
|
+
// and this Config would "succeed" with zero entities. Falling through to the
|
|
46398
|
+
// normal load path is the correct behavior in that case.
|
|
46399
|
+
var globalMetadata = Metadata.Provider !== this ? (_Metadata$Provider = Metadata.Provider) === null || _Metadata$Provider === void 0 ? void 0 : _Metadata$Provider.AllMetadata : undefined; // global-provider-ok: this method adopts metadata FROM the global provider on bootstrap
|
|
46400
|
+
if (((_globalMetadata$AllEn = globalMetadata === null || globalMetadata === void 0 || (_globalMetadata$AllEn2 = globalMetadata.AllEntities) === null || _globalMetadata$AllEn2 === void 0 ? void 0 : _globalMetadata$AllEn2.length) !== null && _globalMetadata$AllEn !== void 0 ? _globalMetadata$AllEn : 0) > 0) {
|
|
46401
|
+
// Back-compat: before #3083 this path called the overridable CloneAllMetadata,
|
|
46402
|
+
// so external subclasses could customize adoption (e.g. tenant-filtered deep
|
|
46403
|
+
// clones). Honor such overrides; the base behavior is the cheap shared shell.
|
|
46404
|
+
// If a subclass overrides both, the CloneAllMetadata override deliberately wins.
|
|
46405
|
+
var subclassOverridesClone = this.CloneAllMetadata !== ProviderBase.prototype.CloneAllMetadata;
|
|
46406
|
+
var adopted = subclassOverridesClone ? this.CloneAllMetadata(globalMetadata) : this.CreateSharedMetadataShell(globalMetadata);
|
|
46407
|
+
this.UpdateLocalMetadata(adopted);
|
|
46255
46408
|
return true;
|
|
46256
46409
|
}
|
|
46257
46410
|
return false;
|
|
@@ -56373,7 +56526,7 @@ var DatabaseProviderBase = /*#__PURE__*/function (_ProviderBase) {
|
|
|
56373
56526
|
return recordMergeLog.Save();
|
|
56374
56527
|
case 2:
|
|
56375
56528
|
if (!_context27.v) {
|
|
56376
|
-
_context27.n =
|
|
56529
|
+
_context27.n = 13;
|
|
56377
56530
|
break;
|
|
56378
56531
|
}
|
|
56379
56532
|
_iterator11 = databaseProviderBase_createForOfIteratorHelper(result.RecordStatus);
|
|
@@ -56381,7 +56534,7 @@ var DatabaseProviderBase = /*#__PURE__*/function (_ProviderBase) {
|
|
|
56381
56534
|
_iterator11.s();
|
|
56382
56535
|
case 4:
|
|
56383
56536
|
if ((_step11 = _iterator11.n()).done) {
|
|
56384
|
-
_context27.n =
|
|
56537
|
+
_context27.n = 9;
|
|
56385
56538
|
break;
|
|
56386
56539
|
}
|
|
56387
56540
|
d = _step11.value;
|
|
@@ -56403,36 +56556,38 @@ var DatabaseProviderBase = /*#__PURE__*/function (_ProviderBase) {
|
|
|
56403
56556
|
}
|
|
56404
56557
|
throw new Error('Error saving record merge deletion log');
|
|
56405
56558
|
case 7:
|
|
56406
|
-
|
|
56407
|
-
break;
|
|
56559
|
+
d.RecordMergeDeletionLogID = deletionLog.Get('ID');
|
|
56408
56560
|
case 8:
|
|
56409
|
-
_context27.n =
|
|
56561
|
+
_context27.n = 4;
|
|
56410
56562
|
break;
|
|
56411
56563
|
case 9:
|
|
56412
|
-
_context27.
|
|
56413
|
-
|
|
56414
|
-
_iterator11.e(_t15);
|
|
56564
|
+
_context27.n = 11;
|
|
56565
|
+
break;
|
|
56415
56566
|
case 10:
|
|
56416
56567
|
_context27.p = 10;
|
|
56417
|
-
|
|
56418
|
-
|
|
56568
|
+
_t15 = _context27.v;
|
|
56569
|
+
_iterator11.e(_t15);
|
|
56419
56570
|
case 11:
|
|
56420
|
-
_context27.
|
|
56421
|
-
|
|
56571
|
+
_context27.p = 11;
|
|
56572
|
+
_iterator11.f();
|
|
56573
|
+
return _context27.f(11);
|
|
56422
56574
|
case 12:
|
|
56423
|
-
|
|
56424
|
-
case 13:
|
|
56425
|
-
_context27.n = 15;
|
|
56575
|
+
_context27.n = 14;
|
|
56426
56576
|
break;
|
|
56577
|
+
case 13:
|
|
56578
|
+
throw new Error('Error saving record merge log');
|
|
56427
56579
|
case 14:
|
|
56428
|
-
_context27.
|
|
56580
|
+
_context27.n = 16;
|
|
56581
|
+
break;
|
|
56582
|
+
case 15:
|
|
56583
|
+
_context27.p = 15;
|
|
56429
56584
|
_t16 = _context27.v;
|
|
56430
56585
|
// do nothing here because we often will get here since some conditions lead to no DB updates possible
|
|
56431
56586
|
LogError(_t16);
|
|
56432
|
-
case
|
|
56587
|
+
case 16:
|
|
56433
56588
|
return _context27.a(2);
|
|
56434
56589
|
}
|
|
56435
|
-
}, _callee25, this, [[3,
|
|
56590
|
+
}, _callee25, this, [[3, 10, 11, 12], [0, 15]]);
|
|
56436
56591
|
}));
|
|
56437
56592
|
function CompleteMergeLogging(_x99, _x100, _x101) {
|
|
56438
56593
|
return _CompleteMergeLogging.apply(this, arguments);
|
|
@@ -57965,7 +58120,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
57965
58120
|
o1C: () => (/* reexport */ ViewInfo)
|
|
57966
58121
|
});
|
|
57967
58122
|
|
|
57968
|
-
// UNUSED EXPORTS: AIAgentPermissionProvider, AISkillExportMarkdownOperation, AISkillImportMarkdownOperation, AISkillPermissionProvider, AccessControlRuleProvider, ApplicationRolePermissionProvider, ApplicationSettingEngine, ArtifactExtractor, ArtifactMetadataEngine, ArtifactPermissionProvider, AuditLogTypeEngine, BuildUnregisteredMimeError, CollectionPermissionProvider, ConversationEngine, CreateShareNotification, DEFAULT_AGGREGATE_DISPLAY, DashboardEngine, DashboardPermissionProvider, DecideInlineStorage, EncryptionEngineBase, EntityPermissionProvider, EntityPermissionType, EntitySaveOptions, ExtractBase64FromDataUrl, FileStorageEngineBase, FindArtifactTypeConflicts, GeoDataEngine, INJECTABLE_NOTE_STATUSES, InjectableNoteStatusSQLList, InstanceConfigEngine, InteractiveFormsEngine, IsInjectableNoteStatus, IsTextyMime, KnowledgeHubMetadataEngine, LoadMJAccessControlRuleEntityExtended, LoadMJArtifactPermissionEntityExtended, LoadMJCollectionPermissionEntityExtended, LoadMJConversationDetailEntityExtended, LoadMJDashboardPermissionEntityExtended, LoadPermissionEntityExtensions, LoadPermissionProviders, MCPEngine, MJAIActionEntity, MJAIActionSchema, MJAIAgentActionEntity, MJAIAgentActionSchema, MJAIAgentArtifactTypeEntity, MJAIAgentArtifactTypeSchema, MJAIAgentCategoryEntity, MJAIAgentCategorySchema, MJAIAgentChannelEntity, MJAIAgentChannelSchema, MJAIAgentClientToolEntity, MJAIAgentClientToolSchema, MJAIAgentCoAgentEntity, MJAIAgentCoAgentSchema, MJAIAgentConfigurationEntity, MJAIAgentConfigurationSchema, MJAIAgentDataSourceEntity, MJAIAgentDataSourceSchema, MJAIAgentEntity, MJAIAgentExampleEntity, MJAIAgentExampleSchema, MJAIAgentLearningCycleEntity, MJAIAgentLearningCycleSchema, MJAIAgentModalityEntity, MJAIAgentModalitySchema, MJAIAgentModelEntity, MJAIAgentModelSchema, MJAIAgentNoteEntity, MJAIAgentNoteSchema, MJAIAgentNoteTypeEntity, MJAIAgentNoteTypeSchema, MJAIAgentPermissionEntity, MJAIAgentPermissionSchema, MJAIAgentPromptEntity, MJAIAgentPromptSchema, MJAIAgentRelationshipEntity, MJAIAgentRelationshipSchema, MJAIAgentRequestEntity, MJAIAgentRequestSchema, MJAIAgentRequestTypeEntity, MJAIAgentRequestTypeSchema, MJAIAgentRunEntity, MJAIAgentRunMediaEntity, MJAIAgentRunMediaSchema, MJAIAgentRunSchema, MJAIAgentRunStepEntity, MJAIAgentRunStepSchema, MJAIAgentSchema, MJAIAgentSearchScopeEntity, MJAIAgentSearchScopeSchema, MJAIAgentSessionBridgeEntity, MJAIAgentSessionBridgeParticipantEntity, MJAIAgentSessionBridgeParticipantSchema, MJAIAgentSessionBridgeSchema, MJAIAgentSessionChannelEntity, MJAIAgentSessionChannelSchema, MJAIAgentSessionEntity, MJAIAgentSessionSchema, MJAIAgentSkillEntity, MJAIAgentSkillSchema, MJAIAgentStepEntity, MJAIAgentStepPathEntity, MJAIAgentStepPathSchema, MJAIAgentStepSchema, MJAIAgentTypeEntity, MJAIAgentTypeSchema, MJAIArchitectureEntity, MJAIArchitectureSchema, MJAIBridgeAgentIdentityEntity, MJAIBridgeAgentIdentitySchema, MJAIBridgeProviderChannelEntity, MJAIBridgeProviderChannelSchema, MJAIBridgeProviderEntity, MJAIBridgeProviderSchema, MJAIClientToolDefinitionEntity, MJAIClientToolDefinitionSchema, MJAIConfigurationEntity, MJAIConfigurationParamEntity, MJAIConfigurationParamSchema, MJAIConfigurationSchema, MJAICredentialBindingEntity, MJAICredentialBindingSchema, MJAIModalityEntity, MJAIModalitySchema, MJAIModelActionEntity, MJAIModelActionSchema, MJAIModelArchitectureEntity, MJAIModelArchitectureSchema, MJAIModelCostEntity, MJAIModelCostSchema, MJAIModelEntity, MJAIModelModalityEntity, MJAIModelModalitySchema, MJAIModelPriceTypeEntity, MJAIModelPriceTypeSchema, MJAIModelPriceUnitTypeEntity, MJAIModelPriceUnitTypeSchema, MJAIModelSchema, MJAIModelTypeEntity, MJAIModelTypeSchema, MJAIModelVendorEntity, MJAIModelVendorSchema, MJAIPromptCategoryEntity, MJAIPromptCategorySchema, MJAIPromptEntity, MJAIPromptModelEntity, MJAIPromptModelSchema, MJAIPromptRunEntity, MJAIPromptRunMediaEntity, MJAIPromptRunMediaSchema, MJAIPromptRunSchema, MJAIPromptSchema, MJAIPromptTypeEntity, MJAIPromptTypeSchema, MJAIRemoteBrowserProviderEntity, MJAIRemoteBrowserProviderSchema, MJAIResultCacheEntity, MJAIResultCacheSchema, MJAISkillActionEntity, MJAISkillActionSchema, MJAISkillEntity, MJAISkillPermissionEntity, MJAISkillPermissionSchema, MJAISkillSchema, MJAISkillSubAgentEntity, MJAISkillSubAgentSchema, MJAIVendorEntity, MJAIVendorSchema, MJAIVendorTypeDefinitionEntity, MJAIVendorTypeDefinitionSchema, MJAIVendorTypeEntity, MJAIVendorTypeSchema, MJAPIApplicationEntity, MJAPIApplicationSchema, MJAPIApplicationScopeEntity, MJAPIApplicationScopeSchema, MJAPIKeyApplicationEntity, MJAPIKeyApplicationSchema, MJAPIKeyEntity, MJAPIKeySchema, MJAPIKeyScopeEntity, MJAPIKeyScopeSchema, MJAPIKeyUsageLogEntity, MJAPIKeyUsageLogSchema, MJAPIScopeEntity, MJAPIScopeSchema, MJAccessControlRuleEntity, MJAccessControlRuleEntityExtended, MJAccessControlRuleSchema, MJActionAuthorizationEntity, MJActionAuthorizationSchema, MJActionCategoryEntity, MJActionCategorySchema, MJActionContextEntity, MJActionContextSchema, MJActionContextTypeEntity, MJActionContextTypeSchema, MJActionEntity, MJActionExecutionLogEntity, MJActionExecutionLogSchema, MJActionFilterEntity, MJActionFilterSchema, MJActionLibraryEntity, MJActionLibrarySchema, MJActionParamEntity, MJActionParamSchema, MJActionResultCodeEntity, MJActionResultCodeSchema, MJActionSchema, MJApplicationEntity, MJApplicationEntityEntity, MJApplicationEntitySchema, MJApplicationRoleEntity, MJApplicationRoleSchema, MJApplicationSchema, MJApplicationSettingEntity, MJApplicationSettingSchema, MJArchiveConfigurationEntity, MJArchiveConfigurationEntityEntity, MJArchiveConfigurationEntitySchema, MJArchiveConfigurationSchema, MJArchiveRunDetailEntity, MJArchiveRunDetailSchema, MJArchiveRunEntity, MJArchiveRunSchema, MJArtifactEntity, MJArtifactPermissionEntity, MJArtifactPermissionEntityExtended, MJArtifactPermissionSchema, MJArtifactSchema, MJArtifactTypeEntity, MJArtifactTypeSchema, MJArtifactUseEntity, MJArtifactUseSchema, MJArtifactVersionAttributeEntity, MJArtifactVersionAttributeSchema, MJArtifactVersionEntity, MJArtifactVersionSchema, MJAuditLogEntity, MJAuditLogSchema, MJAuditLogTypeEntity, MJAuditLogTypeSchema, MJAuthorizationEntity, MJAuthorizationRoleEntity, MJAuthorizationRoleSchema, MJAuthorizationSchema, MJClusterAnalysisClusterEntity, MJClusterAnalysisClusterSchema, MJClusterAnalysisEntity, MJClusterAnalysisSchema, MJCollectionArtifactEntity, MJCollectionArtifactSchema, MJCollectionEntity, MJCollectionPermissionEntity, MJCollectionPermissionEntityExtended, MJCollectionPermissionSchema, MJCollectionSchema, MJCommunicationBaseMessageTypeEntity, MJCommunicationBaseMessageTypeSchema, MJCommunicationLogEntity, MJCommunicationLogSchema, MJCommunicationProviderEntity, MJCommunicationProviderMessageTypeEntity, MJCommunicationProviderMessageTypeSchema, MJCommunicationProviderSchema, MJCommunicationRunEntity, MJCommunicationRunSchema, MJCompanyEntity, MJCompanyIntegrationEntity, MJCompanyIntegrationEntityMapEntity, MJCompanyIntegrationEntityMapSchema, MJCompanyIntegrationFieldMapEntity, MJCompanyIntegrationFieldMapSchema, MJCompanyIntegrationRecordMapEntity, MJCompanyIntegrationRecordMapSchema, MJCompanyIntegrationRunAPILogEntity, MJCompanyIntegrationRunAPILogSchema, MJCompanyIntegrationRunDetailEntity, MJCompanyIntegrationRunDetailSchema, MJCompanyIntegrationRunEntity, MJCompanyIntegrationRunSchema, MJCompanyIntegrationSchema, MJCompanyIntegrationSyncWatermarkEntity, MJCompanyIntegrationSyncWatermarkSchema, MJCompanySchema, MJComponentDependencyEntity, MJComponentDependencySchema, MJComponentEntity, MJComponentEntityExtended, MJComponentLibraryEntity, MJComponentLibraryLinkEntity, MJComponentLibraryLinkSchema, MJComponentLibrarySchema, MJComponentRegistryEntity, MJComponentRegistrySchema, MJComponentSchema, MJContentFileTypeEntity, MJContentFileTypeSchema, MJContentItemAttributeEntity, MJContentItemAttributeSchema, MJContentItemDuplicateEntity, MJContentItemDuplicateSchema, MJContentItemEntity, MJContentItemSchema, MJContentItemTagEntity, MJContentItemTagSchema, MJContentProcessRunDetailEntity, MJContentProcessRunDetailSchema, MJContentProcessRunEntity, MJContentProcessRunPromptRunEntity, MJContentProcessRunPromptRunSchema, MJContentProcessRunSchema, MJContentSourceEntity, MJContentSourceParamEntity, MJContentSourceParamSchema, MJContentSourceSchema, MJContentSourceTypeEntity, MJContentSourceTypeParamEntity, MJContentSourceTypeParamSchema, MJContentSourceTypeSchema, MJContentTypeAttributeEntity, MJContentTypeAttributeSchema, MJContentTypeEntity, MJContentTypeSchema, MJConversationArtifactEntity, MJConversationArtifactPermissionEntity, MJConversationArtifactPermissionSchema, MJConversationArtifactSchema, MJConversationArtifactVersionEntity, MJConversationArtifactVersionSchema, MJConversationDetailArtifactEntity, MJConversationDetailArtifactSchema, MJConversationDetailAttachmentEntity, MJConversationDetailAttachmentSchema, MJConversationDetailEntity, MJConversationDetailEntityExtended, MJConversationDetailRatingEntity, MJConversationDetailRatingSchema, MJConversationDetailSchema, MJConversationEntity, MJConversationSchema, MJConversationWidgetInstanceEntity, MJConversationWidgetInstanceSchema, MJCountryEntity, MJCountrySchema, MJCredentialCategoryEntity, MJCredentialCategorySchema, MJCredentialEntity, MJCredentialSchema, MJCredentialTypeEntity, MJCredentialTypeSchema, MJDashboardCategoryEntity, MJDashboardCategoryLinkEntity, MJDashboardCategoryLinkSchema, MJDashboardCategoryPermissionEntity, MJDashboardCategoryPermissionSchema, MJDashboardCategorySchema, MJDashboardEntity, MJDashboardEntityExtended, MJDashboardPartTypeEntity, MJDashboardPartTypeSchema, MJDashboardPermissionEntity, MJDashboardPermissionEntityExtended, MJDashboardPermissionSchema, MJDashboardSchema, MJDashboardUserPreferenceEntity, MJDashboardUserPreferenceSchema, MJDashboardUserStateEntity, MJDashboardUserStateSchema, MJDataContextEntity, MJDataContextItemEntity, MJDataContextItemSchema, MJDataContextSchema, MJDatasetEntity, MJDatasetItemEntity, MJDatasetItemSchema, MJDatasetSchema, MJDuplicateRunDetailEntity, MJDuplicateRunDetailMatchEntity, MJDuplicateRunDetailMatchSchema, MJDuplicateRunDetailSchema, MJDuplicateRunEntity, MJDuplicateRunSchema, MJEmployeeCompanyIntegrationEntity, MJEmployeeCompanyIntegrationSchema, MJEmployeeEntity, MJEmployeeRoleEntity, MJEmployeeRoleSchema, MJEmployeeSchema, MJEmployeeSkillEntity, MJEmployeeSkillSchema, MJEncryptionAlgorithmEntity, MJEncryptionAlgorithmSchema, MJEncryptionKeyEntity, MJEncryptionKeySchema, MJEncryptionKeySourceEntity, MJEncryptionKeySourceSchema, MJEntityAIActionEntity, MJEntityAIActionSchema, MJEntityActionEntity, MJEntityActionFilterEntity, MJEntityActionFilterSchema, MJEntityActionInvocationEntity, MJEntityActionInvocationSchema, MJEntityActionInvocationTypeEntity, MJEntityActionInvocationTypeSchema, MJEntityActionParamEntity, MJEntityActionParamSchema, MJEntityActionSchema, MJEntityCommunicationFieldEntity, MJEntityCommunicationFieldSchema, MJEntityCommunicationMessageTypeEntity, MJEntityCommunicationMessageTypeSchema, MJEntityDocumentEntity, MJEntityDocumentRunEntity, MJEntityDocumentRunSchema, MJEntityDocumentSchema, MJEntityDocumentSettingEntity, MJEntityDocumentSettingSchema, MJEntityDocumentTypeEntity, MJEntityDocumentTypeSchema, MJEntityEntity, MJEntityEntityExtended, MJEntityFieldEntity, MJEntityFieldEntityExtended, MJEntityFieldSchema, MJEntityFieldValueEntity, MJEntityFieldValueSchema, MJEntityFormOverrideEntity, MJEntityFormOverrideSchema, MJEntityOrganicKeyEntity, MJEntityOrganicKeyRelatedEntityEntity, MJEntityOrganicKeyRelatedEntitySchema, MJEntityOrganicKeySchema, MJEntityPermissionEntity, MJEntityPermissionSchema, MJEntityRecordDocumentEntity, MJEntityRecordDocumentSchema, MJEntityRelationshipDisplayComponentEntity, MJEntityRelationshipDisplayComponentSchema, MJEntityRelationshipEntity, MJEntityRelationshipSchema, MJEntitySchema, MJEntitySettingEntity, MJEntitySettingSchema, MJEnvironmentEntity, MJEnvironmentEntityExtended, MJEnvironmentSchema, MJErrorLogEntity, MJErrorLogSchema, MJExperimentEntity, MJExperimentSchema, MJExperimentSessionEntity, MJExperimentSessionIterationEntity, MJExperimentSessionIterationSchema, MJExperimentSessionSchema, MJExplorerNavigationItemEntity, MJExplorerNavigationItemSchema, MJExternalDataSourceEntity, MJExternalDataSourceSchema, MJExternalDataSourceTypeEntity, MJExternalDataSourceTypeSchema, MJFileCategoryEntity, MJFileCategorySchema, MJFileEntity, MJFileEntityRecordLinkEntity, MJFileEntityRecordLinkSchema, MJFileSchema, MJFileStorageAccountEntity, MJFileStorageAccountPermissionEntity, MJFileStorageAccountPermissionSchema, MJFileStorageAccountSchema, MJFileStorageProviderEntity, MJFileStorageProviderSchema, MJGeneratedCodeCategoryEntity, MJGeneratedCodeCategorySchema, MJGeneratedCodeEntity, MJGeneratedCodeSchema, MJInstanceConfigurationEntity, MJInstanceConfigurationSchema, MJIntegrationEntity, MJIntegrationObjectEntity, MJIntegrationObjectFieldEntity, MJIntegrationObjectFieldSchema, MJIntegrationObjectSchema, MJIntegrationSchema, MJIntegrationSourceTypeEntity, MJIntegrationSourceTypeSchema, MJIntegrationURLFormatEntity, MJIntegrationURLFormatSchema, MJKnowledgeHubSavedSearchEntity, MJKnowledgeHubSavedSearchSchema, MJLibraryEntity, MJLibraryItemEntity, MJLibraryItemSchema, MJLibrarySchema, MJListCategoryEntity, MJListCategorySchema, MJListDetailEntity, MJListDetailEntityExtended, MJListDetailSchema, MJListEntity, MJListInvitationEntity, MJListInvitationSchema, MJListSchema, MJListShareEntity, MJListShareSchema, MJMCPServerConnectionEntity, MJMCPServerConnectionPermissionEntity, MJMCPServerConnectionPermissionSchema, MJMCPServerConnectionSchema, MJMCPServerConnectionToolEntity, MJMCPServerConnectionToolSchema, MJMCPServerEntity, MJMCPServerSchema, MJMCPServerToolEntity, MJMCPServerToolSchema, MJMCPToolExecutionLogEntity, MJMCPToolExecutionLogSchema, MJMCPToolFavoriteEntity, MJMCPToolFavoriteSchema, MJMLAlgorithmEntity, MJMLAlgorithmSchema, MJMLAlgorithmUseCaseEntity, MJMLAlgorithmUseCaseRankingEntity, MJMLAlgorithmUseCaseRankingSchema, MJMLAlgorithmUseCaseSchema, MJMLModelEntity, MJMLModelSchema, MJMLModelScoringBindingEntity, MJMLModelScoringBindingSchema, MJMLTrainingPipelineEntity, MJMLTrainingPipelineSchema, MJMLTrainingRunEntity, MJMLTrainingRunSchema, MJMagicLinkInviteAllowedDomainEntity, MJMagicLinkInviteAllowedDomainSchema, MJMagicLinkInviteAllowedPathEntity, MJMagicLinkInviteAllowedPathSchema, MJMagicLinkInviteApplicationEntity, MJMagicLinkInviteApplicationSchema, MJMagicLinkInviteEntity, MJMagicLinkInviteRoleEntity, MJMagicLinkInviteRoleSchema, MJMagicLinkInviteSchema, MJMagicLinkRedemptionEntity, MJMagicLinkRedemptionSchema, MJOAuthAuthServerMetadataCacheEntity, MJOAuthAuthServerMetadataCacheSchema, MJOAuthAuthorizationStateEntity, MJOAuthAuthorizationStateSchema, MJOAuthClientRegistrationEntity, MJOAuthClientRegistrationSchema, MJOAuthTokenEntity, MJOAuthTokenSchema, MJOpenAppDependencyEntity, MJOpenAppDependencySchema, MJOpenAppEntity, MJOpenAppInstallHistoryEntity, MJOpenAppInstallHistorySchema, MJOpenAppSchema, MJOutputDeliveryTypeEntity, MJOutputDeliveryTypeSchema, MJOutputFormatTypeEntity, MJOutputFormatTypeSchema, MJOutputTriggerTypeEntity, MJOutputTriggerTypeSchema, MJPermissionDomainEntity, MJPermissionDomainSchema, MJProcessRunDetailEntity, MJProcessRunDetailSchema, MJProcessRunEntity, MJProcessRunSchema, MJProjectEntity, MJProjectSchema, MJPublicLinkEntity, MJPublicLinkSchema, MJQueryCategoryEntity, MJQueryCategorySchema, MJQueryDependencyEntity, MJQueryDependencySchema, MJQueryEntity, MJQueryEntityEntity, MJQueryEntityExtended, MJQueryEntitySchema, MJQueryFieldEntity, MJQueryFieldSchema, MJQueryParameterEntity, MJQueryParameterSchema, MJQueryPermissionEntity, MJQueryPermissionSchema, MJQuerySQLEntity, MJQuerySQLSchema, MJQuerySchema, MJQueueEntity, MJQueueSchema, MJQueueTaskEntity, MJQueueTaskSchema, MJQueueTypeEntity, MJQueueTypeSchema, MJRecommendationEntity, MJRecommendationItemEntity, MJRecommendationItemSchema, MJRecommendationProviderEntity, MJRecommendationProviderSchema, MJRecommendationRunEntity, MJRecommendationRunSchema, MJRecommendationSchema, MJRecordChangeEntity, MJRecordChangeReplayRunEntity, MJRecordChangeReplayRunSchema, MJRecordChangeSchema, MJRecordGeoCodeEntity, MJRecordGeoCodeSchema, MJRecordLinkEntity, MJRecordLinkSchema, MJRecordMergeDeletionLogEntity, MJRecordMergeDeletionLogSchema, MJRecordMergeLogEntity, MJRecordMergeLogSchema, MJRecordProcessCategoryEntity, MJRecordProcessCategorySchema, MJRecordProcessEntity, MJRecordProcessSchema, MJRecordProcessWatermarkEntity, MJRecordProcessWatermarkSchema, MJRemoteOperationCategoryEntity, MJRemoteOperationCategorySchema, MJRemoteOperationEntity, MJRemoteOperationSchema, MJReportCategoryEntity, MJReportCategorySchema, MJReportEntity, MJReportSchema, MJReportSnapshotEntity, MJReportSnapshotSchema, MJReportUserStateEntity, MJReportUserStateSchema, MJReportVersionEntity, MJReportVersionSchema, MJResourceLinkEntity, MJResourceLinkSchema, MJResourcePermissionEntity, MJResourcePermissionEntityExtended, MJResourcePermissionSchema, MJResourceTypeEntity, MJResourceTypeSchema, MJRoleEntity, MJRoleSchema, MJRowLevelSecurityFilterEntity, MJRowLevelSecurityFilterSchema, MJSQLDialectEntity, MJSQLDialectSchema, MJScheduledActionEntity, MJScheduledActionEntityExtended, MJScheduledActionParamEntity, MJScheduledActionParamSchema, MJScheduledActionSchema, MJScheduledJobEntity, MJScheduledJobRunEntity, MJScheduledJobRunSchema, MJScheduledJobSchema, MJScheduledJobTypeEntity, MJScheduledJobTypeSchema, MJSchemaInfoEntity, MJSchemaInfoSchema, MJScopedPromptPartEntity, MJScopedPromptPartSchema, MJSearchExecutionLogEntity, MJSearchExecutionLogSchema, MJSearchProviderEntity, MJSearchProviderSchema, MJSearchScopeEntity, MJSearchScopeEntityEntity, MJSearchScopeEntitySchema, MJSearchScopeExternalIndexEntity, MJSearchScopeExternalIndexSchema, MJSearchScopePermissionEntity, MJSearchScopePermissionSchema, MJSearchScopeProviderEntity, MJSearchScopeProviderSchema, MJSearchScopeSchema, MJSearchScopeStorageAccountEntity, MJSearchScopeStorageAccountSchema, MJSearchScopeTestQueryEntity, MJSearchScopeTestQuerySchema, MJSignatureAccountEntity, MJSignatureAccountSchema, MJSignatureProviderEntity, MJSignatureProviderSchema, MJSignatureRequestDocumentEntity, MJSignatureRequestDocumentSchema, MJSignatureRequestEntity, MJSignatureRequestLogEntity, MJSignatureRequestLogSchema, MJSignatureRequestRecipientEntity, MJSignatureRequestRecipientSchema, MJSignatureRequestSchema, MJSkillEntity, MJSkillSchema, MJStateProvinceEntity, MJStateProvinceSchema, MJTagAuditLogEntity, MJTagAuditLogSchema, MJTagCoOccurrenceEntity, MJTagCoOccurrenceSchema, MJTagEntity, MJTagSchema, MJTagScopeEntity, MJTagScopeSchema, MJTagSuggestionEntity, MJTagSuggestionSchema, MJTagSynonymEntity, MJTagSynonymSchema, MJTaggedItemEntity, MJTaggedItemSchema, MJTaskDependencyEntity, MJTaskDependencySchema, MJTaskEntity, MJTaskSchema, MJTaskTypeEntity, MJTaskTypeSchema, MJTemplateCategoryEntity, MJTemplateCategorySchema, MJTemplateContentEntity, MJTemplateContentSchema, MJTemplateContentTypeEntity, MJTemplateContentTypeSchema, MJTemplateEntity, MJTemplateEntityExtended, MJTemplateParamEntity, MJTemplateParamSchema, MJTemplateSchema, MJTestEntity, MJTestRubricEntity, MJTestRubricSchema, MJTestRunEntity, MJTestRunFeedbackEntity, MJTestRunFeedbackSchema, MJTestRunOutputEntity, MJTestRunOutputSchema, MJTestRunOutputTypeEntity, MJTestRunOutputTypeSchema, MJTestRunSchema, MJTestSchema, MJTestSuiteEntity, MJTestSuiteRunEntity, MJTestSuiteRunSchema, MJTestSuiteSchema, MJTestSuiteTestEntity, MJTestSuiteTestSchema, MJTestTypeEntity, MJTestTypeSchema, MJUserApplicationEntity, MJUserApplicationEntityEntity, MJUserApplicationEntitySchema, MJUserApplicationSchema, MJUserEntity, MJUserFavoriteEntity, MJUserFavoriteSchema, MJUserNotificationEntity, MJUserNotificationPreferenceEntity, MJUserNotificationPreferenceSchema, MJUserNotificationSchema, MJUserNotificationTypeEntity, MJUserNotificationTypeSchema, MJUserRecordLogEntity, MJUserRecordLogSchema, MJUserRoleEntity, MJUserRoleSchema, MJUserRoutineEntity, MJUserRoutineRecipientEntity, MJUserRoutineRecipientSchema, MJUserRoutineRunEntity, MJUserRoutineRunSchema, MJUserRoutineSchema, MJUserSchema, MJUserSettingEntity, MJUserSettingSchema, MJUserViewCategoryEntity, MJUserViewCategorySchema, MJUserViewEntity, MJUserViewEntityExtended, MJUserViewRunDetailEntity, MJUserViewRunDetailSchema, MJUserViewRunEntity, MJUserViewRunSchema, MJUserViewSchema, MJVectorDatabaseEntity, MJVectorDatabaseSchema, MJVectorIndexEntity, MJVectorIndexSchema, MJVersionInstallationEntity, MJVersionInstallationSchema, MJVersionLabelEntity, MJVersionLabelItemEntity, MJVersionLabelItemSchema, MJVersionLabelRestoreEntity, MJVersionLabelRestoreSchema, MJVersionLabelSchema, MJViewTypeEntity, MJViewTypeSchema, MJWorkflowEngineEntity, MJWorkflowEngineSchema, MJWorkflowEntity, MJWorkflowRunEntity, MJWorkflowRunSchema, MJWorkflowSchema, MJWorkspaceEntity, MJWorkspaceItemEntity, MJWorkspaceItemSchema, MJWorkspaceSchema, PERMISSION_DOMAIN_ICONS, PERMISSION_DOMAIN_ICON_FALLBACK, PermissionEngine, PredictiveStudioControlExperimentSessionOperation, PredictiveStudioCreateScoringProcessOperation, PredictiveStudioPromoteModelOperation, PredictiveStudioRunFeaturePipelineOperation, PredictiveStudioScoreRecordSetOperation, PredictiveStudioStartExperimentSessionOperation, PredictiveStudioTrainModelOperation, QueryEngine, QueryPermissionProvider, ReadOnlyExternalBaseEntity, RecordComparisonCompareOperation, RecordProcessCancelRunOperation, RecordProcessGetRunStatusOperation, RecordProcessPauseRunOperation, RecordProcessResumeRunOperation, RecordProcessRunNowOperation, RegisterShareNotificationHandler, RemoteOperationEngineBase, ResolveArtifactTypeByMime, ResourceData, ResourcePermissionEngine, ResourcePermissionProvider, ResourceTypeEngine, SearchEngineBase, TemplateRunOperation, TypeTablesCache, UserInfoEngine, UserRoutineEngine, UserViewEngine, ViewColumnInfo, ViewFilterInfo, ViewFilterLogicInfo, ViewGridState, ViewSortDirectionInfo, ViewSortInfo, assertCallerMayCreateShare, buildActionsSummary, checkShareManagePermission, dispatchShareNotificationAfterSave, loadModule, parseConversationDetailComplete
|
|
58123
|
+
// UNUSED EXPORTS: AIAgentPermissionProvider, AISkillExportMarkdownOperation, AISkillImportMarkdownOperation, AISkillPermissionProvider, AccessControlRuleProvider, ApplicationRolePermissionProvider, ApplicationSettingEngine, ArtifactExtractor, ArtifactMetadataEngine, ArtifactPermissionProvider, AuditLogTypeEngine, BuildUnregisteredMimeError, CollectionPermissionProvider, ConversationEngine, CreateShareNotification, DEFAULT_AGGREGATE_DISPLAY, DashboardEngine, DashboardPermissionProvider, DecideInlineStorage, EncryptionEngineBase, EntityPermissionProvider, EntityPermissionType, EntitySaveOptions, ExtractBase64FromDataUrl, FileStorageEngineBase, FindArtifactTypeConflicts, GeoDataEngine, INJECTABLE_NOTE_STATUSES, InjectableNoteStatusSQLList, InstanceConfigEngine, InteractiveFormsEngine, IsInjectableNoteStatus, IsTextyMime, KnowledgeHubMetadataEngine, LoadMJAccessControlRuleEntityExtended, LoadMJArtifactPermissionEntityExtended, LoadMJCollectionPermissionEntityExtended, LoadMJConversationDetailEntityExtended, LoadMJDashboardPermissionEntityExtended, LoadPermissionEntityExtensions, LoadPermissionProviders, MCPEngine, MJAIActionEntity, MJAIActionSchema, MJAIAgentActionEntity, MJAIAgentActionSchema, MJAIAgentArtifactTypeEntity, MJAIAgentArtifactTypeSchema, MJAIAgentCategoryEntity, MJAIAgentCategorySchema, MJAIAgentChannelEntity, MJAIAgentChannelSchema, MJAIAgentClientToolEntity, MJAIAgentClientToolSchema, MJAIAgentCoAgentEntity, MJAIAgentCoAgentSchema, MJAIAgentConfigurationEntity, MJAIAgentConfigurationSchema, MJAIAgentDataSourceEntity, MJAIAgentDataSourceSchema, MJAIAgentEntity, MJAIAgentExampleEntity, MJAIAgentExampleSchema, MJAIAgentLearningCycleEntity, MJAIAgentLearningCycleSchema, MJAIAgentModalityEntity, MJAIAgentModalitySchema, MJAIAgentModelEntity, MJAIAgentModelSchema, MJAIAgentNoteEntity, MJAIAgentNoteSchema, MJAIAgentNoteTypeEntity, MJAIAgentNoteTypeSchema, MJAIAgentPermissionEntity, MJAIAgentPermissionSchema, MJAIAgentPromptEntity, MJAIAgentPromptSchema, MJAIAgentRelationshipEntity, MJAIAgentRelationshipSchema, MJAIAgentRequestEntity, MJAIAgentRequestSchema, MJAIAgentRequestTypeEntity, MJAIAgentRequestTypeSchema, MJAIAgentRunEntity, MJAIAgentRunMediaEntity, MJAIAgentRunMediaSchema, MJAIAgentRunSchema, MJAIAgentRunStepEntity, MJAIAgentRunStepSchema, MJAIAgentSchema, MJAIAgentSearchScopeEntity, MJAIAgentSearchScopeSchema, MJAIAgentSessionBridgeEntity, MJAIAgentSessionBridgeParticipantEntity, MJAIAgentSessionBridgeParticipantSchema, MJAIAgentSessionBridgeSchema, MJAIAgentSessionChannelEntity, MJAIAgentSessionChannelSchema, MJAIAgentSessionEntity, MJAIAgentSessionSchema, MJAIAgentSkillEntity, MJAIAgentSkillSchema, MJAIAgentStepEntity, MJAIAgentStepPathEntity, MJAIAgentStepPathSchema, MJAIAgentStepSchema, MJAIAgentTypeEntity, MJAIAgentTypeSchema, MJAIArchitectureEntity, MJAIArchitectureSchema, MJAIBridgeAgentIdentityEntity, MJAIBridgeAgentIdentitySchema, MJAIBridgeProviderChannelEntity, MJAIBridgeProviderChannelSchema, MJAIBridgeProviderEntity, MJAIBridgeProviderSchema, MJAIClientToolDefinitionEntity, MJAIClientToolDefinitionSchema, MJAIConfigurationEntity, MJAIConfigurationParamEntity, MJAIConfigurationParamSchema, MJAIConfigurationSchema, MJAICredentialBindingEntity, MJAICredentialBindingSchema, MJAIModalityEntity, MJAIModalitySchema, MJAIModelActionEntity, MJAIModelActionSchema, MJAIModelArchitectureEntity, MJAIModelArchitectureSchema, MJAIModelCostEntity, MJAIModelCostSchema, MJAIModelEntity, MJAIModelModalityEntity, MJAIModelModalitySchema, MJAIModelPriceTypeEntity, MJAIModelPriceTypeSchema, MJAIModelPriceUnitTypeEntity, MJAIModelPriceUnitTypeSchema, MJAIModelSchema, MJAIModelTypeEntity, MJAIModelTypeSchema, MJAIModelVendorEntity, MJAIModelVendorSchema, MJAIPromptCategoryEntity, MJAIPromptCategorySchema, MJAIPromptEntity, MJAIPromptModelEntity, MJAIPromptModelSchema, MJAIPromptRunEntity, MJAIPromptRunMediaEntity, MJAIPromptRunMediaSchema, MJAIPromptRunSchema, MJAIPromptSchema, MJAIPromptTypeEntity, MJAIPromptTypeSchema, MJAIRemoteBrowserProviderEntity, MJAIRemoteBrowserProviderSchema, MJAIResultCacheEntity, MJAIResultCacheSchema, MJAISkillActionEntity, MJAISkillActionSchema, MJAISkillEntity, MJAISkillPermissionEntity, MJAISkillPermissionSchema, MJAISkillSchema, MJAISkillSubAgentEntity, MJAISkillSubAgentSchema, MJAIVendorEntity, MJAIVendorSchema, MJAIVendorTypeDefinitionEntity, MJAIVendorTypeDefinitionSchema, MJAIVendorTypeEntity, MJAIVendorTypeSchema, MJAPIApplicationEntity, MJAPIApplicationSchema, MJAPIApplicationScopeEntity, MJAPIApplicationScopeSchema, MJAPIKeyApplicationEntity, MJAPIKeyApplicationSchema, MJAPIKeyEntity, MJAPIKeySchema, MJAPIKeyScopeEntity, MJAPIKeyScopeSchema, MJAPIKeyUsageLogEntity, MJAPIKeyUsageLogSchema, MJAPIScopeEntity, MJAPIScopeSchema, MJAccessControlRuleEntity, MJAccessControlRuleEntityExtended, MJAccessControlRuleSchema, MJActionAuthorizationEntity, MJActionAuthorizationSchema, MJActionCategoryEntity, MJActionCategorySchema, MJActionContextEntity, MJActionContextSchema, MJActionContextTypeEntity, MJActionContextTypeSchema, MJActionEntity, MJActionExecutionLogEntity, MJActionExecutionLogSchema, MJActionFilterEntity, MJActionFilterSchema, MJActionLibraryEntity, MJActionLibrarySchema, MJActionParamEntity, MJActionParamSchema, MJActionResultCodeEntity, MJActionResultCodeSchema, MJActionSchema, MJApplicationEntity, MJApplicationEntityEntity, MJApplicationEntitySchema, MJApplicationRoleEntity, MJApplicationRoleSchema, MJApplicationSchema, MJApplicationSettingEntity, MJApplicationSettingSchema, MJArchiveConfigurationEntity, MJArchiveConfigurationEntityEntity, MJArchiveConfigurationEntitySchema, MJArchiveConfigurationSchema, MJArchiveRunDetailEntity, MJArchiveRunDetailSchema, MJArchiveRunEntity, MJArchiveRunSchema, MJArtifactEntity, MJArtifactPermissionEntity, MJArtifactPermissionEntityExtended, MJArtifactPermissionSchema, MJArtifactSchema, MJArtifactTypeEntity, MJArtifactTypeSchema, MJArtifactUseEntity, MJArtifactUseSchema, MJArtifactVersionAttributeEntity, MJArtifactVersionAttributeSchema, MJArtifactVersionEntity, MJArtifactVersionSchema, MJAuditLogEntity, MJAuditLogSchema, MJAuditLogTypeEntity, MJAuditLogTypeSchema, MJAuthorizationEntity, MJAuthorizationRoleEntity, MJAuthorizationRoleSchema, MJAuthorizationSchema, MJClusterAnalysisClusterEntity, MJClusterAnalysisClusterSchema, MJClusterAnalysisEntity, MJClusterAnalysisSchema, MJCollectionArtifactEntity, MJCollectionArtifactSchema, MJCollectionEntity, MJCollectionPermissionEntity, MJCollectionPermissionEntityExtended, MJCollectionPermissionSchema, MJCollectionSchema, MJCommunicationBaseMessageTypeEntity, MJCommunicationBaseMessageTypeSchema, MJCommunicationLogEntity, MJCommunicationLogSchema, MJCommunicationProviderEntity, MJCommunicationProviderMessageTypeEntity, MJCommunicationProviderMessageTypeSchema, MJCommunicationProviderSchema, MJCommunicationRunEntity, MJCommunicationRunSchema, MJCompanyEntity, MJCompanyIntegrationEntity, MJCompanyIntegrationEntityMapEntity, MJCompanyIntegrationEntityMapSchema, MJCompanyIntegrationFieldMapEntity, MJCompanyIntegrationFieldMapSchema, MJCompanyIntegrationRecordMapEntity, MJCompanyIntegrationRecordMapSchema, MJCompanyIntegrationRunAPILogEntity, MJCompanyIntegrationRunAPILogSchema, MJCompanyIntegrationRunDetailEntity, MJCompanyIntegrationRunDetailSchema, MJCompanyIntegrationRunEntity, MJCompanyIntegrationRunSchema, MJCompanyIntegrationSchema, MJCompanyIntegrationSyncWatermarkEntity, MJCompanyIntegrationSyncWatermarkSchema, MJCompanySchema, MJComponentDependencyEntity, MJComponentDependencySchema, MJComponentEntity, MJComponentEntityExtended, MJComponentLibraryEntity, MJComponentLibraryLinkEntity, MJComponentLibraryLinkSchema, MJComponentLibrarySchema, MJComponentRegistryEntity, MJComponentRegistrySchema, MJComponentSchema, MJContentFileTypeEntity, MJContentFileTypeSchema, MJContentItemAttributeEntity, MJContentItemAttributeSchema, MJContentItemDuplicateEntity, MJContentItemDuplicateSchema, MJContentItemEntity, MJContentItemSchema, MJContentItemTagEntity, MJContentItemTagSchema, MJContentProcessRunDetailEntity, MJContentProcessRunDetailSchema, MJContentProcessRunEntity, MJContentProcessRunPromptRunEntity, MJContentProcessRunPromptRunSchema, MJContentProcessRunSchema, MJContentSourceEntity, MJContentSourceParamEntity, MJContentSourceParamSchema, MJContentSourceSchema, MJContentSourceTypeEntity, MJContentSourceTypeParamEntity, MJContentSourceTypeParamSchema, MJContentSourceTypeSchema, MJContentTypeAttributeEntity, MJContentTypeAttributeSchema, MJContentTypeEntity, MJContentTypeSchema, MJConversationArtifactEntity, MJConversationArtifactPermissionEntity, MJConversationArtifactPermissionSchema, MJConversationArtifactSchema, MJConversationArtifactVersionEntity, MJConversationArtifactVersionSchema, MJConversationDetailArtifactEntity, MJConversationDetailArtifactSchema, MJConversationDetailAttachmentEntity, MJConversationDetailAttachmentSchema, MJConversationDetailEntity, MJConversationDetailEntityExtended, MJConversationDetailRatingEntity, MJConversationDetailRatingSchema, MJConversationDetailSchema, MJConversationEntity, MJConversationSchema, MJConversationWidgetInstanceEntity, MJConversationWidgetInstanceSchema, MJCountryEntity, MJCountrySchema, MJCredentialCategoryEntity, MJCredentialCategorySchema, MJCredentialEntity, MJCredentialSchema, MJCredentialTypeEntity, MJCredentialTypeSchema, MJDashboardCategoryEntity, MJDashboardCategoryLinkEntity, MJDashboardCategoryLinkSchema, MJDashboardCategoryPermissionEntity, MJDashboardCategoryPermissionSchema, MJDashboardCategorySchema, MJDashboardEntity, MJDashboardEntityExtended, MJDashboardPartTypeEntity, MJDashboardPartTypeSchema, MJDashboardPermissionEntity, MJDashboardPermissionEntityExtended, MJDashboardPermissionSchema, MJDashboardSchema, MJDashboardUserPreferenceEntity, MJDashboardUserPreferenceSchema, MJDashboardUserStateEntity, MJDashboardUserStateSchema, MJDataContextEntity, MJDataContextItemEntity, MJDataContextItemSchema, MJDataContextSchema, MJDatasetEntity, MJDatasetItemEntity, MJDatasetItemSchema, MJDatasetSchema, MJDuplicateRunDetailEntity, MJDuplicateRunDetailMatchEntity, MJDuplicateRunDetailMatchSchema, MJDuplicateRunDetailSchema, MJDuplicateRunEntity, MJDuplicateRunSchema, MJEmployeeCompanyIntegrationEntity, MJEmployeeCompanyIntegrationSchema, MJEmployeeEntity, MJEmployeeRoleEntity, MJEmployeeRoleSchema, MJEmployeeSchema, MJEmployeeSkillEntity, MJEmployeeSkillSchema, MJEncryptionAlgorithmEntity, MJEncryptionAlgorithmSchema, MJEncryptionKeyEntity, MJEncryptionKeySchema, MJEncryptionKeySourceEntity, MJEncryptionKeySourceSchema, MJEntityAIActionEntity, MJEntityAIActionSchema, MJEntityActionEntity, MJEntityActionFilterEntity, MJEntityActionFilterSchema, MJEntityActionInvocationEntity, MJEntityActionInvocationSchema, MJEntityActionInvocationTypeEntity, MJEntityActionInvocationTypeSchema, MJEntityActionParamEntity, MJEntityActionParamSchema, MJEntityActionSchema, MJEntityCommunicationFieldEntity, MJEntityCommunicationFieldSchema, MJEntityCommunicationMessageTypeEntity, MJEntityCommunicationMessageTypeSchema, MJEntityDocumentEntity, MJEntityDocumentRunEntity, MJEntityDocumentRunSchema, MJEntityDocumentSchema, MJEntityDocumentSettingEntity, MJEntityDocumentSettingSchema, MJEntityDocumentTypeEntity, MJEntityDocumentTypeSchema, MJEntityEntity, MJEntityEntityExtended, MJEntityFieldEntity, MJEntityFieldEntityExtended, MJEntityFieldSchema, MJEntityFieldValueEntity, MJEntityFieldValueSchema, MJEntityFormOverrideEntity, MJEntityFormOverrideSchema, MJEntityOrganicKeyEntity, MJEntityOrganicKeyRelatedEntityEntity, MJEntityOrganicKeyRelatedEntitySchema, MJEntityOrganicKeySchema, MJEntityPermissionEntity, MJEntityPermissionSchema, MJEntityRecordDocumentEntity, MJEntityRecordDocumentSchema, MJEntityRelationshipDisplayComponentEntity, MJEntityRelationshipDisplayComponentSchema, MJEntityRelationshipEntity, MJEntityRelationshipSchema, MJEntitySchema, MJEntitySettingEntity, MJEntitySettingSchema, MJEnvironmentEntity, MJEnvironmentEntityExtended, MJEnvironmentSchema, MJErrorLogEntity, MJErrorLogSchema, MJExperimentEntity, MJExperimentSchema, MJExperimentSessionEntity, MJExperimentSessionIterationEntity, MJExperimentSessionIterationSchema, MJExperimentSessionSchema, MJExplorerNavigationItemEntity, MJExplorerNavigationItemSchema, MJExternalDataSourceEntity, MJExternalDataSourceSchema, MJExternalDataSourceTypeEntity, MJExternalDataSourceTypeSchema, MJFileCategoryEntity, MJFileCategorySchema, MJFileEntity, MJFileEntityRecordLinkEntity, MJFileEntityRecordLinkSchema, MJFileSchema, MJFileStorageAccountEntity, MJFileStorageAccountPermissionEntity, MJFileStorageAccountPermissionSchema, MJFileStorageAccountSchema, MJFileStorageProviderEntity, MJFileStorageProviderSchema, MJGeneratedCodeCategoryEntity, MJGeneratedCodeCategorySchema, MJGeneratedCodeEntity, MJGeneratedCodeSchema, MJInstanceConfigurationEntity, MJInstanceConfigurationSchema, MJIntegrationEntity, MJIntegrationObjectEntity, MJIntegrationObjectFieldEntity, MJIntegrationObjectFieldSchema, MJIntegrationObjectSchema, MJIntegrationSchema, MJIntegrationSourceTypeEntity, MJIntegrationSourceTypeSchema, MJIntegrationURLFormatEntity, MJIntegrationURLFormatSchema, MJKnowledgeHubSavedSearchEntity, MJKnowledgeHubSavedSearchSchema, MJLibraryEntity, MJLibraryItemEntity, MJLibraryItemSchema, MJLibrarySchema, MJListCategoryEntity, MJListCategorySchema, MJListDetailEntity, MJListDetailEntityExtended, MJListDetailSchema, MJListEntity, MJListInvitationEntity, MJListInvitationSchema, MJListSchema, MJListShareEntity, MJListShareSchema, MJMCPServerConnectionEntity, MJMCPServerConnectionPermissionEntity, MJMCPServerConnectionPermissionSchema, MJMCPServerConnectionSchema, MJMCPServerConnectionToolEntity, MJMCPServerConnectionToolSchema, MJMCPServerEntity, MJMCPServerSchema, MJMCPServerToolEntity, MJMCPServerToolSchema, MJMCPToolExecutionLogEntity, MJMCPToolExecutionLogSchema, MJMCPToolFavoriteEntity, MJMCPToolFavoriteSchema, MJMLAlgorithmEntity, MJMLAlgorithmSchema, MJMLAlgorithmUseCaseEntity, MJMLAlgorithmUseCaseRankingEntity, MJMLAlgorithmUseCaseRankingSchema, MJMLAlgorithmUseCaseSchema, MJMLModelEntity, MJMLModelSchema, MJMLModelScoringBindingEntity, MJMLModelScoringBindingSchema, MJMLTrainingPipelineEntity, MJMLTrainingPipelineSchema, MJMLTrainingRunEntity, MJMLTrainingRunSchema, MJMagicLinkInviteAllowedDomainEntity, MJMagicLinkInviteAllowedDomainSchema, MJMagicLinkInviteAllowedPathEntity, MJMagicLinkInviteAllowedPathSchema, MJMagicLinkInviteApplicationEntity, MJMagicLinkInviteApplicationSchema, MJMagicLinkInviteEntity, MJMagicLinkInviteRoleEntity, MJMagicLinkInviteRoleSchema, MJMagicLinkInviteSchema, MJMagicLinkRedemptionEntity, MJMagicLinkRedemptionSchema, MJOAuthAuthServerMetadataCacheEntity, MJOAuthAuthServerMetadataCacheSchema, MJOAuthAuthorizationStateEntity, MJOAuthAuthorizationStateSchema, MJOAuthClientRegistrationEntity, MJOAuthClientRegistrationSchema, MJOAuthTokenEntity, MJOAuthTokenSchema, MJOpenAppDependencyEntity, MJOpenAppDependencySchema, MJOpenAppEntity, MJOpenAppInstallHistoryEntity, MJOpenAppInstallHistorySchema, MJOpenAppSchema, MJOutputDeliveryTypeEntity, MJOutputDeliveryTypeSchema, MJOutputFormatTypeEntity, MJOutputFormatTypeSchema, MJOutputTriggerTypeEntity, MJOutputTriggerTypeSchema, MJPermissionDomainEntity, MJPermissionDomainSchema, MJProcessRunDetailEntity, MJProcessRunDetailSchema, MJProcessRunEntity, MJProcessRunSchema, MJProjectEntity, MJProjectSchema, MJPublicLinkEntity, MJPublicLinkSchema, MJQueryCategoryEntity, MJQueryCategorySchema, MJQueryDependencyEntity, MJQueryDependencySchema, MJQueryEntity, MJQueryEntityEntity, MJQueryEntityExtended, MJQueryEntitySchema, MJQueryFieldEntity, MJQueryFieldSchema, MJQueryParameterEntity, MJQueryParameterSchema, MJQueryPermissionEntity, MJQueryPermissionSchema, MJQuerySQLEntity, MJQuerySQLSchema, MJQuerySchema, MJQueueEntity, MJQueueSchema, MJQueueTaskEntity, MJQueueTaskSchema, MJQueueTypeEntity, MJQueueTypeSchema, MJRecommendationEntity, MJRecommendationItemEntity, MJRecommendationItemSchema, MJRecommendationProviderEntity, MJRecommendationProviderSchema, MJRecommendationRunEntity, MJRecommendationRunSchema, MJRecommendationSchema, MJRecordChangeEntity, MJRecordChangeReplayRunEntity, MJRecordChangeReplayRunSchema, MJRecordChangeSchema, MJRecordGeoCodeEntity, MJRecordGeoCodeSchema, MJRecordLinkEntity, MJRecordLinkSchema, MJRecordMergeDeletionLogEntity, MJRecordMergeDeletionLogSchema, MJRecordMergeLogEntity, MJRecordMergeLogSchema, MJRecordProcessCategoryEntity, MJRecordProcessCategorySchema, MJRecordProcessEntity, MJRecordProcessSchema, MJRecordProcessWatermarkEntity, MJRecordProcessWatermarkSchema, MJRemoteOperationCategoryEntity, MJRemoteOperationCategorySchema, MJRemoteOperationEntity, MJRemoteOperationSchema, MJReportCategoryEntity, MJReportCategorySchema, MJReportEntity, MJReportSchema, MJReportSnapshotEntity, MJReportSnapshotSchema, MJReportUserStateEntity, MJReportUserStateSchema, MJReportVersionEntity, MJReportVersionSchema, MJResourceLinkEntity, MJResourceLinkSchema, MJResourcePermissionEntity, MJResourcePermissionEntityExtended, MJResourcePermissionSchema, MJResourceTypeEntity, MJResourceTypeSchema, MJRoleEntity, MJRoleSchema, MJRowLevelSecurityFilterEntity, MJRowLevelSecurityFilterSchema, MJSQLDialectEntity, MJSQLDialectSchema, MJScheduledActionEntity, MJScheduledActionEntityExtended, MJScheduledActionParamEntity, MJScheduledActionParamSchema, MJScheduledActionSchema, MJScheduledJobEntity, MJScheduledJobRunEntity, MJScheduledJobRunSchema, MJScheduledJobSchema, MJScheduledJobTypeEntity, MJScheduledJobTypeSchema, MJSchemaInfoEntity, MJSchemaInfoSchema, MJScopedPromptConfigEntity, MJScopedPromptConfigSchema, MJScopedPromptPartEntity, MJScopedPromptPartSchema, MJSearchExecutionLogEntity, MJSearchExecutionLogSchema, MJSearchProviderEntity, MJSearchProviderSchema, MJSearchScopeEntity, MJSearchScopeEntityEntity, MJSearchScopeEntitySchema, MJSearchScopeExternalIndexEntity, MJSearchScopeExternalIndexSchema, MJSearchScopePermissionEntity, MJSearchScopePermissionSchema, MJSearchScopeProviderEntity, MJSearchScopeProviderSchema, MJSearchScopeSchema, MJSearchScopeStorageAccountEntity, MJSearchScopeStorageAccountSchema, MJSearchScopeTestQueryEntity, MJSearchScopeTestQuerySchema, MJSignatureAccountEntity, MJSignatureAccountSchema, MJSignatureProviderEntity, MJSignatureProviderSchema, MJSignatureRequestDocumentEntity, MJSignatureRequestDocumentSchema, MJSignatureRequestEntity, MJSignatureRequestLogEntity, MJSignatureRequestLogSchema, MJSignatureRequestRecipientEntity, MJSignatureRequestRecipientSchema, MJSignatureRequestSchema, MJSkillEntity, MJSkillSchema, MJStateProvinceEntity, MJStateProvinceSchema, MJTagAuditLogEntity, MJTagAuditLogSchema, MJTagCoOccurrenceEntity, MJTagCoOccurrenceSchema, MJTagEntity, MJTagSchema, MJTagScopeEntity, MJTagScopeSchema, MJTagSuggestionEntity, MJTagSuggestionSchema, MJTagSynonymEntity, MJTagSynonymSchema, MJTaggedItemEntity, MJTaggedItemSchema, MJTaskDependencyEntity, MJTaskDependencySchema, MJTaskEntity, MJTaskSchema, MJTaskTypeEntity, MJTaskTypeSchema, MJTemplateCategoryEntity, MJTemplateCategorySchema, MJTemplateContentEntity, MJTemplateContentSchema, MJTemplateContentTypeEntity, MJTemplateContentTypeSchema, MJTemplateEntity, MJTemplateEntityExtended, MJTemplateParamEntity, MJTemplateParamSchema, MJTemplateSchema, MJTestEntity, MJTestRubricEntity, MJTestRubricSchema, MJTestRunEntity, MJTestRunFeedbackEntity, MJTestRunFeedbackSchema, MJTestRunOutputEntity, MJTestRunOutputSchema, MJTestRunOutputTypeEntity, MJTestRunOutputTypeSchema, MJTestRunSchema, MJTestSchema, MJTestSuiteEntity, MJTestSuiteRunEntity, MJTestSuiteRunSchema, MJTestSuiteSchema, MJTestSuiteTestEntity, MJTestSuiteTestSchema, MJTestTypeEntity, MJTestTypeSchema, MJUserApplicationEntity, MJUserApplicationEntityEntity, MJUserApplicationEntitySchema, MJUserApplicationSchema, MJUserEntity, MJUserFavoriteEntity, MJUserFavoriteSchema, MJUserNotificationEntity, MJUserNotificationPreferenceEntity, MJUserNotificationPreferenceSchema, MJUserNotificationSchema, MJUserNotificationTypeEntity, MJUserNotificationTypeSchema, MJUserRecordLogEntity, MJUserRecordLogSchema, MJUserRoleEntity, MJUserRoleSchema, MJUserRoutineEntity, MJUserRoutineRecipientEntity, MJUserRoutineRecipientSchema, MJUserRoutineRunEntity, MJUserRoutineRunSchema, MJUserRoutineSchema, MJUserSchema, MJUserSettingEntity, MJUserSettingSchema, MJUserViewCategoryEntity, MJUserViewCategorySchema, MJUserViewEntity, MJUserViewEntityExtended, MJUserViewRunDetailEntity, MJUserViewRunDetailSchema, MJUserViewRunEntity, MJUserViewRunSchema, MJUserViewSchema, MJVectorDatabaseEntity, MJVectorDatabaseSchema, MJVectorIndexEntity, MJVectorIndexSchema, MJVersionInstallationEntity, MJVersionInstallationSchema, MJVersionLabelEntity, MJVersionLabelItemEntity, MJVersionLabelItemSchema, MJVersionLabelRestoreEntity, MJVersionLabelRestoreSchema, MJVersionLabelSchema, MJViewTypeEntity, MJViewTypeSchema, MJWorkflowEngineEntity, MJWorkflowEngineSchema, MJWorkflowEntity, MJWorkflowRunEntity, MJWorkflowRunSchema, MJWorkflowSchema, MJWorkspaceEntity, MJWorkspaceItemEntity, MJWorkspaceItemSchema, MJWorkspaceSchema, PERMISSION_DOMAIN_ICONS, PERMISSION_DOMAIN_ICON_FALLBACK, PermissionEngine, PredictiveStudioControlExperimentSessionOperation, PredictiveStudioCreateScoringProcessOperation, PredictiveStudioPromoteModelOperation, PredictiveStudioRunFeaturePipelineOperation, PredictiveStudioScoreRecordSetOperation, PredictiveStudioStartExperimentSessionOperation, PredictiveStudioTrainModelOperation, QueryEngine, QueryPermissionProvider, ReadOnlyExternalBaseEntity, RecordComparisonCompareOperation, RecordProcessCancelRunOperation, RecordProcessGetRunStatusOperation, RecordProcessPauseRunOperation, RecordProcessResumeRunOperation, RecordProcessRunNowOperation, RegisterShareNotificationHandler, RemoteOperationEngineBase, ResolveArtifactTypeByMime, ResourceData, ResourcePermissionEngine, ResourcePermissionProvider, ResourceTypeEngine, SearchEngineBase, TemplateRunOperation, TypeTablesCache, UserInfoEngine, UserRoutineEngine, UserViewEngine, ViewColumnInfo, ViewFilterInfo, ViewFilterLogicInfo, ViewGridState, ViewSortDirectionInfo, ViewSortInfo, assertCallerMayCreateShare, buildActionsSummary, checkShareManagePermission, dispatchShareNotificationAfterSave, loadModule, parseConversationDetailComplete
|
|
57969
58124
|
|
|
57970
58125
|
// EXTERNAL MODULE: ../../MJCore/dist/index.js + 88 modules
|
|
57971
58126
|
var dist = __webpack_require__(752);
|
|
@@ -62890,7 +63045,7 @@ function _regenerator(){/*! regenerator-runtime -- Copyright (c) 2014-present, F
|
|
|
62890
63045
|
* zod schema definition for the entity MJ: Open App Install Histories
|
|
62891
63046
|
*/var MJOpenAppInstallHistorySchema=z.object({ID:z.string().describe("\n * * Field Name: ID\n * * Display Name: ID\n * * SQL Data Type: uniqueidentifier\n * * Default Value: newsequentialid()"),OpenAppID:z.string().describe("\n * * Field Name: OpenAppID\n * * Display Name: Open App ID\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: Open Apps (vwOpenApps.ID)"),Version:z.string().describe("\n * * Field Name: Version\n * * Display Name: Version\n * * SQL Data Type: nvarchar(50)\n * * Description: Semver version that was installed or upgraded to in this operation"),PreviousVersion:z.string().nullable().describe("\n * * Field Name: PreviousVersion\n * * Display Name: Previous Version\n * * SQL Data Type: nvarchar(50)\n * * Description: Version that was installed before this operation (NULL for initial installs)"),Action:z.union([z.literal('Install'),z.literal('Remove'),z.literal('Upgrade')]).describe("\n * * Field Name: Action\n * * Display Name: Action\n * * SQL Data Type: nvarchar(20)\n * * Value List Type: List\n * * Possible Values \n * * Install\n * * Remove\n * * Upgrade\n * * Description: Type of operation performed: Install, Upgrade, or Remove"),ManifestJSON:z.string().describe("\n * * Field Name: ManifestJSON\n * * Display Name: Manifest JSON\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Snapshot of the mj-app.json manifest at the time of this operation"),Summary:z.string().nullable().describe("\n * * Field Name: Summary\n * * Display Name: Summary\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Human-readable summary of what happened during this operation"),ExecutedByUserID:z.string().describe("\n * * Field Name: ExecutedByUserID\n * * Display Name: Executed By User ID\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: Users (vwUsers.ID)"),DurationSeconds:z.number().nullable().describe("\n * * Field Name: DurationSeconds\n * * Display Name: Duration Seconds\n * * SQL Data Type: int\n * * Description: Total wall-clock seconds the operation took to complete"),StartedAt:z.date().nullable().describe("\n * * Field Name: StartedAt\n * * Display Name: Started At\n * * SQL Data Type: datetimeoffset\n * * Description: Timestamp when the operation began"),EndedAt:z.date().nullable().describe("\n * * Field Name: EndedAt\n * * Display Name: Ended At\n * * SQL Data Type: datetimeoffset\n * * Description: Timestamp when the operation completed (success or failure)"),Success:z.boolean().describe("\n * * Field Name: Success\n * * Display Name: Success\n * * SQL Data Type: bit\n * * Default Value: 1\n * * Description: Whether the operation completed successfully (1) or failed (0)"),ErrorMessage:z.string().nullable().describe("\n * * Field Name: ErrorMessage\n * * Display Name: Error Message\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Detailed error message if the operation failed"),ErrorPhase:z.union([z.literal('Config'),z.literal('Hooks'),z.literal('Migration'),z.literal('Packages'),z.literal('Record'),z.literal('Schema')]).nullable().describe("\n * * Field Name: ErrorPhase\n * * Display Name: Error Phase\n * * SQL Data Type: nvarchar(50)\n * * Value List Type: List\n * * Possible Values \n * * Config\n * * Hooks\n * * Migration\n * * Packages\n * * Record\n * * Schema\n * * Description: Which phase of the operation failed: Schema, Migration, Packages, Config, Hooks, or Record"),__mj_CreatedAt:z.date().describe("\n * * Field Name: __mj_CreatedAt\n * * Display Name: Created At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),__mj_UpdatedAt:z.date().describe("\n * * Field Name: __mj_UpdatedAt\n * * Display Name: Updated At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),OpenApp:z.string().describe("\n * * Field Name: OpenApp\n * * Display Name: Open App\n * * SQL Data Type: nvarchar(64)"),ExecutedByUser:z.string().describe("\n * * Field Name: ExecutedByUser\n * * Display Name: Executed By User\n * * SQL Data Type: nvarchar(100)")});/**
|
|
62892
63047
|
* zod schema definition for the entity MJ: Open Apps
|
|
62893
|
-
*/var MJOpenAppSchema=z.object({ID:z.string().describe("\n * * Field Name: ID\n * * Display Name: ID\n * * SQL Data Type: uniqueidentifier\n * * Default Value: newsequentialid()"),Name:z.string().describe("\n * * Field Name: Name\n * * Display Name: App Name\n * * SQL Data Type: nvarchar(64)\n * * Description: Unique lowercase identifier for the app (e.g. acme-crm). Must contain only lowercase letters, digits, and hyphens."),DisplayName:z.string().describe("\n * * Field Name: DisplayName\n * * Display Name: Display Name\n * * SQL Data Type: nvarchar(200)\n * * Description: Human-readable display name shown in the UI (e.g. Acme CRM)"),Description:z.string().nullable().describe("\n * * Field Name: Description\n * * Display Name: Description\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Optional long description of what this app does"),Version:z.string().describe("\n * * Field Name: Version\n * * Display Name: Version\n * * SQL Data Type: nvarchar(50)\n * * Description: Currently installed semver version string (e.g. 1.2.3)"),Publisher:z.string().describe("\n * * Field Name: Publisher\n * * Display Name: Publisher\n * * SQL Data Type: nvarchar(200)\n * * Description: Name of the organization or individual who published the app"),PublisherEmail:z.string().nullable().describe("\n * * Field Name: PublisherEmail\n * * Display Name: Publisher Email\n * * SQL Data Type: nvarchar(255)\n * * Description: Optional contact email for the publisher"),PublisherURL:z.string().nullable().describe("\n * * Field Name: PublisherURL\n * * Display Name: Publisher URL\n * * SQL Data Type: nvarchar(500)\n * * Description: Optional website URL for the publisher"),RepositoryURL:z.string().describe("\n * * Field Name: RepositoryURL\n * * Display Name: Repository URL\n * * SQL Data Type: nvarchar(500)\n * * Description: GitHub repository URL where this app is hosted"),SchemaName:z.string().nullable().describe("\n * * Field Name: SchemaName\n * * Display Name: Schema Name\n * * SQL Data Type: nvarchar(128)\n * * Description: Database schema name used by this app for its tables and objects. Unique per instance."),MJVersionRange:z.string().describe("\n * * Field Name: MJVersionRange\n * * Display Name: MJ Version Range\n * * SQL Data Type: nvarchar(100)\n * * Description: Semver range specifying which MJ versions this app is compatible with (e.g. >=4.0.0 <5.0.0)"),License:z.string().nullable().describe("\n * * Field Name: License\n * * Display Name: License\n * * SQL Data Type: nvarchar(50)\n * * Description: SPDX license identifier for this app (e.g. MIT, Apache-2.0)"),Icon:z.string().nullable().describe("\n * * Field Name: Icon\n * * Display Name: Icon\n * * SQL Data Type: nvarchar(100)\n * * Description: Optional icon identifier (e.g. Font Awesome class) for UI display"),Color:z.string().nullable().describe("\n * * Field Name: Color\n * * Display Name: Color\n * * SQL Data Type: nvarchar(20)\n * * Description: Optional hex color code for branding in the UI (e.g. #FF5733)"),ManifestJSON:z.string().describe("\n * * Field Name: ManifestJSON\n * * Display Name: Manifest\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Full mj-app.json manifest stored as JSON for the currently installed version"),ConfigurationSchemaJSON:z.string().nullable().describe("\n * * Field Name: ConfigurationSchemaJSON\n * * Display Name: Configuration Schema\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Optional JSON Schema defining the configuration options this app accepts"),InstalledByUserID:z.string().describe("\n * * Field Name: InstalledByUserID\n * * Display Name: Installed By User ID\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: Users (vwUsers.ID)"),Status:z.union([z.literal('Active'),z.literal('Disabled'),z.literal('Error'),z.literal('Installing'),z.literal('Removed'),z.literal('Removing'),z.literal('Upgrading')]).describe("\n * * Field Name: Status\n * * Display Name: Status\n * * SQL Data Type: nvarchar(20)\n * * Default Value: Active\n * * Value List Type: List\n * * Possible Values \n * * Active\n * * Disabled\n * * Error\n * * Installing\n * * Removed\n * * Removing\n * * Upgrading\n * * Description: Current lifecycle status of the app: Active, Disabled, Error, Installing, Upgrading, Removing, or Removed"),__mj_CreatedAt:z.date().describe("\n * * Field Name: __mj_CreatedAt\n * * Display Name: Created At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),__mj_UpdatedAt:z.date().describe("\n * * Field Name: __mj_UpdatedAt\n * * Display Name: Updated At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),Subpath:z.string().nullable().describe("\n * * Field Name: Subpath\n * * Display Name: Subpath\n * * SQL Data Type: nvarchar(500)\n * * Description: In-repo subdirectory the app was installed from for multi-app repositories (e.g. 'CRM/HubSpot'). NULL when the app's mj-app.json is at the repository root."),InstalledByUser:z.string().describe("\n * * Field Name: InstalledByUser\n * * Display Name: Installed By User\n * * SQL Data Type: nvarchar(100)")});/**
|
|
63048
|
+
*/var MJOpenAppSchema=z.object({ID:z.string().describe("\n * * Field Name: ID\n * * Display Name: ID\n * * SQL Data Type: uniqueidentifier\n * * Default Value: newsequentialid()"),Name:z.string().describe("\n * * Field Name: Name\n * * Display Name: App Name\n * * SQL Data Type: nvarchar(64)\n * * Description: Unique lowercase identifier for the app (e.g. acme-crm). Must contain only lowercase letters, digits, and hyphens."),DisplayName:z.string().describe("\n * * Field Name: DisplayName\n * * Display Name: Display Name\n * * SQL Data Type: nvarchar(200)\n * * Description: Human-readable display name shown in the UI (e.g. Acme CRM)"),Description:z.string().nullable().describe("\n * * Field Name: Description\n * * Display Name: Description\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Optional long description of what this app does"),Version:z.string().describe("\n * * Field Name: Version\n * * Display Name: Version\n * * SQL Data Type: nvarchar(50)\n * * Description: Currently installed semver version string (e.g. 1.2.3)"),Publisher:z.string().describe("\n * * Field Name: Publisher\n * * Display Name: Publisher\n * * SQL Data Type: nvarchar(200)\n * * Description: Name of the organization or individual who published the app"),PublisherEmail:z.string().nullable().describe("\n * * Field Name: PublisherEmail\n * * Display Name: Publisher Email\n * * SQL Data Type: nvarchar(255)\n * * Description: Optional contact email for the publisher"),PublisherURL:z.string().nullable().describe("\n * * Field Name: PublisherURL\n * * Display Name: Publisher URL\n * * SQL Data Type: nvarchar(500)\n * * Description: Optional website URL for the publisher"),RepositoryURL:z.string().describe("\n * * Field Name: RepositoryURL\n * * Display Name: Repository URL\n * * SQL Data Type: nvarchar(500)\n * * Description: GitHub repository URL where this app is hosted"),SchemaName:z.string().nullable().describe("\n * * Field Name: SchemaName\n * * Display Name: Schema Name\n * * SQL Data Type: nvarchar(128)\n * * Description: Database schema name used by this app for its tables and objects. Unique per instance."),MJVersionRange:z.string().describe("\n * * Field Name: MJVersionRange\n * * Display Name: MJ Version Range\n * * SQL Data Type: nvarchar(100)\n * * Description: Semver range specifying which MJ versions this app is compatible with (e.g. >=4.0.0 <5.0.0)"),License:z.string().nullable().describe("\n * * Field Name: License\n * * Display Name: License\n * * SQL Data Type: nvarchar(50)\n * * Description: SPDX license identifier for this app (e.g. MIT, Apache-2.0)"),Icon:z.string().nullable().describe("\n * * Field Name: Icon\n * * Display Name: Icon\n * * SQL Data Type: nvarchar(100)\n * * Description: Optional icon identifier (e.g. Font Awesome class) for UI display"),Color:z.string().nullable().describe("\n * * Field Name: Color\n * * Display Name: Color\n * * SQL Data Type: nvarchar(20)\n * * Description: Optional hex color code for branding in the UI (e.g. #FF5733)"),ManifestJSON:z.string().describe("\n * * Field Name: ManifestJSON\n * * Display Name: Manifest\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Full mj-app.json manifest stored as JSON for the currently installed version"),ConfigurationSchemaJSON:z.string().nullable().describe("\n * * Field Name: ConfigurationSchemaJSON\n * * Display Name: Configuration Schema\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Optional JSON Schema defining the configuration options this app accepts"),InstalledByUserID:z.string().describe("\n * * Field Name: InstalledByUserID\n * * Display Name: Installed By User ID\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: Users (vwUsers.ID)"),Status:z.union([z.literal('Active'),z.literal('Disabled'),z.literal('Error'),z.literal('Installing'),z.literal('Removed'),z.literal('Removing'),z.literal('Upgrading')]).describe("\n * * Field Name: Status\n * * Display Name: Status\n * * SQL Data Type: nvarchar(20)\n * * Default Value: Active\n * * Value List Type: List\n * * Possible Values \n * * Active\n * * Disabled\n * * Error\n * * Installing\n * * Removed\n * * Removing\n * * Upgrading\n * * Description: Current lifecycle status of the app: Active, Disabled, Error, Installing, Upgrading, Removing, or Removed"),__mj_CreatedAt:z.date().describe("\n * * Field Name: __mj_CreatedAt\n * * Display Name: Created At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),__mj_UpdatedAt:z.date().describe("\n * * Field Name: __mj_UpdatedAt\n * * Display Name: Updated At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),Subpath:z.string().nullable().describe("\n * * Field Name: Subpath\n * * Display Name: Subpath\n * * SQL Data Type: nvarchar(500)\n * * Description: In-repo subdirectory the app was installed from for multi-app repositories (e.g. 'CRM/HubSpot'). NULL when the app's mj-app.json is at the repository root."),LastCompletedStep:z.union([z.literal('AngularExcludesUpdated'),z.literal('ConfigUpdated'),z.literal('DbCleanupDone'),z.literal('DependenciesReplaced'),z.literal('FilesRemoved'),z.literal('Finalized'),z.literal('HooksRun'),z.literal('MigrationsApplied'),z.literal('PackagesInstalled'),z.literal('RecordCreated'),z.literal('RecordUpdated')]).nullable().describe("\n * * Field Name: LastCompletedStep\n * * Display Name: Last Completed Step\n * * SQL Data Type: nvarchar(50)\n * * Value List Type: List\n * * Possible Values\n * * AngularExcludesUpdated\n * * ConfigUpdated\n * * DbCleanupDone\n * * DependenciesReplaced\n * * FilesRemoved\n * * Finalized\n * * HooksRun\n * * MigrationsApplied\n * * PackagesInstalled\n * * RecordCreated\n * * RecordUpdated\n * * Description: The last install/upgrade/remove step that completed successfully for this app while Status is Installing, Upgrading, or Removing. Used to resume a crashed or failed operation from the correct point instead of restarting it entirely. Cleared (NULL) once the operation reaches a terminal state (Active/Disabled/Removed/Error)."),LastCompletedStepTargetVersion:z.string().nullable().describe("\n * * Field Name: LastCompletedStepTargetVersion\n * * Display Name: Last Completed Step Target Version\n * * SQL Data Type: nvarchar(20)\n * * Description: The version this app was being upgraded TO when LastCompletedStep was last written, for Upgrade only. A resume only trusts LastCompletedStep when this matches the version currently being requested \u2014 otherwise a checkpoint from an interrupted upgrade to a different version could wrongly skip steps for the new target. Cleared alongside LastCompletedStep."),InstalledByUser:z.string().describe("\n * * Field Name: InstalledByUser\n * * Display Name: Installed By User\n * * SQL Data Type: nvarchar(100)")});/**
|
|
62894
63049
|
* zod schema definition for the entity MJ: Output Delivery Types
|
|
62895
63050
|
*/var MJOutputDeliveryTypeSchema=z.object({ID:z.string().describe("\n * * Field Name: ID\n * * Display Name: ID\n * * SQL Data Type: uniqueidentifier\n * * Default Value: newsequentialid()"),Name:z.string().describe("\n * * Field Name: Name\n * * Display Name: Name\n * * SQL Data Type: nvarchar(255)"),Description:z.string().nullable().describe("\n * * Field Name: Description\n * * Display Name: Description\n * * SQL Data Type: nvarchar(MAX)"),__mj_CreatedAt:z.date().describe("\n * * Field Name: __mj_CreatedAt\n * * Display Name: Created At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),__mj_UpdatedAt:z.date().describe("\n * * Field Name: __mj_UpdatedAt\n * * Display Name: Updated At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()")});/**
|
|
62896
63051
|
* zod schema definition for the entity MJ: Output Format Types
|
|
@@ -62991,6 +63146,8 @@ function _regenerator(){/*! regenerator-runtime -- Copyright (c) 2014-present, F
|
|
|
62991
63146
|
*/var MJScheduledJobSchema=z.object({ID:z.string().describe("\n * * Field Name: ID\n * * Display Name: ID\n * * SQL Data Type: uniqueidentifier\n * * Default Value: newsequentialid()"),JobTypeID:z.string().describe("\n * * Field Name: JobTypeID\n * * Display Name: Job Type\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: Scheduled Job Types (vwScheduledJobTypes.ID)"),Name:z.string().describe("\n * * Field Name: Name\n * * Display Name: Name\n * * SQL Data Type: nvarchar(200)\n * * Description: Human-readable name for this scheduled job. Should clearly identify what the job does."),Description:z.string().nullable().describe("\n * * Field Name: Description\n * * Display Name: Description\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Detailed description of the job's purpose, what it does, and any important notes about its execution."),CronExpression:z.string().describe("\n * * Field Name: CronExpression\n * * Display Name: Cron Expression\n * * SQL Data Type: nvarchar(120)\n * * Description: Cron expression defining when the job should execute (e.g., \"0 30 9 * * MON-FRI\" for weekdays at 9:30 AM). Uses standard cron syntax with seconds precision."),Timezone:z.string().describe("\n * * Field Name: Timezone\n * * Display Name: Timezone\n * * SQL Data Type: nvarchar(64)\n * * Default Value: UTC\n * * Description: IANA timezone identifier for interpreting the cron expression (e.g., \"America/Chicago\", \"UTC\"). Ensures consistent scheduling across different server locations."),StartAt:z.date().nullable().describe("\n * * Field Name: StartAt\n * * Display Name: Start At\n * * SQL Data Type: datetimeoffset\n * * Description: Optional start date/time for when this schedule becomes active. Job will not execute before this time. NULL means active immediately upon creation."),EndAt:z.date().nullable().describe("\n * * Field Name: EndAt\n * * Display Name: End At\n * * SQL Data Type: datetimeoffset\n * * Description: Optional end date/time for when this schedule expires. Job will not execute after this time. NULL means no expiration."),Status:z.union([z.literal('Active'),z.literal('Disabled'),z.literal('Expired'),z.literal('Paused'),z.literal('Pending')]).describe("\n * * Field Name: Status\n * * Display Name: Status\n * * SQL Data Type: nvarchar(20)\n * * Default Value: Pending\n * * Value List Type: List\n * * Possible Values \n * * Active\n * * Disabled\n * * Expired\n * * Paused\n * * Pending\n * * Description: Current status of the schedule. Pending=created but not yet active, Active=currently running on schedule, Paused=temporarily stopped, Disabled=manually disabled, Expired=past EndAt date."),Configuration:z.string().nullable().describe("\n * * Field Name: Configuration\n * * Display Name: Configuration\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Job-type specific configuration stored as JSON. Schema is defined by the ScheduledJobType plugin. For Agents: includes AgentID, StartingPayload, InitialMessage, etc. For Actions: includes ActionID and parameter mappings."),OwnerUserID:z.string().nullable().describe("\n * * Field Name: OwnerUserID\n * * Display Name: Owner\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: Users (vwUsers.ID)\n * * Description: User who owns this schedule. Used as the execution context if no specific user is configured in the job-specific configuration."),LastRunAt:z.date().nullable().describe("\n * * Field Name: LastRunAt\n * * Display Name: Last Run At\n * * SQL Data Type: datetimeoffset\n * * Description: Timestamp of the most recent execution. Updated after each run. Used for monitoring and dashboard displays."),NextRunAt:z.date().nullable().describe("\n * * Field Name: NextRunAt\n * * Display Name: Next Run At\n * * SQL Data Type: datetimeoffset\n * * Description: Calculated timestamp of when this job should next execute based on the cron expression. Updated after each run. Used by scheduler to determine which jobs are due."),RunCount:z.number().describe("\n * * Field Name: RunCount\n * * Display Name: Run Count\n * * SQL Data Type: int\n * * Default Value: 0\n * * Description: Total number of times this schedule has been executed, including both successful and failed runs."),SuccessCount:z.number().describe("\n * * Field Name: SuccessCount\n * * Display Name: Success Count\n * * SQL Data Type: int\n * * Default Value: 0\n * * Description: Number of times this schedule has executed successfully (Success = true in ScheduledJobRun)."),FailureCount:z.number().describe("\n * * Field Name: FailureCount\n * * Display Name: Failure Count\n * * SQL Data Type: int\n * * Default Value: 0\n * * Description: Number of times this schedule has executed but failed (Success = false in ScheduledJobRun)."),NotifyOnSuccess:z.boolean().describe("\n * * Field Name: NotifyOnSuccess\n * * Display Name: Notify On Success\n * * SQL Data Type: bit\n * * Default Value: 0\n * * Description: Whether to send notifications when the job completes successfully."),NotifyOnFailure:z.boolean().describe("\n * * Field Name: NotifyOnFailure\n * * Display Name: Notify On Failure\n * * SQL Data Type: bit\n * * Default Value: 1\n * * Description: Whether to send notifications when the job fails. Defaults to true for alerting on failures."),NotifyUserID:z.string().nullable().describe("\n * * Field Name: NotifyUserID\n * * Display Name: Notify User\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: Users (vwUsers.ID)\n * * Description: User to notify about job execution results. If NULL and notifications are enabled, falls back to OwnerUserID."),NotifyViaEmail:z.boolean().describe("\n * * Field Name: NotifyViaEmail\n * * Display Name: Notify Via Email\n * * SQL Data Type: bit\n * * Default Value: 0\n * * Description: Whether to send email notifications. Requires NotifyOnSuccess or NotifyOnFailure to also be enabled."),NotifyViaInApp:z.boolean().describe("\n * * Field Name: NotifyViaInApp\n * * Display Name: Notify Via In-App\n * * SQL Data Type: bit\n * * Default Value: 1\n * * Description: Whether to send in-app notifications. Requires NotifyOnSuccess or NotifyOnFailure to also be enabled. Defaults to true."),LockToken:z.string().nullable().describe("\n * * Field Name: LockToken\n * * Display Name: Lock Token\n * * SQL Data Type: uniqueidentifier\n * * Description: Unique token used for distributed locking across multiple server instances. Set when a server claims the job for execution. Prevents duplicate executions in multi-server environments."),LockedAt:z.date().nullable().describe("\n * * Field Name: LockedAt\n * * Display Name: Locked At\n * * SQL Data Type: datetimeoffset\n * * Description: Timestamp when the lock was acquired. Used with ExpectedCompletionAt to detect stale locks from crashed server instances."),LockedByInstance:z.string().nullable().describe("\n * * Field Name: LockedByInstance\n * * Display Name: Locked By Instance\n * * SQL Data Type: nvarchar(255)\n * * Description: Identifier of the server instance that currently holds the lock (e.g., \"hostname-12345\"). Used for troubleshooting and monitoring which server is executing which job."),ExpectedCompletionAt:z.date().nullable().describe("\n * * Field Name: ExpectedCompletionAt\n * * Display Name: Expected Completion At\n * * SQL Data Type: datetimeoffset\n * * Description: Expected completion time for the current execution. If current time exceeds this and lock still exists, the lock is considered stale and can be claimed by another instance. Handles crashed server cleanup."),ConcurrencyMode:z.union([z.literal('Concurrent'),z.literal('Queue'),z.literal('Skip')]).describe("\n * * Field Name: ConcurrencyMode\n * * Display Name: Concurrency Mode\n * * SQL Data Type: nvarchar(20)\n * * Default Value: Skip\n * * Value List Type: List\n * * Possible Values \n * * Concurrent\n * * Queue\n * * Skip\n * * Description: Controls behavior when a new execution is scheduled while a previous execution is still running. Skip=do not start new execution (default), Queue=wait for current to finish then execute, Concurrent=allow multiple simultaneous executions."),__mj_CreatedAt:z.date().describe("\n * * Field Name: __mj_CreatedAt\n * * Display Name: Created At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),__mj_UpdatedAt:z.date().describe("\n * * Field Name: __mj_UpdatedAt\n * * Display Name: Updated At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),RunImmediatelyIfNeverRun:z.boolean().describe("\n * * Field Name: RunImmediatelyIfNeverRun\n * * Display Name: Run Immediately If Never Run\n * * SQL Data Type: bit\n * * Default Value: 0\n * * Description: When true AND LastRunAt IS NULL, the scheduler sets NextRunAt to now() instead of the next cron tick on initialization, so the job runs on the next polling cycle. Useful for newly-seeded jobs that should not wait up to a full cron interval before their first execution."),MaxRuntimeMinutes:z.number().nullable().describe("\n * * Field Name: MaxRuntimeMinutes\n * * Display Name: Max Runtime (Minutes)\n * * SQL Data Type: int\n * * Description: Optional per-job override for the acquire-time lock lease length, in minutes. When set and positive, the engine uses max(default lease, MaxRuntimeMinutes) as the initial ExpectedCompletionAt \u2014 so it only ever EXTENDS the default lease, never shrinks it. Intended for jobs whose work is a single long-running call that cannot heartbeat mid-flight (e.g. one slow synchronous action). Jobs that heartbeat via the plugin opt-in pattern do not need this. NULL = use the engine default lease (LeaseTimeoutMinutes). See plans/scheduled-job-engine-heartbeat-lease.md (GH #2749)."),JobType:z.string().describe("\n * * Field Name: JobType\n * * Display Name: Job Type Name\n * * SQL Data Type: nvarchar(100)"),OwnerUser:z.string().nullable().describe("\n * * Field Name: OwnerUser\n * * Display Name: Owner User Name\n * * SQL Data Type: nvarchar(100)"),NotifyUser:z.string().nullable().describe("\n * * Field Name: NotifyUser\n * * Display Name: Notify User Name\n * * SQL Data Type: nvarchar(100)")});/**
|
|
62992
63147
|
* zod schema definition for the entity MJ: Schema Info
|
|
62993
63148
|
*/var MJSchemaInfoSchema=z.object({ID:z.string().describe("\n * * Field Name: ID\n * * Display Name: ID\n * * SQL Data Type: uniqueidentifier\n * * Default Value: newsequentialid()"),SchemaName:z.string().describe("\n * * Field Name: SchemaName\n * * Display Name: Schema Name\n * * SQL Data Type: nvarchar(50)\n * * Description: The database schema this information applies to."),EntityIDMin:z.number().describe("\n * * Field Name: EntityIDMin\n * * Display Name: Entity ID Min\n * * SQL Data Type: int\n * * Description: Field EntityIDMin for entity Schema Info."),EntityIDMax:z.number().describe("\n * * Field Name: EntityIDMax\n * * Display Name: Entity ID Max\n * * SQL Data Type: int\n * * Description: Field EntityIDMax for entity Schema Info."),Comments:z.string().nullable().describe("\n * * Field Name: Comments\n * * Display Name: Comments\n * * SQL Data Type: nvarchar(MAX)"),__mj_CreatedAt:z.date().describe("\n * * Field Name: __mj_CreatedAt\n * * Display Name: Created At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),__mj_UpdatedAt:z.date().describe("\n * * Field Name: __mj_UpdatedAt\n * * Display Name: Updated At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),Description:z.string().nullable().describe("\n * * Field Name: Description\n * * Display Name: Description\n * * SQL Data Type: nvarchar(MAX)"),EntityNamePrefix:z.string().nullable().describe("\n * * Field Name: EntityNamePrefix\n * * Display Name: Entity Name Prefix\n * * SQL Data Type: nvarchar(25)\n * * Description: Optional prefix to prepend to entity names generated for this schema. For example, setting this to \"Committees: \" would result in entity names like \"Committees: Individuals\". Can be overridden by mj.config.cjs NameRulesBySchema settings."),EntityNameSuffix:z.string().nullable().describe("\n * * Field Name: EntityNameSuffix\n * * Display Name: Entity Name Suffix\n * * SQL Data Type: nvarchar(25)\n * * Description: Optional suffix to append to entity names generated for this schema. Can be overridden by mj.config.cjs NameRulesBySchema settings."),CanonicalSchemaName:z.string().nullable().describe("\n * * Field Name: CanonicalSchemaName\n * * Display Name: Canonical Schema Name\n * * SQL Data Type: nvarchar(50)\n * * Description: Case-stable canonical schema name, sourced from the app manifest (mj-app.json schema.name). Used in place of SchemaName when deriving the schema prefix for entity ClassName/CodeName and GraphQL type names, so that PostgreSQL installs \u2014 whose physical SchemaName is folded to lowercase \u2014 still produce PascalCase prefixes matching the published, hand-cased entity packages. NULL means \"no override\": the prefix falls back to SchemaName (every existing install, the core __mj schema, and SQL Server, where SchemaName is already canonical).")});/**
|
|
63149
|
+
* zod schema definition for the entity MJ: Scoped Prompt Configs
|
|
63150
|
+
*/var MJScopedPromptConfigSchema=z.object({ID:z.string().describe("\n * * Field Name: ID\n * * Display Name: ID\n * * SQL Data Type: uniqueidentifier\n * * Default Value: newsequentialid()"),PromptID:z.string().describe("\n * * Field Name: PromptID\n * * Display Name: Prompt\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: AI Prompts (vwAIPrompts.ID)\n * * Description: The AIPrompt whose run settings this row overrides."),Description:z.string().nullable().describe("\n * * Field Name: Description\n * * Display Name: Description\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Optional human-readable note about this override (authoring aid; not sent to the model)."),PrimaryScopeEntityID:z.string().nullable().describe("\n * * Field Name: PrimaryScopeEntityID\n * * Display Name: Primary Scope Entity ID\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: Entities (vwEntities.ID)"),PrimaryScopeRecordID:z.string().nullable().describe("\n * * Field Name: PrimaryScopeRecordID\n * * Display Name: Primary Scope Record ID\n * * SQL Data Type: nvarchar(100)\n * * Description: The record ID within the primary scope entity that this override is scoped to. NULL = global (applies regardless of scope). When set with empty SecondaryScopes, the override is primary-scope-only (e.g. org-level)."),SecondaryScopes:z.string().nullable().describe("\n * * Field Name: SecondaryScopes\n * * Display Name: Secondary Scopes\n * * SQL Data Type: nvarchar(MAX)\n * * Description: JSON object of additional scope dimensions (e.g. {\"ChannelID\":\"...\"}). Empty/NULL with PrimaryScopeRecordID set = primary-scope-only; populated = fully-scoped. Matched (cascading or strict) against the run's SecondaryScopes."),Status:z.union([z.literal('Active'),z.literal('Archived'),z.literal('Provisional')]).describe("\n * * Field Name: Status\n * * Display Name: Status\n * * SQL Data Type: nvarchar(20)\n * * Default Value: Active\n * * Value List Type: List\n * * Possible Values \n * * Active\n * * Archived\n * * Provisional\n * * Description: Lifecycle: Active (live), Provisional (staged; eligible but flaggable as not-yet-final), Archived (excluded from resolution). Only Active and Provisional are eligible for resolution."),Priority:z.number().describe("\n * * Field Name: Priority\n * * Display Name: Priority\n * * SQL Data Type: int\n * * Default Value: 0\n * * Description: Precedence / tie-break for resolution. Higher wins when two rows tie on scope specificity. Default 0."),ModelID:z.string().nullable().describe("\n * * Field Name: ModelID\n * * Display Name: Model ID\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: AI Models (vwAIModels.ID)\n * * Description: Optional model override for this scope. NULL = use the prompt's own model selection. Applied as AIPromptParams.override.modelId."),VendorID:z.string().nullable().describe("\n * * Field Name: VendorID\n * * Display Name: Vendor ID\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: AI Vendors (vwAIVendors.ID)\n * * Description: Optional vendor override paired with ModelID (which inference provider serves the model). NULL = let MJ pick. Applied as AIPromptParams.override.vendorId."),ConfigurationID:z.string().nullable().describe("\n * * Field Name: ConfigurationID\n * * Display Name: Configuration ID\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: AI Configurations (vwAIConfigurations.ID)\n * * Description: Optional AI Configuration (environment) override for this scope. NULL = inherit. Applied as AIPromptParams.configurationId."),Temperature:z.number().nullable().describe("\n * * Field Name: Temperature\n * * Display Name: Temperature\n * * SQL Data Type: decimal(3, 2)\n * * Description: Sampling temperature override. NULL = inherit the prompt default. Applied via AIPromptParams.additionalParameters."),TopP:z.number().nullable().describe("\n * * Field Name: TopP\n * * Display Name: Top P\n * * SQL Data Type: decimal(3, 2)\n * * Description: Nucleus-sampling (top-p) override. NULL = inherit. Applied via additionalParameters."),TopK:z.number().nullable().describe("\n * * Field Name: TopK\n * * Display Name: Top K\n * * SQL Data Type: int\n * * Description: Top-k sampling override. NULL = inherit. Applied via additionalParameters."),MinP:z.number().nullable().describe("\n * * Field Name: MinP\n * * Display Name: Min P\n * * SQL Data Type: decimal(3, 2)\n * * Description: Min-p sampling override. NULL = inherit. Applied via additionalParameters."),FrequencyPenalty:z.number().nullable().describe("\n * * Field Name: FrequencyPenalty\n * * Display Name: Frequency Penalty\n * * SQL Data Type: decimal(3, 2)\n * * Description: Frequency-penalty override. NULL = inherit. Applied via additionalParameters."),PresencePenalty:z.number().nullable().describe("\n * * Field Name: PresencePenalty\n * * Display Name: Presence Penalty\n * * SQL Data Type: decimal(3, 2)\n * * Description: Presence-penalty override. NULL = inherit. Applied via additionalParameters."),Seed:z.number().nullable().describe("\n * * Field Name: Seed\n * * Display Name: Seed\n * * SQL Data Type: int\n * * Description: Deterministic sampling seed override. NULL = inherit. Applied via additionalParameters."),StopSequences:z.string().nullable().describe("\n * * Field Name: StopSequences\n * * Display Name: Stop Sequences\n * * SQL Data Type: nvarchar(1000)\n * * Description: Comma-delimited stop sequences override. NULL = inherit. Applied via additionalParameters."),ResponseFormat:z.union([z.literal('Any'),z.literal('JSON'),z.literal('Markdown'),z.literal('ModelSpecific'),z.literal('Text')]).nullable().describe("\n * * Field Name: ResponseFormat\n * * Display Name: Response Format\n * * SQL Data Type: nvarchar(20)\n * * Value List Type: List\n * * Possible Values \n * * Any\n * * JSON\n * * Markdown\n * * ModelSpecific\n * * Text\n * * Description: Response-format override: Any, JSON, Markdown, ModelSpecific, or Text. NULL = inherit. Applied via additionalParameters."),EffortLevel:z.number().nullable().describe("\n * * Field Name: EffortLevel\n * * Display Name: Effort Level\n * * SQL Data Type: int\n * * Description: Reasoning/effort level override (1-100). NULL = inherit the prompt default. Applied as AIPromptParams.effortLevel."),__mj_CreatedAt:z.date().describe("\n * * Field Name: __mj_CreatedAt\n * * Display Name: Created At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),__mj_UpdatedAt:z.date().describe("\n * * Field Name: __mj_UpdatedAt\n * * Display Name: Updated At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),Prompt:z.string().describe("\n * * Field Name: Prompt\n * * Display Name: Prompt Name\n * * SQL Data Type: nvarchar(255)"),PrimaryScopeEntity:z.string().nullable().describe("\n * * Field Name: PrimaryScopeEntity\n * * Display Name: Primary Scope Entity\n * * SQL Data Type: nvarchar(255)"),Model:z.string().nullable().describe("\n * * Field Name: Model\n * * Display Name: Model\n * * SQL Data Type: nvarchar(50)"),Vendor:z.string().nullable().describe("\n * * Field Name: Vendor\n * * Display Name: Vendor\n * * SQL Data Type: nvarchar(50)"),Configuration:z.string().nullable().describe("\n * * Field Name: Configuration\n * * Display Name: Configuration\n * * SQL Data Type: nvarchar(100)")});/**
|
|
62994
63151
|
* zod schema definition for the entity MJ: Scoped Prompt Parts
|
|
62995
63152
|
*/var MJScopedPromptPartSchema=z.object({ID:z.string().describe("\n * * Field Name: ID\n * * Display Name: ID\n * * SQL Data Type: uniqueidentifier\n * * Default Value: newsequentialid()"),PromptID:z.string().describe("\n * * Field Name: PromptID\n * * Display Name: Prompt ID\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: AI Prompts (vwAIPrompts.ID)"),Name:z.string().describe("\n * * Field Name: Name\n * * Display Name: Name\n * * SQL Data Type: nvarchar(255)\n * * Description: Logical part name (e.g. Personality, Instructions). The OVERRIDE key: per Name within a PromptID, the most-specific scope wins. Distinct Names compose additively."),Role:z.union([z.literal('Assistant'),z.literal('System'),z.literal('User')]).describe("\n * * Field Name: Role\n * * Display Name: Role\n * * SQL Data Type: nvarchar(20)\n * * Default Value: System\n * * Value List Type: List\n * * Possible Values \n * * Assistant\n * * System\n * * User\n * * Description: Chat message role this part renders as: System, User, or Assistant. Drives role-faithful assembly (assembled messages drive the model directly, not flattened into one system blob)."),Sort:z.number().describe("\n * * Field Name: Sort\n * * Display Name: Sort\n * * SQL Data Type: int\n * * Default Value: 0\n * * Description: Final-assembly ordering (ASC). Controls this part's position in the assembled message list. Not used for specificity tie-breaking."),Text:z.string().describe("\n * * Field Name: Text\n * * Display Name: Text\n * * SQL Data Type: nvarchar(MAX)\n * * Description: The prompt-part text. May contain Nunjucks templating, rendered against the prompt's data context at execution time."),Description:z.string().nullable().describe("\n * * Field Name: Description\n * * Display Name: Description\n * * SQL Data Type: nvarchar(MAX)\n * * Description: Optional human-readable note about this part (authoring aid; not sent to the model)."),PrimaryScopeEntityID:z.string().nullable().describe("\n * * Field Name: PrimaryScopeEntityID\n * * Display Name: Primary Scope Entity ID\n * * SQL Data Type: uniqueidentifier\n * * Related Entity/Foreign Key: MJ: Entities (vwEntities.ID)"),PrimaryScopeRecordID:z.string().nullable().describe("\n * * Field Name: PrimaryScopeRecordID\n * * Display Name: Primary Scope Record ID\n * * SQL Data Type: nvarchar(100)\n * * Description: The record ID within the primary scope entity that this part is scoped to. NULL = global (applies regardless of scope). When set with empty SecondaryScopes, the part is primary-scope-only (e.g. org-level)."),SecondaryScopes:z.any().nullable().describe("\n * * Field Name: SecondaryScopes\n * * Display Name: Secondary Scopes\n * * SQL Data Type: nvarchar(MAX)\n * * JSON Type: MJScopedPromptPartEntity_IAISecondaryScopes\n * * Description: JSON object of additional scope dimensions (e.g. {\"ChannelID\":\"...\"}). Empty/NULL with PrimaryScopeRecordID set = primary-scope-only; populated = fully-scoped. Matched (cascading or strict) against the run's SecondaryScopes."),Status:z.union([z.literal('Active'),z.literal('Archived'),z.literal('Provisional')]).describe("\n * * Field Name: Status\n * * Display Name: Status\n * * SQL Data Type: nvarchar(20)\n * * Default Value: Active\n * * Value List Type: List\n * * Possible Values \n * * Active\n * * Archived\n * * Provisional\n * * Description: Lifecycle: Active (live), Provisional (staged; eligible but flaggable as not-yet-final), Archived (excluded from resolution). Only Active and Provisional are eligible for resolution."),MergeBehavior:z.union([z.literal('Append'),z.literal('Override')]).describe("\n * * Field Name: MergeBehavior\n * * Display Name: Merge Behavior\n * * SQL Data Type: nvarchar(20)\n * * Default Value: Override\n * * Value List Type: List\n * * Possible Values \n * * Append\n * * Override\n * * Description: Within a part Name, how this part combines with less-specific same-named parts: 'Override' (default) = the most-specific part replaces the others; 'Append' = all in-scope same-named parts are included additively (ordered by specificity then Priority then Sort). Read by the PromptComponentResolver."),Priority:z.number().describe("\n * * Field Name: Priority\n * * Display Name: Priority\n * * SQL Data Type: int\n * * Default Value: 0\n * * Description: Precedence / tie-break for resolution. Higher wins when two same-Name parts tie on scope specificity; also used as a secondary ordering key after Sort. Default 0."),__mj_CreatedAt:z.date().describe("\n * * Field Name: __mj_CreatedAt\n * * Display Name: Created At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),__mj_UpdatedAt:z.date().describe("\n * * Field Name: __mj_UpdatedAt\n * * Display Name: Updated At\n * * SQL Data Type: datetimeoffset\n * * Default Value: getutcdate()"),Prompt:z.string().describe("\n * * Field Name: Prompt\n * * Display Name: Prompt\n * * SQL Data Type: nvarchar(255)"),PrimaryScopeEntity:z.string().nullable().describe("\n * * Field Name: PrimaryScopeEntity\n * * Display Name: Primary Scope Entity\n * * SQL Data Type: nvarchar(255)")});/**
|
|
62996
63153
|
* zod schema definition for the entity MJ: Search Execution Logs
|
|
@@ -89954,6 +90111,29 @@ var regex=/^[a-z0-9-]+$/;if(this.Name!=null&&!regex.test(this.Name)){result.Erro
|
|
|
89954
90111
|
* * SQL Data Type: nvarchar(500)
|
|
89955
90112
|
* * Description: In-repo subdirectory the app was installed from for multi-app repositories (e.g. 'CRM/HubSpot'). NULL when the app's mj-app.json is at the repository root.
|
|
89956
90113
|
*/},{key:"Subpath",get:function get(){return this.Get('Subpath');},set:function set(value){this.Set('Subpath',value);}/**
|
|
90114
|
+
* * Field Name: LastCompletedStep
|
|
90115
|
+
* * Display Name: Last Completed Step
|
|
90116
|
+
* * SQL Data Type: nvarchar(50)
|
|
90117
|
+
* * Value List Type: List
|
|
90118
|
+
* * Possible Values
|
|
90119
|
+
* * AngularExcludesUpdated
|
|
90120
|
+
* * ConfigUpdated
|
|
90121
|
+
* * DbCleanupDone
|
|
90122
|
+
* * DependenciesReplaced
|
|
90123
|
+
* * FilesRemoved
|
|
90124
|
+
* * Finalized
|
|
90125
|
+
* * HooksRun
|
|
90126
|
+
* * MigrationsApplied
|
|
90127
|
+
* * PackagesInstalled
|
|
90128
|
+
* * RecordCreated
|
|
90129
|
+
* * RecordUpdated
|
|
90130
|
+
* * Description: The last install/upgrade/remove step that completed successfully for this app while Status is Installing, Upgrading, or Removing. Used to resume a crashed or failed operation from the correct point instead of restarting it entirely. Cleared (NULL) once the operation reaches a terminal state (Active/Disabled/Removed/Error).
|
|
90131
|
+
*/},{key:"LastCompletedStep",get:function get(){return this.Get('LastCompletedStep');},set:function set(value){this.Set('LastCompletedStep',value);}/**
|
|
90132
|
+
* * Field Name: LastCompletedStepTargetVersion
|
|
90133
|
+
* * Display Name: Last Completed Step Target Version
|
|
90134
|
+
* * SQL Data Type: nvarchar(20)
|
|
90135
|
+
* * Description: The version this app was being upgraded TO when LastCompletedStep was last written, for Upgrade only. A resume only trusts LastCompletedStep when this matches the version currently being requested — otherwise a checkpoint from an interrupted upgrade to a different version could wrongly skip steps for the new target. Cleared alongside LastCompletedStep.
|
|
90136
|
+
*/},{key:"LastCompletedStepTargetVersion",get:function get(){return this.Get('LastCompletedStepTargetVersion');},set:function set(value){this.Set('LastCompletedStepTargetVersion',value);}/**
|
|
89957
90137
|
* * Field Name: InstalledByUser
|
|
89958
90138
|
* * Display Name: Installed By User
|
|
89959
90139
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -94698,6 +94878,179 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94698
94878
|
* * SQL Data Type: nvarchar(50)
|
|
94699
94879
|
* * Description: Case-stable canonical schema name, sourced from the app manifest (mj-app.json schema.name). Used in place of SchemaName when deriving the schema prefix for entity ClassName/CodeName and GraphQL type names, so that PostgreSQL installs — whose physical SchemaName is folded to lowercase — still produce PascalCase prefixes matching the published, hand-cased entity packages. NULL means "no override": the prefix falls back to SchemaName (every existing install, the core __mj schema, and SQL Server, where SchemaName is already canonical).
|
|
94700
94880
|
*/},{key:"CanonicalSchemaName",get:function get(){return this.Get('CanonicalSchemaName');},set:function set(value){this.Set('CanonicalSchemaName',value);}}]);}(dist/* BaseEntity */.HCJ);MJSchemaInfoEntity=__decorate([(0,MJGlobal_dist/* RegisterClass */.Y5)(dist/* BaseEntity */.HCJ,'MJ: Schema Info')],MJSchemaInfoEntity);/**
|
|
94881
|
+
* MJ: Scoped Prompt Configs - strongly typed entity sub-class
|
|
94882
|
+
* * Schema: __mj
|
|
94883
|
+
* * Base Table: ScopedPromptConfig
|
|
94884
|
+
* * Base View: vwScopedPromptConfigs
|
|
94885
|
+
* * @description A scope-aware override of an AIPrompt's RUN SETTINGS (model/vendor, AI configuration, sampling knobs, response format, effort level). The run-settings sibling of ScopedPromptPart. Narrowed by a polymorphic scope (PrimaryScopeEntity/Record + SecondaryScopes). Resolved by a cached engine via a specificity cascade per PromptID — the most-specific in-scope row wins as a whole row (tie-broken by Priority); each non-null column overrides the prompt default, a NULL column inherits it. Runtime-explicit overrides on the agent run still win. Lets any MJ app tune model/generation behavior per scope by editing rows, not code.
|
|
94886
|
+
* * Primary Key: ID
|
|
94887
|
+
* @extends {BaseEntity}
|
|
94888
|
+
* @class
|
|
94889
|
+
* @public
|
|
94890
|
+
*/var MJScopedPromptConfigEntity=/*#__PURE__*/function(_BaseEntity304){function MJScopedPromptConfigEntity(){_classCallCheck(this,MJScopedPromptConfigEntity);return _callSuper(this,MJScopedPromptConfigEntity,arguments);}_inherits(MJScopedPromptConfigEntity,_BaseEntity304);return _createClass(MJScopedPromptConfigEntity,[{key:"Load",value:(/**
|
|
94891
|
+
* Loads the MJ: Scoped Prompt Configs record from the database
|
|
94892
|
+
* @param ID: string - primary key value to load the MJ: Scoped Prompt Configs record.
|
|
94893
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
94894
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
94895
|
+
* @public
|
|
94896
|
+
* @async
|
|
94897
|
+
* @memberof MJScopedPromptConfigEntity
|
|
94898
|
+
* @method
|
|
94899
|
+
* @override
|
|
94900
|
+
*/function(){var _Load304=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee321(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context321){while(1)switch(_context321.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context321.n=1;return _superPropGet(MJScopedPromptConfigEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context321.a(2,_context321.v);}},_callee321,this);}));function Load(_x626,_x627){return _Load304.apply(this,arguments);}return Load;}()/**
|
|
94901
|
+
* * Field Name: ID
|
|
94902
|
+
* * Display Name: ID
|
|
94903
|
+
* * SQL Data Type: uniqueidentifier
|
|
94904
|
+
* * Default Value: newsequentialid()
|
|
94905
|
+
*/)},{key:"ID",get:function get(){return this.Get('ID');},set:function set(value){this.Set('ID',value);}/**
|
|
94906
|
+
* * Field Name: PromptID
|
|
94907
|
+
* * Display Name: Prompt
|
|
94908
|
+
* * SQL Data Type: uniqueidentifier
|
|
94909
|
+
* * Related Entity/Foreign Key: MJ: AI Prompts (vwAIPrompts.ID)
|
|
94910
|
+
* * Description: The AIPrompt whose run settings this row overrides.
|
|
94911
|
+
*/},{key:"PromptID",get:function get(){return this.Get('PromptID');},set:function set(value){this.Set('PromptID',value);}/**
|
|
94912
|
+
* * Field Name: Description
|
|
94913
|
+
* * Display Name: Description
|
|
94914
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
94915
|
+
* * Description: Optional human-readable note about this override (authoring aid; not sent to the model).
|
|
94916
|
+
*/},{key:"Description",get:function get(){return this.Get('Description');},set:function set(value){this.Set('Description',value);}/**
|
|
94917
|
+
* * Field Name: PrimaryScopeEntityID
|
|
94918
|
+
* * Display Name: Primary Scope Entity ID
|
|
94919
|
+
* * SQL Data Type: uniqueidentifier
|
|
94920
|
+
* * Related Entity/Foreign Key: MJ: Entities (vwEntities.ID)
|
|
94921
|
+
*/},{key:"PrimaryScopeEntityID",get:function get(){return this.Get('PrimaryScopeEntityID');},set:function set(value){this.Set('PrimaryScopeEntityID',value);}/**
|
|
94922
|
+
* * Field Name: PrimaryScopeRecordID
|
|
94923
|
+
* * Display Name: Primary Scope Record ID
|
|
94924
|
+
* * SQL Data Type: nvarchar(100)
|
|
94925
|
+
* * Description: The record ID within the primary scope entity that this override is scoped to. NULL = global (applies regardless of scope). When set with empty SecondaryScopes, the override is primary-scope-only (e.g. org-level).
|
|
94926
|
+
*/},{key:"PrimaryScopeRecordID",get:function get(){return this.Get('PrimaryScopeRecordID');},set:function set(value){this.Set('PrimaryScopeRecordID',value);}/**
|
|
94927
|
+
* * Field Name: SecondaryScopes
|
|
94928
|
+
* * Display Name: Secondary Scopes
|
|
94929
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
94930
|
+
* * Description: JSON object of additional scope dimensions (e.g. {"ChannelID":"..."}). Empty/NULL with PrimaryScopeRecordID set = primary-scope-only; populated = fully-scoped. Matched (cascading or strict) against the run's SecondaryScopes.
|
|
94931
|
+
*/},{key:"SecondaryScopes",get:function get(){return this.Get('SecondaryScopes');},set:function set(value){this.Set('SecondaryScopes',value);}/**
|
|
94932
|
+
* * Field Name: Status
|
|
94933
|
+
* * Display Name: Status
|
|
94934
|
+
* * SQL Data Type: nvarchar(20)
|
|
94935
|
+
* * Default Value: Active
|
|
94936
|
+
* * Value List Type: List
|
|
94937
|
+
* * Possible Values
|
|
94938
|
+
* * Active
|
|
94939
|
+
* * Archived
|
|
94940
|
+
* * Provisional
|
|
94941
|
+
* * Description: Lifecycle: Active (live), Provisional (staged; eligible but flaggable as not-yet-final), Archived (excluded from resolution). Only Active and Provisional are eligible for resolution.
|
|
94942
|
+
*/},{key:"Status",get:function get(){return this.Get('Status');},set:function set(value){this.Set('Status',value);}/**
|
|
94943
|
+
* * Field Name: Priority
|
|
94944
|
+
* * Display Name: Priority
|
|
94945
|
+
* * SQL Data Type: int
|
|
94946
|
+
* * Default Value: 0
|
|
94947
|
+
* * Description: Precedence / tie-break for resolution. Higher wins when two rows tie on scope specificity. Default 0.
|
|
94948
|
+
*/},{key:"Priority",get:function get(){return this.Get('Priority');},set:function set(value){this.Set('Priority',value);}/**
|
|
94949
|
+
* * Field Name: ModelID
|
|
94950
|
+
* * Display Name: Model ID
|
|
94951
|
+
* * SQL Data Type: uniqueidentifier
|
|
94952
|
+
* * Related Entity/Foreign Key: MJ: AI Models (vwAIModels.ID)
|
|
94953
|
+
* * Description: Optional model override for this scope. NULL = use the prompt's own model selection. Applied as AIPromptParams.override.modelId.
|
|
94954
|
+
*/},{key:"ModelID",get:function get(){return this.Get('ModelID');},set:function set(value){this.Set('ModelID',value);}/**
|
|
94955
|
+
* * Field Name: VendorID
|
|
94956
|
+
* * Display Name: Vendor ID
|
|
94957
|
+
* * SQL Data Type: uniqueidentifier
|
|
94958
|
+
* * Related Entity/Foreign Key: MJ: AI Vendors (vwAIVendors.ID)
|
|
94959
|
+
* * Description: Optional vendor override paired with ModelID (which inference provider serves the model). NULL = let MJ pick. Applied as AIPromptParams.override.vendorId.
|
|
94960
|
+
*/},{key:"VendorID",get:function get(){return this.Get('VendorID');},set:function set(value){this.Set('VendorID',value);}/**
|
|
94961
|
+
* * Field Name: ConfigurationID
|
|
94962
|
+
* * Display Name: Configuration ID
|
|
94963
|
+
* * SQL Data Type: uniqueidentifier
|
|
94964
|
+
* * Related Entity/Foreign Key: MJ: AI Configurations (vwAIConfigurations.ID)
|
|
94965
|
+
* * Description: Optional AI Configuration (environment) override for this scope. NULL = inherit. Applied as AIPromptParams.configurationId.
|
|
94966
|
+
*/},{key:"ConfigurationID",get:function get(){return this.Get('ConfigurationID');},set:function set(value){this.Set('ConfigurationID',value);}/**
|
|
94967
|
+
* * Field Name: Temperature
|
|
94968
|
+
* * Display Name: Temperature
|
|
94969
|
+
* * SQL Data Type: decimal(3, 2)
|
|
94970
|
+
* * Description: Sampling temperature override. NULL = inherit the prompt default. Applied via AIPromptParams.additionalParameters.
|
|
94971
|
+
*/},{key:"Temperature",get:function get(){return this.Get('Temperature');},set:function set(value){this.Set('Temperature',value);}/**
|
|
94972
|
+
* * Field Name: TopP
|
|
94973
|
+
* * Display Name: Top P
|
|
94974
|
+
* * SQL Data Type: decimal(3, 2)
|
|
94975
|
+
* * Description: Nucleus-sampling (top-p) override. NULL = inherit. Applied via additionalParameters.
|
|
94976
|
+
*/},{key:"TopP",get:function get(){return this.Get('TopP');},set:function set(value){this.Set('TopP',value);}/**
|
|
94977
|
+
* * Field Name: TopK
|
|
94978
|
+
* * Display Name: Top K
|
|
94979
|
+
* * SQL Data Type: int
|
|
94980
|
+
* * Description: Top-k sampling override. NULL = inherit. Applied via additionalParameters.
|
|
94981
|
+
*/},{key:"TopK",get:function get(){return this.Get('TopK');},set:function set(value){this.Set('TopK',value);}/**
|
|
94982
|
+
* * Field Name: MinP
|
|
94983
|
+
* * Display Name: Min P
|
|
94984
|
+
* * SQL Data Type: decimal(3, 2)
|
|
94985
|
+
* * Description: Min-p sampling override. NULL = inherit. Applied via additionalParameters.
|
|
94986
|
+
*/},{key:"MinP",get:function get(){return this.Get('MinP');},set:function set(value){this.Set('MinP',value);}/**
|
|
94987
|
+
* * Field Name: FrequencyPenalty
|
|
94988
|
+
* * Display Name: Frequency Penalty
|
|
94989
|
+
* * SQL Data Type: decimal(3, 2)
|
|
94990
|
+
* * Description: Frequency-penalty override. NULL = inherit. Applied via additionalParameters.
|
|
94991
|
+
*/},{key:"FrequencyPenalty",get:function get(){return this.Get('FrequencyPenalty');},set:function set(value){this.Set('FrequencyPenalty',value);}/**
|
|
94992
|
+
* * Field Name: PresencePenalty
|
|
94993
|
+
* * Display Name: Presence Penalty
|
|
94994
|
+
* * SQL Data Type: decimal(3, 2)
|
|
94995
|
+
* * Description: Presence-penalty override. NULL = inherit. Applied via additionalParameters.
|
|
94996
|
+
*/},{key:"PresencePenalty",get:function get(){return this.Get('PresencePenalty');},set:function set(value){this.Set('PresencePenalty',value);}/**
|
|
94997
|
+
* * Field Name: Seed
|
|
94998
|
+
* * Display Name: Seed
|
|
94999
|
+
* * SQL Data Type: int
|
|
95000
|
+
* * Description: Deterministic sampling seed override. NULL = inherit. Applied via additionalParameters.
|
|
95001
|
+
*/},{key:"Seed",get:function get(){return this.Get('Seed');},set:function set(value){this.Set('Seed',value);}/**
|
|
95002
|
+
* * Field Name: StopSequences
|
|
95003
|
+
* * Display Name: Stop Sequences
|
|
95004
|
+
* * SQL Data Type: nvarchar(1000)
|
|
95005
|
+
* * Description: Comma-delimited stop sequences override. NULL = inherit. Applied via additionalParameters.
|
|
95006
|
+
*/},{key:"StopSequences",get:function get(){return this.Get('StopSequences');},set:function set(value){this.Set('StopSequences',value);}/**
|
|
95007
|
+
* * Field Name: ResponseFormat
|
|
95008
|
+
* * Display Name: Response Format
|
|
95009
|
+
* * SQL Data Type: nvarchar(20)
|
|
95010
|
+
* * Value List Type: List
|
|
95011
|
+
* * Possible Values
|
|
95012
|
+
* * Any
|
|
95013
|
+
* * JSON
|
|
95014
|
+
* * Markdown
|
|
95015
|
+
* * ModelSpecific
|
|
95016
|
+
* * Text
|
|
95017
|
+
* * Description: Response-format override: Any, JSON, Markdown, ModelSpecific, or Text. NULL = inherit. Applied via additionalParameters.
|
|
95018
|
+
*/},{key:"ResponseFormat",get:function get(){return this.Get('ResponseFormat');},set:function set(value){this.Set('ResponseFormat',value);}/**
|
|
95019
|
+
* * Field Name: EffortLevel
|
|
95020
|
+
* * Display Name: Effort Level
|
|
95021
|
+
* * SQL Data Type: int
|
|
95022
|
+
* * Description: Reasoning/effort level override (1-100). NULL = inherit the prompt default. Applied as AIPromptParams.effortLevel.
|
|
95023
|
+
*/},{key:"EffortLevel",get:function get(){return this.Get('EffortLevel');},set:function set(value){this.Set('EffortLevel',value);}/**
|
|
95024
|
+
* * Field Name: __mj_CreatedAt
|
|
95025
|
+
* * Display Name: Created At
|
|
95026
|
+
* * SQL Data Type: datetimeoffset
|
|
95027
|
+
* * Default Value: getutcdate()
|
|
95028
|
+
*/},{key:"__mj_CreatedAt",get:function get(){return this.Get('__mj_CreatedAt');}/**
|
|
95029
|
+
* * Field Name: __mj_UpdatedAt
|
|
95030
|
+
* * Display Name: Updated At
|
|
95031
|
+
* * SQL Data Type: datetimeoffset
|
|
95032
|
+
* * Default Value: getutcdate()
|
|
95033
|
+
*/},{key:"__mj_UpdatedAt",get:function get(){return this.Get('__mj_UpdatedAt');}/**
|
|
95034
|
+
* * Field Name: Prompt
|
|
95035
|
+
* * Display Name: Prompt Name
|
|
95036
|
+
* * SQL Data Type: nvarchar(255)
|
|
95037
|
+
*/},{key:"Prompt",get:function get(){return this.Get('Prompt');}/**
|
|
95038
|
+
* * Field Name: PrimaryScopeEntity
|
|
95039
|
+
* * Display Name: Primary Scope Entity
|
|
95040
|
+
* * SQL Data Type: nvarchar(255)
|
|
95041
|
+
*/},{key:"PrimaryScopeEntity",get:function get(){return this.Get('PrimaryScopeEntity');}/**
|
|
95042
|
+
* * Field Name: Model
|
|
95043
|
+
* * Display Name: Model
|
|
95044
|
+
* * SQL Data Type: nvarchar(50)
|
|
95045
|
+
*/},{key:"Model",get:function get(){return this.Get('Model');}/**
|
|
95046
|
+
* * Field Name: Vendor
|
|
95047
|
+
* * Display Name: Vendor
|
|
95048
|
+
* * SQL Data Type: nvarchar(50)
|
|
95049
|
+
*/},{key:"Vendor",get:function get(){return this.Get('Vendor');}/**
|
|
95050
|
+
* * Field Name: Configuration
|
|
95051
|
+
* * Display Name: Configuration
|
|
95052
|
+
* * SQL Data Type: nvarchar(100)
|
|
95053
|
+
*/},{key:"Configuration",get:function get(){return this.Get('Configuration');}}]);}(dist/* BaseEntity */.HCJ);MJScopedPromptConfigEntity=__decorate([(0,MJGlobal_dist/* RegisterClass */.Y5)(dist/* BaseEntity */.HCJ,'MJ: Scoped Prompt Configs')],MJScopedPromptConfigEntity);/**
|
|
94701
95054
|
* MJ: Scoped Prompt Parts - strongly typed entity sub-class
|
|
94702
95055
|
* * Schema: __mj
|
|
94703
95056
|
* * Base Table: ScopedPromptPart
|
|
@@ -94707,7 +95060,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94707
95060
|
* @extends {BaseEntity}
|
|
94708
95061
|
* @class
|
|
94709
95062
|
* @public
|
|
94710
|
-
*/var MJScopedPromptPartEntity=/*#__PURE__*/function(
|
|
95063
|
+
*/var MJScopedPromptPartEntity=/*#__PURE__*/function(_BaseEntity305){function MJScopedPromptPartEntity(){var _this12;_classCallCheck(this,MJScopedPromptPartEntity);_this12=_callSuper(this,MJScopedPromptPartEntity,arguments);_this12._SecondaryScopesObject_cached=undefined;_this12._SecondaryScopesObject_lastRaw=null;return _this12;}/**
|
|
94711
95064
|
* Loads the MJ: Scoped Prompt Parts record from the database
|
|
94712
95065
|
* @param ID: string - primary key value to load the MJ: Scoped Prompt Parts record.
|
|
94713
95066
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -94717,7 +95070,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94717
95070
|
* @memberof MJScopedPromptPartEntity
|
|
94718
95071
|
* @method
|
|
94719
95072
|
* @override
|
|
94720
|
-
*/_inherits(MJScopedPromptPartEntity,
|
|
95073
|
+
*/_inherits(MJScopedPromptPartEntity,_BaseEntity305);return _createClass(MJScopedPromptPartEntity,[{key:"Load",value:(function(){var _Load305=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee322(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context322){while(1)switch(_context322.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context322.n=1;return _superPropGet(MJScopedPromptPartEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context322.a(2,_context322.v);}},_callee322,this);}));function Load(_x628,_x629){return _Load305.apply(this,arguments);}return Load;}()/**
|
|
94721
95074
|
* * Field Name: ID
|
|
94722
95075
|
* * Display Name: ID
|
|
94723
95076
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -94833,7 +95186,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94833
95186
|
* @extends {BaseEntity}
|
|
94834
95187
|
* @class
|
|
94835
95188
|
* @public
|
|
94836
|
-
*/var MJSearchExecutionLogEntity=/*#__PURE__*/function(
|
|
95189
|
+
*/var MJSearchExecutionLogEntity=/*#__PURE__*/function(_BaseEntity306){function MJSearchExecutionLogEntity(){_classCallCheck(this,MJSearchExecutionLogEntity);return _callSuper(this,MJSearchExecutionLogEntity,arguments);}_inherits(MJSearchExecutionLogEntity,_BaseEntity306);return _createClass(MJSearchExecutionLogEntity,[{key:"Load",value:(/**
|
|
94837
95190
|
* Loads the MJ: Search Execution Logs record from the database
|
|
94838
95191
|
* @param ID: string - primary key value to load the MJ: Search Execution Logs record.
|
|
94839
95192
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -94843,7 +95196,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94843
95196
|
* @memberof MJSearchExecutionLogEntity
|
|
94844
95197
|
* @method
|
|
94845
95198
|
* @override
|
|
94846
|
-
*/function(){var
|
|
95199
|
+
*/function(){var _Load306=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee323(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context323){while(1)switch(_context323.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context323.n=1;return _superPropGet(MJSearchExecutionLogEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context323.a(2,_context323.v);}},_callee323,this);}));function Load(_x630,_x631){return _Load306.apply(this,arguments);}return Load;}()/**
|
|
94847
95200
|
* * Field Name: ID
|
|
94848
95201
|
* * Display Name: ID
|
|
94849
95202
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -94943,7 +95296,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94943
95296
|
* @extends {BaseEntity}
|
|
94944
95297
|
* @class
|
|
94945
95298
|
* @public
|
|
94946
|
-
*/var MJSearchProviderEntity=/*#__PURE__*/function(
|
|
95299
|
+
*/var MJSearchProviderEntity=/*#__PURE__*/function(_BaseEntity307){function MJSearchProviderEntity(){_classCallCheck(this,MJSearchProviderEntity);return _callSuper(this,MJSearchProviderEntity,arguments);}_inherits(MJSearchProviderEntity,_BaseEntity307);return _createClass(MJSearchProviderEntity,[{key:"Load",value:(/**
|
|
94947
95300
|
* Loads the MJ: Search Providers record from the database
|
|
94948
95301
|
* @param ID: string - primary key value to load the MJ: Search Providers record.
|
|
94949
95302
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -94953,7 +95306,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94953
95306
|
* @memberof MJSearchProviderEntity
|
|
94954
95307
|
* @method
|
|
94955
95308
|
* @override
|
|
94956
|
-
*/function(){var
|
|
95309
|
+
*/function(){var _Load307=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee324(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context324){while(1)switch(_context324.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context324.n=1;return _superPropGet(MJSearchProviderEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context324.a(2,_context324.v);}},_callee324,this);}));function Load(_x632,_x633){return _Load307.apply(this,arguments);}return Load;}()/**
|
|
94957
95310
|
* Validate() method override for MJ: Search Providers entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
94958
95311
|
* * Priority: The priority level must be a non-negative value (0 or greater) to ensure valid ordering and categorization of records.
|
|
94959
95312
|
* @public
|
|
@@ -95062,7 +95415,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
95062
95415
|
* @extends {BaseEntity}
|
|
95063
95416
|
* @class
|
|
95064
95417
|
* @public
|
|
95065
|
-
*/var MJSearchScopeEntityEntity=/*#__PURE__*/function(
|
|
95418
|
+
*/var MJSearchScopeEntityEntity=/*#__PURE__*/function(_BaseEntity308){function MJSearchScopeEntityEntity(){_classCallCheck(this,MJSearchScopeEntityEntity);return _callSuper(this,MJSearchScopeEntityEntity,arguments);}_inherits(MJSearchScopeEntityEntity,_BaseEntity308);return _createClass(MJSearchScopeEntityEntity,[{key:"Load",value:(/**
|
|
95066
95419
|
* Loads the MJ: Search Scope Entities record from the database
|
|
95067
95420
|
* @param ID: string - primary key value to load the MJ: Search Scope Entities record.
|
|
95068
95421
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95072,7 +95425,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
95072
95425
|
* @memberof MJSearchScopeEntityEntity
|
|
95073
95426
|
* @method
|
|
95074
95427
|
* @override
|
|
95075
|
-
*/function(){var
|
|
95428
|
+
*/function(){var _Load308=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee325(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context325){while(1)switch(_context325.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context325.n=1;return _superPropGet(MJSearchScopeEntityEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context325.a(2,_context325.v);}},_callee325,this);}));function Load(_x634,_x635){return _Load308.apply(this,arguments);}return Load;}()/**
|
|
95076
95429
|
* * Field Name: ID
|
|
95077
95430
|
* * Display Name: ID
|
|
95078
95431
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95125,7 +95478,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
95125
95478
|
* @extends {BaseEntity}
|
|
95126
95479
|
* @class
|
|
95127
95480
|
* @public
|
|
95128
|
-
*/var MJSearchScopeExternalIndexEntity=/*#__PURE__*/function(
|
|
95481
|
+
*/var MJSearchScopeExternalIndexEntity=/*#__PURE__*/function(_BaseEntity309){function MJSearchScopeExternalIndexEntity(){_classCallCheck(this,MJSearchScopeExternalIndexEntity);return _callSuper(this,MJSearchScopeExternalIndexEntity,arguments);}_inherits(MJSearchScopeExternalIndexEntity,_BaseEntity309);return _createClass(MJSearchScopeExternalIndexEntity,[{key:"Load",value:(/**
|
|
95129
95482
|
* Loads the MJ: Search Scope External Indexes record from the database
|
|
95130
95483
|
* @param ID: string - primary key value to load the MJ: Search Scope External Indexes record.
|
|
95131
95484
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95135,7 +95488,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
95135
95488
|
* @memberof MJSearchScopeExternalIndexEntity
|
|
95136
95489
|
* @method
|
|
95137
95490
|
* @override
|
|
95138
|
-
*/function(){var
|
|
95491
|
+
*/function(){var _Load309=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee326(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context326){while(1)switch(_context326.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context326.n=1;return _superPropGet(MJSearchScopeExternalIndexEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context326.a(2,_context326.v);}},_callee326,this);}));function Load(_x636,_x637){return _Load309.apply(this,arguments);}return Load;}()/**
|
|
95139
95492
|
* Validate() method override for MJ: Search Scope External Indexes entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
95140
95493
|
* * Table-Level: To ensure search functionality works correctly, vector-based indexes must have a Vector Index ID assigned, while all other index types must have an External Index Name specified.
|
|
95141
95494
|
* @public
|
|
@@ -95221,7 +95574,7 @@ if(this.IndexType!=='Vector'&&(this.ExternalIndexName==null||this.ExternalIndexN
|
|
|
95221
95574
|
* @extends {BaseEntity}
|
|
95222
95575
|
* @class
|
|
95223
95576
|
* @public
|
|
95224
|
-
*/var MJSearchScopePermissionEntity=/*#__PURE__*/function(
|
|
95577
|
+
*/var MJSearchScopePermissionEntity=/*#__PURE__*/function(_BaseEntity310){function MJSearchScopePermissionEntity(){_classCallCheck(this,MJSearchScopePermissionEntity);return _callSuper(this,MJSearchScopePermissionEntity,arguments);}_inherits(MJSearchScopePermissionEntity,_BaseEntity310);return _createClass(MJSearchScopePermissionEntity,[{key:"Load",value:(/**
|
|
95225
95578
|
* Loads the MJ: Search Scope Permissions record from the database
|
|
95226
95579
|
* @param ID: string - primary key value to load the MJ: Search Scope Permissions record.
|
|
95227
95580
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95231,7 +95584,7 @@ if(this.IndexType!=='Vector'&&(this.ExternalIndexName==null||this.ExternalIndexN
|
|
|
95231
95584
|
* @memberof MJSearchScopePermissionEntity
|
|
95232
95585
|
* @method
|
|
95233
95586
|
* @override
|
|
95234
|
-
*/function(){var
|
|
95587
|
+
*/function(){var _Load310=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee327(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context327){while(1)switch(_context327.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context327.n=1;return _superPropGet(MJSearchScopePermissionEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context327.a(2,_context327.v);}},_callee327,this);}));function Load(_x638,_x639){return _Load310.apply(this,arguments);}return Load;}()/**
|
|
95235
95588
|
* Validate() method override for MJ: Search Scope Permissions entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
95236
95589
|
* * Table-Level: Each record must be assigned to either a specific user or a specific role, but not both. This ensures that permissions or scopes are clearly defined for a single entity type and prevents ambiguous assignments.
|
|
95237
95590
|
* @public
|
|
@@ -95311,7 +95664,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95311
95664
|
* @extends {BaseEntity}
|
|
95312
95665
|
* @class
|
|
95313
95666
|
* @public
|
|
95314
|
-
*/var MJSearchScopeProviderEntity=/*#__PURE__*/function(
|
|
95667
|
+
*/var MJSearchScopeProviderEntity=/*#__PURE__*/function(_BaseEntity311){function MJSearchScopeProviderEntity(){_classCallCheck(this,MJSearchScopeProviderEntity);return _callSuper(this,MJSearchScopeProviderEntity,arguments);}_inherits(MJSearchScopeProviderEntity,_BaseEntity311);return _createClass(MJSearchScopeProviderEntity,[{key:"Load",value:(/**
|
|
95315
95668
|
* Loads the MJ: Search Scope Providers record from the database
|
|
95316
95669
|
* @param ID: string - primary key value to load the MJ: Search Scope Providers record.
|
|
95317
95670
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95321,7 +95674,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95321
95674
|
* @memberof MJSearchScopeProviderEntity
|
|
95322
95675
|
* @method
|
|
95323
95676
|
* @override
|
|
95324
|
-
*/function(){var
|
|
95677
|
+
*/function(){var _Load311=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee328(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context328){while(1)switch(_context328.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context328.n=1;return _superPropGet(MJSearchScopeProviderEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context328.a(2,_context328.v);}},_callee328,this);}));function Load(_x640,_x641){return _Load311.apply(this,arguments);}return Load;}()/**
|
|
95325
95678
|
* * Field Name: ID
|
|
95326
95679
|
* * Display Name: ID
|
|
95327
95680
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95390,7 +95743,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95390
95743
|
* @extends {BaseEntity}
|
|
95391
95744
|
* @class
|
|
95392
95745
|
* @public
|
|
95393
|
-
*/var MJSearchScopeStorageAccountEntity=/*#__PURE__*/function(
|
|
95746
|
+
*/var MJSearchScopeStorageAccountEntity=/*#__PURE__*/function(_BaseEntity312){function MJSearchScopeStorageAccountEntity(){_classCallCheck(this,MJSearchScopeStorageAccountEntity);return _callSuper(this,MJSearchScopeStorageAccountEntity,arguments);}_inherits(MJSearchScopeStorageAccountEntity,_BaseEntity312);return _createClass(MJSearchScopeStorageAccountEntity,[{key:"Load",value:(/**
|
|
95394
95747
|
* Loads the MJ: Search Scope Storage Accounts record from the database
|
|
95395
95748
|
* @param ID: string - primary key value to load the MJ: Search Scope Storage Accounts record.
|
|
95396
95749
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95400,7 +95753,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95400
95753
|
* @memberof MJSearchScopeStorageAccountEntity
|
|
95401
95754
|
* @method
|
|
95402
95755
|
* @override
|
|
95403
|
-
*/function(){var
|
|
95756
|
+
*/function(){var _Load312=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee329(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context329){while(1)switch(_context329.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context329.n=1;return _superPropGet(MJSearchScopeStorageAccountEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context329.a(2,_context329.v);}},_callee329,this);}));function Load(_x642,_x643){return _Load312.apply(this,arguments);}return Load;}()/**
|
|
95404
95757
|
* * Field Name: ID
|
|
95405
95758
|
* * Display Name: ID
|
|
95406
95759
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95448,7 +95801,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95448
95801
|
* @extends {BaseEntity}
|
|
95449
95802
|
* @class
|
|
95450
95803
|
* @public
|
|
95451
|
-
*/var MJSearchScopeTestQueryEntity=/*#__PURE__*/function(
|
|
95804
|
+
*/var MJSearchScopeTestQueryEntity=/*#__PURE__*/function(_BaseEntity313){function MJSearchScopeTestQueryEntity(){_classCallCheck(this,MJSearchScopeTestQueryEntity);return _callSuper(this,MJSearchScopeTestQueryEntity,arguments);}_inherits(MJSearchScopeTestQueryEntity,_BaseEntity313);return _createClass(MJSearchScopeTestQueryEntity,[{key:"Load",value:(/**
|
|
95452
95805
|
* Loads the MJ: Search Scope Test Queries record from the database
|
|
95453
95806
|
* @param ID: string - primary key value to load the MJ: Search Scope Test Queries record.
|
|
95454
95807
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95458,7 +95811,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95458
95811
|
* @memberof MJSearchScopeTestQueryEntity
|
|
95459
95812
|
* @method
|
|
95460
95813
|
* @override
|
|
95461
|
-
*/function(){var
|
|
95814
|
+
*/function(){var _Load313=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee330(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context330){while(1)switch(_context330.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context330.n=1;return _superPropGet(MJSearchScopeTestQueryEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context330.a(2,_context330.v);}},_callee330,this);}));function Load(_x644,_x645){return _Load313.apply(this,arguments);}return Load;}()/**
|
|
95462
95815
|
* * Field Name: ID
|
|
95463
95816
|
* * Display Name: ID
|
|
95464
95817
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95518,7 +95871,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95518
95871
|
* @extends {BaseEntity}
|
|
95519
95872
|
* @class
|
|
95520
95873
|
* @public
|
|
95521
|
-
*/var MJSearchScopeEntity=/*#__PURE__*/function(
|
|
95874
|
+
*/var MJSearchScopeEntity=/*#__PURE__*/function(_BaseEntity314){function MJSearchScopeEntity(){_classCallCheck(this,MJSearchScopeEntity);return _callSuper(this,MJSearchScopeEntity,arguments);}_inherits(MJSearchScopeEntity,_BaseEntity314);return _createClass(MJSearchScopeEntity,[{key:"Load",value:(/**
|
|
95522
95875
|
* Loads the MJ: Search Scopes record from the database
|
|
95523
95876
|
* @param ID: string - primary key value to load the MJ: Search Scopes record.
|
|
95524
95877
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95528,7 +95881,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95528
95881
|
* @memberof MJSearchScopeEntity
|
|
95529
95882
|
* @method
|
|
95530
95883
|
* @override
|
|
95531
|
-
*/function(){var
|
|
95884
|
+
*/function(){var _Load314=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee331(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context331){while(1)switch(_context331.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context331.n=1;return _superPropGet(MJSearchScopeEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context331.a(2,_context331.v);}},_callee331,this);}));function Load(_x646,_x647){return _Load314.apply(this,arguments);}return Load;}()/**
|
|
95532
95885
|
* * Field Name: ID
|
|
95533
95886
|
* * Display Name: ID
|
|
95534
95887
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95624,7 +95977,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95624
95977
|
* @extends {BaseEntity}
|
|
95625
95978
|
* @class
|
|
95626
95979
|
* @public
|
|
95627
|
-
*/var MJSignatureAccountEntity=/*#__PURE__*/function(
|
|
95980
|
+
*/var MJSignatureAccountEntity=/*#__PURE__*/function(_BaseEntity315){function MJSignatureAccountEntity(){_classCallCheck(this,MJSignatureAccountEntity);return _callSuper(this,MJSignatureAccountEntity,arguments);}_inherits(MJSignatureAccountEntity,_BaseEntity315);return _createClass(MJSignatureAccountEntity,[{key:"Load",value:(/**
|
|
95628
95981
|
* Loads the MJ: Signature Accounts record from the database
|
|
95629
95982
|
* @param ID: string - primary key value to load the MJ: Signature Accounts record.
|
|
95630
95983
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95634,7 +95987,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95634
95987
|
* @memberof MJSignatureAccountEntity
|
|
95635
95988
|
* @method
|
|
95636
95989
|
* @override
|
|
95637
|
-
*/function(){var
|
|
95990
|
+
*/function(){var _Load315=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee332(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context332){while(1)switch(_context332.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context332.n=1;return _superPropGet(MJSignatureAccountEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context332.a(2,_context332.v);}},_callee332,this);}));function Load(_x648,_x649){return _Load315.apply(this,arguments);}return Load;}()/**
|
|
95638
95991
|
* * Field Name: ID
|
|
95639
95992
|
* * Display Name: ID
|
|
95640
95993
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95717,7 +96070,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95717
96070
|
* @extends {BaseEntity}
|
|
95718
96071
|
* @class
|
|
95719
96072
|
* @public
|
|
95720
|
-
*/var MJSignatureProviderEntity=/*#__PURE__*/function(
|
|
96073
|
+
*/var MJSignatureProviderEntity=/*#__PURE__*/function(_BaseEntity316){function MJSignatureProviderEntity(){_classCallCheck(this,MJSignatureProviderEntity);return _callSuper(this,MJSignatureProviderEntity,arguments);}_inherits(MJSignatureProviderEntity,_BaseEntity316);return _createClass(MJSignatureProviderEntity,[{key:"Load",value:(/**
|
|
95721
96074
|
* Loads the MJ: Signature Providers record from the database
|
|
95722
96075
|
* @param ID: string - primary key value to load the MJ: Signature Providers record.
|
|
95723
96076
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95727,7 +96080,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95727
96080
|
* @memberof MJSignatureProviderEntity
|
|
95728
96081
|
* @method
|
|
95729
96082
|
* @override
|
|
95730
|
-
*/function(){var
|
|
96083
|
+
*/function(){var _Load316=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee333(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context333){while(1)switch(_context333.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context333.n=1;return _superPropGet(MJSignatureProviderEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context333.a(2,_context333.v);}},_callee333,this);}));function Load(_x650,_x651){return _Load316.apply(this,arguments);}return Load;}()/**
|
|
95731
96084
|
* * Field Name: ID
|
|
95732
96085
|
* * Display Name: ID
|
|
95733
96086
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95796,7 +96149,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95796
96149
|
* @extends {BaseEntity}
|
|
95797
96150
|
* @class
|
|
95798
96151
|
* @public
|
|
95799
|
-
*/var MJSignatureRequestDocumentEntity=/*#__PURE__*/function(
|
|
96152
|
+
*/var MJSignatureRequestDocumentEntity=/*#__PURE__*/function(_BaseEntity317){function MJSignatureRequestDocumentEntity(){_classCallCheck(this,MJSignatureRequestDocumentEntity);return _callSuper(this,MJSignatureRequestDocumentEntity,arguments);}_inherits(MJSignatureRequestDocumentEntity,_BaseEntity317);return _createClass(MJSignatureRequestDocumentEntity,[{key:"Load",value:(/**
|
|
95800
96153
|
* Loads the MJ: Signature Request Documents record from the database
|
|
95801
96154
|
* @param ID: string - primary key value to load the MJ: Signature Request Documents record.
|
|
95802
96155
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95806,7 +96159,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95806
96159
|
* @memberof MJSignatureRequestDocumentEntity
|
|
95807
96160
|
* @method
|
|
95808
96161
|
* @override
|
|
95809
|
-
*/function(){var
|
|
96162
|
+
*/function(){var _Load317=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee334(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context334){while(1)switch(_context334.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context334.n=1;return _superPropGet(MJSignatureRequestDocumentEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context334.a(2,_context334.v);}},_callee334,this);}));function Load(_x652,_x653){return _Load317.apply(this,arguments);}return Load;}()/**
|
|
95810
96163
|
* * Field Name: ID
|
|
95811
96164
|
* * Display Name: ID
|
|
95812
96165
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95878,7 +96231,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95878
96231
|
* @extends {BaseEntity}
|
|
95879
96232
|
* @class
|
|
95880
96233
|
* @public
|
|
95881
|
-
*/var MJSignatureRequestLogEntity=/*#__PURE__*/function(
|
|
96234
|
+
*/var MJSignatureRequestLogEntity=/*#__PURE__*/function(_BaseEntity318){function MJSignatureRequestLogEntity(){_classCallCheck(this,MJSignatureRequestLogEntity);return _callSuper(this,MJSignatureRequestLogEntity,arguments);}_inherits(MJSignatureRequestLogEntity,_BaseEntity318);return _createClass(MJSignatureRequestLogEntity,[{key:"Load",value:(/**
|
|
95882
96235
|
* Loads the MJ: Signature Request Logs record from the database
|
|
95883
96236
|
* @param ID: string - primary key value to load the MJ: Signature Request Logs record.
|
|
95884
96237
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95888,7 +96241,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95888
96241
|
* @memberof MJSignatureRequestLogEntity
|
|
95889
96242
|
* @method
|
|
95890
96243
|
* @override
|
|
95891
|
-
*/function(){var
|
|
96244
|
+
*/function(){var _Load318=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee335(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context335){while(1)switch(_context335.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context335.n=1;return _superPropGet(MJSignatureRequestLogEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context335.a(2,_context335.v);}},_callee335,this);}));function Load(_x654,_x655){return _Load318.apply(this,arguments);}return Load;}()/**
|
|
95892
96245
|
* * Field Name: ID
|
|
95893
96246
|
* * Display Name: ID
|
|
95894
96247
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95947,7 +96300,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95947
96300
|
* @extends {BaseEntity}
|
|
95948
96301
|
* @class
|
|
95949
96302
|
* @public
|
|
95950
|
-
*/var MJSignatureRequestRecipientEntity=/*#__PURE__*/function(
|
|
96303
|
+
*/var MJSignatureRequestRecipientEntity=/*#__PURE__*/function(_BaseEntity319){function MJSignatureRequestRecipientEntity(){_classCallCheck(this,MJSignatureRequestRecipientEntity);return _callSuper(this,MJSignatureRequestRecipientEntity,arguments);}_inherits(MJSignatureRequestRecipientEntity,_BaseEntity319);return _createClass(MJSignatureRequestRecipientEntity,[{key:"Load",value:(/**
|
|
95951
96304
|
* Loads the MJ: Signature Request Recipients record from the database
|
|
95952
96305
|
* @param ID: string - primary key value to load the MJ: Signature Request Recipients record.
|
|
95953
96306
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95957,7 +96310,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95957
96310
|
* @memberof MJSignatureRequestRecipientEntity
|
|
95958
96311
|
* @method
|
|
95959
96312
|
* @override
|
|
95960
|
-
*/function(){var
|
|
96313
|
+
*/function(){var _Load319=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee336(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context336){while(1)switch(_context336.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context336.n=1;return _superPropGet(MJSignatureRequestRecipientEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context336.a(2,_context336.v);}},_callee336,this);}));function Load(_x656,_x657){return _Load319.apply(this,arguments);}return Load;}()/**
|
|
95961
96314
|
* * Field Name: ID
|
|
95962
96315
|
* * Display Name: ID
|
|
95963
96316
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96034,7 +96387,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96034
96387
|
* @extends {BaseEntity}
|
|
96035
96388
|
* @class
|
|
96036
96389
|
* @public
|
|
96037
|
-
*/var MJSignatureRequestEntity=/*#__PURE__*/function(
|
|
96390
|
+
*/var MJSignatureRequestEntity=/*#__PURE__*/function(_BaseEntity320){function MJSignatureRequestEntity(){_classCallCheck(this,MJSignatureRequestEntity);return _callSuper(this,MJSignatureRequestEntity,arguments);}_inherits(MJSignatureRequestEntity,_BaseEntity320);return _createClass(MJSignatureRequestEntity,[{key:"Load",value:(/**
|
|
96038
96391
|
* Loads the MJ: Signature Requests record from the database
|
|
96039
96392
|
* @param ID: string - primary key value to load the MJ: Signature Requests record.
|
|
96040
96393
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96044,7 +96397,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96044
96397
|
* @memberof MJSignatureRequestEntity
|
|
96045
96398
|
* @method
|
|
96046
96399
|
* @override
|
|
96047
|
-
*/function(){var
|
|
96400
|
+
*/function(){var _Load320=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee337(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context337){while(1)switch(_context337.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context337.n=1;return _superPropGet(MJSignatureRequestEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context337.a(2,_context337.v);}},_callee337,this);}));function Load(_x658,_x659){return _Load320.apply(this,arguments);}return Load;}()/**
|
|
96048
96401
|
* * Field Name: ID
|
|
96049
96402
|
* * Display Name: ID
|
|
96050
96403
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96138,7 +96491,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96138
96491
|
* @extends {BaseEntity}
|
|
96139
96492
|
* @class
|
|
96140
96493
|
* @public
|
|
96141
|
-
*/var MJSkillEntity=/*#__PURE__*/function(
|
|
96494
|
+
*/var MJSkillEntity=/*#__PURE__*/function(_BaseEntity321){function MJSkillEntity(){_classCallCheck(this,MJSkillEntity);return _callSuper(this,MJSkillEntity,arguments);}_inherits(MJSkillEntity,_BaseEntity321);return _createClass(MJSkillEntity,[{key:"Load",value:(/**
|
|
96142
96495
|
* Loads the MJ: Skills record from the database
|
|
96143
96496
|
* @param ID: string - primary key value to load the MJ: Skills record.
|
|
96144
96497
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96148,7 +96501,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96148
96501
|
* @memberof MJSkillEntity
|
|
96149
96502
|
* @method
|
|
96150
96503
|
* @override
|
|
96151
|
-
*/function(){var
|
|
96504
|
+
*/function(){var _Load321=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee338(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context338){while(1)switch(_context338.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context338.n=1;return _superPropGet(MJSkillEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context338.a(2,_context338.v);}},_callee338,this);}));function Load(_x660,_x661){return _Load321.apply(this,arguments);}return Load;}()/**
|
|
96152
96505
|
* * Field Name: ID
|
|
96153
96506
|
* * SQL Data Type: uniqueidentifier
|
|
96154
96507
|
* * Default Value: newsequentialid()
|
|
@@ -96187,7 +96540,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96187
96540
|
* @extends {BaseEntity}
|
|
96188
96541
|
* @class
|
|
96189
96542
|
* @public
|
|
96190
|
-
*/var MJSQLDialectEntity=/*#__PURE__*/function(
|
|
96543
|
+
*/var MJSQLDialectEntity=/*#__PURE__*/function(_BaseEntity322){function MJSQLDialectEntity(){_classCallCheck(this,MJSQLDialectEntity);return _callSuper(this,MJSQLDialectEntity,arguments);}_inherits(MJSQLDialectEntity,_BaseEntity322);return _createClass(MJSQLDialectEntity,[{key:"Load",value:(/**
|
|
96191
96544
|
* Loads the MJ: SQL Dialects record from the database
|
|
96192
96545
|
* @param ID: string - primary key value to load the MJ: SQL Dialects record.
|
|
96193
96546
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96197,7 +96550,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96197
96550
|
* @memberof MJSQLDialectEntity
|
|
96198
96551
|
* @method
|
|
96199
96552
|
* @override
|
|
96200
|
-
*/function(){var
|
|
96553
|
+
*/function(){var _Load322=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee339(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context339){while(1)switch(_context339.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context339.n=1;return _superPropGet(MJSQLDialectEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context339.a(2,_context339.v);}},_callee339,this);}));function Load(_x662,_x663){return _Load322.apply(this,arguments);}return Load;}()/**
|
|
96201
96554
|
* * Field Name: ID
|
|
96202
96555
|
* * Display Name: ID
|
|
96203
96556
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96262,7 +96615,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96262
96615
|
* @extends {BaseEntity}
|
|
96263
96616
|
* @class
|
|
96264
96617
|
* @public
|
|
96265
|
-
*/var MJStateProvinceEntity=/*#__PURE__*/function(
|
|
96618
|
+
*/var MJStateProvinceEntity=/*#__PURE__*/function(_BaseEntity323){function MJStateProvinceEntity(){_classCallCheck(this,MJStateProvinceEntity);return _callSuper(this,MJStateProvinceEntity,arguments);}_inherits(MJStateProvinceEntity,_BaseEntity323);return _createClass(MJStateProvinceEntity,[{key:"Load",value:(/**
|
|
96266
96619
|
* Loads the MJ: State Provinces record from the database
|
|
96267
96620
|
* @param ID: string - primary key value to load the MJ: State Provinces record.
|
|
96268
96621
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96272,7 +96625,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96272
96625
|
* @memberof MJStateProvinceEntity
|
|
96273
96626
|
* @method
|
|
96274
96627
|
* @override
|
|
96275
|
-
*/function(){var
|
|
96628
|
+
*/function(){var _Load323=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee340(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context340){while(1)switch(_context340.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context340.n=1;return _superPropGet(MJStateProvinceEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context340.a(2,_context340.v);}},_callee340,this);}));function Load(_x664,_x665){return _Load323.apply(this,arguments);}return Load;}()/**
|
|
96276
96629
|
* * Field Name: ID
|
|
96277
96630
|
* * Display Name: ID
|
|
96278
96631
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96342,7 +96695,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96342
96695
|
* @extends {BaseEntity}
|
|
96343
96696
|
* @class
|
|
96344
96697
|
* @public
|
|
96345
|
-
*/var MJTagAuditLogEntity=/*#__PURE__*/function(
|
|
96698
|
+
*/var MJTagAuditLogEntity=/*#__PURE__*/function(_BaseEntity324){function MJTagAuditLogEntity(){_classCallCheck(this,MJTagAuditLogEntity);return _callSuper(this,MJTagAuditLogEntity,arguments);}_inherits(MJTagAuditLogEntity,_BaseEntity324);return _createClass(MJTagAuditLogEntity,[{key:"Load",value:(/**
|
|
96346
96699
|
* Loads the MJ: Tag Audit Logs record from the database
|
|
96347
96700
|
* @param ID: string - primary key value to load the MJ: Tag Audit Logs record.
|
|
96348
96701
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96352,7 +96705,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96352
96705
|
* @memberof MJTagAuditLogEntity
|
|
96353
96706
|
* @method
|
|
96354
96707
|
* @override
|
|
96355
|
-
*/function(){var
|
|
96708
|
+
*/function(){var _Load324=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee341(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context341){while(1)switch(_context341.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context341.n=1;return _superPropGet(MJTagAuditLogEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context341.a(2,_context341.v);}},_callee341,this);}));function Load(_x666,_x667){return _Load324.apply(this,arguments);}return Load;}()/**
|
|
96356
96709
|
* * Field Name: ID
|
|
96357
96710
|
* * Display Name: ID
|
|
96358
96711
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96428,7 +96781,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96428
96781
|
* @extends {BaseEntity}
|
|
96429
96782
|
* @class
|
|
96430
96783
|
* @public
|
|
96431
|
-
*/var MJTagCoOccurrenceEntity=/*#__PURE__*/function(
|
|
96784
|
+
*/var MJTagCoOccurrenceEntity=/*#__PURE__*/function(_BaseEntity325){function MJTagCoOccurrenceEntity(){_classCallCheck(this,MJTagCoOccurrenceEntity);return _callSuper(this,MJTagCoOccurrenceEntity,arguments);}_inherits(MJTagCoOccurrenceEntity,_BaseEntity325);return _createClass(MJTagCoOccurrenceEntity,[{key:"Load",value:(/**
|
|
96432
96785
|
* Loads the MJ: Tag Co Occurrences record from the database
|
|
96433
96786
|
* @param ID: string - primary key value to load the MJ: Tag Co Occurrences record.
|
|
96434
96787
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96438,7 +96791,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96438
96791
|
* @memberof MJTagCoOccurrenceEntity
|
|
96439
96792
|
* @method
|
|
96440
96793
|
* @override
|
|
96441
|
-
*/function(){var
|
|
96794
|
+
*/function(){var _Load325=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee342(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context342){while(1)switch(_context342.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context342.n=1;return _superPropGet(MJTagCoOccurrenceEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context342.a(2,_context342.v);}},_callee342,this);}));function Load(_x668,_x669){return _Load325.apply(this,arguments);}return Load;}()/**
|
|
96442
96795
|
* * Field Name: ID
|
|
96443
96796
|
* * Display Name: ID
|
|
96444
96797
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96493,7 +96846,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96493
96846
|
* @extends {BaseEntity}
|
|
96494
96847
|
* @class
|
|
96495
96848
|
* @public
|
|
96496
|
-
*/var MJTagScopeEntity=/*#__PURE__*/function(
|
|
96849
|
+
*/var MJTagScopeEntity=/*#__PURE__*/function(_BaseEntity326){function MJTagScopeEntity(){_classCallCheck(this,MJTagScopeEntity);return _callSuper(this,MJTagScopeEntity,arguments);}_inherits(MJTagScopeEntity,_BaseEntity326);return _createClass(MJTagScopeEntity,[{key:"Load",value:(/**
|
|
96497
96850
|
* Loads the MJ: Tag Scopes record from the database
|
|
96498
96851
|
* @param ID: string - primary key value to load the MJ: Tag Scopes record.
|
|
96499
96852
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96503,7 +96856,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96503
96856
|
* @memberof MJTagScopeEntity
|
|
96504
96857
|
* @method
|
|
96505
96858
|
* @override
|
|
96506
|
-
*/function(){var
|
|
96859
|
+
*/function(){var _Load326=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee343(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context343){while(1)switch(_context343.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context343.n=1;return _superPropGet(MJTagScopeEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context343.a(2,_context343.v);}},_callee343,this);}));function Load(_x670,_x671){return _Load326.apply(this,arguments);}return Load;}()/**
|
|
96507
96860
|
* * Field Name: ID
|
|
96508
96861
|
* * Display Name: ID
|
|
96509
96862
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96553,7 +96906,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96553
96906
|
* @extends {BaseEntity}
|
|
96554
96907
|
* @class
|
|
96555
96908
|
* @public
|
|
96556
|
-
*/var MJTagSuggestionEntity=/*#__PURE__*/function(
|
|
96909
|
+
*/var MJTagSuggestionEntity=/*#__PURE__*/function(_BaseEntity327){function MJTagSuggestionEntity(){_classCallCheck(this,MJTagSuggestionEntity);return _callSuper(this,MJTagSuggestionEntity,arguments);}_inherits(MJTagSuggestionEntity,_BaseEntity327);return _createClass(MJTagSuggestionEntity,[{key:"Load",value:(/**
|
|
96557
96910
|
* Loads the MJ: Tag Suggestions record from the database
|
|
96558
96911
|
* @param ID: string - primary key value to load the MJ: Tag Suggestions record.
|
|
96559
96912
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96563,7 +96916,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96563
96916
|
* @memberof MJTagSuggestionEntity
|
|
96564
96917
|
* @method
|
|
96565
96918
|
* @override
|
|
96566
|
-
*/function(){var
|
|
96919
|
+
*/function(){var _Load327=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee344(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context344){while(1)switch(_context344.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context344.n=1;return _superPropGet(MJTagSuggestionEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context344.a(2,_context344.v);}},_callee344,this);}));function Load(_x672,_x673){return _Load327.apply(this,arguments);}return Load;}()/**
|
|
96567
96920
|
* * Field Name: ID
|
|
96568
96921
|
* * Display Name: ID
|
|
96569
96922
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96690,7 +97043,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96690
97043
|
* @extends {BaseEntity}
|
|
96691
97044
|
* @class
|
|
96692
97045
|
* @public
|
|
96693
|
-
*/var MJTagSynonymEntity=/*#__PURE__*/function(
|
|
97046
|
+
*/var MJTagSynonymEntity=/*#__PURE__*/function(_BaseEntity328){function MJTagSynonymEntity(){_classCallCheck(this,MJTagSynonymEntity);return _callSuper(this,MJTagSynonymEntity,arguments);}_inherits(MJTagSynonymEntity,_BaseEntity328);return _createClass(MJTagSynonymEntity,[{key:"Load",value:(/**
|
|
96694
97047
|
* Loads the MJ: Tag Synonyms record from the database
|
|
96695
97048
|
* @param ID: string - primary key value to load the MJ: Tag Synonyms record.
|
|
96696
97049
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96700,7 +97053,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96700
97053
|
* @memberof MJTagSynonymEntity
|
|
96701
97054
|
* @method
|
|
96702
97055
|
* @override
|
|
96703
|
-
*/function(){var
|
|
97056
|
+
*/function(){var _Load328=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee345(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context345){while(1)switch(_context345.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context345.n=1;return _superPropGet(MJTagSynonymEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context345.a(2,_context345.v);}},_callee345,this);}));function Load(_x674,_x675){return _Load328.apply(this,arguments);}return Load;}()/**
|
|
96704
97057
|
* * Field Name: ID
|
|
96705
97058
|
* * Display Name: ID
|
|
96706
97059
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96763,7 +97116,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96763
97116
|
* @extends {BaseEntity}
|
|
96764
97117
|
* @class
|
|
96765
97118
|
* @public
|
|
96766
|
-
*/var MJTaggedItemEntity=/*#__PURE__*/function(
|
|
97119
|
+
*/var MJTaggedItemEntity=/*#__PURE__*/function(_BaseEntity329){function MJTaggedItemEntity(){_classCallCheck(this,MJTaggedItemEntity);return _callSuper(this,MJTaggedItemEntity,arguments);}_inherits(MJTaggedItemEntity,_BaseEntity329);return _createClass(MJTaggedItemEntity,[{key:"Load",value:(/**
|
|
96767
97120
|
* Loads the MJ: Tagged Items record from the database
|
|
96768
97121
|
* @param ID: string - primary key value to load the MJ: Tagged Items record.
|
|
96769
97122
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96773,7 +97126,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96773
97126
|
* @memberof MJTaggedItemEntity
|
|
96774
97127
|
* @method
|
|
96775
97128
|
* @override
|
|
96776
|
-
*/function(){var
|
|
97129
|
+
*/function(){var _Load329=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee346(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context346){while(1)switch(_context346.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context346.n=1;return _superPropGet(MJTaggedItemEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context346.a(2,_context346.v);}},_callee346,this);}));function Load(_x676,_x677){return _Load329.apply(this,arguments);}return Load;}()/**
|
|
96777
97130
|
* * Field Name: ID
|
|
96778
97131
|
* * Display Name: ID
|
|
96779
97132
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96827,7 +97180,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96827
97180
|
* @extends {BaseEntity}
|
|
96828
97181
|
* @class
|
|
96829
97182
|
* @public
|
|
96830
|
-
*/var MJTagEntity=/*#__PURE__*/function(
|
|
97183
|
+
*/var MJTagEntity=/*#__PURE__*/function(_BaseEntity330){function MJTagEntity(){_classCallCheck(this,MJTagEntity);return _callSuper(this,MJTagEntity,arguments);}_inherits(MJTagEntity,_BaseEntity330);return _createClass(MJTagEntity,[{key:"Load",value:(/**
|
|
96831
97184
|
* Loads the MJ: Tags record from the database
|
|
96832
97185
|
* @param ID: string - primary key value to load the MJ: Tags record.
|
|
96833
97186
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96837,7 +97190,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96837
97190
|
* @memberof MJTagEntity
|
|
96838
97191
|
* @method
|
|
96839
97192
|
* @override
|
|
96840
|
-
*/function(){var
|
|
97193
|
+
*/function(){var _Load330=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee347(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context347){while(1)switch(_context347.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context347.n=1;return _superPropGet(MJTagEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context347.a(2,_context347.v);}},_callee347,this);}));function Load(_x678,_x679){return _Load330.apply(this,arguments);}return Load;}()/**
|
|
96841
97194
|
* * Field Name: ID
|
|
96842
97195
|
* * Display Name: ID
|
|
96843
97196
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96968,7 +97321,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96968
97321
|
* @extends {BaseEntity}
|
|
96969
97322
|
* @class
|
|
96970
97323
|
* @public
|
|
96971
|
-
*/var MJTaskDependencyEntity=/*#__PURE__*/function(
|
|
97324
|
+
*/var MJTaskDependencyEntity=/*#__PURE__*/function(_BaseEntity331){function MJTaskDependencyEntity(){_classCallCheck(this,MJTaskDependencyEntity);return _callSuper(this,MJTaskDependencyEntity,arguments);}_inherits(MJTaskDependencyEntity,_BaseEntity331);return _createClass(MJTaskDependencyEntity,[{key:"Load",value:(/**
|
|
96972
97325
|
* Loads the MJ: Task Dependencies record from the database
|
|
96973
97326
|
* @param ID: string - primary key value to load the MJ: Task Dependencies record.
|
|
96974
97327
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96978,7 +97331,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96978
97331
|
* @memberof MJTaskDependencyEntity
|
|
96979
97332
|
* @method
|
|
96980
97333
|
* @override
|
|
96981
|
-
*/function(){var
|
|
97334
|
+
*/function(){var _Load331=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee348(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context348){while(1)switch(_context348.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context348.n=1;return _superPropGet(MJTaskDependencyEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context348.a(2,_context348.v);}},_callee348,this);}));function Load(_x680,_x681){return _Load331.apply(this,arguments);}return Load;}()/**
|
|
96982
97335
|
* Validate() method override for MJ: Task Dependencies entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
96983
97336
|
* * Table-Level: This rule ensures that a task cannot be set as dependent on itself. In other words, each task can only depend on a different task, not on itself.
|
|
96984
97337
|
* @public
|
|
@@ -97043,7 +97396,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97043
97396
|
* @extends {BaseEntity}
|
|
97044
97397
|
* @class
|
|
97045
97398
|
* @public
|
|
97046
|
-
*/var MJTaskTypeEntity=/*#__PURE__*/function(
|
|
97399
|
+
*/var MJTaskTypeEntity=/*#__PURE__*/function(_BaseEntity332){function MJTaskTypeEntity(){_classCallCheck(this,MJTaskTypeEntity);return _callSuper(this,MJTaskTypeEntity,arguments);}_inherits(MJTaskTypeEntity,_BaseEntity332);return _createClass(MJTaskTypeEntity,[{key:"Load",value:(/**
|
|
97047
97400
|
* Loads the MJ: Task Types record from the database
|
|
97048
97401
|
* @param ID: string - primary key value to load the MJ: Task Types record.
|
|
97049
97402
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97053,7 +97406,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97053
97406
|
* @memberof MJTaskTypeEntity
|
|
97054
97407
|
* @method
|
|
97055
97408
|
* @override
|
|
97056
|
-
*/function(){var
|
|
97409
|
+
*/function(){var _Load332=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee349(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context349){while(1)switch(_context349.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context349.n=1;return _superPropGet(MJTaskTypeEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context349.a(2,_context349.v);}},_callee349,this);}));function Load(_x682,_x683){return _Load332.apply(this,arguments);}return Load;}()/**
|
|
97057
97410
|
* * Field Name: ID
|
|
97058
97411
|
* * Display Name: ID
|
|
97059
97412
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97088,7 +97441,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97088
97441
|
* @extends {BaseEntity}
|
|
97089
97442
|
* @class
|
|
97090
97443
|
* @public
|
|
97091
|
-
*/var MJTaskEntity=/*#__PURE__*/function(
|
|
97444
|
+
*/var MJTaskEntity=/*#__PURE__*/function(_BaseEntity333){function MJTaskEntity(){_classCallCheck(this,MJTaskEntity);return _callSuper(this,MJTaskEntity,arguments);}_inherits(MJTaskEntity,_BaseEntity333);return _createClass(MJTaskEntity,[{key:"Load",value:(/**
|
|
97092
97445
|
* Loads the MJ: Tasks record from the database
|
|
97093
97446
|
* @param ID: string - primary key value to load the MJ: Tasks record.
|
|
97094
97447
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97098,7 +97451,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97098
97451
|
* @memberof MJTaskEntity
|
|
97099
97452
|
* @method
|
|
97100
97453
|
* @override
|
|
97101
|
-
*/function(){var
|
|
97454
|
+
*/function(){var _Load333=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee350(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context350){while(1)switch(_context350.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context350.n=1;return _superPropGet(MJTaskEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context350.a(2,_context350.v);}},_callee350,this);}));function Load(_x684,_x685){return _Load333.apply(this,arguments);}return Load;}()/**
|
|
97102
97455
|
* Validate() method override for MJ: Tasks entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
97103
97456
|
* * PercentComplete: This rule ensures that if a percent complete value is provided, it must be between 0 and 100 inclusive.
|
|
97104
97457
|
* * Table-Level: This rule ensures that for each record, either UserID or AgentID can be set, or both can be left empty, but not both can be filled in at the same time.
|
|
@@ -97254,7 +97607,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97254
97607
|
* @extends {BaseEntity}
|
|
97255
97608
|
* @class
|
|
97256
97609
|
* @public
|
|
97257
|
-
*/var MJTemplateCategoryEntity=/*#__PURE__*/function(
|
|
97610
|
+
*/var MJTemplateCategoryEntity=/*#__PURE__*/function(_BaseEntity334){function MJTemplateCategoryEntity(){_classCallCheck(this,MJTemplateCategoryEntity);return _callSuper(this,MJTemplateCategoryEntity,arguments);}_inherits(MJTemplateCategoryEntity,_BaseEntity334);return _createClass(MJTemplateCategoryEntity,[{key:"Load",value:(/**
|
|
97258
97611
|
* Loads the MJ: Template Categories record from the database
|
|
97259
97612
|
* @param ID: string - primary key value to load the MJ: Template Categories record.
|
|
97260
97613
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97264,7 +97617,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97264
97617
|
* @memberof MJTemplateCategoryEntity
|
|
97265
97618
|
* @method
|
|
97266
97619
|
* @override
|
|
97267
|
-
*/function(){var
|
|
97620
|
+
*/function(){var _Load334=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee351(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context351){while(1)switch(_context351.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context351.n=1;return _superPropGet(MJTemplateCategoryEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context351.a(2,_context351.v);}},_callee351,this);}));function Load(_x686,_x687){return _Load334.apply(this,arguments);}return Load;}()/**
|
|
97268
97621
|
* * Field Name: ID
|
|
97269
97622
|
* * Display Name: ID
|
|
97270
97623
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97321,7 +97674,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97321
97674
|
* @extends {BaseEntity}
|
|
97322
97675
|
* @class
|
|
97323
97676
|
* @public
|
|
97324
|
-
*/var MJTemplateContentTypeEntity=/*#__PURE__*/function(
|
|
97677
|
+
*/var MJTemplateContentTypeEntity=/*#__PURE__*/function(_BaseEntity335){function MJTemplateContentTypeEntity(){_classCallCheck(this,MJTemplateContentTypeEntity);return _callSuper(this,MJTemplateContentTypeEntity,arguments);}_inherits(MJTemplateContentTypeEntity,_BaseEntity335);return _createClass(MJTemplateContentTypeEntity,[{key:"Load",value:(/**
|
|
97325
97678
|
* Loads the MJ: Template Content Types record from the database
|
|
97326
97679
|
* @param ID: string - primary key value to load the MJ: Template Content Types record.
|
|
97327
97680
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97331,7 +97684,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97331
97684
|
* @memberof MJTemplateContentTypeEntity
|
|
97332
97685
|
* @method
|
|
97333
97686
|
* @override
|
|
97334
|
-
*/function(){var
|
|
97687
|
+
*/function(){var _Load335=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee352(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context352){while(1)switch(_context352.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context352.n=1;return _superPropGet(MJTemplateContentTypeEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context352.a(2,_context352.v);}},_callee352,this);}));function Load(_x688,_x689){return _Load335.apply(this,arguments);}return Load;}()/**
|
|
97335
97688
|
* * Field Name: ID
|
|
97336
97689
|
* * Display Name: ID
|
|
97337
97690
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97382,7 +97735,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97382
97735
|
* @extends {BaseEntity}
|
|
97383
97736
|
* @class
|
|
97384
97737
|
* @public
|
|
97385
|
-
*/var MJTemplateContentEntity=/*#__PURE__*/function(
|
|
97738
|
+
*/var MJTemplateContentEntity=/*#__PURE__*/function(_BaseEntity336){function MJTemplateContentEntity(){_classCallCheck(this,MJTemplateContentEntity);return _callSuper(this,MJTemplateContentEntity,arguments);}_inherits(MJTemplateContentEntity,_BaseEntity336);return _createClass(MJTemplateContentEntity,[{key:"Load",value:(/**
|
|
97386
97739
|
* Loads the MJ: Template Contents record from the database
|
|
97387
97740
|
* @param ID: string - primary key value to load the MJ: Template Contents record.
|
|
97388
97741
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97392,7 +97745,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97392
97745
|
* @memberof MJTemplateContentEntity
|
|
97393
97746
|
* @method
|
|
97394
97747
|
* @override
|
|
97395
|
-
*/function(){var
|
|
97748
|
+
*/function(){var _Load336=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee353(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context353){while(1)switch(_context353.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context353.n=1;return _superPropGet(MJTemplateContentEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context353.a(2,_context353.v);}},_callee353,this);}));function Load(_x690,_x691){return _Load336.apply(this,arguments);}return Load;}()/**
|
|
97396
97749
|
* * Field Name: ID
|
|
97397
97750
|
* * Display Name: ID
|
|
97398
97751
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97451,7 +97804,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97451
97804
|
* @extends {BaseEntity}
|
|
97452
97805
|
* @class
|
|
97453
97806
|
* @public
|
|
97454
|
-
*/var MJTemplateParamEntity=/*#__PURE__*/function(
|
|
97807
|
+
*/var MJTemplateParamEntity=/*#__PURE__*/function(_BaseEntity337){function MJTemplateParamEntity(){_classCallCheck(this,MJTemplateParamEntity);return _callSuper(this,MJTemplateParamEntity,arguments);}_inherits(MJTemplateParamEntity,_BaseEntity337);return _createClass(MJTemplateParamEntity,[{key:"Load",value:(/**
|
|
97455
97808
|
* Loads the MJ: Template Params record from the database
|
|
97456
97809
|
* @param ID: string - primary key value to load the MJ: Template Params record.
|
|
97457
97810
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97461,7 +97814,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97461
97814
|
* @memberof MJTemplateParamEntity
|
|
97462
97815
|
* @method
|
|
97463
97816
|
* @override
|
|
97464
|
-
*/function(){var
|
|
97817
|
+
*/function(){var _Load337=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee354(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context354){while(1)switch(_context354.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context354.n=1;return _superPropGet(MJTemplateParamEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context354.a(2,_context354.v);}},_callee354,this);}));function Load(_x692,_x693){return _Load337.apply(this,arguments);}return Load;}()/**
|
|
97465
97818
|
* * Field Name: ID
|
|
97466
97819
|
* * Display Name: ID
|
|
97467
97820
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97573,7 +97926,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97573
97926
|
* @extends {BaseEntity}
|
|
97574
97927
|
* @class
|
|
97575
97928
|
* @public
|
|
97576
|
-
*/var MJTemplateEntity=/*#__PURE__*/function(
|
|
97929
|
+
*/var MJTemplateEntity=/*#__PURE__*/function(_BaseEntity338){function MJTemplateEntity(){_classCallCheck(this,MJTemplateEntity);return _callSuper(this,MJTemplateEntity,arguments);}_inherits(MJTemplateEntity,_BaseEntity338);return _createClass(MJTemplateEntity,[{key:"Load",value:(/**
|
|
97577
97930
|
* Loads the MJ: Templates record from the database
|
|
97578
97931
|
* @param ID: string - primary key value to load the MJ: Templates record.
|
|
97579
97932
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97583,7 +97936,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97583
97936
|
* @memberof MJTemplateEntity
|
|
97584
97937
|
* @method
|
|
97585
97938
|
* @override
|
|
97586
|
-
*/function(){var
|
|
97939
|
+
*/function(){var _Load338=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee355(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context355){while(1)switch(_context355.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context355.n=1;return _superPropGet(MJTemplateEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context355.a(2,_context355.v);}},_callee355,this);}));function Load(_x694,_x695){return _Load338.apply(this,arguments);}return Load;}()/**
|
|
97587
97940
|
* * Field Name: ID
|
|
97588
97941
|
* * Display Name: ID
|
|
97589
97942
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97657,7 +98010,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97657
98010
|
* @extends {BaseEntity}
|
|
97658
98011
|
* @class
|
|
97659
98012
|
* @public
|
|
97660
|
-
*/var MJTestRubricEntity=/*#__PURE__*/function(
|
|
98013
|
+
*/var MJTestRubricEntity=/*#__PURE__*/function(_BaseEntity339){function MJTestRubricEntity(){_classCallCheck(this,MJTestRubricEntity);return _callSuper(this,MJTestRubricEntity,arguments);}_inherits(MJTestRubricEntity,_BaseEntity339);return _createClass(MJTestRubricEntity,[{key:"Load",value:(/**
|
|
97661
98014
|
* Loads the MJ: Test Rubrics record from the database
|
|
97662
98015
|
* @param ID: string - primary key value to load the MJ: Test Rubrics record.
|
|
97663
98016
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97667,7 +98020,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97667
98020
|
* @memberof MJTestRubricEntity
|
|
97668
98021
|
* @method
|
|
97669
98022
|
* @override
|
|
97670
|
-
*/function(){var
|
|
98023
|
+
*/function(){var _Load339=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee356(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context356){while(1)switch(_context356.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context356.n=1;return _superPropGet(MJTestRubricEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context356.a(2,_context356.v);}},_callee356,this);}));function Load(_x696,_x697){return _Load339.apply(this,arguments);}return Load;}()/**
|
|
97671
98024
|
* * Field Name: ID
|
|
97672
98025
|
* * Display Name: ID
|
|
97673
98026
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97738,7 +98091,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97738
98091
|
* @extends {BaseEntity}
|
|
97739
98092
|
* @class
|
|
97740
98093
|
* @public
|
|
97741
|
-
*/var MJTestRunFeedbackEntity=/*#__PURE__*/function(
|
|
98094
|
+
*/var MJTestRunFeedbackEntity=/*#__PURE__*/function(_BaseEntity340){function MJTestRunFeedbackEntity(){_classCallCheck(this,MJTestRunFeedbackEntity);return _callSuper(this,MJTestRunFeedbackEntity,arguments);}_inherits(MJTestRunFeedbackEntity,_BaseEntity340);return _createClass(MJTestRunFeedbackEntity,[{key:"Load",value:(/**
|
|
97742
98095
|
* Loads the MJ: Test Run Feedbacks record from the database
|
|
97743
98096
|
* @param ID: string - primary key value to load the MJ: Test Run Feedbacks record.
|
|
97744
98097
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97748,7 +98101,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97748
98101
|
* @memberof MJTestRunFeedbackEntity
|
|
97749
98102
|
* @method
|
|
97750
98103
|
* @override
|
|
97751
|
-
*/function(){var
|
|
98104
|
+
*/function(){var _Load340=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee357(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context357){while(1)switch(_context357.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context357.n=1;return _superPropGet(MJTestRunFeedbackEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context357.a(2,_context357.v);}},_callee357,this);}));function Load(_x698,_x699){return _Load340.apply(this,arguments);}return Load;}()/**
|
|
97752
98105
|
* Validate() method override for MJ: Test Run Feedbacks entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
97753
98106
|
* * Rating: When a rating is provided, it must be a whole number from 1 up to 10. This ensures that every recorded rating falls within the allowed scoring range.
|
|
97754
98107
|
* @public
|
|
@@ -97829,7 +98182,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97829
98182
|
* @extends {BaseEntity}
|
|
97830
98183
|
* @class
|
|
97831
98184
|
* @public
|
|
97832
|
-
*/var MJTestRunOutputTypeEntity=/*#__PURE__*/function(
|
|
98185
|
+
*/var MJTestRunOutputTypeEntity=/*#__PURE__*/function(_BaseEntity341){function MJTestRunOutputTypeEntity(){_classCallCheck(this,MJTestRunOutputTypeEntity);return _callSuper(this,MJTestRunOutputTypeEntity,arguments);}_inherits(MJTestRunOutputTypeEntity,_BaseEntity341);return _createClass(MJTestRunOutputTypeEntity,[{key:"Load",value:(/**
|
|
97833
98186
|
* Loads the MJ: Test Run Output Types record from the database
|
|
97834
98187
|
* @param ID: string - primary key value to load the MJ: Test Run Output Types record.
|
|
97835
98188
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97839,7 +98192,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97839
98192
|
* @memberof MJTestRunOutputTypeEntity
|
|
97840
98193
|
* @method
|
|
97841
98194
|
* @override
|
|
97842
|
-
*/function(){var
|
|
98195
|
+
*/function(){var _Load341=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee358(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context358){while(1)switch(_context358.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context358.n=1;return _superPropGet(MJTestRunOutputTypeEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context358.a(2,_context358.v);}},_callee358,this);}));function Load(_x700,_x701){return _Load341.apply(this,arguments);}return Load;}()/**
|
|
97843
98196
|
* * Field Name: ID
|
|
97844
98197
|
* * Display Name: ID
|
|
97845
98198
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97873,7 +98226,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97873
98226
|
* @extends {BaseEntity}
|
|
97874
98227
|
* @class
|
|
97875
98228
|
* @public
|
|
97876
|
-
*/var MJTestRunOutputEntity=/*#__PURE__*/function(
|
|
98229
|
+
*/var MJTestRunOutputEntity=/*#__PURE__*/function(_BaseEntity342){function MJTestRunOutputEntity(){_classCallCheck(this,MJTestRunOutputEntity);return _callSuper(this,MJTestRunOutputEntity,arguments);}_inherits(MJTestRunOutputEntity,_BaseEntity342);return _createClass(MJTestRunOutputEntity,[{key:"Load",value:(/**
|
|
97877
98230
|
* Loads the MJ: Test Run Outputs record from the database
|
|
97878
98231
|
* @param ID: string - primary key value to load the MJ: Test Run Outputs record.
|
|
97879
98232
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97883,7 +98236,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97883
98236
|
* @memberof MJTestRunOutputEntity
|
|
97884
98237
|
* @method
|
|
97885
98238
|
* @override
|
|
97886
|
-
*/function(){var
|
|
98239
|
+
*/function(){var _Load342=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee359(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context359){while(1)switch(_context359.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context359.n=1;return _superPropGet(MJTestRunOutputEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context359.a(2,_context359.v);}},_callee359,this);}));function Load(_x702,_x703){return _Load342.apply(this,arguments);}return Load;}()/**
|
|
97887
98240
|
* * Field Name: ID
|
|
97888
98241
|
* * Display Name: ID
|
|
97889
98242
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97984,7 +98337,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97984
98337
|
* @extends {BaseEntity}
|
|
97985
98338
|
* @class
|
|
97986
98339
|
* @public
|
|
97987
|
-
*/var MJTestRunEntity=/*#__PURE__*/function(
|
|
98340
|
+
*/var MJTestRunEntity=/*#__PURE__*/function(_BaseEntity343){function MJTestRunEntity(){_classCallCheck(this,MJTestRunEntity);return _callSuper(this,MJTestRunEntity,arguments);}_inherits(MJTestRunEntity,_BaseEntity343);return _createClass(MJTestRunEntity,[{key:"Load",value:(/**
|
|
97988
98341
|
* Loads the MJ: Test Runs record from the database
|
|
97989
98342
|
* @param ID: string - primary key value to load the MJ: Test Runs record.
|
|
97990
98343
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97994,7 +98347,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97994
98347
|
* @memberof MJTestRunEntity
|
|
97995
98348
|
* @method
|
|
97996
98349
|
* @override
|
|
97997
|
-
*/function(){var
|
|
98350
|
+
*/function(){var _Load343=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee360(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context360){while(1)switch(_context360.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context360.n=1;return _superPropGet(MJTestRunEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context360.a(2,_context360.v);}},_callee360,this);}));function Load(_x704,_x705){return _Load343.apply(this,arguments);}return Load;}()/**
|
|
97998
98351
|
* * Field Name: ID
|
|
97999
98352
|
* * Display Name: ID
|
|
98000
98353
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -98194,7 +98547,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98194
98547
|
* @extends {BaseEntity}
|
|
98195
98548
|
* @class
|
|
98196
98549
|
* @public
|
|
98197
|
-
*/var MJTestSuiteRunEntity=/*#__PURE__*/function(
|
|
98550
|
+
*/var MJTestSuiteRunEntity=/*#__PURE__*/function(_BaseEntity344){function MJTestSuiteRunEntity(){_classCallCheck(this,MJTestSuiteRunEntity);return _callSuper(this,MJTestSuiteRunEntity,arguments);}_inherits(MJTestSuiteRunEntity,_BaseEntity344);return _createClass(MJTestSuiteRunEntity,[{key:"Load",value:(/**
|
|
98198
98551
|
* Loads the MJ: Test Suite Runs record from the database
|
|
98199
98552
|
* @param ID: string - primary key value to load the MJ: Test Suite Runs record.
|
|
98200
98553
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98204,7 +98557,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98204
98557
|
* @memberof MJTestSuiteRunEntity
|
|
98205
98558
|
* @method
|
|
98206
98559
|
* @override
|
|
98207
|
-
*/function(){var
|
|
98560
|
+
*/function(){var _Load344=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee361(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context361){while(1)switch(_context361.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context361.n=1;return _superPropGet(MJTestSuiteRunEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context361.a(2,_context361.v);}},_callee361,this);}));function Load(_x706,_x707){return _Load344.apply(this,arguments);}return Load;}()/**
|
|
98208
98561
|
* * Field Name: ID
|
|
98209
98562
|
* * Display Name: ID
|
|
98210
98563
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -98377,7 +98730,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98377
98730
|
* @extends {BaseEntity}
|
|
98378
98731
|
* @class
|
|
98379
98732
|
* @public
|
|
98380
|
-
*/var MJTestSuiteTestEntity=/*#__PURE__*/function(
|
|
98733
|
+
*/var MJTestSuiteTestEntity=/*#__PURE__*/function(_BaseEntity345){function MJTestSuiteTestEntity(){_classCallCheck(this,MJTestSuiteTestEntity);return _callSuper(this,MJTestSuiteTestEntity,arguments);}_inherits(MJTestSuiteTestEntity,_BaseEntity345);return _createClass(MJTestSuiteTestEntity,[{key:"Load",value:(/**
|
|
98381
98734
|
* Loads the MJ: Test Suite Tests record from the database
|
|
98382
98735
|
* @param ID: string - primary key value to load the MJ: Test Suite Tests record.
|
|
98383
98736
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98387,7 +98740,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98387
98740
|
* @memberof MJTestSuiteTestEntity
|
|
98388
98741
|
* @method
|
|
98389
98742
|
* @override
|
|
98390
|
-
*/function(){var
|
|
98743
|
+
*/function(){var _Load345=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee362(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context362){while(1)switch(_context362.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context362.n=1;return _superPropGet(MJTestSuiteTestEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context362.a(2,_context362.v);}},_callee362,this);}));function Load(_x708,_x709){return _Load345.apply(this,arguments);}return Load;}()/**
|
|
98391
98744
|
* * Field Name: ID
|
|
98392
98745
|
* * Display Name: ID
|
|
98393
98746
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -98454,7 +98807,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98454
98807
|
* @extends {BaseEntity}
|
|
98455
98808
|
* @class
|
|
98456
98809
|
* @public
|
|
98457
|
-
*/var MJTestSuiteEntity=/*#__PURE__*/function(
|
|
98810
|
+
*/var MJTestSuiteEntity=/*#__PURE__*/function(_BaseEntity346){function MJTestSuiteEntity(){_classCallCheck(this,MJTestSuiteEntity);return _callSuper(this,MJTestSuiteEntity,arguments);}_inherits(MJTestSuiteEntity,_BaseEntity346);return _createClass(MJTestSuiteEntity,[{key:"Load",value:(/**
|
|
98458
98811
|
* Loads the MJ: Test Suites record from the database
|
|
98459
98812
|
* @param ID: string - primary key value to load the MJ: Test Suites record.
|
|
98460
98813
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98464,7 +98817,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98464
98817
|
* @memberof MJTestSuiteEntity
|
|
98465
98818
|
* @method
|
|
98466
98819
|
* @override
|
|
98467
|
-
*/function(){var
|
|
98820
|
+
*/function(){var _Load346=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee363(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context363){while(1)switch(_context363.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context363.n=1;return _superPropGet(MJTestSuiteEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context363.a(2,_context363.v);}},_callee363,this);}));function Load(_x710,_x711){return _Load346.apply(this,arguments);}return Load;}()/**
|
|
98468
98821
|
* * Field Name: ID
|
|
98469
98822
|
* * Display Name: ID
|
|
98470
98823
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -98544,7 +98897,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98544
98897
|
* @extends {BaseEntity}
|
|
98545
98898
|
* @class
|
|
98546
98899
|
* @public
|
|
98547
|
-
*/var MJTestTypeEntity=/*#__PURE__*/function(
|
|
98900
|
+
*/var MJTestTypeEntity=/*#__PURE__*/function(_BaseEntity347){function MJTestTypeEntity(){_classCallCheck(this,MJTestTypeEntity);return _callSuper(this,MJTestTypeEntity,arguments);}_inherits(MJTestTypeEntity,_BaseEntity347);return _createClass(MJTestTypeEntity,[{key:"Load",value:(/**
|
|
98548
98901
|
* Loads the MJ: Test Types record from the database
|
|
98549
98902
|
* @param ID: string - primary key value to load the MJ: Test Types record.
|
|
98550
98903
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98554,7 +98907,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98554
98907
|
* @memberof MJTestTypeEntity
|
|
98555
98908
|
* @method
|
|
98556
98909
|
* @override
|
|
98557
|
-
*/function(){var
|
|
98910
|
+
*/function(){var _Load347=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee364(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context364){while(1)switch(_context364.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context364.n=1;return _superPropGet(MJTestTypeEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context364.a(2,_context364.v);}},_callee364,this);}));function Load(_x712,_x713){return _Load347.apply(this,arguments);}return Load;}()/**
|
|
98558
98911
|
* * Field Name: ID
|
|
98559
98912
|
* * Display Name: ID
|
|
98560
98913
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -98610,7 +98963,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98610
98963
|
* @extends {BaseEntity}
|
|
98611
98964
|
* @class
|
|
98612
98965
|
* @public
|
|
98613
|
-
*/var MJTestEntity=/*#__PURE__*/function(
|
|
98966
|
+
*/var MJTestEntity=/*#__PURE__*/function(_BaseEntity348){function MJTestEntity(){_classCallCheck(this,MJTestEntity);return _callSuper(this,MJTestEntity,arguments);}_inherits(MJTestEntity,_BaseEntity348);return _createClass(MJTestEntity,[{key:"Load",value:(/**
|
|
98614
98967
|
* Loads the MJ: Tests record from the database
|
|
98615
98968
|
* @param ID: string - primary key value to load the MJ: Tests record.
|
|
98616
98969
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98620,7 +98973,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98620
98973
|
* @memberof MJTestEntity
|
|
98621
98974
|
* @method
|
|
98622
98975
|
* @override
|
|
98623
|
-
*/function(){var
|
|
98976
|
+
*/function(){var _Load348=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee365(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context365){while(1)switch(_context365.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context365.n=1;return _superPropGet(MJTestEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context365.a(2,_context365.v);}},_callee365,this);}));function Load(_x714,_x715){return _Load348.apply(this,arguments);}return Load;}()/**
|
|
98624
98977
|
* Validate() method override for MJ: Tests entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
98625
98978
|
* * RepeatCount: If a repeat count is entered, it must be a positive number greater than zero; otherwise it can be left empty.
|
|
98626
98979
|
* @public
|
|
@@ -98739,7 +99092,7 @@ if(this.RepeatCount!=null&&this.RepeatCount<=0){result.Errors.push(new dist/* Va
|
|
|
98739
99092
|
* @extends {BaseEntity}
|
|
98740
99093
|
* @class
|
|
98741
99094
|
* @public
|
|
98742
|
-
*/var MJUserApplicationEntityEntity=/*#__PURE__*/function(
|
|
99095
|
+
*/var MJUserApplicationEntityEntity=/*#__PURE__*/function(_BaseEntity349){function MJUserApplicationEntityEntity(){_classCallCheck(this,MJUserApplicationEntityEntity);return _callSuper(this,MJUserApplicationEntityEntity,arguments);}_inherits(MJUserApplicationEntityEntity,_BaseEntity349);return _createClass(MJUserApplicationEntityEntity,[{key:"Load",value:(/**
|
|
98743
99096
|
* Loads the MJ: User Application Entities record from the database
|
|
98744
99097
|
* @param ID: string - primary key value to load the MJ: User Application Entities record.
|
|
98745
99098
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98749,7 +99102,7 @@ if(this.RepeatCount!=null&&this.RepeatCount<=0){result.Errors.push(new dist/* Va
|
|
|
98749
99102
|
* @memberof MJUserApplicationEntityEntity
|
|
98750
99103
|
* @method
|
|
98751
99104
|
* @override
|
|
98752
|
-
*/function(){var
|
|
99105
|
+
*/function(){var _Load349=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee366(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context366){while(1)switch(_context366.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context366.n=1;return _superPropGet(MJUserApplicationEntityEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context366.a(2,_context366.v);}},_callee366,this);}));function Load(_x716,_x717){return _Load349.apply(this,arguments);}return Load;}()/**
|
|
98753
99106
|
* * Field Name: ID
|
|
98754
99107
|
* * SQL Data Type: uniqueidentifier
|
|
98755
99108
|
* * Default Value: newsequentialid()
|
|
@@ -98800,7 +99153,7 @@ if(this.RepeatCount!=null&&this.RepeatCount<=0){result.Errors.push(new dist/* Va
|
|
|
98800
99153
|
* @extends {BaseEntity}
|
|
98801
99154
|
* @class
|
|
98802
99155
|
* @public
|
|
98803
|
-
*/var MJUserApplicationEntity=/*#__PURE__*/function(
|
|
99156
|
+
*/var MJUserApplicationEntity=/*#__PURE__*/function(_BaseEntity350){function MJUserApplicationEntity(){_classCallCheck(this,MJUserApplicationEntity);return _callSuper(this,MJUserApplicationEntity,arguments);}_inherits(MJUserApplicationEntity,_BaseEntity350);return _createClass(MJUserApplicationEntity,[{key:"Load",value:(/**
|
|
98804
99157
|
* Loads the MJ: User Applications record from the database
|
|
98805
99158
|
* @param ID: string - primary key value to load the MJ: User Applications record.
|
|
98806
99159
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98810,7 +99163,7 @@ if(this.RepeatCount!=null&&this.RepeatCount<=0){result.Errors.push(new dist/* Va
|
|
|
98810
99163
|
* @memberof MJUserApplicationEntity
|
|
98811
99164
|
* @method
|
|
98812
99165
|
* @override
|
|
98813
|
-
*/function(){var
|
|
99166
|
+
*/function(){var _Load350=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee367(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context367){while(1)switch(_context367.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context367.n=1;return _superPropGet(MJUserApplicationEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context367.a(2,_context367.v);}},_callee367,this);}));function Load(_x718,_x719){return _Load350.apply(this,arguments);}return Load;}()/**
|
|
98814
99167
|
* MJ: User Applications - Delete method override to wrap in transaction since CascadeDeletes is true.
|
|
98815
99168
|
* Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
|
|
98816
99169
|
* @public
|
|
@@ -98818,10 +99171,10 @@ if(this.RepeatCount!=null&&this.RepeatCount<=0){result.Errors.push(new dist/* Va
|
|
|
98818
99171
|
* @override
|
|
98819
99172
|
* @memberof MJUserApplicationEntity
|
|
98820
99173
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
98821
|
-
*/)},{key:"Delete",value:(function(){var _Delete16=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function
|
|
99174
|
+
*/)},{key:"Delete",value:(function(){var _Delete16=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee368(options){var provider,result,_t16;return _regenerator().w(function(_context368){while(1)switch(_context368.p=_context368.n){case 0:if(!(dist/* Metadata */.OS9.Provider.ProviderType===dist/* ProviderType */.cpK.Database)){_context368.n=11;break;}// global-provider-ok: codegen runs offline against a single provider
|
|
98822
99175
|
// For database providers, use the transaction methods directly
|
|
98823
99176
|
provider=dist/* Metadata */.OS9.Provider;// global-provider-ok: codegen runs offline against a single provider
|
|
98824
|
-
|
|
99177
|
+
_context368.p=1;_context368.n=2;return provider.BeginTransaction();case 2:_context368.n=3;return _superPropGet(MJUserApplicationEntity,"Delete",this,3)([options]);case 3:result=_context368.v;if(!result){_context368.n=5;break;}_context368.n=4;return provider.CommitTransaction();case 4:return _context368.a(2,true);case 5:_context368.n=6;return provider.RollbackTransaction();case 6:return _context368.a(2,false);case 7:_context368.n=10;break;case 8:_context368.p=8;_t16=_context368.v;_context368.n=9;return provider.RollbackTransaction();case 9:throw _t16;case 10:_context368.n=12;break;case 11:return _context368.a(2,_superPropGet(MJUserApplicationEntity,"Delete",this,3)([options]));case 12:return _context368.a(2);}},_callee368,this,[[1,8]]);}));function Delete(_x720){return _Delete16.apply(this,arguments);}return Delete;}()/**
|
|
98825
99178
|
* * Field Name: ID
|
|
98826
99179
|
* * SQL Data Type: uniqueidentifier
|
|
98827
99180
|
* * Default Value: newsequentialid()
|
|
@@ -98874,7 +99227,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
98874
99227
|
* @extends {BaseEntity}
|
|
98875
99228
|
* @class
|
|
98876
99229
|
* @public
|
|
98877
|
-
*/var MJUserFavoriteEntity=/*#__PURE__*/function(
|
|
99230
|
+
*/var MJUserFavoriteEntity=/*#__PURE__*/function(_BaseEntity351){function MJUserFavoriteEntity(){_classCallCheck(this,MJUserFavoriteEntity);return _callSuper(this,MJUserFavoriteEntity,arguments);}_inherits(MJUserFavoriteEntity,_BaseEntity351);return _createClass(MJUserFavoriteEntity,[{key:"Load",value:(/**
|
|
98878
99231
|
* Loads the MJ: User Favorites record from the database
|
|
98879
99232
|
* @param ID: string - primary key value to load the MJ: User Favorites record.
|
|
98880
99233
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98884,7 +99237,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
98884
99237
|
* @memberof MJUserFavoriteEntity
|
|
98885
99238
|
* @method
|
|
98886
99239
|
* @override
|
|
98887
|
-
*/function(){var
|
|
99240
|
+
*/function(){var _Load351=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee369(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context369){while(1)switch(_context369.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context369.n=1;return _superPropGet(MJUserFavoriteEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context369.a(2,_context369.v);}},_callee369,this);}));function Load(_x721,_x722){return _Load351.apply(this,arguments);}return Load;}()/**
|
|
98888
99241
|
* * Field Name: ID
|
|
98889
99242
|
* * SQL Data Type: uniqueidentifier
|
|
98890
99243
|
* * Default Value: newsequentialid()
|
|
@@ -98934,7 +99287,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
98934
99287
|
* @extends {BaseEntity}
|
|
98935
99288
|
* @class
|
|
98936
99289
|
* @public
|
|
98937
|
-
*/var MJUserNotificationPreferenceEntity=/*#__PURE__*/function(
|
|
99290
|
+
*/var MJUserNotificationPreferenceEntity=/*#__PURE__*/function(_BaseEntity352){function MJUserNotificationPreferenceEntity(){_classCallCheck(this,MJUserNotificationPreferenceEntity);return _callSuper(this,MJUserNotificationPreferenceEntity,arguments);}_inherits(MJUserNotificationPreferenceEntity,_BaseEntity352);return _createClass(MJUserNotificationPreferenceEntity,[{key:"Load",value:(/**
|
|
98938
99291
|
* Loads the MJ: User Notification Preferences record from the database
|
|
98939
99292
|
* @param ID: string - primary key value to load the MJ: User Notification Preferences record.
|
|
98940
99293
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98944,7 +99297,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
98944
99297
|
* @memberof MJUserNotificationPreferenceEntity
|
|
98945
99298
|
* @method
|
|
98946
99299
|
* @override
|
|
98947
|
-
*/function(){var
|
|
99300
|
+
*/function(){var _Load352=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee370(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context370){while(1)switch(_context370.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context370.n=1;return _superPropGet(MJUserNotificationPreferenceEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context370.a(2,_context370.v);}},_callee370,this);}));function Load(_x723,_x724){return _Load352.apply(this,arguments);}return Load;}()/**
|
|
98948
99301
|
* * Field Name: ID
|
|
98949
99302
|
* * Display Name: ID
|
|
98950
99303
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99007,7 +99360,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99007
99360
|
* @extends {BaseEntity}
|
|
99008
99361
|
* @class
|
|
99009
99362
|
* @public
|
|
99010
|
-
*/var MJUserNotificationTypeEntity=/*#__PURE__*/function(
|
|
99363
|
+
*/var MJUserNotificationTypeEntity=/*#__PURE__*/function(_BaseEntity353){function MJUserNotificationTypeEntity(){_classCallCheck(this,MJUserNotificationTypeEntity);return _callSuper(this,MJUserNotificationTypeEntity,arguments);}_inherits(MJUserNotificationTypeEntity,_BaseEntity353);return _createClass(MJUserNotificationTypeEntity,[{key:"Load",value:(/**
|
|
99011
99364
|
* Loads the MJ: User Notification Types record from the database
|
|
99012
99365
|
* @param ID: string - primary key value to load the MJ: User Notification Types record.
|
|
99013
99366
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99017,7 +99370,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99017
99370
|
* @memberof MJUserNotificationTypeEntity
|
|
99018
99371
|
* @method
|
|
99019
99372
|
* @override
|
|
99020
|
-
*/function(){var
|
|
99373
|
+
*/function(){var _Load353=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee371(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context371){while(1)switch(_context371.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context371.n=1;return _superPropGet(MJUserNotificationTypeEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context371.a(2,_context371.v);}},_callee371,this);}));function Load(_x725,_x726){return _Load353.apply(this,arguments);}return Load;}()/**
|
|
99021
99374
|
* * Field Name: ID
|
|
99022
99375
|
* * Display Name: ID
|
|
99023
99376
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99110,7 +99463,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99110
99463
|
* @extends {BaseEntity}
|
|
99111
99464
|
* @class
|
|
99112
99465
|
* @public
|
|
99113
|
-
*/var MJUserNotificationEntity=/*#__PURE__*/function(
|
|
99466
|
+
*/var MJUserNotificationEntity=/*#__PURE__*/function(_BaseEntity354){function MJUserNotificationEntity(){_classCallCheck(this,MJUserNotificationEntity);return _callSuper(this,MJUserNotificationEntity,arguments);}_inherits(MJUserNotificationEntity,_BaseEntity354);return _createClass(MJUserNotificationEntity,[{key:"Load",value:(/**
|
|
99114
99467
|
* Loads the MJ: User Notifications record from the database
|
|
99115
99468
|
* @param ID: string - primary key value to load the MJ: User Notifications record.
|
|
99116
99469
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99120,7 +99473,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99120
99473
|
* @memberof MJUserNotificationEntity
|
|
99121
99474
|
* @method
|
|
99122
99475
|
* @override
|
|
99123
|
-
*/function(){var
|
|
99476
|
+
*/function(){var _Load354=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee372(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context372){while(1)switch(_context372.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context372.n=1;return _superPropGet(MJUserNotificationEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context372.a(2,_context372.v);}},_callee372,this);}));function Load(_x727,_x728){return _Load354.apply(this,arguments);}return Load;}()/**
|
|
99124
99477
|
* * Field Name: ID
|
|
99125
99478
|
* * Display Name: ID
|
|
99126
99479
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99204,7 +99557,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99204
99557
|
* @extends {BaseEntity}
|
|
99205
99558
|
* @class
|
|
99206
99559
|
* @public
|
|
99207
|
-
*/var MJUserRecordLogEntity=/*#__PURE__*/function(
|
|
99560
|
+
*/var MJUserRecordLogEntity=/*#__PURE__*/function(_BaseEntity355){function MJUserRecordLogEntity(){_classCallCheck(this,MJUserRecordLogEntity);return _callSuper(this,MJUserRecordLogEntity,arguments);}_inherits(MJUserRecordLogEntity,_BaseEntity355);return _createClass(MJUserRecordLogEntity,[{key:"Load",value:(/**
|
|
99208
99561
|
* Loads the MJ: User Record Logs record from the database
|
|
99209
99562
|
* @param ID: string - primary key value to load the MJ: User Record Logs record.
|
|
99210
99563
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99214,7 +99567,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99214
99567
|
* @memberof MJUserRecordLogEntity
|
|
99215
99568
|
* @method
|
|
99216
99569
|
* @override
|
|
99217
|
-
*/function(){var
|
|
99570
|
+
*/function(){var _Load355=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee373(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context373){while(1)switch(_context373.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context373.n=1;return _superPropGet(MJUserRecordLogEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context373.a(2,_context373.v);}},_callee373,this);}));function Load(_x729,_x730){return _Load355.apply(this,arguments);}return Load;}()/**
|
|
99218
99571
|
* * Field Name: ID
|
|
99219
99572
|
* * Display Name: ID
|
|
99220
99573
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99296,7 +99649,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99296
99649
|
* @extends {BaseEntity}
|
|
99297
99650
|
* @class
|
|
99298
99651
|
* @public
|
|
99299
|
-
*/var MJUserRoleEntity=/*#__PURE__*/function(
|
|
99652
|
+
*/var MJUserRoleEntity=/*#__PURE__*/function(_BaseEntity356){function MJUserRoleEntity(){_classCallCheck(this,MJUserRoleEntity);return _callSuper(this,MJUserRoleEntity,arguments);}_inherits(MJUserRoleEntity,_BaseEntity356);return _createClass(MJUserRoleEntity,[{key:"Load",value:(/**
|
|
99300
99653
|
* Loads the MJ: User Roles record from the database
|
|
99301
99654
|
* @param ID: string - primary key value to load the MJ: User Roles record.
|
|
99302
99655
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99306,7 +99659,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99306
99659
|
* @memberof MJUserRoleEntity
|
|
99307
99660
|
* @method
|
|
99308
99661
|
* @override
|
|
99309
|
-
*/function(){var
|
|
99662
|
+
*/function(){var _Load356=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee374(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context374){while(1)switch(_context374.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context374.n=1;return _superPropGet(MJUserRoleEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context374.a(2,_context374.v);}},_callee374,this);}));function Load(_x731,_x732){return _Load356.apply(this,arguments);}return Load;}()/**
|
|
99310
99663
|
* * Field Name: ID
|
|
99311
99664
|
* * Display Name: ID
|
|
99312
99665
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99348,7 +99701,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99348
99701
|
* @extends {BaseEntity}
|
|
99349
99702
|
* @class
|
|
99350
99703
|
* @public
|
|
99351
|
-
*/var MJUserRoutineRecipientEntity=/*#__PURE__*/function(
|
|
99704
|
+
*/var MJUserRoutineRecipientEntity=/*#__PURE__*/function(_BaseEntity357){function MJUserRoutineRecipientEntity(){_classCallCheck(this,MJUserRoutineRecipientEntity);return _callSuper(this,MJUserRoutineRecipientEntity,arguments);}_inherits(MJUserRoutineRecipientEntity,_BaseEntity357);return _createClass(MJUserRoutineRecipientEntity,[{key:"Load",value:(/**
|
|
99352
99705
|
* Loads the MJ: User Routine Recipients record from the database
|
|
99353
99706
|
* @param ID: string - primary key value to load the MJ: User Routine Recipients record.
|
|
99354
99707
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99358,7 +99711,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99358
99711
|
* @memberof MJUserRoutineRecipientEntity
|
|
99359
99712
|
* @method
|
|
99360
99713
|
* @override
|
|
99361
|
-
*/function(){var
|
|
99714
|
+
*/function(){var _Load357=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee375(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context375){while(1)switch(_context375.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context375.n=1;return _superPropGet(MJUserRoutineRecipientEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context375.a(2,_context375.v);}},_callee375,this);}));function Load(_x733,_x734){return _Load357.apply(this,arguments);}return Load;}()/**
|
|
99362
99715
|
* * Field Name: ID
|
|
99363
99716
|
* * Display Name: ID
|
|
99364
99717
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99423,7 +99776,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99423
99776
|
* @extends {BaseEntity}
|
|
99424
99777
|
* @class
|
|
99425
99778
|
* @public
|
|
99426
|
-
*/var MJUserRoutineRunEntity=/*#__PURE__*/function(
|
|
99779
|
+
*/var MJUserRoutineRunEntity=/*#__PURE__*/function(_BaseEntity358){function MJUserRoutineRunEntity(){_classCallCheck(this,MJUserRoutineRunEntity);return _callSuper(this,MJUserRoutineRunEntity,arguments);}_inherits(MJUserRoutineRunEntity,_BaseEntity358);return _createClass(MJUserRoutineRunEntity,[{key:"Load",value:(/**
|
|
99427
99780
|
* Loads the MJ: User Routine Runs record from the database
|
|
99428
99781
|
* @param ID: string - primary key value to load the MJ: User Routine Runs record.
|
|
99429
99782
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99433,7 +99786,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99433
99786
|
* @memberof MJUserRoutineRunEntity
|
|
99434
99787
|
* @method
|
|
99435
99788
|
* @override
|
|
99436
|
-
*/function(){var
|
|
99789
|
+
*/function(){var _Load358=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee376(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context376){while(1)switch(_context376.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context376.n=1;return _superPropGet(MJUserRoutineRunEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context376.a(2,_context376.v);}},_callee376,this);}));function Load(_x735,_x736){return _Load358.apply(this,arguments);}return Load;}()/**
|
|
99437
99790
|
* * Field Name: ID
|
|
99438
99791
|
* * Display Name: ID
|
|
99439
99792
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99541,7 +99894,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99541
99894
|
* @extends {BaseEntity}
|
|
99542
99895
|
* @class
|
|
99543
99896
|
* @public
|
|
99544
|
-
*/var MJUserRoutineEntity=/*#__PURE__*/function(
|
|
99897
|
+
*/var MJUserRoutineEntity=/*#__PURE__*/function(_BaseEntity359){function MJUserRoutineEntity(){_classCallCheck(this,MJUserRoutineEntity);return _callSuper(this,MJUserRoutineEntity,arguments);}_inherits(MJUserRoutineEntity,_BaseEntity359);return _createClass(MJUserRoutineEntity,[{key:"Load",value:(/**
|
|
99545
99898
|
* Loads the MJ: User Routines record from the database
|
|
99546
99899
|
* @param ID: string - primary key value to load the MJ: User Routines record.
|
|
99547
99900
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99551,7 +99904,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99551
99904
|
* @memberof MJUserRoutineEntity
|
|
99552
99905
|
* @method
|
|
99553
99906
|
* @override
|
|
99554
|
-
*/function(){var
|
|
99907
|
+
*/function(){var _Load359=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee377(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context377){while(1)switch(_context377.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context377.n=1;return _superPropGet(MJUserRoutineEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context377.a(2,_context377.v);}},_callee377,this);}));function Load(_x737,_x738){return _Load359.apply(this,arguments);}return Load;}()/**
|
|
99555
99908
|
* * Field Name: ID
|
|
99556
99909
|
* * Display Name: ID
|
|
99557
99910
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99748,7 +100101,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99748
100101
|
* @extends {BaseEntity}
|
|
99749
100102
|
* @class
|
|
99750
100103
|
* @public
|
|
99751
|
-
*/var MJUserSettingEntity=/*#__PURE__*/function(
|
|
100104
|
+
*/var MJUserSettingEntity=/*#__PURE__*/function(_BaseEntity360){function MJUserSettingEntity(){_classCallCheck(this,MJUserSettingEntity);return _callSuper(this,MJUserSettingEntity,arguments);}_inherits(MJUserSettingEntity,_BaseEntity360);return _createClass(MJUserSettingEntity,[{key:"Load",value:(/**
|
|
99752
100105
|
* Loads the MJ: User Settings record from the database
|
|
99753
100106
|
* @param ID: string - primary key value to load the MJ: User Settings record.
|
|
99754
100107
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99758,7 +100111,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99758
100111
|
* @memberof MJUserSettingEntity
|
|
99759
100112
|
* @method
|
|
99760
100113
|
* @override
|
|
99761
|
-
*/function(){var
|
|
100114
|
+
*/function(){var _Load360=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee378(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context378){while(1)switch(_context378.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context378.n=1;return _superPropGet(MJUserSettingEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context378.a(2,_context378.v);}},_callee378,this);}));function Load(_x739,_x740){return _Load360.apply(this,arguments);}return Load;}()/**
|
|
99762
100115
|
* * Field Name: ID
|
|
99763
100116
|
* * Display Name: ID
|
|
99764
100117
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99803,7 +100156,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99803
100156
|
* @extends {BaseEntity}
|
|
99804
100157
|
* @class
|
|
99805
100158
|
* @public
|
|
99806
|
-
*/var MJUserViewCategoryEntity=/*#__PURE__*/function(
|
|
100159
|
+
*/var MJUserViewCategoryEntity=/*#__PURE__*/function(_BaseEntity361){function MJUserViewCategoryEntity(){_classCallCheck(this,MJUserViewCategoryEntity);return _callSuper(this,MJUserViewCategoryEntity,arguments);}_inherits(MJUserViewCategoryEntity,_BaseEntity361);return _createClass(MJUserViewCategoryEntity,[{key:"Load",value:(/**
|
|
99807
100160
|
* Loads the MJ: User View Categories record from the database
|
|
99808
100161
|
* @param ID: string - primary key value to load the MJ: User View Categories record.
|
|
99809
100162
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99813,7 +100166,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99813
100166
|
* @memberof MJUserViewCategoryEntity
|
|
99814
100167
|
* @method
|
|
99815
100168
|
* @override
|
|
99816
|
-
*/function(){var
|
|
100169
|
+
*/function(){var _Load361=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee379(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context379){while(1)switch(_context379.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context379.n=1;return _superPropGet(MJUserViewCategoryEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context379.a(2,_context379.v);}},_callee379,this);}));function Load(_x741,_x742){return _Load361.apply(this,arguments);}return Load;}()/**
|
|
99817
100170
|
* * Field Name: ID
|
|
99818
100171
|
* * Display Name: ID
|
|
99819
100172
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99877,7 +100230,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99877
100230
|
* @extends {BaseEntity}
|
|
99878
100231
|
* @class
|
|
99879
100232
|
* @public
|
|
99880
|
-
*/var MJUserViewRunDetailEntity=/*#__PURE__*/function(
|
|
100233
|
+
*/var MJUserViewRunDetailEntity=/*#__PURE__*/function(_BaseEntity362){function MJUserViewRunDetailEntity(){_classCallCheck(this,MJUserViewRunDetailEntity);return _callSuper(this,MJUserViewRunDetailEntity,arguments);}_inherits(MJUserViewRunDetailEntity,_BaseEntity362);return _createClass(MJUserViewRunDetailEntity,[{key:"Load",value:(/**
|
|
99881
100234
|
* Loads the MJ: User View Run Details record from the database
|
|
99882
100235
|
* @param ID: string - primary key value to load the MJ: User View Run Details record.
|
|
99883
100236
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99887,7 +100240,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99887
100240
|
* @memberof MJUserViewRunDetailEntity
|
|
99888
100241
|
* @method
|
|
99889
100242
|
* @override
|
|
99890
|
-
*/function(){var
|
|
100243
|
+
*/function(){var _Load362=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee380(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context380){while(1)switch(_context380.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context380.n=1;return _superPropGet(MJUserViewRunDetailEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context380.a(2,_context380.v);}},_callee380,this);}));function Load(_x743,_x744){return _Load362.apply(this,arguments);}return Load;}()/**
|
|
99891
100244
|
* * Field Name: ID
|
|
99892
100245
|
* * SQL Data Type: uniqueidentifier
|
|
99893
100246
|
* * Default Value: newsequentialid()
|
|
@@ -99929,7 +100282,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99929
100282
|
* @extends {BaseEntity}
|
|
99930
100283
|
* @class
|
|
99931
100284
|
* @public
|
|
99932
|
-
*/var MJUserViewRunEntity=/*#__PURE__*/function(
|
|
100285
|
+
*/var MJUserViewRunEntity=/*#__PURE__*/function(_BaseEntity363){function MJUserViewRunEntity(){_classCallCheck(this,MJUserViewRunEntity);return _callSuper(this,MJUserViewRunEntity,arguments);}_inherits(MJUserViewRunEntity,_BaseEntity363);return _createClass(MJUserViewRunEntity,[{key:"Load",value:(/**
|
|
99933
100286
|
* Loads the MJ: User View Runs record from the database
|
|
99934
100287
|
* @param ID: string - primary key value to load the MJ: User View Runs record.
|
|
99935
100288
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99939,7 +100292,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99939
100292
|
* @memberof MJUserViewRunEntity
|
|
99940
100293
|
* @method
|
|
99941
100294
|
* @override
|
|
99942
|
-
*/function(){var
|
|
100295
|
+
*/function(){var _Load363=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee381(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context381){while(1)switch(_context381.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context381.n=1;return _superPropGet(MJUserViewRunEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context381.a(2,_context381.v);}},_callee381,this);}));function Load(_x745,_x746){return _Load363.apply(this,arguments);}return Load;}()/**
|
|
99943
100296
|
* * Field Name: ID
|
|
99944
100297
|
* * Display Name: ID
|
|
99945
100298
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99987,7 +100340,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99987
100340
|
* @extends {BaseEntity}
|
|
99988
100341
|
* @class
|
|
99989
100342
|
* @public
|
|
99990
|
-
*/var MJUserViewEntity=/*#__PURE__*/function(
|
|
100343
|
+
*/var MJUserViewEntity=/*#__PURE__*/function(_BaseEntity364){function MJUserViewEntity(){var _this13;_classCallCheck(this,MJUserViewEntity);_this13=_callSuper(this,MJUserViewEntity,arguments);_this13._GridStateObject_cached=undefined;_this13._GridStateObject_lastRaw=null;_this13._FilterStateObject_cached=undefined;_this13._FilterStateObject_lastRaw=null;_this13._SortStateObject_cached=undefined;_this13._SortStateObject_lastRaw=null;_this13._CardStateObject_cached=undefined;_this13._CardStateObject_lastRaw=null;_this13._DisplayStateObject_cached=undefined;_this13._DisplayStateObject_lastRaw=null;return _this13;}/**
|
|
99991
100344
|
* Loads the MJ: User Views record from the database
|
|
99992
100345
|
* @param ID: string - primary key value to load the MJ: User Views record.
|
|
99993
100346
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99997,7 +100350,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99997
100350
|
* @memberof MJUserViewEntity
|
|
99998
100351
|
* @method
|
|
99999
100352
|
* @override
|
|
100000
|
-
*/_inherits(MJUserViewEntity,
|
|
100353
|
+
*/_inherits(MJUserViewEntity,_BaseEntity364);return _createClass(MJUserViewEntity,[{key:"Load",value:(function(){var _Load364=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee382(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context382){while(1)switch(_context382.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context382.n=1;return _superPropGet(MJUserViewEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context382.a(2,_context382.v);}},_callee382,this);}));function Load(_x747,_x748){return _Load364.apply(this,arguments);}return Load;}()/**
|
|
100001
100354
|
* * Field Name: ID
|
|
100002
100355
|
* * Display Name: ID
|
|
100003
100356
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100175,7 +100528,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100175
100528
|
* @extends {BaseEntity}
|
|
100176
100529
|
* @class
|
|
100177
100530
|
* @public
|
|
100178
|
-
*/var MJUserEntity=/*#__PURE__*/function(
|
|
100531
|
+
*/var MJUserEntity=/*#__PURE__*/function(_BaseEntity365){function MJUserEntity(){_classCallCheck(this,MJUserEntity);return _callSuper(this,MJUserEntity,arguments);}_inherits(MJUserEntity,_BaseEntity365);return _createClass(MJUserEntity,[{key:"Load",value:(/**
|
|
100179
100532
|
* Loads the MJ: Users record from the database
|
|
100180
100533
|
* @param ID: string - primary key value to load the MJ: Users record.
|
|
100181
100534
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100185,7 +100538,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100185
100538
|
* @memberof MJUserEntity
|
|
100186
100539
|
* @method
|
|
100187
100540
|
* @override
|
|
100188
|
-
*/function(){var
|
|
100541
|
+
*/function(){var _Load365=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee383(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context383){while(1)switch(_context383.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context383.n=1;return _superPropGet(MJUserEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context383.a(2,_context383.v);}},_callee383,this);}));function Load(_x749,_x750){return _Load365.apply(this,arguments);}return Load;}()/**
|
|
100189
100542
|
* * Field Name: ID
|
|
100190
100543
|
* * SQL Data Type: uniqueidentifier
|
|
100191
100544
|
* * Default Value: newsequentialid()
|
|
@@ -100300,7 +100653,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100300
100653
|
* @extends {BaseEntity}
|
|
100301
100654
|
* @class
|
|
100302
100655
|
* @public
|
|
100303
|
-
*/var MJVectorDatabaseEntity=/*#__PURE__*/function(
|
|
100656
|
+
*/var MJVectorDatabaseEntity=/*#__PURE__*/function(_BaseEntity366){function MJVectorDatabaseEntity(){_classCallCheck(this,MJVectorDatabaseEntity);return _callSuper(this,MJVectorDatabaseEntity,arguments);}_inherits(MJVectorDatabaseEntity,_BaseEntity366);return _createClass(MJVectorDatabaseEntity,[{key:"Load",value:(/**
|
|
100304
100657
|
* Loads the MJ: Vector Databases record from the database
|
|
100305
100658
|
* @param ID: string - primary key value to load the MJ: Vector Databases record.
|
|
100306
100659
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100310,7 +100663,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100310
100663
|
* @memberof MJVectorDatabaseEntity
|
|
100311
100664
|
* @method
|
|
100312
100665
|
* @override
|
|
100313
|
-
*/function(){var
|
|
100666
|
+
*/function(){var _Load366=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee384(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context384){while(1)switch(_context384.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context384.n=1;return _superPropGet(MJVectorDatabaseEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context384.a(2,_context384.v);}},_callee384,this);}));function Load(_x751,_x752){return _Load366.apply(this,arguments);}return Load;}()/**
|
|
100314
100667
|
* * Field Name: ID
|
|
100315
100668
|
* * Display Name: ID
|
|
100316
100669
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100368,7 +100721,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100368
100721
|
* @extends {BaseEntity}
|
|
100369
100722
|
* @class
|
|
100370
100723
|
* @public
|
|
100371
|
-
*/var MJVectorIndexEntity=/*#__PURE__*/function(
|
|
100724
|
+
*/var MJVectorIndexEntity=/*#__PURE__*/function(_BaseEntity367){function MJVectorIndexEntity(){_classCallCheck(this,MJVectorIndexEntity);return _callSuper(this,MJVectorIndexEntity,arguments);}_inherits(MJVectorIndexEntity,_BaseEntity367);return _createClass(MJVectorIndexEntity,[{key:"Load",value:(/**
|
|
100372
100725
|
* Loads the MJ: Vector Indexes record from the database
|
|
100373
100726
|
* @param ID: string - primary key value to load the MJ: Vector Indexes record.
|
|
100374
100727
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100378,7 +100731,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100378
100731
|
* @memberof MJVectorIndexEntity
|
|
100379
100732
|
* @method
|
|
100380
100733
|
* @override
|
|
100381
|
-
*/function(){var
|
|
100734
|
+
*/function(){var _Load367=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee385(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context385){while(1)switch(_context385.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context385.n=1;return _superPropGet(MJVectorIndexEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context385.a(2,_context385.v);}},_callee385,this);}));function Load(_x753,_x754){return _Load367.apply(this,arguments);}return Load;}()/**
|
|
100382
100735
|
* * Field Name: ID
|
|
100383
100736
|
* * Display Name: ID
|
|
100384
100737
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100449,7 +100802,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100449
100802
|
* @extends {BaseEntity}
|
|
100450
100803
|
* @class
|
|
100451
100804
|
* @public
|
|
100452
|
-
*/var MJVersionInstallationEntity=/*#__PURE__*/function(
|
|
100805
|
+
*/var MJVersionInstallationEntity=/*#__PURE__*/function(_BaseEntity368){function MJVersionInstallationEntity(){_classCallCheck(this,MJVersionInstallationEntity);return _callSuper(this,MJVersionInstallationEntity,arguments);}_inherits(MJVersionInstallationEntity,_BaseEntity368);return _createClass(MJVersionInstallationEntity,[{key:"Load",value:(/**
|
|
100453
100806
|
* Loads the MJ: Version Installations record from the database
|
|
100454
100807
|
* @param ID: string - primary key value to load the MJ: Version Installations record.
|
|
100455
100808
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100459,7 +100812,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100459
100812
|
* @memberof MJVersionInstallationEntity
|
|
100460
100813
|
* @method
|
|
100461
100814
|
* @override
|
|
100462
|
-
*/function(){var
|
|
100815
|
+
*/function(){var _Load368=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee386(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context386){while(1)switch(_context386.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context386.n=1;return _superPropGet(MJVersionInstallationEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context386.a(2,_context386.v);}},_callee386,this);}));function Load(_x755,_x756){return _Load368.apply(this,arguments);}return Load;}()/**
|
|
100463
100816
|
* * Field Name: ID
|
|
100464
100817
|
* * Display Name: ID
|
|
100465
100818
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100540,7 +100893,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100540
100893
|
* @extends {BaseEntity}
|
|
100541
100894
|
* @class
|
|
100542
100895
|
* @public
|
|
100543
|
-
*/var MJVersionLabelItemEntity=/*#__PURE__*/function(
|
|
100896
|
+
*/var MJVersionLabelItemEntity=/*#__PURE__*/function(_BaseEntity369){function MJVersionLabelItemEntity(){_classCallCheck(this,MJVersionLabelItemEntity);return _callSuper(this,MJVersionLabelItemEntity,arguments);}_inherits(MJVersionLabelItemEntity,_BaseEntity369);return _createClass(MJVersionLabelItemEntity,[{key:"Load",value:(/**
|
|
100544
100897
|
* Loads the MJ: Version Label Items record from the database
|
|
100545
100898
|
* @param ID: string - primary key value to load the MJ: Version Label Items record.
|
|
100546
100899
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100550,7 +100903,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100550
100903
|
* @memberof MJVersionLabelItemEntity
|
|
100551
100904
|
* @method
|
|
100552
100905
|
* @override
|
|
100553
|
-
*/function(){var
|
|
100906
|
+
*/function(){var _Load369=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee387(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context387){while(1)switch(_context387.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context387.n=1;return _superPropGet(MJVersionLabelItemEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context387.a(2,_context387.v);}},_callee387,this);}));function Load(_x757,_x758){return _Load369.apply(this,arguments);}return Load;}()/**
|
|
100554
100907
|
* * Field Name: ID
|
|
100555
100908
|
* * Display Name: ID
|
|
100556
100909
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100610,7 +100963,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100610
100963
|
* @extends {BaseEntity}
|
|
100611
100964
|
* @class
|
|
100612
100965
|
* @public
|
|
100613
|
-
*/var MJVersionLabelRestoreEntity=/*#__PURE__*/function(
|
|
100966
|
+
*/var MJVersionLabelRestoreEntity=/*#__PURE__*/function(_BaseEntity370){function MJVersionLabelRestoreEntity(){_classCallCheck(this,MJVersionLabelRestoreEntity);return _callSuper(this,MJVersionLabelRestoreEntity,arguments);}_inherits(MJVersionLabelRestoreEntity,_BaseEntity370);return _createClass(MJVersionLabelRestoreEntity,[{key:"Load",value:(/**
|
|
100614
100967
|
* Loads the MJ: Version Label Restores record from the database
|
|
100615
100968
|
* @param ID: string - primary key value to load the MJ: Version Label Restores record.
|
|
100616
100969
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100620,7 +100973,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100620
100973
|
* @memberof MJVersionLabelRestoreEntity
|
|
100621
100974
|
* @method
|
|
100622
100975
|
* @override
|
|
100623
|
-
*/function(){var
|
|
100976
|
+
*/function(){var _Load370=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee388(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context388){while(1)switch(_context388.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context388.n=1;return _superPropGet(MJVersionLabelRestoreEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context388.a(2,_context388.v);}},_callee388,this);}));function Load(_x759,_x760){return _Load370.apply(this,arguments);}return Load;}()/**
|
|
100624
100977
|
* * Field Name: ID
|
|
100625
100978
|
* * Display Name: ID
|
|
100626
100979
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100722,7 +101075,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100722
101075
|
* @extends {BaseEntity}
|
|
100723
101076
|
* @class
|
|
100724
101077
|
* @public
|
|
100725
|
-
*/var MJVersionLabelEntity=/*#__PURE__*/function(
|
|
101078
|
+
*/var MJVersionLabelEntity=/*#__PURE__*/function(_BaseEntity371){function MJVersionLabelEntity(){_classCallCheck(this,MJVersionLabelEntity);return _callSuper(this,MJVersionLabelEntity,arguments);}_inherits(MJVersionLabelEntity,_BaseEntity371);return _createClass(MJVersionLabelEntity,[{key:"Load",value:(/**
|
|
100726
101079
|
* Loads the MJ: Version Labels record from the database
|
|
100727
101080
|
* @param ID: string - primary key value to load the MJ: Version Labels record.
|
|
100728
101081
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100732,7 +101085,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100732
101085
|
* @memberof MJVersionLabelEntity
|
|
100733
101086
|
* @method
|
|
100734
101087
|
* @override
|
|
100735
|
-
*/function(){var
|
|
101088
|
+
*/function(){var _Load371=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee389(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context389){while(1)switch(_context389.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context389.n=1;return _superPropGet(MJVersionLabelEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context389.a(2,_context389.v);}},_callee389,this);}));function Load(_x761,_x762){return _Load371.apply(this,arguments);}return Load;}()/**
|
|
100736
101089
|
* * Field Name: ID
|
|
100737
101090
|
* * Display Name: ID
|
|
100738
101091
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100845,7 +101198,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100845
101198
|
* @extends {BaseEntity}
|
|
100846
101199
|
* @class
|
|
100847
101200
|
* @public
|
|
100848
|
-
*/var MJViewTypeEntity=/*#__PURE__*/function(
|
|
101201
|
+
*/var MJViewTypeEntity=/*#__PURE__*/function(_BaseEntity372){function MJViewTypeEntity(){_classCallCheck(this,MJViewTypeEntity);return _callSuper(this,MJViewTypeEntity,arguments);}_inherits(MJViewTypeEntity,_BaseEntity372);return _createClass(MJViewTypeEntity,[{key:"Load",value:(/**
|
|
100849
101202
|
* Loads the MJ: View Types record from the database
|
|
100850
101203
|
* @param ID: string - primary key value to load the MJ: View Types record.
|
|
100851
101204
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100855,7 +101208,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100855
101208
|
* @memberof MJViewTypeEntity
|
|
100856
101209
|
* @method
|
|
100857
101210
|
* @override
|
|
100858
|
-
*/function(){var
|
|
101211
|
+
*/function(){var _Load372=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee390(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context390){while(1)switch(_context390.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context390.n=1;return _superPropGet(MJViewTypeEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context390.a(2,_context390.v);}},_callee390,this);}));function Load(_x763,_x764){return _Load372.apply(this,arguments);}return Load;}()/**
|
|
100859
101212
|
* * Field Name: ID
|
|
100860
101213
|
* * Display Name: ID
|
|
100861
101214
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100929,7 +101282,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100929
101282
|
* @class
|
|
100930
101283
|
* @public
|
|
100931
101284
|
* @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
|
|
100932
|
-
*/var MJWorkflowEngineEntity=/*#__PURE__*/function(
|
|
101285
|
+
*/var MJWorkflowEngineEntity=/*#__PURE__*/function(_BaseEntity373){function MJWorkflowEngineEntity(){_classCallCheck(this,MJWorkflowEngineEntity);return _callSuper(this,MJWorkflowEngineEntity,arguments);}_inherits(MJWorkflowEngineEntity,_BaseEntity373);return _createClass(MJWorkflowEngineEntity,[{key:"Load",value:(/**
|
|
100933
101286
|
* Loads the MJ: Workflow Engines record from the database
|
|
100934
101287
|
* @param ID: string - primary key value to load the MJ: Workflow Engines record.
|
|
100935
101288
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100939,7 +101292,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100939
101292
|
* @memberof MJWorkflowEngineEntity
|
|
100940
101293
|
* @method
|
|
100941
101294
|
* @override
|
|
100942
|
-
*/function(){var
|
|
101295
|
+
*/function(){var _Load373=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee391(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context391){while(1)switch(_context391.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context391.n=1;return _superPropGet(MJWorkflowEngineEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context391.a(2,_context391.v);}},_callee391,this);}));function Load(_x765,_x766){return _Load373.apply(this,arguments);}return Load;}()/**
|
|
100943
101296
|
* * Field Name: ID
|
|
100944
101297
|
* * SQL Data Type: uniqueidentifier
|
|
100945
101298
|
* * Default Value: newsequentialid()
|
|
@@ -100980,7 +101333,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100980
101333
|
* @class
|
|
100981
101334
|
* @public
|
|
100982
101335
|
* @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
|
|
100983
|
-
*/var MJWorkflowRunEntity=/*#__PURE__*/function(
|
|
101336
|
+
*/var MJWorkflowRunEntity=/*#__PURE__*/function(_BaseEntity374){function MJWorkflowRunEntity(){_classCallCheck(this,MJWorkflowRunEntity);return _callSuper(this,MJWorkflowRunEntity,arguments);}_inherits(MJWorkflowRunEntity,_BaseEntity374);return _createClass(MJWorkflowRunEntity,[{key:"Load",value:(/**
|
|
100984
101337
|
* Loads the MJ: Workflow Runs record from the database
|
|
100985
101338
|
* @param ID: string - primary key value to load the MJ: Workflow Runs record.
|
|
100986
101339
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100990,7 +101343,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100990
101343
|
* @memberof MJWorkflowRunEntity
|
|
100991
101344
|
* @method
|
|
100992
101345
|
* @override
|
|
100993
|
-
*/function(){var
|
|
101346
|
+
*/function(){var _Load374=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee392(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context392){while(1)switch(_context392.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context392.n=1;return _superPropGet(MJWorkflowRunEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context392.a(2,_context392.v);}},_callee392,this);}));function Load(_x767,_x768){return _Load374.apply(this,arguments);}return Load;}()/**
|
|
100994
101347
|
* * Field Name: ID
|
|
100995
101348
|
* * Display Name: ID
|
|
100996
101349
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -101058,7 +101411,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101058
101411
|
* @class
|
|
101059
101412
|
* @public
|
|
101060
101413
|
* @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
|
|
101061
|
-
*/var MJWorkflowEntity=/*#__PURE__*/function(
|
|
101414
|
+
*/var MJWorkflowEntity=/*#__PURE__*/function(_BaseEntity375){function MJWorkflowEntity(){_classCallCheck(this,MJWorkflowEntity);return _callSuper(this,MJWorkflowEntity,arguments);}_inherits(MJWorkflowEntity,_BaseEntity375);return _createClass(MJWorkflowEntity,[{key:"Load",value:(/**
|
|
101062
101415
|
* Loads the MJ: Workflows record from the database
|
|
101063
101416
|
* @param ID: string - primary key value to load the MJ: Workflows record.
|
|
101064
101417
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -101068,7 +101421,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101068
101421
|
* @memberof MJWorkflowEntity
|
|
101069
101422
|
* @method
|
|
101070
101423
|
* @override
|
|
101071
|
-
*/function(){var
|
|
101424
|
+
*/function(){var _Load375=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee393(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context393){while(1)switch(_context393.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context393.n=1;return _superPropGet(MJWorkflowEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context393.a(2,_context393.v);}},_callee393,this);}));function Load(_x769,_x770){return _Load375.apply(this,arguments);}return Load;}()/**
|
|
101072
101425
|
* * Field Name: ID
|
|
101073
101426
|
* * SQL Data Type: uniqueidentifier
|
|
101074
101427
|
* * Default Value: newsequentialid()
|
|
@@ -101142,7 +101495,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101142
101495
|
* @class
|
|
101143
101496
|
* @public
|
|
101144
101497
|
* @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
|
|
101145
|
-
*/var MJWorkspaceItemEntity=/*#__PURE__*/function(
|
|
101498
|
+
*/var MJWorkspaceItemEntity=/*#__PURE__*/function(_BaseEntity376){function MJWorkspaceItemEntity(){_classCallCheck(this,MJWorkspaceItemEntity);return _callSuper(this,MJWorkspaceItemEntity,arguments);}_inherits(MJWorkspaceItemEntity,_BaseEntity376);return _createClass(MJWorkspaceItemEntity,[{key:"Load",value:(/**
|
|
101146
101499
|
* Loads the MJ: Workspace Items record from the database
|
|
101147
101500
|
* @param ID: string - primary key value to load the MJ: Workspace Items record.
|
|
101148
101501
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -101152,7 +101505,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101152
101505
|
* @memberof MJWorkspaceItemEntity
|
|
101153
101506
|
* @method
|
|
101154
101507
|
* @override
|
|
101155
|
-
*/function(){var
|
|
101508
|
+
*/function(){var _Load376=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee394(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context394){while(1)switch(_context394.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context394.n=1;return _superPropGet(MJWorkspaceItemEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context394.a(2,_context394.v);}},_callee394,this);}));function Load(_x771,_x772){return _Load376.apply(this,arguments);}return Load;}()/**
|
|
101156
101509
|
* * Field Name: ID
|
|
101157
101510
|
* * Display Name: ID
|
|
101158
101511
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -101218,7 +101571,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101218
101571
|
* @extends {BaseEntity}
|
|
101219
101572
|
* @class
|
|
101220
101573
|
* @public
|
|
101221
|
-
*/var MJWorkspaceEntity=/*#__PURE__*/function(
|
|
101574
|
+
*/var MJWorkspaceEntity=/*#__PURE__*/function(_BaseEntity377){function MJWorkspaceEntity(){_classCallCheck(this,MJWorkspaceEntity);return _callSuper(this,MJWorkspaceEntity,arguments);}_inherits(MJWorkspaceEntity,_BaseEntity377);return _createClass(MJWorkspaceEntity,[{key:"Load",value:(/**
|
|
101222
101575
|
* Loads the MJ: Workspaces record from the database
|
|
101223
101576
|
* @param ID: string - primary key value to load the MJ: Workspaces record.
|
|
101224
101577
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -101228,7 +101581,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101228
101581
|
* @memberof MJWorkspaceEntity
|
|
101229
101582
|
* @method
|
|
101230
101583
|
* @override
|
|
101231
|
-
*/function(){var
|
|
101584
|
+
*/function(){var _Load377=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee395(ID,EntityRelationshipsToLoad){var compositeKey;return _regenerator().w(function(_context395){while(1)switch(_context395.n){case 0:compositeKey=new dist/* CompositeKey */.BT8();compositeKey.KeyValuePairs.push({FieldName:'ID',Value:ID});_context395.n=1;return _superPropGet(MJWorkspaceEntity,"InnerLoad",this,3)([compositeKey,EntityRelationshipsToLoad]);case 1:return _context395.a(2,_context395.v);}},_callee395,this);}));function Load(_x773,_x774){return _Load377.apply(this,arguments);}return Load;}()/**
|
|
101232
101585
|
* * Field Name: ID
|
|
101233
101586
|
* * Display Name: ID
|
|
101234
101587
|
* * SQL Data Type: uniqueidentifier
|