@memberjunction/react-runtime 5.45.0 → 5.46.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 +9 -9
- package/CHANGELOG.md +24 -0
- package/dist/324.runtime.umd.js +1 -1
- package/dist/runtime.umd.js +444 -175
- package/package.json +6 -6
package/dist/runtime.umd.js
CHANGED
|
@@ -46230,7 +46230,17 @@ var ProviderBase = /*#__PURE__*/function () {
|
|
|
46230
46230
|
return _preValidateAndRefresh.apply(this, arguments);
|
|
46231
46231
|
}
|
|
46232
46232
|
return preValidateAndRefresh;
|
|
46233
|
-
}()
|
|
46233
|
+
}()
|
|
46234
|
+
/**
|
|
46235
|
+
* @deprecated The reuse-global fast path now builds a shared shell instead — see
|
|
46236
|
+
* {@link CreateSharedMetadataShell}. The metadata graph is immutable after Config,
|
|
46237
|
+
* so re-instantiating every Info object (~1s of synchronous constructor work for a
|
|
46238
|
+
* ~600-entity install) bought no isolation the shell doesn't already provide.
|
|
46239
|
+
* Subclass OVERRIDES of this method are still honored on the fast path (see
|
|
46240
|
+
* {@link CopyMetadataFromGlobalProvider}) for backward compatibility; new
|
|
46241
|
+
* customizations should override {@link CreateSharedMetadataShell} instead.
|
|
46242
|
+
*/
|
|
46243
|
+
)
|
|
46234
46244
|
}, {
|
|
46235
46245
|
key: "CloneAllMetadata",
|
|
46236
46246
|
value: function CloneAllMetadata(toClone) {
|
|
@@ -46241,17 +46251,76 @@ var ProviderBase = /*#__PURE__*/function () {
|
|
|
46241
46251
|
return newmd;
|
|
46242
46252
|
}
|
|
46243
46253
|
/**
|
|
46244
|
-
*
|
|
46245
|
-
*
|
|
46246
|
-
*
|
|
46254
|
+
* Builds this instance's AllMetadata as a thin shell over another provider's
|
|
46255
|
+
* already-loaded metadata: every metadata array is a PER-INSTANCE shallow copy
|
|
46256
|
+
* whose elements are the SHARED Info object instances, and CurrentUser remains
|
|
46257
|
+
* this instance's own.
|
|
46258
|
+
*
|
|
46259
|
+
* Why sharing the instances is safe — and why this replaced the former deep
|
|
46260
|
+
* clone (CloneAllMetadata) on the reuse-global fast path: the metadata graph is
|
|
46261
|
+
* immutable after Config. Refreshes swap the WHOLE AllMetadata object
|
|
46262
|
+
* (UpdateLocalMetadata), never mutate the Info objects in place, so the only
|
|
46263
|
+
* per-instance datum inside the graph is CurrentUser — which this shell keeps
|
|
46264
|
+
* independent. The deep clone cost ~1s of event-loop-blocking constructor work
|
|
46265
|
+
* per provider on every server request (MemberJunction/MJ#3083); the shell is
|
|
46266
|
+
* ~20 array-of-pointer copies (microseconds).
|
|
46267
|
+
*
|
|
46268
|
+
* Why the array containers are copied rather than aliased: an in-place
|
|
46269
|
+
* `.sort()`/`.push()`/`.splice()` by request-scoped code then stays local to
|
|
46270
|
+
* that provider — matching the clone era's isolation for the common accidental
|
|
46271
|
+
* mutation class — instead of reordering the global graph for every other
|
|
46272
|
+
* in-flight request. Only the top-level AllMetadata collections get this
|
|
46273
|
+
* per-instance protection: everything below them is shared, including the
|
|
46274
|
+
* nested arrays owned by Info objects (`entity.Fields`,
|
|
46275
|
+
* `entity.RelatedEntities`, `application.ApplicationEntities`, ...) — an
|
|
46276
|
+
* in-place mutation of those is process-wide. Property writes on the shared
|
|
46277
|
+
* Info objects themselves are likewise visible process-wide (as they always
|
|
46278
|
+
* were on the client's global provider): treat Info objects and everything
|
|
46279
|
+
* they own as read-only; copy before sorting.
|
|
46280
|
+
*
|
|
46281
|
+
* Override precedence: if a subclass overrides BOTH this method and the
|
|
46282
|
+
* deprecated {@link CloneAllMetadata}, the CloneAllMetadata override wins on
|
|
46283
|
+
* the fast path (see {@link CopyMetadataFromGlobalProvider}) — the
|
|
46284
|
+
* conservative back-compat choice, since pre-#3083 subclasses could only have
|
|
46285
|
+
* customized adoption through CloneAllMetadata. Remove the CloneAllMetadata
|
|
46286
|
+
* override to activate a CreateSharedMetadataShell override.
|
|
46287
|
+
*/
|
|
46288
|
+
}, {
|
|
46289
|
+
key: "CreateSharedMetadataShell",
|
|
46290
|
+
value: function CreateSharedMetadataShell(shared) {
|
|
46291
|
+
var shell = new AllMetadata();
|
|
46292
|
+
for (var _i9 = 0, _AllMetadataArrays = AllMetadataArrays; _i9 < _AllMetadataArrays.length; _i9++) {
|
|
46293
|
+
var _shared$m$key;
|
|
46294
|
+
var m = _AllMetadataArrays[_i9];
|
|
46295
|
+
shell[m.key] = providerBase_toConsumableArray((_shared$m$key = shared[m.key]) !== null && _shared$m$key !== void 0 ? _shared$m$key : []);
|
|
46296
|
+
}
|
|
46297
|
+
shell.CurrentUser = this.CurrentUser; // same semantics the deep clone had — per-instance, not shared
|
|
46298
|
+
return shell;
|
|
46299
|
+
}
|
|
46300
|
+
/**
|
|
46301
|
+
* Adopts the global provider's metadata for this instance without reloading it
|
|
46302
|
+
* from the server: shares the (immutable post-Config) metadata arrays by
|
|
46303
|
+
* reference via {@link CreateSharedMetadataShell} and builds this instance's
|
|
46304
|
+
* entity lookup maps.
|
|
46247
46305
|
*/
|
|
46248
46306
|
}, {
|
|
46249
46307
|
key: "CopyMetadataFromGlobalProvider",
|
|
46250
46308
|
value: function CopyMetadataFromGlobalProvider() {
|
|
46251
46309
|
try {
|
|
46252
|
-
|
|
46253
|
-
|
|
46254
|
-
|
|
46310
|
+
var _Metadata$Provider, _globalMetadata$AllEn, _globalMetadata$AllEn2;
|
|
46311
|
+
// Require the global provider to actually HAVE metadata (entities loaded) — a
|
|
46312
|
+
// registered-but-not-yet-configured global would otherwise donate an empty graph
|
|
46313
|
+
// and this Config would "succeed" with zero entities. Falling through to the
|
|
46314
|
+
// normal load path is the correct behavior in that case.
|
|
46315
|
+
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
|
|
46316
|
+
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) {
|
|
46317
|
+
// Back-compat: before #3083 this path called the overridable CloneAllMetadata,
|
|
46318
|
+
// so external subclasses could customize adoption (e.g. tenant-filtered deep
|
|
46319
|
+
// clones). Honor such overrides; the base behavior is the cheap shared shell.
|
|
46320
|
+
// If a subclass overrides both, the CloneAllMetadata override deliberately wins.
|
|
46321
|
+
var subclassOverridesClone = this.CloneAllMetadata !== ProviderBase.prototype.CloneAllMetadata;
|
|
46322
|
+
var adopted = subclassOverridesClone ? this.CloneAllMetadata(globalMetadata) : this.CreateSharedMetadataShell(globalMetadata);
|
|
46323
|
+
this.UpdateLocalMetadata(adopted);
|
|
46255
46324
|
return true;
|
|
46256
46325
|
}
|
|
46257
46326
|
return false;
|
|
@@ -56373,7 +56442,7 @@ var DatabaseProviderBase = /*#__PURE__*/function (_ProviderBase) {
|
|
|
56373
56442
|
return recordMergeLog.Save();
|
|
56374
56443
|
case 2:
|
|
56375
56444
|
if (!_context27.v) {
|
|
56376
|
-
_context27.n =
|
|
56445
|
+
_context27.n = 13;
|
|
56377
56446
|
break;
|
|
56378
56447
|
}
|
|
56379
56448
|
_iterator11 = databaseProviderBase_createForOfIteratorHelper(result.RecordStatus);
|
|
@@ -56381,7 +56450,7 @@ var DatabaseProviderBase = /*#__PURE__*/function (_ProviderBase) {
|
|
|
56381
56450
|
_iterator11.s();
|
|
56382
56451
|
case 4:
|
|
56383
56452
|
if ((_step11 = _iterator11.n()).done) {
|
|
56384
|
-
_context27.n =
|
|
56453
|
+
_context27.n = 9;
|
|
56385
56454
|
break;
|
|
56386
56455
|
}
|
|
56387
56456
|
d = _step11.value;
|
|
@@ -56403,36 +56472,38 @@ var DatabaseProviderBase = /*#__PURE__*/function (_ProviderBase) {
|
|
|
56403
56472
|
}
|
|
56404
56473
|
throw new Error('Error saving record merge deletion log');
|
|
56405
56474
|
case 7:
|
|
56406
|
-
|
|
56407
|
-
break;
|
|
56475
|
+
d.RecordMergeDeletionLogID = deletionLog.Get('ID');
|
|
56408
56476
|
case 8:
|
|
56409
|
-
_context27.n =
|
|
56477
|
+
_context27.n = 4;
|
|
56410
56478
|
break;
|
|
56411
56479
|
case 9:
|
|
56412
|
-
_context27.
|
|
56413
|
-
|
|
56414
|
-
_iterator11.e(_t15);
|
|
56480
|
+
_context27.n = 11;
|
|
56481
|
+
break;
|
|
56415
56482
|
case 10:
|
|
56416
56483
|
_context27.p = 10;
|
|
56417
|
-
|
|
56418
|
-
|
|
56484
|
+
_t15 = _context27.v;
|
|
56485
|
+
_iterator11.e(_t15);
|
|
56419
56486
|
case 11:
|
|
56420
|
-
_context27.
|
|
56421
|
-
|
|
56487
|
+
_context27.p = 11;
|
|
56488
|
+
_iterator11.f();
|
|
56489
|
+
return _context27.f(11);
|
|
56422
56490
|
case 12:
|
|
56423
|
-
|
|
56424
|
-
case 13:
|
|
56425
|
-
_context27.n = 15;
|
|
56491
|
+
_context27.n = 14;
|
|
56426
56492
|
break;
|
|
56493
|
+
case 13:
|
|
56494
|
+
throw new Error('Error saving record merge log');
|
|
56427
56495
|
case 14:
|
|
56428
|
-
_context27.
|
|
56496
|
+
_context27.n = 16;
|
|
56497
|
+
break;
|
|
56498
|
+
case 15:
|
|
56499
|
+
_context27.p = 15;
|
|
56429
56500
|
_t16 = _context27.v;
|
|
56430
56501
|
// do nothing here because we often will get here since some conditions lead to no DB updates possible
|
|
56431
56502
|
LogError(_t16);
|
|
56432
|
-
case
|
|
56503
|
+
case 16:
|
|
56433
56504
|
return _context27.a(2);
|
|
56434
56505
|
}
|
|
56435
|
-
}, _callee25, this, [[3,
|
|
56506
|
+
}, _callee25, this, [[3, 10, 11, 12], [0, 15]]);
|
|
56436
56507
|
}));
|
|
56437
56508
|
function CompleteMergeLogging(_x99, _x100, _x101) {
|
|
56438
56509
|
return _CompleteMergeLogging.apply(this, arguments);
|
|
@@ -57965,7 +58036,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
57965
58036
|
o1C: () => (/* reexport */ ViewInfo)
|
|
57966
58037
|
});
|
|
57967
58038
|
|
|
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
|
|
58039
|
+
// 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
58040
|
|
|
57970
58041
|
// EXTERNAL MODULE: ../../MJCore/dist/index.js + 88 modules
|
|
57971
58042
|
var dist = __webpack_require__(752);
|
|
@@ -62890,7 +62961,7 @@ function _regenerator(){/*! regenerator-runtime -- Copyright (c) 2014-present, F
|
|
|
62890
62961
|
* zod schema definition for the entity MJ: Open App Install Histories
|
|
62891
62962
|
*/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
62963
|
* 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)")});/**
|
|
62964
|
+
*/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
62965
|
* zod schema definition for the entity MJ: Output Delivery Types
|
|
62895
62966
|
*/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
62967
|
* zod schema definition for the entity MJ: Output Format Types
|
|
@@ -62991,6 +63062,8 @@ function _regenerator(){/*! regenerator-runtime -- Copyright (c) 2014-present, F
|
|
|
62991
63062
|
*/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
63063
|
* zod schema definition for the entity MJ: Schema Info
|
|
62993
63064
|
*/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).")});/**
|
|
63065
|
+
* zod schema definition for the entity MJ: Scoped Prompt Configs
|
|
63066
|
+
*/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
63067
|
* zod schema definition for the entity MJ: Scoped Prompt Parts
|
|
62995
63068
|
*/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
63069
|
* zod schema definition for the entity MJ: Search Execution Logs
|
|
@@ -89954,6 +90027,29 @@ var regex=/^[a-z0-9-]+$/;if(this.Name!=null&&!regex.test(this.Name)){result.Erro
|
|
|
89954
90027
|
* * SQL Data Type: nvarchar(500)
|
|
89955
90028
|
* * 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
90029
|
*/},{key:"Subpath",get:function get(){return this.Get('Subpath');},set:function set(value){this.Set('Subpath',value);}/**
|
|
90030
|
+
* * Field Name: LastCompletedStep
|
|
90031
|
+
* * Display Name: Last Completed Step
|
|
90032
|
+
* * SQL Data Type: nvarchar(50)
|
|
90033
|
+
* * Value List Type: List
|
|
90034
|
+
* * Possible Values
|
|
90035
|
+
* * AngularExcludesUpdated
|
|
90036
|
+
* * ConfigUpdated
|
|
90037
|
+
* * DbCleanupDone
|
|
90038
|
+
* * DependenciesReplaced
|
|
90039
|
+
* * FilesRemoved
|
|
90040
|
+
* * Finalized
|
|
90041
|
+
* * HooksRun
|
|
90042
|
+
* * MigrationsApplied
|
|
90043
|
+
* * PackagesInstalled
|
|
90044
|
+
* * RecordCreated
|
|
90045
|
+
* * RecordUpdated
|
|
90046
|
+
* * 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).
|
|
90047
|
+
*/},{key:"LastCompletedStep",get:function get(){return this.Get('LastCompletedStep');},set:function set(value){this.Set('LastCompletedStep',value);}/**
|
|
90048
|
+
* * Field Name: LastCompletedStepTargetVersion
|
|
90049
|
+
* * Display Name: Last Completed Step Target Version
|
|
90050
|
+
* * SQL Data Type: nvarchar(20)
|
|
90051
|
+
* * 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.
|
|
90052
|
+
*/},{key:"LastCompletedStepTargetVersion",get:function get(){return this.Get('LastCompletedStepTargetVersion');},set:function set(value){this.Set('LastCompletedStepTargetVersion',value);}/**
|
|
89957
90053
|
* * Field Name: InstalledByUser
|
|
89958
90054
|
* * Display Name: Installed By User
|
|
89959
90055
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -94698,6 +94794,179 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94698
94794
|
* * SQL Data Type: nvarchar(50)
|
|
94699
94795
|
* * 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
94796
|
*/},{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);/**
|
|
94797
|
+
* MJ: Scoped Prompt Configs - strongly typed entity sub-class
|
|
94798
|
+
* * Schema: __mj
|
|
94799
|
+
* * Base Table: ScopedPromptConfig
|
|
94800
|
+
* * Base View: vwScopedPromptConfigs
|
|
94801
|
+
* * @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.
|
|
94802
|
+
* * Primary Key: ID
|
|
94803
|
+
* @extends {BaseEntity}
|
|
94804
|
+
* @class
|
|
94805
|
+
* @public
|
|
94806
|
+
*/var MJScopedPromptConfigEntity=/*#__PURE__*/function(_BaseEntity304){function MJScopedPromptConfigEntity(){_classCallCheck(this,MJScopedPromptConfigEntity);return _callSuper(this,MJScopedPromptConfigEntity,arguments);}_inherits(MJScopedPromptConfigEntity,_BaseEntity304);return _createClass(MJScopedPromptConfigEntity,[{key:"Load",value:(/**
|
|
94807
|
+
* Loads the MJ: Scoped Prompt Configs record from the database
|
|
94808
|
+
* @param ID: string - primary key value to load the MJ: Scoped Prompt Configs record.
|
|
94809
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
94810
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
94811
|
+
* @public
|
|
94812
|
+
* @async
|
|
94813
|
+
* @memberof MJScopedPromptConfigEntity
|
|
94814
|
+
* @method
|
|
94815
|
+
* @override
|
|
94816
|
+
*/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;}()/**
|
|
94817
|
+
* * Field Name: ID
|
|
94818
|
+
* * Display Name: ID
|
|
94819
|
+
* * SQL Data Type: uniqueidentifier
|
|
94820
|
+
* * Default Value: newsequentialid()
|
|
94821
|
+
*/)},{key:"ID",get:function get(){return this.Get('ID');},set:function set(value){this.Set('ID',value);}/**
|
|
94822
|
+
* * Field Name: PromptID
|
|
94823
|
+
* * Display Name: Prompt
|
|
94824
|
+
* * SQL Data Type: uniqueidentifier
|
|
94825
|
+
* * Related Entity/Foreign Key: MJ: AI Prompts (vwAIPrompts.ID)
|
|
94826
|
+
* * Description: The AIPrompt whose run settings this row overrides.
|
|
94827
|
+
*/},{key:"PromptID",get:function get(){return this.Get('PromptID');},set:function set(value){this.Set('PromptID',value);}/**
|
|
94828
|
+
* * Field Name: Description
|
|
94829
|
+
* * Display Name: Description
|
|
94830
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
94831
|
+
* * Description: Optional human-readable note about this override (authoring aid; not sent to the model).
|
|
94832
|
+
*/},{key:"Description",get:function get(){return this.Get('Description');},set:function set(value){this.Set('Description',value);}/**
|
|
94833
|
+
* * Field Name: PrimaryScopeEntityID
|
|
94834
|
+
* * Display Name: Primary Scope Entity ID
|
|
94835
|
+
* * SQL Data Type: uniqueidentifier
|
|
94836
|
+
* * Related Entity/Foreign Key: MJ: Entities (vwEntities.ID)
|
|
94837
|
+
*/},{key:"PrimaryScopeEntityID",get:function get(){return this.Get('PrimaryScopeEntityID');},set:function set(value){this.Set('PrimaryScopeEntityID',value);}/**
|
|
94838
|
+
* * Field Name: PrimaryScopeRecordID
|
|
94839
|
+
* * Display Name: Primary Scope Record ID
|
|
94840
|
+
* * SQL Data Type: nvarchar(100)
|
|
94841
|
+
* * 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).
|
|
94842
|
+
*/},{key:"PrimaryScopeRecordID",get:function get(){return this.Get('PrimaryScopeRecordID');},set:function set(value){this.Set('PrimaryScopeRecordID',value);}/**
|
|
94843
|
+
* * Field Name: SecondaryScopes
|
|
94844
|
+
* * Display Name: Secondary Scopes
|
|
94845
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
94846
|
+
* * 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.
|
|
94847
|
+
*/},{key:"SecondaryScopes",get:function get(){return this.Get('SecondaryScopes');},set:function set(value){this.Set('SecondaryScopes',value);}/**
|
|
94848
|
+
* * Field Name: Status
|
|
94849
|
+
* * Display Name: Status
|
|
94850
|
+
* * SQL Data Type: nvarchar(20)
|
|
94851
|
+
* * Default Value: Active
|
|
94852
|
+
* * Value List Type: List
|
|
94853
|
+
* * Possible Values
|
|
94854
|
+
* * Active
|
|
94855
|
+
* * Archived
|
|
94856
|
+
* * Provisional
|
|
94857
|
+
* * 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.
|
|
94858
|
+
*/},{key:"Status",get:function get(){return this.Get('Status');},set:function set(value){this.Set('Status',value);}/**
|
|
94859
|
+
* * Field Name: Priority
|
|
94860
|
+
* * Display Name: Priority
|
|
94861
|
+
* * SQL Data Type: int
|
|
94862
|
+
* * Default Value: 0
|
|
94863
|
+
* * Description: Precedence / tie-break for resolution. Higher wins when two rows tie on scope specificity. Default 0.
|
|
94864
|
+
*/},{key:"Priority",get:function get(){return this.Get('Priority');},set:function set(value){this.Set('Priority',value);}/**
|
|
94865
|
+
* * Field Name: ModelID
|
|
94866
|
+
* * Display Name: Model ID
|
|
94867
|
+
* * SQL Data Type: uniqueidentifier
|
|
94868
|
+
* * Related Entity/Foreign Key: MJ: AI Models (vwAIModels.ID)
|
|
94869
|
+
* * Description: Optional model override for this scope. NULL = use the prompt's own model selection. Applied as AIPromptParams.override.modelId.
|
|
94870
|
+
*/},{key:"ModelID",get:function get(){return this.Get('ModelID');},set:function set(value){this.Set('ModelID',value);}/**
|
|
94871
|
+
* * Field Name: VendorID
|
|
94872
|
+
* * Display Name: Vendor ID
|
|
94873
|
+
* * SQL Data Type: uniqueidentifier
|
|
94874
|
+
* * Related Entity/Foreign Key: MJ: AI Vendors (vwAIVendors.ID)
|
|
94875
|
+
* * Description: Optional vendor override paired with ModelID (which inference provider serves the model). NULL = let MJ pick. Applied as AIPromptParams.override.vendorId.
|
|
94876
|
+
*/},{key:"VendorID",get:function get(){return this.Get('VendorID');},set:function set(value){this.Set('VendorID',value);}/**
|
|
94877
|
+
* * Field Name: ConfigurationID
|
|
94878
|
+
* * Display Name: Configuration ID
|
|
94879
|
+
* * SQL Data Type: uniqueidentifier
|
|
94880
|
+
* * Related Entity/Foreign Key: MJ: AI Configurations (vwAIConfigurations.ID)
|
|
94881
|
+
* * Description: Optional AI Configuration (environment) override for this scope. NULL = inherit. Applied as AIPromptParams.configurationId.
|
|
94882
|
+
*/},{key:"ConfigurationID",get:function get(){return this.Get('ConfigurationID');},set:function set(value){this.Set('ConfigurationID',value);}/**
|
|
94883
|
+
* * Field Name: Temperature
|
|
94884
|
+
* * Display Name: Temperature
|
|
94885
|
+
* * SQL Data Type: decimal(3, 2)
|
|
94886
|
+
* * Description: Sampling temperature override. NULL = inherit the prompt default. Applied via AIPromptParams.additionalParameters.
|
|
94887
|
+
*/},{key:"Temperature",get:function get(){return this.Get('Temperature');},set:function set(value){this.Set('Temperature',value);}/**
|
|
94888
|
+
* * Field Name: TopP
|
|
94889
|
+
* * Display Name: Top P
|
|
94890
|
+
* * SQL Data Type: decimal(3, 2)
|
|
94891
|
+
* * Description: Nucleus-sampling (top-p) override. NULL = inherit. Applied via additionalParameters.
|
|
94892
|
+
*/},{key:"TopP",get:function get(){return this.Get('TopP');},set:function set(value){this.Set('TopP',value);}/**
|
|
94893
|
+
* * Field Name: TopK
|
|
94894
|
+
* * Display Name: Top K
|
|
94895
|
+
* * SQL Data Type: int
|
|
94896
|
+
* * Description: Top-k sampling override. NULL = inherit. Applied via additionalParameters.
|
|
94897
|
+
*/},{key:"TopK",get:function get(){return this.Get('TopK');},set:function set(value){this.Set('TopK',value);}/**
|
|
94898
|
+
* * Field Name: MinP
|
|
94899
|
+
* * Display Name: Min P
|
|
94900
|
+
* * SQL Data Type: decimal(3, 2)
|
|
94901
|
+
* * Description: Min-p sampling override. NULL = inherit. Applied via additionalParameters.
|
|
94902
|
+
*/},{key:"MinP",get:function get(){return this.Get('MinP');},set:function set(value){this.Set('MinP',value);}/**
|
|
94903
|
+
* * Field Name: FrequencyPenalty
|
|
94904
|
+
* * Display Name: Frequency Penalty
|
|
94905
|
+
* * SQL Data Type: decimal(3, 2)
|
|
94906
|
+
* * Description: Frequency-penalty override. NULL = inherit. Applied via additionalParameters.
|
|
94907
|
+
*/},{key:"FrequencyPenalty",get:function get(){return this.Get('FrequencyPenalty');},set:function set(value){this.Set('FrequencyPenalty',value);}/**
|
|
94908
|
+
* * Field Name: PresencePenalty
|
|
94909
|
+
* * Display Name: Presence Penalty
|
|
94910
|
+
* * SQL Data Type: decimal(3, 2)
|
|
94911
|
+
* * Description: Presence-penalty override. NULL = inherit. Applied via additionalParameters.
|
|
94912
|
+
*/},{key:"PresencePenalty",get:function get(){return this.Get('PresencePenalty');},set:function set(value){this.Set('PresencePenalty',value);}/**
|
|
94913
|
+
* * Field Name: Seed
|
|
94914
|
+
* * Display Name: Seed
|
|
94915
|
+
* * SQL Data Type: int
|
|
94916
|
+
* * Description: Deterministic sampling seed override. NULL = inherit. Applied via additionalParameters.
|
|
94917
|
+
*/},{key:"Seed",get:function get(){return this.Get('Seed');},set:function set(value){this.Set('Seed',value);}/**
|
|
94918
|
+
* * Field Name: StopSequences
|
|
94919
|
+
* * Display Name: Stop Sequences
|
|
94920
|
+
* * SQL Data Type: nvarchar(1000)
|
|
94921
|
+
* * Description: Comma-delimited stop sequences override. NULL = inherit. Applied via additionalParameters.
|
|
94922
|
+
*/},{key:"StopSequences",get:function get(){return this.Get('StopSequences');},set:function set(value){this.Set('StopSequences',value);}/**
|
|
94923
|
+
* * Field Name: ResponseFormat
|
|
94924
|
+
* * Display Name: Response Format
|
|
94925
|
+
* * SQL Data Type: nvarchar(20)
|
|
94926
|
+
* * Value List Type: List
|
|
94927
|
+
* * Possible Values
|
|
94928
|
+
* * Any
|
|
94929
|
+
* * JSON
|
|
94930
|
+
* * Markdown
|
|
94931
|
+
* * ModelSpecific
|
|
94932
|
+
* * Text
|
|
94933
|
+
* * Description: Response-format override: Any, JSON, Markdown, ModelSpecific, or Text. NULL = inherit. Applied via additionalParameters.
|
|
94934
|
+
*/},{key:"ResponseFormat",get:function get(){return this.Get('ResponseFormat');},set:function set(value){this.Set('ResponseFormat',value);}/**
|
|
94935
|
+
* * Field Name: EffortLevel
|
|
94936
|
+
* * Display Name: Effort Level
|
|
94937
|
+
* * SQL Data Type: int
|
|
94938
|
+
* * Description: Reasoning/effort level override (1-100). NULL = inherit the prompt default. Applied as AIPromptParams.effortLevel.
|
|
94939
|
+
*/},{key:"EffortLevel",get:function get(){return this.Get('EffortLevel');},set:function set(value){this.Set('EffortLevel',value);}/**
|
|
94940
|
+
* * Field Name: __mj_CreatedAt
|
|
94941
|
+
* * Display Name: Created At
|
|
94942
|
+
* * SQL Data Type: datetimeoffset
|
|
94943
|
+
* * Default Value: getutcdate()
|
|
94944
|
+
*/},{key:"__mj_CreatedAt",get:function get(){return this.Get('__mj_CreatedAt');}/**
|
|
94945
|
+
* * Field Name: __mj_UpdatedAt
|
|
94946
|
+
* * Display Name: Updated At
|
|
94947
|
+
* * SQL Data Type: datetimeoffset
|
|
94948
|
+
* * Default Value: getutcdate()
|
|
94949
|
+
*/},{key:"__mj_UpdatedAt",get:function get(){return this.Get('__mj_UpdatedAt');}/**
|
|
94950
|
+
* * Field Name: Prompt
|
|
94951
|
+
* * Display Name: Prompt Name
|
|
94952
|
+
* * SQL Data Type: nvarchar(255)
|
|
94953
|
+
*/},{key:"Prompt",get:function get(){return this.Get('Prompt');}/**
|
|
94954
|
+
* * Field Name: PrimaryScopeEntity
|
|
94955
|
+
* * Display Name: Primary Scope Entity
|
|
94956
|
+
* * SQL Data Type: nvarchar(255)
|
|
94957
|
+
*/},{key:"PrimaryScopeEntity",get:function get(){return this.Get('PrimaryScopeEntity');}/**
|
|
94958
|
+
* * Field Name: Model
|
|
94959
|
+
* * Display Name: Model
|
|
94960
|
+
* * SQL Data Type: nvarchar(50)
|
|
94961
|
+
*/},{key:"Model",get:function get(){return this.Get('Model');}/**
|
|
94962
|
+
* * Field Name: Vendor
|
|
94963
|
+
* * Display Name: Vendor
|
|
94964
|
+
* * SQL Data Type: nvarchar(50)
|
|
94965
|
+
*/},{key:"Vendor",get:function get(){return this.Get('Vendor');}/**
|
|
94966
|
+
* * Field Name: Configuration
|
|
94967
|
+
* * Display Name: Configuration
|
|
94968
|
+
* * SQL Data Type: nvarchar(100)
|
|
94969
|
+
*/},{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
94970
|
* MJ: Scoped Prompt Parts - strongly typed entity sub-class
|
|
94702
94971
|
* * Schema: __mj
|
|
94703
94972
|
* * Base Table: ScopedPromptPart
|
|
@@ -94707,7 +94976,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94707
94976
|
* @extends {BaseEntity}
|
|
94708
94977
|
* @class
|
|
94709
94978
|
* @public
|
|
94710
|
-
*/var MJScopedPromptPartEntity=/*#__PURE__*/function(
|
|
94979
|
+
*/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
94980
|
* Loads the MJ: Scoped Prompt Parts record from the database
|
|
94712
94981
|
* @param ID: string - primary key value to load the MJ: Scoped Prompt Parts record.
|
|
94713
94982
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -94717,7 +94986,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94717
94986
|
* @memberof MJScopedPromptPartEntity
|
|
94718
94987
|
* @method
|
|
94719
94988
|
* @override
|
|
94720
|
-
*/_inherits(MJScopedPromptPartEntity,
|
|
94989
|
+
*/_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
94990
|
* * Field Name: ID
|
|
94722
94991
|
* * Display Name: ID
|
|
94723
94992
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -94833,7 +95102,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94833
95102
|
* @extends {BaseEntity}
|
|
94834
95103
|
* @class
|
|
94835
95104
|
* @public
|
|
94836
|
-
*/var MJSearchExecutionLogEntity=/*#__PURE__*/function(
|
|
95105
|
+
*/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
95106
|
* Loads the MJ: Search Execution Logs record from the database
|
|
94838
95107
|
* @param ID: string - primary key value to load the MJ: Search Execution Logs record.
|
|
94839
95108
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -94843,7 +95112,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94843
95112
|
* @memberof MJSearchExecutionLogEntity
|
|
94844
95113
|
* @method
|
|
94845
95114
|
* @override
|
|
94846
|
-
*/function(){var
|
|
95115
|
+
*/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
95116
|
* * Field Name: ID
|
|
94848
95117
|
* * Display Name: ID
|
|
94849
95118
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -94943,7 +95212,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94943
95212
|
* @extends {BaseEntity}
|
|
94944
95213
|
* @class
|
|
94945
95214
|
* @public
|
|
94946
|
-
*/var MJSearchProviderEntity=/*#__PURE__*/function(
|
|
95215
|
+
*/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
95216
|
* Loads the MJ: Search Providers record from the database
|
|
94948
95217
|
* @param ID: string - primary key value to load the MJ: Search Providers record.
|
|
94949
95218
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -94953,7 +95222,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
94953
95222
|
* @memberof MJSearchProviderEntity
|
|
94954
95223
|
* @method
|
|
94955
95224
|
* @override
|
|
94956
|
-
*/function(){var
|
|
95225
|
+
*/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
95226
|
* 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
95227
|
* * Priority: The priority level must be a non-negative value (0 or greater) to ensure valid ordering and categorization of records.
|
|
94959
95228
|
* @public
|
|
@@ -95062,7 +95331,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
95062
95331
|
* @extends {BaseEntity}
|
|
95063
95332
|
* @class
|
|
95064
95333
|
* @public
|
|
95065
|
-
*/var MJSearchScopeEntityEntity=/*#__PURE__*/function(
|
|
95334
|
+
*/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
95335
|
* Loads the MJ: Search Scope Entities record from the database
|
|
95067
95336
|
* @param ID: string - primary key value to load the MJ: Search Scope Entities record.
|
|
95068
95337
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95072,7 +95341,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
95072
95341
|
* @memberof MJSearchScopeEntityEntity
|
|
95073
95342
|
* @method
|
|
95074
95343
|
* @override
|
|
95075
|
-
*/function(){var
|
|
95344
|
+
*/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
95345
|
* * Field Name: ID
|
|
95077
95346
|
* * Display Name: ID
|
|
95078
95347
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95125,7 +95394,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
95125
95394
|
* @extends {BaseEntity}
|
|
95126
95395
|
* @class
|
|
95127
95396
|
* @public
|
|
95128
|
-
*/var MJSearchScopeExternalIndexEntity=/*#__PURE__*/function(
|
|
95397
|
+
*/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
95398
|
* Loads the MJ: Search Scope External Indexes record from the database
|
|
95130
95399
|
* @param ID: string - primary key value to load the MJ: Search Scope External Indexes record.
|
|
95131
95400
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95135,7 +95404,7 @@ _context309.p=1;_context309.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
95135
95404
|
* @memberof MJSearchScopeExternalIndexEntity
|
|
95136
95405
|
* @method
|
|
95137
95406
|
* @override
|
|
95138
|
-
*/function(){var
|
|
95407
|
+
*/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
95408
|
* 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
95409
|
* * 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
95410
|
* @public
|
|
@@ -95221,7 +95490,7 @@ if(this.IndexType!=='Vector'&&(this.ExternalIndexName==null||this.ExternalIndexN
|
|
|
95221
95490
|
* @extends {BaseEntity}
|
|
95222
95491
|
* @class
|
|
95223
95492
|
* @public
|
|
95224
|
-
*/var MJSearchScopePermissionEntity=/*#__PURE__*/function(
|
|
95493
|
+
*/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
95494
|
* Loads the MJ: Search Scope Permissions record from the database
|
|
95226
95495
|
* @param ID: string - primary key value to load the MJ: Search Scope Permissions record.
|
|
95227
95496
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95231,7 +95500,7 @@ if(this.IndexType!=='Vector'&&(this.ExternalIndexName==null||this.ExternalIndexN
|
|
|
95231
95500
|
* @memberof MJSearchScopePermissionEntity
|
|
95232
95501
|
* @method
|
|
95233
95502
|
* @override
|
|
95234
|
-
*/function(){var
|
|
95503
|
+
*/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
95504
|
* 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
95505
|
* * 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
95506
|
* @public
|
|
@@ -95311,7 +95580,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95311
95580
|
* @extends {BaseEntity}
|
|
95312
95581
|
* @class
|
|
95313
95582
|
* @public
|
|
95314
|
-
*/var MJSearchScopeProviderEntity=/*#__PURE__*/function(
|
|
95583
|
+
*/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
95584
|
* Loads the MJ: Search Scope Providers record from the database
|
|
95316
95585
|
* @param ID: string - primary key value to load the MJ: Search Scope Providers record.
|
|
95317
95586
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95321,7 +95590,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95321
95590
|
* @memberof MJSearchScopeProviderEntity
|
|
95322
95591
|
* @method
|
|
95323
95592
|
* @override
|
|
95324
|
-
*/function(){var
|
|
95593
|
+
*/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
95594
|
* * Field Name: ID
|
|
95326
95595
|
* * Display Name: ID
|
|
95327
95596
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95390,7 +95659,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95390
95659
|
* @extends {BaseEntity}
|
|
95391
95660
|
* @class
|
|
95392
95661
|
* @public
|
|
95393
|
-
*/var MJSearchScopeStorageAccountEntity=/*#__PURE__*/function(
|
|
95662
|
+
*/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
95663
|
* Loads the MJ: Search Scope Storage Accounts record from the database
|
|
95395
95664
|
* @param ID: string - primary key value to load the MJ: Search Scope Storage Accounts record.
|
|
95396
95665
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95400,7 +95669,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95400
95669
|
* @memberof MJSearchScopeStorageAccountEntity
|
|
95401
95670
|
* @method
|
|
95402
95671
|
* @override
|
|
95403
|
-
*/function(){var
|
|
95672
|
+
*/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
95673
|
* * Field Name: ID
|
|
95405
95674
|
* * Display Name: ID
|
|
95406
95675
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95448,7 +95717,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95448
95717
|
* @extends {BaseEntity}
|
|
95449
95718
|
* @class
|
|
95450
95719
|
* @public
|
|
95451
|
-
*/var MJSearchScopeTestQueryEntity=/*#__PURE__*/function(
|
|
95720
|
+
*/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
95721
|
* Loads the MJ: Search Scope Test Queries record from the database
|
|
95453
95722
|
* @param ID: string - primary key value to load the MJ: Search Scope Test Queries record.
|
|
95454
95723
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95458,7 +95727,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95458
95727
|
* @memberof MJSearchScopeTestQueryEntity
|
|
95459
95728
|
* @method
|
|
95460
95729
|
* @override
|
|
95461
|
-
*/function(){var
|
|
95730
|
+
*/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
95731
|
* * Field Name: ID
|
|
95463
95732
|
* * Display Name: ID
|
|
95464
95733
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95518,7 +95787,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95518
95787
|
* @extends {BaseEntity}
|
|
95519
95788
|
* @class
|
|
95520
95789
|
* @public
|
|
95521
|
-
*/var MJSearchScopeEntity=/*#__PURE__*/function(
|
|
95790
|
+
*/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
95791
|
* Loads the MJ: Search Scopes record from the database
|
|
95523
95792
|
* @param ID: string - primary key value to load the MJ: Search Scopes record.
|
|
95524
95793
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95528,7 +95797,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95528
95797
|
* @memberof MJSearchScopeEntity
|
|
95529
95798
|
* @method
|
|
95530
95799
|
* @override
|
|
95531
|
-
*/function(){var
|
|
95800
|
+
*/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
95801
|
* * Field Name: ID
|
|
95533
95802
|
* * Display Name: ID
|
|
95534
95803
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95624,7 +95893,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95624
95893
|
* @extends {BaseEntity}
|
|
95625
95894
|
* @class
|
|
95626
95895
|
* @public
|
|
95627
|
-
*/var MJSignatureAccountEntity=/*#__PURE__*/function(
|
|
95896
|
+
*/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
95897
|
* Loads the MJ: Signature Accounts record from the database
|
|
95629
95898
|
* @param ID: string - primary key value to load the MJ: Signature Accounts record.
|
|
95630
95899
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95634,7 +95903,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95634
95903
|
* @memberof MJSignatureAccountEntity
|
|
95635
95904
|
* @method
|
|
95636
95905
|
* @override
|
|
95637
|
-
*/function(){var
|
|
95906
|
+
*/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
95907
|
* * Field Name: ID
|
|
95639
95908
|
* * Display Name: ID
|
|
95640
95909
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95717,7 +95986,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95717
95986
|
* @extends {BaseEntity}
|
|
95718
95987
|
* @class
|
|
95719
95988
|
* @public
|
|
95720
|
-
*/var MJSignatureProviderEntity=/*#__PURE__*/function(
|
|
95989
|
+
*/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
95990
|
* Loads the MJ: Signature Providers record from the database
|
|
95722
95991
|
* @param ID: string - primary key value to load the MJ: Signature Providers record.
|
|
95723
95992
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95727,7 +95996,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95727
95996
|
* @memberof MJSignatureProviderEntity
|
|
95728
95997
|
* @method
|
|
95729
95998
|
* @override
|
|
95730
|
-
*/function(){var
|
|
95999
|
+
*/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
96000
|
* * Field Name: ID
|
|
95732
96001
|
* * Display Name: ID
|
|
95733
96002
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95796,7 +96065,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95796
96065
|
* @extends {BaseEntity}
|
|
95797
96066
|
* @class
|
|
95798
96067
|
* @public
|
|
95799
|
-
*/var MJSignatureRequestDocumentEntity=/*#__PURE__*/function(
|
|
96068
|
+
*/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
96069
|
* Loads the MJ: Signature Request Documents record from the database
|
|
95801
96070
|
* @param ID: string - primary key value to load the MJ: Signature Request Documents record.
|
|
95802
96071
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95806,7 +96075,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95806
96075
|
* @memberof MJSignatureRequestDocumentEntity
|
|
95807
96076
|
* @method
|
|
95808
96077
|
* @override
|
|
95809
|
-
*/function(){var
|
|
96078
|
+
*/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
96079
|
* * Field Name: ID
|
|
95811
96080
|
* * Display Name: ID
|
|
95812
96081
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95878,7 +96147,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95878
96147
|
* @extends {BaseEntity}
|
|
95879
96148
|
* @class
|
|
95880
96149
|
* @public
|
|
95881
|
-
*/var MJSignatureRequestLogEntity=/*#__PURE__*/function(
|
|
96150
|
+
*/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
96151
|
* Loads the MJ: Signature Request Logs record from the database
|
|
95883
96152
|
* @param ID: string - primary key value to load the MJ: Signature Request Logs record.
|
|
95884
96153
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95888,7 +96157,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95888
96157
|
* @memberof MJSignatureRequestLogEntity
|
|
95889
96158
|
* @method
|
|
95890
96159
|
* @override
|
|
95891
|
-
*/function(){var
|
|
96160
|
+
*/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
96161
|
* * Field Name: ID
|
|
95893
96162
|
* * Display Name: ID
|
|
95894
96163
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -95947,7 +96216,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95947
96216
|
* @extends {BaseEntity}
|
|
95948
96217
|
* @class
|
|
95949
96218
|
* @public
|
|
95950
|
-
*/var MJSignatureRequestRecipientEntity=/*#__PURE__*/function(
|
|
96219
|
+
*/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
96220
|
* Loads the MJ: Signature Request Recipients record from the database
|
|
95952
96221
|
* @param ID: string - primary key value to load the MJ: Signature Request Recipients record.
|
|
95953
96222
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -95957,7 +96226,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
95957
96226
|
* @memberof MJSignatureRequestRecipientEntity
|
|
95958
96227
|
* @method
|
|
95959
96228
|
* @override
|
|
95960
|
-
*/function(){var
|
|
96229
|
+
*/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
96230
|
* * Field Name: ID
|
|
95962
96231
|
* * Display Name: ID
|
|
95963
96232
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96034,7 +96303,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96034
96303
|
* @extends {BaseEntity}
|
|
96035
96304
|
* @class
|
|
96036
96305
|
* @public
|
|
96037
|
-
*/var MJSignatureRequestEntity=/*#__PURE__*/function(
|
|
96306
|
+
*/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
96307
|
* Loads the MJ: Signature Requests record from the database
|
|
96039
96308
|
* @param ID: string - primary key value to load the MJ: Signature Requests record.
|
|
96040
96309
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96044,7 +96313,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96044
96313
|
* @memberof MJSignatureRequestEntity
|
|
96045
96314
|
* @method
|
|
96046
96315
|
* @override
|
|
96047
|
-
*/function(){var
|
|
96316
|
+
*/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
96317
|
* * Field Name: ID
|
|
96049
96318
|
* * Display Name: ID
|
|
96050
96319
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96138,7 +96407,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96138
96407
|
* @extends {BaseEntity}
|
|
96139
96408
|
* @class
|
|
96140
96409
|
* @public
|
|
96141
|
-
*/var MJSkillEntity=/*#__PURE__*/function(
|
|
96410
|
+
*/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
96411
|
* Loads the MJ: Skills record from the database
|
|
96143
96412
|
* @param ID: string - primary key value to load the MJ: Skills record.
|
|
96144
96413
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96148,7 +96417,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96148
96417
|
* @memberof MJSkillEntity
|
|
96149
96418
|
* @method
|
|
96150
96419
|
* @override
|
|
96151
|
-
*/function(){var
|
|
96420
|
+
*/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
96421
|
* * Field Name: ID
|
|
96153
96422
|
* * SQL Data Type: uniqueidentifier
|
|
96154
96423
|
* * Default Value: newsequentialid()
|
|
@@ -96187,7 +96456,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96187
96456
|
* @extends {BaseEntity}
|
|
96188
96457
|
* @class
|
|
96189
96458
|
* @public
|
|
96190
|
-
*/var MJSQLDialectEntity=/*#__PURE__*/function(
|
|
96459
|
+
*/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
96460
|
* Loads the MJ: SQL Dialects record from the database
|
|
96192
96461
|
* @param ID: string - primary key value to load the MJ: SQL Dialects record.
|
|
96193
96462
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96197,7 +96466,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96197
96466
|
* @memberof MJSQLDialectEntity
|
|
96198
96467
|
* @method
|
|
96199
96468
|
* @override
|
|
96200
|
-
*/function(){var
|
|
96469
|
+
*/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
96470
|
* * Field Name: ID
|
|
96202
96471
|
* * Display Name: ID
|
|
96203
96472
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96262,7 +96531,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96262
96531
|
* @extends {BaseEntity}
|
|
96263
96532
|
* @class
|
|
96264
96533
|
* @public
|
|
96265
|
-
*/var MJStateProvinceEntity=/*#__PURE__*/function(
|
|
96534
|
+
*/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
96535
|
* Loads the MJ: State Provinces record from the database
|
|
96267
96536
|
* @param ID: string - primary key value to load the MJ: State Provinces record.
|
|
96268
96537
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96272,7 +96541,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96272
96541
|
* @memberof MJStateProvinceEntity
|
|
96273
96542
|
* @method
|
|
96274
96543
|
* @override
|
|
96275
|
-
*/function(){var
|
|
96544
|
+
*/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
96545
|
* * Field Name: ID
|
|
96277
96546
|
* * Display Name: ID
|
|
96278
96547
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96342,7 +96611,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96342
96611
|
* @extends {BaseEntity}
|
|
96343
96612
|
* @class
|
|
96344
96613
|
* @public
|
|
96345
|
-
*/var MJTagAuditLogEntity=/*#__PURE__*/function(
|
|
96614
|
+
*/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
96615
|
* Loads the MJ: Tag Audit Logs record from the database
|
|
96347
96616
|
* @param ID: string - primary key value to load the MJ: Tag Audit Logs record.
|
|
96348
96617
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96352,7 +96621,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96352
96621
|
* @memberof MJTagAuditLogEntity
|
|
96353
96622
|
* @method
|
|
96354
96623
|
* @override
|
|
96355
|
-
*/function(){var
|
|
96624
|
+
*/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
96625
|
* * Field Name: ID
|
|
96357
96626
|
* * Display Name: ID
|
|
96358
96627
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96428,7 +96697,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96428
96697
|
* @extends {BaseEntity}
|
|
96429
96698
|
* @class
|
|
96430
96699
|
* @public
|
|
96431
|
-
*/var MJTagCoOccurrenceEntity=/*#__PURE__*/function(
|
|
96700
|
+
*/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
96701
|
* Loads the MJ: Tag Co Occurrences record from the database
|
|
96433
96702
|
* @param ID: string - primary key value to load the MJ: Tag Co Occurrences record.
|
|
96434
96703
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96438,7 +96707,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96438
96707
|
* @memberof MJTagCoOccurrenceEntity
|
|
96439
96708
|
* @method
|
|
96440
96709
|
* @override
|
|
96441
|
-
*/function(){var
|
|
96710
|
+
*/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
96711
|
* * Field Name: ID
|
|
96443
96712
|
* * Display Name: ID
|
|
96444
96713
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96493,7 +96762,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96493
96762
|
* @extends {BaseEntity}
|
|
96494
96763
|
* @class
|
|
96495
96764
|
* @public
|
|
96496
|
-
*/var MJTagScopeEntity=/*#__PURE__*/function(
|
|
96765
|
+
*/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
96766
|
* Loads the MJ: Tag Scopes record from the database
|
|
96498
96767
|
* @param ID: string - primary key value to load the MJ: Tag Scopes record.
|
|
96499
96768
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96503,7 +96772,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96503
96772
|
* @memberof MJTagScopeEntity
|
|
96504
96773
|
* @method
|
|
96505
96774
|
* @override
|
|
96506
|
-
*/function(){var
|
|
96775
|
+
*/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
96776
|
* * Field Name: ID
|
|
96508
96777
|
* * Display Name: ID
|
|
96509
96778
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96553,7 +96822,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96553
96822
|
* @extends {BaseEntity}
|
|
96554
96823
|
* @class
|
|
96555
96824
|
* @public
|
|
96556
|
-
*/var MJTagSuggestionEntity=/*#__PURE__*/function(
|
|
96825
|
+
*/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
96826
|
* Loads the MJ: Tag Suggestions record from the database
|
|
96558
96827
|
* @param ID: string - primary key value to load the MJ: Tag Suggestions record.
|
|
96559
96828
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96563,7 +96832,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96563
96832
|
* @memberof MJTagSuggestionEntity
|
|
96564
96833
|
* @method
|
|
96565
96834
|
* @override
|
|
96566
|
-
*/function(){var
|
|
96835
|
+
*/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
96836
|
* * Field Name: ID
|
|
96568
96837
|
* * Display Name: ID
|
|
96569
96838
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96690,7 +96959,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96690
96959
|
* @extends {BaseEntity}
|
|
96691
96960
|
* @class
|
|
96692
96961
|
* @public
|
|
96693
|
-
*/var MJTagSynonymEntity=/*#__PURE__*/function(
|
|
96962
|
+
*/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
96963
|
* Loads the MJ: Tag Synonyms record from the database
|
|
96695
96964
|
* @param ID: string - primary key value to load the MJ: Tag Synonyms record.
|
|
96696
96965
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96700,7 +96969,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96700
96969
|
* @memberof MJTagSynonymEntity
|
|
96701
96970
|
* @method
|
|
96702
96971
|
* @override
|
|
96703
|
-
*/function(){var
|
|
96972
|
+
*/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
96973
|
* * Field Name: ID
|
|
96705
96974
|
* * Display Name: ID
|
|
96706
96975
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96763,7 +97032,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96763
97032
|
* @extends {BaseEntity}
|
|
96764
97033
|
* @class
|
|
96765
97034
|
* @public
|
|
96766
|
-
*/var MJTaggedItemEntity=/*#__PURE__*/function(
|
|
97035
|
+
*/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
97036
|
* Loads the MJ: Tagged Items record from the database
|
|
96768
97037
|
* @param ID: string - primary key value to load the MJ: Tagged Items record.
|
|
96769
97038
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96773,7 +97042,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96773
97042
|
* @memberof MJTaggedItemEntity
|
|
96774
97043
|
* @method
|
|
96775
97044
|
* @override
|
|
96776
|
-
*/function(){var
|
|
97045
|
+
*/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
97046
|
* * Field Name: ID
|
|
96778
97047
|
* * Display Name: ID
|
|
96779
97048
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96827,7 +97096,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96827
97096
|
* @extends {BaseEntity}
|
|
96828
97097
|
* @class
|
|
96829
97098
|
* @public
|
|
96830
|
-
*/var MJTagEntity=/*#__PURE__*/function(
|
|
97099
|
+
*/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
97100
|
* Loads the MJ: Tags record from the database
|
|
96832
97101
|
* @param ID: string - primary key value to load the MJ: Tags record.
|
|
96833
97102
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96837,7 +97106,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96837
97106
|
* @memberof MJTagEntity
|
|
96838
97107
|
* @method
|
|
96839
97108
|
* @override
|
|
96840
|
-
*/function(){var
|
|
97109
|
+
*/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
97110
|
* * Field Name: ID
|
|
96842
97111
|
* * Display Name: ID
|
|
96843
97112
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -96968,7 +97237,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96968
97237
|
* @extends {BaseEntity}
|
|
96969
97238
|
* @class
|
|
96970
97239
|
* @public
|
|
96971
|
-
*/var MJTaskDependencyEntity=/*#__PURE__*/function(
|
|
97240
|
+
*/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
97241
|
* Loads the MJ: Task Dependencies record from the database
|
|
96973
97242
|
* @param ID: string - primary key value to load the MJ: Task Dependencies record.
|
|
96974
97243
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -96978,7 +97247,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
96978
97247
|
* @memberof MJTaskDependencyEntity
|
|
96979
97248
|
* @method
|
|
96980
97249
|
* @override
|
|
96981
|
-
*/function(){var
|
|
97250
|
+
*/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
97251
|
* 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
97252
|
* * 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
97253
|
* @public
|
|
@@ -97043,7 +97312,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97043
97312
|
* @extends {BaseEntity}
|
|
97044
97313
|
* @class
|
|
97045
97314
|
* @public
|
|
97046
|
-
*/var MJTaskTypeEntity=/*#__PURE__*/function(
|
|
97315
|
+
*/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
97316
|
* Loads the MJ: Task Types record from the database
|
|
97048
97317
|
* @param ID: string - primary key value to load the MJ: Task Types record.
|
|
97049
97318
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97053,7 +97322,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97053
97322
|
* @memberof MJTaskTypeEntity
|
|
97054
97323
|
* @method
|
|
97055
97324
|
* @override
|
|
97056
|
-
*/function(){var
|
|
97325
|
+
*/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
97326
|
* * Field Name: ID
|
|
97058
97327
|
* * Display Name: ID
|
|
97059
97328
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97088,7 +97357,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97088
97357
|
* @extends {BaseEntity}
|
|
97089
97358
|
* @class
|
|
97090
97359
|
* @public
|
|
97091
|
-
*/var MJTaskEntity=/*#__PURE__*/function(
|
|
97360
|
+
*/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
97361
|
* Loads the MJ: Tasks record from the database
|
|
97093
97362
|
* @param ID: string - primary key value to load the MJ: Tasks record.
|
|
97094
97363
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97098,7 +97367,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97098
97367
|
* @memberof MJTaskEntity
|
|
97099
97368
|
* @method
|
|
97100
97369
|
* @override
|
|
97101
|
-
*/function(){var
|
|
97370
|
+
*/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
97371
|
* 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
97372
|
* * PercentComplete: This rule ensures that if a percent complete value is provided, it must be between 0 and 100 inclusive.
|
|
97104
97373
|
* * 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 +97523,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97254
97523
|
* @extends {BaseEntity}
|
|
97255
97524
|
* @class
|
|
97256
97525
|
* @public
|
|
97257
|
-
*/var MJTemplateCategoryEntity=/*#__PURE__*/function(
|
|
97526
|
+
*/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
97527
|
* Loads the MJ: Template Categories record from the database
|
|
97259
97528
|
* @param ID: string - primary key value to load the MJ: Template Categories record.
|
|
97260
97529
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97264,7 +97533,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97264
97533
|
* @memberof MJTemplateCategoryEntity
|
|
97265
97534
|
* @method
|
|
97266
97535
|
* @override
|
|
97267
|
-
*/function(){var
|
|
97536
|
+
*/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
97537
|
* * Field Name: ID
|
|
97269
97538
|
* * Display Name: ID
|
|
97270
97539
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97321,7 +97590,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97321
97590
|
* @extends {BaseEntity}
|
|
97322
97591
|
* @class
|
|
97323
97592
|
* @public
|
|
97324
|
-
*/var MJTemplateContentTypeEntity=/*#__PURE__*/function(
|
|
97593
|
+
*/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
97594
|
* Loads the MJ: Template Content Types record from the database
|
|
97326
97595
|
* @param ID: string - primary key value to load the MJ: Template Content Types record.
|
|
97327
97596
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97331,7 +97600,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97331
97600
|
* @memberof MJTemplateContentTypeEntity
|
|
97332
97601
|
* @method
|
|
97333
97602
|
* @override
|
|
97334
|
-
*/function(){var
|
|
97603
|
+
*/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
97604
|
* * Field Name: ID
|
|
97336
97605
|
* * Display Name: ID
|
|
97337
97606
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97382,7 +97651,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97382
97651
|
* @extends {BaseEntity}
|
|
97383
97652
|
* @class
|
|
97384
97653
|
* @public
|
|
97385
|
-
*/var MJTemplateContentEntity=/*#__PURE__*/function(
|
|
97654
|
+
*/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
97655
|
* Loads the MJ: Template Contents record from the database
|
|
97387
97656
|
* @param ID: string - primary key value to load the MJ: Template Contents record.
|
|
97388
97657
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97392,7 +97661,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97392
97661
|
* @memberof MJTemplateContentEntity
|
|
97393
97662
|
* @method
|
|
97394
97663
|
* @override
|
|
97395
|
-
*/function(){var
|
|
97664
|
+
*/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
97665
|
* * Field Name: ID
|
|
97397
97666
|
* * Display Name: ID
|
|
97398
97667
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97451,7 +97720,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97451
97720
|
* @extends {BaseEntity}
|
|
97452
97721
|
* @class
|
|
97453
97722
|
* @public
|
|
97454
|
-
*/var MJTemplateParamEntity=/*#__PURE__*/function(
|
|
97723
|
+
*/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
97724
|
* Loads the MJ: Template Params record from the database
|
|
97456
97725
|
* @param ID: string - primary key value to load the MJ: Template Params record.
|
|
97457
97726
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97461,7 +97730,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97461
97730
|
* @memberof MJTemplateParamEntity
|
|
97462
97731
|
* @method
|
|
97463
97732
|
* @override
|
|
97464
|
-
*/function(){var
|
|
97733
|
+
*/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
97734
|
* * Field Name: ID
|
|
97466
97735
|
* * Display Name: ID
|
|
97467
97736
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97573,7 +97842,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97573
97842
|
* @extends {BaseEntity}
|
|
97574
97843
|
* @class
|
|
97575
97844
|
* @public
|
|
97576
|
-
*/var MJTemplateEntity=/*#__PURE__*/function(
|
|
97845
|
+
*/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
97846
|
* Loads the MJ: Templates record from the database
|
|
97578
97847
|
* @param ID: string - primary key value to load the MJ: Templates record.
|
|
97579
97848
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97583,7 +97852,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97583
97852
|
* @memberof MJTemplateEntity
|
|
97584
97853
|
* @method
|
|
97585
97854
|
* @override
|
|
97586
|
-
*/function(){var
|
|
97855
|
+
*/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
97856
|
* * Field Name: ID
|
|
97588
97857
|
* * Display Name: ID
|
|
97589
97858
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97657,7 +97926,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97657
97926
|
* @extends {BaseEntity}
|
|
97658
97927
|
* @class
|
|
97659
97928
|
* @public
|
|
97660
|
-
*/var MJTestRubricEntity=/*#__PURE__*/function(
|
|
97929
|
+
*/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
97930
|
* Loads the MJ: Test Rubrics record from the database
|
|
97662
97931
|
* @param ID: string - primary key value to load the MJ: Test Rubrics record.
|
|
97663
97932
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97667,7 +97936,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97667
97936
|
* @memberof MJTestRubricEntity
|
|
97668
97937
|
* @method
|
|
97669
97938
|
* @override
|
|
97670
|
-
*/function(){var
|
|
97939
|
+
*/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
97940
|
* * Field Name: ID
|
|
97672
97941
|
* * Display Name: ID
|
|
97673
97942
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97738,7 +98007,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97738
98007
|
* @extends {BaseEntity}
|
|
97739
98008
|
* @class
|
|
97740
98009
|
* @public
|
|
97741
|
-
*/var MJTestRunFeedbackEntity=/*#__PURE__*/function(
|
|
98010
|
+
*/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
98011
|
* Loads the MJ: Test Run Feedbacks record from the database
|
|
97743
98012
|
* @param ID: string - primary key value to load the MJ: Test Run Feedbacks record.
|
|
97744
98013
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97748,7 +98017,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97748
98017
|
* @memberof MJTestRunFeedbackEntity
|
|
97749
98018
|
* @method
|
|
97750
98019
|
* @override
|
|
97751
|
-
*/function(){var
|
|
98020
|
+
*/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
98021
|
* 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
98022
|
* * 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
98023
|
* @public
|
|
@@ -97829,7 +98098,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97829
98098
|
* @extends {BaseEntity}
|
|
97830
98099
|
* @class
|
|
97831
98100
|
* @public
|
|
97832
|
-
*/var MJTestRunOutputTypeEntity=/*#__PURE__*/function(
|
|
98101
|
+
*/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
98102
|
* Loads the MJ: Test Run Output Types record from the database
|
|
97834
98103
|
* @param ID: string - primary key value to load the MJ: Test Run Output Types record.
|
|
97835
98104
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97839,7 +98108,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97839
98108
|
* @memberof MJTestRunOutputTypeEntity
|
|
97840
98109
|
* @method
|
|
97841
98110
|
* @override
|
|
97842
|
-
*/function(){var
|
|
98111
|
+
*/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
98112
|
* * Field Name: ID
|
|
97844
98113
|
* * Display Name: ID
|
|
97845
98114
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97873,7 +98142,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97873
98142
|
* @extends {BaseEntity}
|
|
97874
98143
|
* @class
|
|
97875
98144
|
* @public
|
|
97876
|
-
*/var MJTestRunOutputEntity=/*#__PURE__*/function(
|
|
98145
|
+
*/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
98146
|
* Loads the MJ: Test Run Outputs record from the database
|
|
97878
98147
|
* @param ID: string - primary key value to load the MJ: Test Run Outputs record.
|
|
97879
98148
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97883,7 +98152,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97883
98152
|
* @memberof MJTestRunOutputEntity
|
|
97884
98153
|
* @method
|
|
97885
98154
|
* @override
|
|
97886
|
-
*/function(){var
|
|
98155
|
+
*/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
98156
|
* * Field Name: ID
|
|
97888
98157
|
* * Display Name: ID
|
|
97889
98158
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -97984,7 +98253,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97984
98253
|
* @extends {BaseEntity}
|
|
97985
98254
|
* @class
|
|
97986
98255
|
* @public
|
|
97987
|
-
*/var MJTestRunEntity=/*#__PURE__*/function(
|
|
98256
|
+
*/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
98257
|
* Loads the MJ: Test Runs record from the database
|
|
97989
98258
|
* @param ID: string - primary key value to load the MJ: Test Runs record.
|
|
97990
98259
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -97994,7 +98263,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
97994
98263
|
* @memberof MJTestRunEntity
|
|
97995
98264
|
* @method
|
|
97996
98265
|
* @override
|
|
97997
|
-
*/function(){var
|
|
98266
|
+
*/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
98267
|
* * Field Name: ID
|
|
97999
98268
|
* * Display Name: ID
|
|
98000
98269
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -98194,7 +98463,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98194
98463
|
* @extends {BaseEntity}
|
|
98195
98464
|
* @class
|
|
98196
98465
|
* @public
|
|
98197
|
-
*/var MJTestSuiteRunEntity=/*#__PURE__*/function(
|
|
98466
|
+
*/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
98467
|
* Loads the MJ: Test Suite Runs record from the database
|
|
98199
98468
|
* @param ID: string - primary key value to load the MJ: Test Suite Runs record.
|
|
98200
98469
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98204,7 +98473,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98204
98473
|
* @memberof MJTestSuiteRunEntity
|
|
98205
98474
|
* @method
|
|
98206
98475
|
* @override
|
|
98207
|
-
*/function(){var
|
|
98476
|
+
*/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
98477
|
* * Field Name: ID
|
|
98209
98478
|
* * Display Name: ID
|
|
98210
98479
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -98377,7 +98646,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98377
98646
|
* @extends {BaseEntity}
|
|
98378
98647
|
* @class
|
|
98379
98648
|
* @public
|
|
98380
|
-
*/var MJTestSuiteTestEntity=/*#__PURE__*/function(
|
|
98649
|
+
*/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
98650
|
* Loads the MJ: Test Suite Tests record from the database
|
|
98382
98651
|
* @param ID: string - primary key value to load the MJ: Test Suite Tests record.
|
|
98383
98652
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98387,7 +98656,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98387
98656
|
* @memberof MJTestSuiteTestEntity
|
|
98388
98657
|
* @method
|
|
98389
98658
|
* @override
|
|
98390
|
-
*/function(){var
|
|
98659
|
+
*/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
98660
|
* * Field Name: ID
|
|
98392
98661
|
* * Display Name: ID
|
|
98393
98662
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -98454,7 +98723,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98454
98723
|
* @extends {BaseEntity}
|
|
98455
98724
|
* @class
|
|
98456
98725
|
* @public
|
|
98457
|
-
*/var MJTestSuiteEntity=/*#__PURE__*/function(
|
|
98726
|
+
*/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
98727
|
* Loads the MJ: Test Suites record from the database
|
|
98459
98728
|
* @param ID: string - primary key value to load the MJ: Test Suites record.
|
|
98460
98729
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98464,7 +98733,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98464
98733
|
* @memberof MJTestSuiteEntity
|
|
98465
98734
|
* @method
|
|
98466
98735
|
* @override
|
|
98467
|
-
*/function(){var
|
|
98736
|
+
*/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
98737
|
* * Field Name: ID
|
|
98469
98738
|
* * Display Name: ID
|
|
98470
98739
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -98544,7 +98813,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98544
98813
|
* @extends {BaseEntity}
|
|
98545
98814
|
* @class
|
|
98546
98815
|
* @public
|
|
98547
|
-
*/var MJTestTypeEntity=/*#__PURE__*/function(
|
|
98816
|
+
*/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
98817
|
* Loads the MJ: Test Types record from the database
|
|
98549
98818
|
* @param ID: string - primary key value to load the MJ: Test Types record.
|
|
98550
98819
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98554,7 +98823,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98554
98823
|
* @memberof MJTestTypeEntity
|
|
98555
98824
|
* @method
|
|
98556
98825
|
* @override
|
|
98557
|
-
*/function(){var
|
|
98826
|
+
*/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
98827
|
* * Field Name: ID
|
|
98559
98828
|
* * Display Name: ID
|
|
98560
98829
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -98610,7 +98879,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98610
98879
|
* @extends {BaseEntity}
|
|
98611
98880
|
* @class
|
|
98612
98881
|
* @public
|
|
98613
|
-
*/var MJTestEntity=/*#__PURE__*/function(
|
|
98882
|
+
*/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
98883
|
* Loads the MJ: Tests record from the database
|
|
98615
98884
|
* @param ID: string - primary key value to load the MJ: Tests record.
|
|
98616
98885
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98620,7 +98889,7 @@ if(this.UserID!=null&&this.RoleID!=null){result.Errors.push(new dist/* Validatio
|
|
|
98620
98889
|
* @memberof MJTestEntity
|
|
98621
98890
|
* @method
|
|
98622
98891
|
* @override
|
|
98623
|
-
*/function(){var
|
|
98892
|
+
*/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
98893
|
* 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
98894
|
* * RepeatCount: If a repeat count is entered, it must be a positive number greater than zero; otherwise it can be left empty.
|
|
98626
98895
|
* @public
|
|
@@ -98739,7 +99008,7 @@ if(this.RepeatCount!=null&&this.RepeatCount<=0){result.Errors.push(new dist/* Va
|
|
|
98739
99008
|
* @extends {BaseEntity}
|
|
98740
99009
|
* @class
|
|
98741
99010
|
* @public
|
|
98742
|
-
*/var MJUserApplicationEntityEntity=/*#__PURE__*/function(
|
|
99011
|
+
*/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
99012
|
* Loads the MJ: User Application Entities record from the database
|
|
98744
99013
|
* @param ID: string - primary key value to load the MJ: User Application Entities record.
|
|
98745
99014
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98749,7 +99018,7 @@ if(this.RepeatCount!=null&&this.RepeatCount<=0){result.Errors.push(new dist/* Va
|
|
|
98749
99018
|
* @memberof MJUserApplicationEntityEntity
|
|
98750
99019
|
* @method
|
|
98751
99020
|
* @override
|
|
98752
|
-
*/function(){var
|
|
99021
|
+
*/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
99022
|
* * Field Name: ID
|
|
98754
99023
|
* * SQL Data Type: uniqueidentifier
|
|
98755
99024
|
* * Default Value: newsequentialid()
|
|
@@ -98800,7 +99069,7 @@ if(this.RepeatCount!=null&&this.RepeatCount<=0){result.Errors.push(new dist/* Va
|
|
|
98800
99069
|
* @extends {BaseEntity}
|
|
98801
99070
|
* @class
|
|
98802
99071
|
* @public
|
|
98803
|
-
*/var MJUserApplicationEntity=/*#__PURE__*/function(
|
|
99072
|
+
*/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
99073
|
* Loads the MJ: User Applications record from the database
|
|
98805
99074
|
* @param ID: string - primary key value to load the MJ: User Applications record.
|
|
98806
99075
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98810,7 +99079,7 @@ if(this.RepeatCount!=null&&this.RepeatCount<=0){result.Errors.push(new dist/* Va
|
|
|
98810
99079
|
* @memberof MJUserApplicationEntity
|
|
98811
99080
|
* @method
|
|
98812
99081
|
* @override
|
|
98813
|
-
*/function(){var
|
|
99082
|
+
*/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
99083
|
* MJ: User Applications - Delete method override to wrap in transaction since CascadeDeletes is true.
|
|
98815
99084
|
* Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
|
|
98816
99085
|
* @public
|
|
@@ -98818,10 +99087,10 @@ if(this.RepeatCount!=null&&this.RepeatCount<=0){result.Errors.push(new dist/* Va
|
|
|
98818
99087
|
* @override
|
|
98819
99088
|
* @memberof MJUserApplicationEntity
|
|
98820
99089
|
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
98821
|
-
*/)},{key:"Delete",value:(function(){var _Delete16=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function
|
|
99090
|
+
*/)},{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
99091
|
// For database providers, use the transaction methods directly
|
|
98823
99092
|
provider=dist/* Metadata */.OS9.Provider;// global-provider-ok: codegen runs offline against a single provider
|
|
98824
|
-
|
|
99093
|
+
_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
99094
|
* * Field Name: ID
|
|
98826
99095
|
* * SQL Data Type: uniqueidentifier
|
|
98827
99096
|
* * Default Value: newsequentialid()
|
|
@@ -98874,7 +99143,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
98874
99143
|
* @extends {BaseEntity}
|
|
98875
99144
|
* @class
|
|
98876
99145
|
* @public
|
|
98877
|
-
*/var MJUserFavoriteEntity=/*#__PURE__*/function(
|
|
99146
|
+
*/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
99147
|
* Loads the MJ: User Favorites record from the database
|
|
98879
99148
|
* @param ID: string - primary key value to load the MJ: User Favorites record.
|
|
98880
99149
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98884,7 +99153,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
98884
99153
|
* @memberof MJUserFavoriteEntity
|
|
98885
99154
|
* @method
|
|
98886
99155
|
* @override
|
|
98887
|
-
*/function(){var
|
|
99156
|
+
*/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
99157
|
* * Field Name: ID
|
|
98889
99158
|
* * SQL Data Type: uniqueidentifier
|
|
98890
99159
|
* * Default Value: newsequentialid()
|
|
@@ -98934,7 +99203,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
98934
99203
|
* @extends {BaseEntity}
|
|
98935
99204
|
* @class
|
|
98936
99205
|
* @public
|
|
98937
|
-
*/var MJUserNotificationPreferenceEntity=/*#__PURE__*/function(
|
|
99206
|
+
*/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
99207
|
* Loads the MJ: User Notification Preferences record from the database
|
|
98939
99208
|
* @param ID: string - primary key value to load the MJ: User Notification Preferences record.
|
|
98940
99209
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -98944,7 +99213,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
98944
99213
|
* @memberof MJUserNotificationPreferenceEntity
|
|
98945
99214
|
* @method
|
|
98946
99215
|
* @override
|
|
98947
|
-
*/function(){var
|
|
99216
|
+
*/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
99217
|
* * Field Name: ID
|
|
98949
99218
|
* * Display Name: ID
|
|
98950
99219
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99007,7 +99276,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99007
99276
|
* @extends {BaseEntity}
|
|
99008
99277
|
* @class
|
|
99009
99278
|
* @public
|
|
99010
|
-
*/var MJUserNotificationTypeEntity=/*#__PURE__*/function(
|
|
99279
|
+
*/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
99280
|
* Loads the MJ: User Notification Types record from the database
|
|
99012
99281
|
* @param ID: string - primary key value to load the MJ: User Notification Types record.
|
|
99013
99282
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99017,7 +99286,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99017
99286
|
* @memberof MJUserNotificationTypeEntity
|
|
99018
99287
|
* @method
|
|
99019
99288
|
* @override
|
|
99020
|
-
*/function(){var
|
|
99289
|
+
*/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
99290
|
* * Field Name: ID
|
|
99022
99291
|
* * Display Name: ID
|
|
99023
99292
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99110,7 +99379,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99110
99379
|
* @extends {BaseEntity}
|
|
99111
99380
|
* @class
|
|
99112
99381
|
* @public
|
|
99113
|
-
*/var MJUserNotificationEntity=/*#__PURE__*/function(
|
|
99382
|
+
*/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
99383
|
* Loads the MJ: User Notifications record from the database
|
|
99115
99384
|
* @param ID: string - primary key value to load the MJ: User Notifications record.
|
|
99116
99385
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99120,7 +99389,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99120
99389
|
* @memberof MJUserNotificationEntity
|
|
99121
99390
|
* @method
|
|
99122
99391
|
* @override
|
|
99123
|
-
*/function(){var
|
|
99392
|
+
*/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
99393
|
* * Field Name: ID
|
|
99125
99394
|
* * Display Name: ID
|
|
99126
99395
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99204,7 +99473,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99204
99473
|
* @extends {BaseEntity}
|
|
99205
99474
|
* @class
|
|
99206
99475
|
* @public
|
|
99207
|
-
*/var MJUserRecordLogEntity=/*#__PURE__*/function(
|
|
99476
|
+
*/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
99477
|
* Loads the MJ: User Record Logs record from the database
|
|
99209
99478
|
* @param ID: string - primary key value to load the MJ: User Record Logs record.
|
|
99210
99479
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99214,7 +99483,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99214
99483
|
* @memberof MJUserRecordLogEntity
|
|
99215
99484
|
* @method
|
|
99216
99485
|
* @override
|
|
99217
|
-
*/function(){var
|
|
99486
|
+
*/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
99487
|
* * Field Name: ID
|
|
99219
99488
|
* * Display Name: ID
|
|
99220
99489
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99296,7 +99565,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99296
99565
|
* @extends {BaseEntity}
|
|
99297
99566
|
* @class
|
|
99298
99567
|
* @public
|
|
99299
|
-
*/var MJUserRoleEntity=/*#__PURE__*/function(
|
|
99568
|
+
*/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
99569
|
* Loads the MJ: User Roles record from the database
|
|
99301
99570
|
* @param ID: string - primary key value to load the MJ: User Roles record.
|
|
99302
99571
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99306,7 +99575,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99306
99575
|
* @memberof MJUserRoleEntity
|
|
99307
99576
|
* @method
|
|
99308
99577
|
* @override
|
|
99309
|
-
*/function(){var
|
|
99578
|
+
*/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
99579
|
* * Field Name: ID
|
|
99311
99580
|
* * Display Name: ID
|
|
99312
99581
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99348,7 +99617,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99348
99617
|
* @extends {BaseEntity}
|
|
99349
99618
|
* @class
|
|
99350
99619
|
* @public
|
|
99351
|
-
*/var MJUserRoutineRecipientEntity=/*#__PURE__*/function(
|
|
99620
|
+
*/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
99621
|
* Loads the MJ: User Routine Recipients record from the database
|
|
99353
99622
|
* @param ID: string - primary key value to load the MJ: User Routine Recipients record.
|
|
99354
99623
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99358,7 +99627,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99358
99627
|
* @memberof MJUserRoutineRecipientEntity
|
|
99359
99628
|
* @method
|
|
99360
99629
|
* @override
|
|
99361
|
-
*/function(){var
|
|
99630
|
+
*/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
99631
|
* * Field Name: ID
|
|
99363
99632
|
* * Display Name: ID
|
|
99364
99633
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99423,7 +99692,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99423
99692
|
* @extends {BaseEntity}
|
|
99424
99693
|
* @class
|
|
99425
99694
|
* @public
|
|
99426
|
-
*/var MJUserRoutineRunEntity=/*#__PURE__*/function(
|
|
99695
|
+
*/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
99696
|
* Loads the MJ: User Routine Runs record from the database
|
|
99428
99697
|
* @param ID: string - primary key value to load the MJ: User Routine Runs record.
|
|
99429
99698
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99433,7 +99702,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99433
99702
|
* @memberof MJUserRoutineRunEntity
|
|
99434
99703
|
* @method
|
|
99435
99704
|
* @override
|
|
99436
|
-
*/function(){var
|
|
99705
|
+
*/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
99706
|
* * Field Name: ID
|
|
99438
99707
|
* * Display Name: ID
|
|
99439
99708
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99541,7 +99810,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99541
99810
|
* @extends {BaseEntity}
|
|
99542
99811
|
* @class
|
|
99543
99812
|
* @public
|
|
99544
|
-
*/var MJUserRoutineEntity=/*#__PURE__*/function(
|
|
99813
|
+
*/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
99814
|
* Loads the MJ: User Routines record from the database
|
|
99546
99815
|
* @param ID: string - primary key value to load the MJ: User Routines record.
|
|
99547
99816
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99551,7 +99820,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99551
99820
|
* @memberof MJUserRoutineEntity
|
|
99552
99821
|
* @method
|
|
99553
99822
|
* @override
|
|
99554
|
-
*/function(){var
|
|
99823
|
+
*/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
99824
|
* * Field Name: ID
|
|
99556
99825
|
* * Display Name: ID
|
|
99557
99826
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99748,7 +100017,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99748
100017
|
* @extends {BaseEntity}
|
|
99749
100018
|
* @class
|
|
99750
100019
|
* @public
|
|
99751
|
-
*/var MJUserSettingEntity=/*#__PURE__*/function(
|
|
100020
|
+
*/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
100021
|
* Loads the MJ: User Settings record from the database
|
|
99753
100022
|
* @param ID: string - primary key value to load the MJ: User Settings record.
|
|
99754
100023
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99758,7 +100027,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99758
100027
|
* @memberof MJUserSettingEntity
|
|
99759
100028
|
* @method
|
|
99760
100029
|
* @override
|
|
99761
|
-
*/function(){var
|
|
100030
|
+
*/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
100031
|
* * Field Name: ID
|
|
99763
100032
|
* * Display Name: ID
|
|
99764
100033
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99803,7 +100072,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99803
100072
|
* @extends {BaseEntity}
|
|
99804
100073
|
* @class
|
|
99805
100074
|
* @public
|
|
99806
|
-
*/var MJUserViewCategoryEntity=/*#__PURE__*/function(
|
|
100075
|
+
*/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
100076
|
* Loads the MJ: User View Categories record from the database
|
|
99808
100077
|
* @param ID: string - primary key value to load the MJ: User View Categories record.
|
|
99809
100078
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99813,7 +100082,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99813
100082
|
* @memberof MJUserViewCategoryEntity
|
|
99814
100083
|
* @method
|
|
99815
100084
|
* @override
|
|
99816
|
-
*/function(){var
|
|
100085
|
+
*/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
100086
|
* * Field Name: ID
|
|
99818
100087
|
* * Display Name: ID
|
|
99819
100088
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99877,7 +100146,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99877
100146
|
* @extends {BaseEntity}
|
|
99878
100147
|
* @class
|
|
99879
100148
|
* @public
|
|
99880
|
-
*/var MJUserViewRunDetailEntity=/*#__PURE__*/function(
|
|
100149
|
+
*/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
100150
|
* Loads the MJ: User View Run Details record from the database
|
|
99882
100151
|
* @param ID: string - primary key value to load the MJ: User View Run Details record.
|
|
99883
100152
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99887,7 +100156,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99887
100156
|
* @memberof MJUserViewRunDetailEntity
|
|
99888
100157
|
* @method
|
|
99889
100158
|
* @override
|
|
99890
|
-
*/function(){var
|
|
100159
|
+
*/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
100160
|
* * Field Name: ID
|
|
99892
100161
|
* * SQL Data Type: uniqueidentifier
|
|
99893
100162
|
* * Default Value: newsequentialid()
|
|
@@ -99929,7 +100198,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99929
100198
|
* @extends {BaseEntity}
|
|
99930
100199
|
* @class
|
|
99931
100200
|
* @public
|
|
99932
|
-
*/var MJUserViewRunEntity=/*#__PURE__*/function(
|
|
100201
|
+
*/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
100202
|
* Loads the MJ: User View Runs record from the database
|
|
99934
100203
|
* @param ID: string - primary key value to load the MJ: User View Runs record.
|
|
99935
100204
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99939,7 +100208,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99939
100208
|
* @memberof MJUserViewRunEntity
|
|
99940
100209
|
* @method
|
|
99941
100210
|
* @override
|
|
99942
|
-
*/function(){var
|
|
100211
|
+
*/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
100212
|
* * Field Name: ID
|
|
99944
100213
|
* * Display Name: ID
|
|
99945
100214
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -99987,7 +100256,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99987
100256
|
* @extends {BaseEntity}
|
|
99988
100257
|
* @class
|
|
99989
100258
|
* @public
|
|
99990
|
-
*/var MJUserViewEntity=/*#__PURE__*/function(
|
|
100259
|
+
*/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
100260
|
* Loads the MJ: User Views record from the database
|
|
99992
100261
|
* @param ID: string - primary key value to load the MJ: User Views record.
|
|
99993
100262
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -99997,7 +100266,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
99997
100266
|
* @memberof MJUserViewEntity
|
|
99998
100267
|
* @method
|
|
99999
100268
|
* @override
|
|
100000
|
-
*/_inherits(MJUserViewEntity,
|
|
100269
|
+
*/_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
100270
|
* * Field Name: ID
|
|
100002
100271
|
* * Display Name: ID
|
|
100003
100272
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100175,7 +100444,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100175
100444
|
* @extends {BaseEntity}
|
|
100176
100445
|
* @class
|
|
100177
100446
|
* @public
|
|
100178
|
-
*/var MJUserEntity=/*#__PURE__*/function(
|
|
100447
|
+
*/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
100448
|
* Loads the MJ: Users record from the database
|
|
100180
100449
|
* @param ID: string - primary key value to load the MJ: Users record.
|
|
100181
100450
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100185,7 +100454,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100185
100454
|
* @memberof MJUserEntity
|
|
100186
100455
|
* @method
|
|
100187
100456
|
* @override
|
|
100188
|
-
*/function(){var
|
|
100457
|
+
*/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
100458
|
* * Field Name: ID
|
|
100190
100459
|
* * SQL Data Type: uniqueidentifier
|
|
100191
100460
|
* * Default Value: newsequentialid()
|
|
@@ -100300,7 +100569,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100300
100569
|
* @extends {BaseEntity}
|
|
100301
100570
|
* @class
|
|
100302
100571
|
* @public
|
|
100303
|
-
*/var MJVectorDatabaseEntity=/*#__PURE__*/function(
|
|
100572
|
+
*/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
100573
|
* Loads the MJ: Vector Databases record from the database
|
|
100305
100574
|
* @param ID: string - primary key value to load the MJ: Vector Databases record.
|
|
100306
100575
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100310,7 +100579,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100310
100579
|
* @memberof MJVectorDatabaseEntity
|
|
100311
100580
|
* @method
|
|
100312
100581
|
* @override
|
|
100313
|
-
*/function(){var
|
|
100582
|
+
*/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
100583
|
* * Field Name: ID
|
|
100315
100584
|
* * Display Name: ID
|
|
100316
100585
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100368,7 +100637,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100368
100637
|
* @extends {BaseEntity}
|
|
100369
100638
|
* @class
|
|
100370
100639
|
* @public
|
|
100371
|
-
*/var MJVectorIndexEntity=/*#__PURE__*/function(
|
|
100640
|
+
*/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
100641
|
* Loads the MJ: Vector Indexes record from the database
|
|
100373
100642
|
* @param ID: string - primary key value to load the MJ: Vector Indexes record.
|
|
100374
100643
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100378,7 +100647,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100378
100647
|
* @memberof MJVectorIndexEntity
|
|
100379
100648
|
* @method
|
|
100380
100649
|
* @override
|
|
100381
|
-
*/function(){var
|
|
100650
|
+
*/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
100651
|
* * Field Name: ID
|
|
100383
100652
|
* * Display Name: ID
|
|
100384
100653
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100449,7 +100718,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100449
100718
|
* @extends {BaseEntity}
|
|
100450
100719
|
* @class
|
|
100451
100720
|
* @public
|
|
100452
|
-
*/var MJVersionInstallationEntity=/*#__PURE__*/function(
|
|
100721
|
+
*/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
100722
|
* Loads the MJ: Version Installations record from the database
|
|
100454
100723
|
* @param ID: string - primary key value to load the MJ: Version Installations record.
|
|
100455
100724
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100459,7 +100728,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100459
100728
|
* @memberof MJVersionInstallationEntity
|
|
100460
100729
|
* @method
|
|
100461
100730
|
* @override
|
|
100462
|
-
*/function(){var
|
|
100731
|
+
*/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
100732
|
* * Field Name: ID
|
|
100464
100733
|
* * Display Name: ID
|
|
100465
100734
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100540,7 +100809,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100540
100809
|
* @extends {BaseEntity}
|
|
100541
100810
|
* @class
|
|
100542
100811
|
* @public
|
|
100543
|
-
*/var MJVersionLabelItemEntity=/*#__PURE__*/function(
|
|
100812
|
+
*/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
100813
|
* Loads the MJ: Version Label Items record from the database
|
|
100545
100814
|
* @param ID: string - primary key value to load the MJ: Version Label Items record.
|
|
100546
100815
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100550,7 +100819,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100550
100819
|
* @memberof MJVersionLabelItemEntity
|
|
100551
100820
|
* @method
|
|
100552
100821
|
* @override
|
|
100553
|
-
*/function(){var
|
|
100822
|
+
*/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
100823
|
* * Field Name: ID
|
|
100555
100824
|
* * Display Name: ID
|
|
100556
100825
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100610,7 +100879,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100610
100879
|
* @extends {BaseEntity}
|
|
100611
100880
|
* @class
|
|
100612
100881
|
* @public
|
|
100613
|
-
*/var MJVersionLabelRestoreEntity=/*#__PURE__*/function(
|
|
100882
|
+
*/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
100883
|
* Loads the MJ: Version Label Restores record from the database
|
|
100615
100884
|
* @param ID: string - primary key value to load the MJ: Version Label Restores record.
|
|
100616
100885
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100620,7 +100889,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100620
100889
|
* @memberof MJVersionLabelRestoreEntity
|
|
100621
100890
|
* @method
|
|
100622
100891
|
* @override
|
|
100623
|
-
*/function(){var
|
|
100892
|
+
*/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
100893
|
* * Field Name: ID
|
|
100625
100894
|
* * Display Name: ID
|
|
100626
100895
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100722,7 +100991,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100722
100991
|
* @extends {BaseEntity}
|
|
100723
100992
|
* @class
|
|
100724
100993
|
* @public
|
|
100725
|
-
*/var MJVersionLabelEntity=/*#__PURE__*/function(
|
|
100994
|
+
*/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
100995
|
* Loads the MJ: Version Labels record from the database
|
|
100727
100996
|
* @param ID: string - primary key value to load the MJ: Version Labels record.
|
|
100728
100997
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100732,7 +101001,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100732
101001
|
* @memberof MJVersionLabelEntity
|
|
100733
101002
|
* @method
|
|
100734
101003
|
* @override
|
|
100735
|
-
*/function(){var
|
|
101004
|
+
*/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
101005
|
* * Field Name: ID
|
|
100737
101006
|
* * Display Name: ID
|
|
100738
101007
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100845,7 +101114,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100845
101114
|
* @extends {BaseEntity}
|
|
100846
101115
|
* @class
|
|
100847
101116
|
* @public
|
|
100848
|
-
*/var MJViewTypeEntity=/*#__PURE__*/function(
|
|
101117
|
+
*/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
101118
|
* Loads the MJ: View Types record from the database
|
|
100850
101119
|
* @param ID: string - primary key value to load the MJ: View Types record.
|
|
100851
101120
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100855,7 +101124,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100855
101124
|
* @memberof MJViewTypeEntity
|
|
100856
101125
|
* @method
|
|
100857
101126
|
* @override
|
|
100858
|
-
*/function(){var
|
|
101127
|
+
*/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
101128
|
* * Field Name: ID
|
|
100860
101129
|
* * Display Name: ID
|
|
100861
101130
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -100929,7 +101198,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100929
101198
|
* @class
|
|
100930
101199
|
* @public
|
|
100931
101200
|
* @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(
|
|
101201
|
+
*/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
101202
|
* Loads the MJ: Workflow Engines record from the database
|
|
100934
101203
|
* @param ID: string - primary key value to load the MJ: Workflow Engines record.
|
|
100935
101204
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100939,7 +101208,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100939
101208
|
* @memberof MJWorkflowEngineEntity
|
|
100940
101209
|
* @method
|
|
100941
101210
|
* @override
|
|
100942
|
-
*/function(){var
|
|
101211
|
+
*/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
101212
|
* * Field Name: ID
|
|
100944
101213
|
* * SQL Data Type: uniqueidentifier
|
|
100945
101214
|
* * Default Value: newsequentialid()
|
|
@@ -100980,7 +101249,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100980
101249
|
* @class
|
|
100981
101250
|
* @public
|
|
100982
101251
|
* @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(
|
|
101252
|
+
*/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
101253
|
* Loads the MJ: Workflow Runs record from the database
|
|
100985
101254
|
* @param ID: string - primary key value to load the MJ: Workflow Runs record.
|
|
100986
101255
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -100990,7 +101259,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
100990
101259
|
* @memberof MJWorkflowRunEntity
|
|
100991
101260
|
* @method
|
|
100992
101261
|
* @override
|
|
100993
|
-
*/function(){var
|
|
101262
|
+
*/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
101263
|
* * Field Name: ID
|
|
100995
101264
|
* * Display Name: ID
|
|
100996
101265
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -101058,7 +101327,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101058
101327
|
* @class
|
|
101059
101328
|
* @public
|
|
101060
101329
|
* @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(
|
|
101330
|
+
*/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
101331
|
* Loads the MJ: Workflows record from the database
|
|
101063
101332
|
* @param ID: string - primary key value to load the MJ: Workflows record.
|
|
101064
101333
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -101068,7 +101337,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101068
101337
|
* @memberof MJWorkflowEntity
|
|
101069
101338
|
* @method
|
|
101070
101339
|
* @override
|
|
101071
|
-
*/function(){var
|
|
101340
|
+
*/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
101341
|
* * Field Name: ID
|
|
101073
101342
|
* * SQL Data Type: uniqueidentifier
|
|
101074
101343
|
* * Default Value: newsequentialid()
|
|
@@ -101142,7 +101411,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101142
101411
|
* @class
|
|
101143
101412
|
* @public
|
|
101144
101413
|
* @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(
|
|
101414
|
+
*/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
101415
|
* Loads the MJ: Workspace Items record from the database
|
|
101147
101416
|
* @param ID: string - primary key value to load the MJ: Workspace Items record.
|
|
101148
101417
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -101152,7 +101421,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101152
101421
|
* @memberof MJWorkspaceItemEntity
|
|
101153
101422
|
* @method
|
|
101154
101423
|
* @override
|
|
101155
|
-
*/function(){var
|
|
101424
|
+
*/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
101425
|
* * Field Name: ID
|
|
101157
101426
|
* * Display Name: ID
|
|
101158
101427
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -101218,7 +101487,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101218
101487
|
* @extends {BaseEntity}
|
|
101219
101488
|
* @class
|
|
101220
101489
|
* @public
|
|
101221
|
-
*/var MJWorkspaceEntity=/*#__PURE__*/function(
|
|
101490
|
+
*/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
101491
|
* Loads the MJ: Workspaces record from the database
|
|
101223
101492
|
* @param ID: string - primary key value to load the MJ: Workspaces record.
|
|
101224
101493
|
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
@@ -101228,7 +101497,7 @@ _context367.p=1;_context367.n=2;return provider.BeginTransaction();case 2:_conte
|
|
|
101228
101497
|
* @memberof MJWorkspaceEntity
|
|
101229
101498
|
* @method
|
|
101230
101499
|
* @override
|
|
101231
|
-
*/function(){var
|
|
101500
|
+
*/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
101501
|
* * Field Name: ID
|
|
101233
101502
|
* * Display Name: ID
|
|
101234
101503
|
* * SQL Data Type: uniqueidentifier
|