@memberjunction/core-entities 4.2.0 → 4.3.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.
|
@@ -2379,7 +2379,7 @@ export const AIResultCacheSchema = z.object({
|
|
|
2379
2379
|
* * Description: Vector representation of the prompt for similarity matching.`),
|
|
2380
2380
|
PromptRunID: z.string().nullable().describe(`
|
|
2381
2381
|
* * Field Name: PromptRunID
|
|
2382
|
-
* * Display Name: Prompt Run
|
|
2382
|
+
* * Display Name: Prompt Run
|
|
2383
2383
|
* * SQL Data Type: uniqueidentifier
|
|
2384
2384
|
* * Related Entity/Foreign Key: MJ: AI Prompt Runs (vwAIPromptRuns.ID)
|
|
2385
2385
|
* * Description: Reference to the AIPromptRun that created this cache entry.`),
|
|
@@ -4312,7 +4312,7 @@ export const ConversationSchema = z.object({
|
|
|
4312
4312
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)`),
|
|
4313
4313
|
LinkedRecordID: z.string().nullable().describe(`
|
|
4314
4314
|
* * Field Name: LinkedRecordID
|
|
4315
|
-
* * Display Name: Linked Record
|
|
4315
|
+
* * Display Name: Linked Record ID
|
|
4316
4316
|
* * SQL Data Type: nvarchar(500)
|
|
4317
4317
|
* * Description: ID of a related record this conversation is about (support ticket, order, etc.).`),
|
|
4318
4318
|
DataContextID: z.string().nullable().describe(`
|
|
@@ -4895,7 +4895,7 @@ export const DuplicateRunDetailSchema = z.object({
|
|
|
4895
4895
|
* * Related Entity/Foreign Key: Duplicate Runs (vwDuplicateRuns.ID)`),
|
|
4896
4896
|
RecordID: z.string().describe(`
|
|
4897
4897
|
* * Field Name: RecordID
|
|
4898
|
-
* * Display Name: Record
|
|
4898
|
+
* * Display Name: Record ID
|
|
4899
4899
|
* * SQL Data Type: nvarchar(500)
|
|
4900
4900
|
* * Description: The ID of the record being analyzed for duplicates.`),
|
|
4901
4901
|
MatchStatus: z.union([z.literal('Complete'), z.literal('Error'), z.literal('Pending'), z.literal('Skipped')]).describe(`
|
|
@@ -5071,7 +5071,7 @@ export const EmployeeCompanyIntegrationSchema = z.object({
|
|
|
5071
5071
|
* * Related Entity/Foreign Key: Company Integrations (vwCompanyIntegrations.ID)`),
|
|
5072
5072
|
ExternalSystemRecordID: z.string().describe(`
|
|
5073
5073
|
* * Field Name: ExternalSystemRecordID
|
|
5074
|
-
* * Display Name: External System Record
|
|
5074
|
+
* * Display Name: External System Record ID
|
|
5075
5075
|
* * SQL Data Type: nvarchar(750)
|
|
5076
5076
|
* * Description: The employee's unique identifier in the external integrated system.`),
|
|
5077
5077
|
IsActive: z.boolean().describe(`
|
|
@@ -5092,7 +5092,7 @@ export const EmployeeCompanyIntegrationSchema = z.object({
|
|
|
5092
5092
|
* * Default Value: getutcdate()`),
|
|
5093
5093
|
Employee: z.string().nullable().describe(`
|
|
5094
5094
|
* * Field Name: Employee
|
|
5095
|
-
* * Display Name: Employee
|
|
5095
|
+
* * Display Name: Employee
|
|
5096
5096
|
* * SQL Data Type: nvarchar(81)`),
|
|
5097
5097
|
CompanyIntegration: z.string().describe(`
|
|
5098
5098
|
* * Field Name: CompanyIntegration
|
|
@@ -5130,7 +5130,7 @@ export const EmployeeRoleSchema = z.object({
|
|
|
5130
5130
|
* * Default Value: getutcdate()`),
|
|
5131
5131
|
Employee: z.string().nullable().describe(`
|
|
5132
5132
|
* * Field Name: Employee
|
|
5133
|
-
* * Display Name: Employee
|
|
5133
|
+
* * Display Name: Employee
|
|
5134
5134
|
* * SQL Data Type: nvarchar(81)`),
|
|
5135
5135
|
Role: z.string().describe(`
|
|
5136
5136
|
* * Field Name: Role
|
|
@@ -5172,7 +5172,7 @@ export const EmployeeSkillSchema = z.object({
|
|
|
5172
5172
|
* * SQL Data Type: nvarchar(81)`),
|
|
5173
5173
|
Skill: z.string().describe(`
|
|
5174
5174
|
* * Field Name: Skill
|
|
5175
|
-
* * Display Name: Skill
|
|
5175
|
+
* * Display Name: Skill Name
|
|
5176
5176
|
* * SQL Data Type: nvarchar(50)`),
|
|
5177
5177
|
});
|
|
5178
5178
|
/**
|
|
@@ -5631,12 +5631,12 @@ export const EntityActionFilterSchema = z.object({
|
|
|
5631
5631
|
* * Default Value: newsequentialid()`),
|
|
5632
5632
|
EntityActionID: z.string().describe(`
|
|
5633
5633
|
* * Field Name: EntityActionID
|
|
5634
|
-
* * Display Name: Entity Action
|
|
5634
|
+
* * Display Name: Entity Action ID
|
|
5635
5635
|
* * SQL Data Type: uniqueidentifier
|
|
5636
5636
|
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)`),
|
|
5637
5637
|
ActionFilterID: z.string().describe(`
|
|
5638
5638
|
* * Field Name: ActionFilterID
|
|
5639
|
-
* * Display Name: Action Filter
|
|
5639
|
+
* * Display Name: Action Filter ID
|
|
5640
5640
|
* * SQL Data Type: uniqueidentifier
|
|
5641
5641
|
* * Related Entity/Foreign Key: Action Filters (vwActionFilters.ID)`),
|
|
5642
5642
|
Sequence: z.number().describe(`
|
|
@@ -5667,11 +5667,11 @@ export const EntityActionFilterSchema = z.object({
|
|
|
5667
5667
|
* * Default Value: getutcdate()`),
|
|
5668
5668
|
EntityAction: z.string().describe(`
|
|
5669
5669
|
* * Field Name: EntityAction
|
|
5670
|
-
* * Display Name: Action
|
|
5670
|
+
* * Display Name: Entity Action
|
|
5671
5671
|
* * SQL Data Type: nvarchar(425)`),
|
|
5672
5672
|
ActionFilter: z.string().describe(`
|
|
5673
5673
|
* * Field Name: ActionFilter
|
|
5674
|
-
* * Display Name: Filter
|
|
5674
|
+
* * Display Name: Action Filter
|
|
5675
5675
|
* * SQL Data Type: nvarchar(MAX)`),
|
|
5676
5676
|
});
|
|
5677
5677
|
/**
|
|
@@ -5721,12 +5721,12 @@ export const EntityActionInvocationSchema = z.object({
|
|
|
5721
5721
|
* * Default Value: newsequentialid()`),
|
|
5722
5722
|
EntityActionID: z.string().describe(`
|
|
5723
5723
|
* * Field Name: EntityActionID
|
|
5724
|
-
* * Display Name: Entity Action
|
|
5724
|
+
* * Display Name: Entity Action ID
|
|
5725
5725
|
* * SQL Data Type: uniqueidentifier
|
|
5726
5726
|
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)`),
|
|
5727
5727
|
InvocationTypeID: z.string().describe(`
|
|
5728
5728
|
* * Field Name: InvocationTypeID
|
|
5729
|
-
* * Display Name: Invocation Type
|
|
5729
|
+
* * Display Name: Invocation Type ID
|
|
5730
5730
|
* * SQL Data Type: uniqueidentifier
|
|
5731
5731
|
* * Related Entity/Foreign Key: Entity Action Invocation Types (vwEntityActionInvocationTypes.ID)`),
|
|
5732
5732
|
Status: z.union([z.literal('Active'), z.literal('Disabled'), z.literal('Pending')]).describe(`
|
|
@@ -5752,7 +5752,7 @@ export const EntityActionInvocationSchema = z.object({
|
|
|
5752
5752
|
* * Default Value: getutcdate()`),
|
|
5753
5753
|
EntityAction: z.string().describe(`
|
|
5754
5754
|
* * Field Name: EntityAction
|
|
5755
|
-
* * Display Name: Action
|
|
5755
|
+
* * Display Name: Entity Action
|
|
5756
5756
|
* * SQL Data Type: nvarchar(425)`),
|
|
5757
5757
|
InvocationType: z.string().describe(`
|
|
5758
5758
|
* * Field Name: InvocationType
|
|
@@ -5770,12 +5770,12 @@ export const EntityActionParamSchema = z.object({
|
|
|
5770
5770
|
* * Default Value: newsequentialid()`),
|
|
5771
5771
|
EntityActionID: z.string().describe(`
|
|
5772
5772
|
* * Field Name: EntityActionID
|
|
5773
|
-
* * Display Name: Entity Action
|
|
5773
|
+
* * Display Name: Entity Action
|
|
5774
5774
|
* * SQL Data Type: uniqueidentifier
|
|
5775
5775
|
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)`),
|
|
5776
5776
|
ActionParamID: z.string().describe(`
|
|
5777
5777
|
* * Field Name: ActionParamID
|
|
5778
|
-
* * Display Name: Action Parameter
|
|
5778
|
+
* * Display Name: Action Parameter
|
|
5779
5779
|
* * SQL Data Type: uniqueidentifier
|
|
5780
5780
|
* * Related Entity/Foreign Key: Action Params (vwActionParams.ID)`),
|
|
5781
5781
|
ValueType: z.union([z.literal('Entity Field'), z.literal('Entity Object'), z.literal('Script'), z.literal('Static')]).describe(`
|
|
@@ -5815,7 +5815,7 @@ export const EntityActionParamSchema = z.object({
|
|
|
5815
5815
|
* * SQL Data Type: nvarchar(425)`),
|
|
5816
5816
|
ActionParam: z.string().describe(`
|
|
5817
5817
|
* * Field Name: ActionParam
|
|
5818
|
-
* * Display Name:
|
|
5818
|
+
* * Display Name: Parameter Name
|
|
5819
5819
|
* * SQL Data Type: nvarchar(255)`),
|
|
5820
5820
|
});
|
|
5821
5821
|
/**
|
|
@@ -5983,7 +5983,7 @@ export const EntityCommunicationFieldSchema = z.object({
|
|
|
5983
5983
|
* * Default Value: newsequentialid()`),
|
|
5984
5984
|
EntityCommunicationMessageTypeID: z.string().describe(`
|
|
5985
5985
|
* * Field Name: EntityCommunicationMessageTypeID
|
|
5986
|
-
* * Display Name: Message Type
|
|
5986
|
+
* * Display Name: Entity Communication Message Type
|
|
5987
5987
|
* * SQL Data Type: uniqueidentifier
|
|
5988
5988
|
* * Related Entity/Foreign Key: Entity Communication Message Types (vwEntityCommunicationMessageTypes.ID)`),
|
|
5989
5989
|
FieldName: z.string().describe(`
|
|
@@ -6008,7 +6008,7 @@ export const EntityCommunicationFieldSchema = z.object({
|
|
|
6008
6008
|
* * Default Value: getutcdate()`),
|
|
6009
6009
|
EntityCommunicationMessageType: z.string().describe(`
|
|
6010
6010
|
* * Field Name: EntityCommunicationMessageType
|
|
6011
|
-
* * Display Name: Message Type
|
|
6011
|
+
* * Display Name: Entity Communication Message Type
|
|
6012
6012
|
* * SQL Data Type: nvarchar(100)`),
|
|
6013
6013
|
});
|
|
6014
6014
|
/**
|
|
@@ -7199,7 +7199,7 @@ export const ErrorLogSchema = z.object({
|
|
|
7199
7199
|
* * Description: Error code for categorizing and handling specific error types.`),
|
|
7200
7200
|
Message: z.string().nullable().describe(`
|
|
7201
7201
|
* * Field Name: Message
|
|
7202
|
-
* * Display Name: Message
|
|
7202
|
+
* * Display Name: Error Message
|
|
7203
7203
|
* * SQL Data Type: nvarchar(MAX)
|
|
7204
7204
|
* * Description: The primary error message describing what went wrong.`),
|
|
7205
7205
|
CreatedBy: z.string().nullable().describe(`
|
|
@@ -7210,16 +7210,16 @@ export const ErrorLogSchema = z.object({
|
|
|
7210
7210
|
* * Description: User or system process that encountered this error.`),
|
|
7211
7211
|
Status: z.string().nullable().describe(`
|
|
7212
7212
|
* * Field Name: Status
|
|
7213
|
-
* * Display Name: Status
|
|
7213
|
+
* * Display Name: Error Status
|
|
7214
7214
|
* * SQL Data Type: nvarchar(10)`),
|
|
7215
7215
|
Category: z.string().nullable().describe(`
|
|
7216
7216
|
* * Field Name: Category
|
|
7217
|
-
* * Display Name: Category
|
|
7217
|
+
* * Display Name: Error Category
|
|
7218
7218
|
* * SQL Data Type: nvarchar(20)
|
|
7219
7219
|
* * Description: High-level category for grouping related errors (Database, API, Validation, etc.).`),
|
|
7220
7220
|
Details: z.string().nullable().describe(`
|
|
7221
7221
|
* * Field Name: Details
|
|
7222
|
-
* * Display Name: Details
|
|
7222
|
+
* * Display Name: Error Details
|
|
7223
7223
|
* * SQL Data Type: nvarchar(MAX)
|
|
7224
7224
|
* * Description: Full error details including stack trace, inner exceptions, and context data.`),
|
|
7225
7225
|
__mj_CreatedAt: z.date().describe(`
|
|
@@ -9149,7 +9149,7 @@ permanently, Warn means validation failed but execution continues.`),
|
|
|
9149
9149
|
detailed information about what validation rules failed.`),
|
|
9150
9150
|
ParentID: z.string().nullable().describe(`
|
|
9151
9151
|
* * Field Name: ParentID
|
|
9152
|
-
* * Display Name: Parent
|
|
9152
|
+
* * Display Name: Parent ID
|
|
9153
9153
|
* * SQL Data Type: uniqueidentifier
|
|
9154
9154
|
* * Related Entity/Foreign Key: MJ: AI Agent Run Steps (vwAIAgentRunSteps.ID)
|
|
9155
9155
|
* * Description: Optional reference to parent step for tracking hierarchical relationships like code->test->fix->code cycles`),
|
|
@@ -13112,7 +13112,7 @@ export const ConversationDetailArtifactSchema = z.object({
|
|
|
13112
13112
|
* * Default Value: getutcdate()`),
|
|
13113
13113
|
ConversationDetail: z.string().describe(`
|
|
13114
13114
|
* * Field Name: ConversationDetail
|
|
13115
|
-
* * Display Name: Conversation
|
|
13115
|
+
* * Display Name: Conversation Detail
|
|
13116
13116
|
* * SQL Data Type: nvarchar(MAX)`),
|
|
13117
13117
|
ArtifactVersion: z.string().nullable().describe(`
|
|
13118
13118
|
* * Field Name: ArtifactVersion
|
|
@@ -13262,7 +13262,7 @@ export const ConversationDetailRatingSchema = z.object({
|
|
|
13262
13262
|
* * Default Value: getutcdate()`),
|
|
13263
13263
|
ConversationDetail: z.string().describe(`
|
|
13264
13264
|
* * Field Name: ConversationDetail
|
|
13265
|
-
* * Display Name:
|
|
13265
|
+
* * Display Name: Message Text
|
|
13266
13266
|
* * SQL Data Type: nvarchar(MAX)`),
|
|
13267
13267
|
User: z.string().describe(`
|
|
13268
13268
|
* * Field Name: User
|
|
@@ -14372,7 +14372,7 @@ export const MCPServerConnectionToolSchema = z.object({
|
|
|
14372
14372
|
* * Related Entity/Foreign Key: MJ: MCP Server Tools (vwMCPServerTools.ID)`),
|
|
14373
14373
|
IsEnabled: z.boolean().describe(`
|
|
14374
14374
|
* * Field Name: IsEnabled
|
|
14375
|
-
* * Display Name:
|
|
14375
|
+
* * Display Name: Enabled
|
|
14376
14376
|
* * SQL Data Type: bit
|
|
14377
14377
|
* * Default Value: 1
|
|
14378
14378
|
* * Description: Whether this tool is enabled for the connection`),
|
|
@@ -14398,11 +14398,11 @@ export const MCPServerConnectionToolSchema = z.object({
|
|
|
14398
14398
|
* * Default Value: getutcdate()`),
|
|
14399
14399
|
MCPServerConnection: z.string().describe(`
|
|
14400
14400
|
* * Field Name: MCPServerConnection
|
|
14401
|
-
* * Display Name:
|
|
14401
|
+
* * Display Name: Server Connection
|
|
14402
14402
|
* * SQL Data Type: nvarchar(255)`),
|
|
14403
14403
|
MCPServerTool: z.string().nullable().describe(`
|
|
14404
14404
|
* * Field Name: MCPServerTool
|
|
14405
|
-
* * Display Name:
|
|
14405
|
+
* * Display Name: Server Tool
|
|
14406
14406
|
* * SQL Data Type: nvarchar(255)`),
|
|
14407
14407
|
});
|
|
14408
14408
|
/**
|
|
@@ -15990,7 +15990,7 @@ export const TaskSchema = z.object({
|
|
|
15990
15990
|
* * Default Value: newsequentialid()`),
|
|
15991
15991
|
ParentID: z.string().nullable().describe(`
|
|
15992
15992
|
* * Field Name: ParentID
|
|
15993
|
-
* * Display Name: Parent
|
|
15993
|
+
* * Display Name: Parent
|
|
15994
15994
|
* * SQL Data Type: uniqueidentifier
|
|
15995
15995
|
* * Related Entity/Foreign Key: MJ: Tasks (vwTasks.ID)`),
|
|
15996
15996
|
Name: z.string().describe(`
|
|
@@ -16005,33 +16005,33 @@ export const TaskSchema = z.object({
|
|
|
16005
16005
|
* * Description: Detailed description of the task requirements and objectives`),
|
|
16006
16006
|
TypeID: z.string().describe(`
|
|
16007
16007
|
* * Field Name: TypeID
|
|
16008
|
-
* * Display Name: Type
|
|
16008
|
+
* * Display Name: Type
|
|
16009
16009
|
* * SQL Data Type: uniqueidentifier
|
|
16010
16010
|
* * Related Entity/Foreign Key: MJ: Task Types (vwTaskTypes.ID)`),
|
|
16011
16011
|
EnvironmentID: z.string().describe(`
|
|
16012
16012
|
* * Field Name: EnvironmentID
|
|
16013
|
-
* * Display Name: Environment
|
|
16013
|
+
* * Display Name: Environment
|
|
16014
16014
|
* * SQL Data Type: uniqueidentifier
|
|
16015
16015
|
* * Related Entity/Foreign Key: MJ: Environments (vwEnvironments.ID)
|
|
16016
16016
|
* * Default Value: F51358F3-9447-4176-B313-BF8025FD8D09`),
|
|
16017
16017
|
ProjectID: z.string().nullable().describe(`
|
|
16018
16018
|
* * Field Name: ProjectID
|
|
16019
|
-
* * Display Name: Project
|
|
16019
|
+
* * Display Name: Project
|
|
16020
16020
|
* * SQL Data Type: uniqueidentifier
|
|
16021
16021
|
* * Related Entity/Foreign Key: MJ: Projects (vwProjects.ID)`),
|
|
16022
16022
|
ConversationDetailID: z.string().nullable().describe(`
|
|
16023
16023
|
* * Field Name: ConversationDetailID
|
|
16024
|
-
* * Display Name: Conversation Detail
|
|
16024
|
+
* * Display Name: Conversation Detail
|
|
16025
16025
|
* * SQL Data Type: uniqueidentifier
|
|
16026
16026
|
* * Related Entity/Foreign Key: Conversation Details (vwConversationDetails.ID)`),
|
|
16027
16027
|
UserID: z.string().nullable().describe(`
|
|
16028
16028
|
* * Field Name: UserID
|
|
16029
|
-
* * Display Name: User
|
|
16029
|
+
* * Display Name: User
|
|
16030
16030
|
* * SQL Data Type: uniqueidentifier
|
|
16031
16031
|
* * Related Entity/Foreign Key: Users (vwUsers.ID)`),
|
|
16032
16032
|
AgentID: z.string().nullable().describe(`
|
|
16033
16033
|
* * Field Name: AgentID
|
|
16034
|
-
* * Display Name: Agent
|
|
16034
|
+
* * Display Name: Agent
|
|
16035
16035
|
* * SQL Data Type: uniqueidentifier
|
|
16036
16036
|
* * Related Entity/Foreign Key: AI Agents (vwAIAgents.ID)`),
|
|
16037
16037
|
Status: z.union([z.literal('Blocked'), z.literal('Cancelled'), z.literal('Complete'), z.literal('Deferred'), z.literal('Failed'), z.literal('In Progress'), z.literal('Pending')]).describe(`
|
|
@@ -16082,19 +16082,19 @@ export const TaskSchema = z.object({
|
|
|
16082
16082
|
* * Default Value: getutcdate()`),
|
|
16083
16083
|
Parent: z.string().nullable().describe(`
|
|
16084
16084
|
* * Field Name: Parent
|
|
16085
|
-
* * Display Name: Parent
|
|
16085
|
+
* * Display Name: Parent
|
|
16086
16086
|
* * SQL Data Type: nvarchar(255)`),
|
|
16087
16087
|
Type: z.string().describe(`
|
|
16088
16088
|
* * Field Name: Type
|
|
16089
|
-
* * Display Name: Type
|
|
16089
|
+
* * Display Name: Type
|
|
16090
16090
|
* * SQL Data Type: nvarchar(255)`),
|
|
16091
16091
|
Environment: z.string().describe(`
|
|
16092
16092
|
* * Field Name: Environment
|
|
16093
|
-
* * Display Name: Environment
|
|
16093
|
+
* * Display Name: Environment
|
|
16094
16094
|
* * SQL Data Type: nvarchar(255)`),
|
|
16095
16095
|
Project: z.string().nullable().describe(`
|
|
16096
16096
|
* * Field Name: Project
|
|
16097
|
-
* * Display Name: Project
|
|
16097
|
+
* * Display Name: Project
|
|
16098
16098
|
* * SQL Data Type: nvarchar(255)`),
|
|
16099
16099
|
ConversationDetail: z.string().nullable().describe(`
|
|
16100
16100
|
* * Field Name: ConversationDetail
|
|
@@ -16102,15 +16102,15 @@ export const TaskSchema = z.object({
|
|
|
16102
16102
|
* * SQL Data Type: nvarchar(MAX)`),
|
|
16103
16103
|
User: z.string().nullable().describe(`
|
|
16104
16104
|
* * Field Name: User
|
|
16105
|
-
* * Display Name: User
|
|
16105
|
+
* * Display Name: User
|
|
16106
16106
|
* * SQL Data Type: nvarchar(100)`),
|
|
16107
16107
|
Agent: z.string().nullable().describe(`
|
|
16108
16108
|
* * Field Name: Agent
|
|
16109
|
-
* * Display Name: Agent
|
|
16109
|
+
* * Display Name: Agent
|
|
16110
16110
|
* * SQL Data Type: nvarchar(255)`),
|
|
16111
16111
|
RootParentID: z.string().nullable().describe(`
|
|
16112
16112
|
* * Field Name: RootParentID
|
|
16113
|
-
* * Display Name: Root Parent
|
|
16113
|
+
* * Display Name: Root Parent
|
|
16114
16114
|
* * SQL Data Type: uniqueidentifier`),
|
|
16115
16115
|
});
|
|
16116
16116
|
/**
|
|
@@ -18064,7 +18064,7 @@ export const RecommendationItemSchema = z.object({
|
|
|
18064
18064
|
* * Default Value: newsequentialid()`),
|
|
18065
18065
|
RecommendationID: z.string().describe(`
|
|
18066
18066
|
* * Field Name: RecommendationID
|
|
18067
|
-
* * Display Name: Recommendation
|
|
18067
|
+
* * Display Name: Recommendation ID
|
|
18068
18068
|
* * SQL Data Type: uniqueidentifier
|
|
18069
18069
|
* * Related Entity/Foreign Key: Recommendations (vwRecommendations.ID)`),
|
|
18070
18070
|
DestinationEntityID: z.string().describe(`
|
|
@@ -18204,7 +18204,7 @@ export const RecommendationSchema = z.object({
|
|
|
18204
18204
|
* * Default Value: newsequentialid()`),
|
|
18205
18205
|
RecommendationRunID: z.string().describe(`
|
|
18206
18206
|
* * Field Name: RecommendationRunID
|
|
18207
|
-
* * Display Name: Recommendation Run
|
|
18207
|
+
* * Display Name: Recommendation Run ID
|
|
18208
18208
|
* * SQL Data Type: uniqueidentifier
|
|
18209
18209
|
* * Related Entity/Foreign Key: Recommendation Runs (vwRecommendationRuns.ID)`),
|
|
18210
18210
|
SourceEntityID: z.string().describe(`
|
|
@@ -18214,7 +18214,7 @@ export const RecommendationSchema = z.object({
|
|
|
18214
18214
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)`),
|
|
18215
18215
|
SourceEntityRecordID: z.string().describe(`
|
|
18216
18216
|
* * Field Name: SourceEntityRecordID
|
|
18217
|
-
* * Display Name: Source Entity Record
|
|
18217
|
+
* * Display Name: Source Entity Record
|
|
18218
18218
|
* * SQL Data Type: nvarchar(MAX)
|
|
18219
18219
|
* * Description: The record ID of the source entity`),
|
|
18220
18220
|
__mj_CreatedAt: z.date().describe(`
|
|
@@ -18229,7 +18229,7 @@ export const RecommendationSchema = z.object({
|
|
|
18229
18229
|
* * Default Value: getutcdate()`),
|
|
18230
18230
|
RecommendationRun: z.string().describe(`
|
|
18231
18231
|
* * Field Name: RecommendationRun
|
|
18232
|
-
* * Display Name: Run
|
|
18232
|
+
* * Display Name: Recommendation Run
|
|
18233
18233
|
* * SQL Data Type: nvarchar(255)`),
|
|
18234
18234
|
SourceEntity: z.string().describe(`
|
|
18235
18235
|
* * Field Name: SourceEntity
|
|
@@ -18423,7 +18423,7 @@ export const RecordMergeDeletionLogSchema = z.object({
|
|
|
18423
18423
|
* * Default Value: newsequentialid()`),
|
|
18424
18424
|
RecordMergeLogID: z.string().describe(`
|
|
18425
18425
|
* * Field Name: RecordMergeLogID
|
|
18426
|
-
* * Display Name: Record Merge Log
|
|
18426
|
+
* * Display Name: Record Merge Log ID
|
|
18427
18427
|
* * SQL Data Type: uniqueidentifier
|
|
18428
18428
|
* * Related Entity/Foreign Key: Record Merge Logs (vwRecordMergeLogs.ID)`),
|
|
18429
18429
|
DeletedRecordID: z.string().describe(`
|
|
@@ -19252,12 +19252,12 @@ export const SchemaInfoSchema = z.object({
|
|
|
19252
19252
|
* * Description: The database schema this information applies to.`),
|
|
19253
19253
|
EntityIDMin: z.number().describe(`
|
|
19254
19254
|
* * Field Name: EntityIDMin
|
|
19255
|
-
* * Display Name: Entity
|
|
19255
|
+
* * Display Name: Entity ID Minimum
|
|
19256
19256
|
* * SQL Data Type: int
|
|
19257
19257
|
* * Description: Field EntityIDMin for entity Schema Info.`),
|
|
19258
19258
|
EntityIDMax: z.number().describe(`
|
|
19259
19259
|
* * Field Name: EntityIDMax
|
|
19260
|
-
* * Display Name: Entity
|
|
19260
|
+
* * Display Name: Entity ID Maximum
|
|
19261
19261
|
* * SQL Data Type: int
|
|
19262
19262
|
* * Description: Field EntityIDMax for entity Schema Info.`),
|
|
19263
19263
|
Comments: z.string().nullable().describe(`
|
|
@@ -19278,6 +19278,16 @@ export const SchemaInfoSchema = z.object({
|
|
|
19278
19278
|
* * Field Name: Description
|
|
19279
19279
|
* * Display Name: Description
|
|
19280
19280
|
* * SQL Data Type: nvarchar(MAX)`),
|
|
19281
|
+
EntityNamePrefix: z.string().nullable().describe(`
|
|
19282
|
+
* * Field Name: EntityNamePrefix
|
|
19283
|
+
* * Display Name: Entity Name Prefix
|
|
19284
|
+
* * SQL Data Type: nvarchar(25)
|
|
19285
|
+
* * 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.`),
|
|
19286
|
+
EntityNameSuffix: z.string().nullable().describe(`
|
|
19287
|
+
* * Field Name: EntityNameSuffix
|
|
19288
|
+
* * Display Name: Entity Name Suffix
|
|
19289
|
+
* * SQL Data Type: nvarchar(25)
|
|
19290
|
+
* * Description: Optional suffix to append to entity names generated for this schema. Can be overridden by mj.config.cjs NameRulesBySchema settings.`),
|
|
19281
19291
|
});
|
|
19282
19292
|
/**
|
|
19283
19293
|
* zod schema definition for the entity Skills
|
|
@@ -19566,7 +19576,7 @@ export const TemplateParamSchema = z.object({
|
|
|
19566
19576
|
* * Default Value: newsequentialid()`),
|
|
19567
19577
|
TemplateID: z.string().describe(`
|
|
19568
19578
|
* * Field Name: TemplateID
|
|
19569
|
-
* * Display Name: Template
|
|
19579
|
+
* * Display Name: Template ID
|
|
19570
19580
|
* * SQL Data Type: uniqueidentifier
|
|
19571
19581
|
* * Related Entity/Foreign Key: Templates (vwTemplates.ID)`),
|
|
19572
19582
|
Name: z.string().describe(`
|
|
@@ -19599,7 +19609,7 @@ export const TemplateParamSchema = z.object({
|
|
|
19599
19609
|
* * Description: Default value of the parameter`),
|
|
19600
19610
|
IsRequired: z.boolean().describe(`
|
|
19601
19611
|
* * Field Name: IsRequired
|
|
19602
|
-
* * Display Name:
|
|
19612
|
+
* * Display Name: Required
|
|
19603
19613
|
* * SQL Data Type: bit
|
|
19604
19614
|
* * Default Value: 0
|
|
19605
19615
|
* * Description: Whether this parameter must be provided when using the template.`),
|
|
@@ -19620,12 +19630,12 @@ export const TemplateParamSchema = z.object({
|
|
|
19620
19630
|
* * Description: Only used when Type = Entity, used to specify an optional filter to reduce the set of rows that are returned for each of the templates being rendered.`),
|
|
19621
19631
|
EntityID: z.string().nullable().describe(`
|
|
19622
19632
|
* * Field Name: EntityID
|
|
19623
|
-
* * Display Name: Entity
|
|
19633
|
+
* * Display Name: Entity ID
|
|
19624
19634
|
* * SQL Data Type: uniqueidentifier
|
|
19625
19635
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)`),
|
|
19626
19636
|
RecordID: z.string().nullable().describe(`
|
|
19627
19637
|
* * Field Name: RecordID
|
|
19628
|
-
* * Display Name: Record
|
|
19638
|
+
* * Display Name: Record ID
|
|
19629
19639
|
* * SQL Data Type: nvarchar(2000)
|
|
19630
19640
|
* * Description: Record ID, used only when Type is Record and a specific hardcoded record ID is desired, this is an uncommon use case, helpful for pulling in static types and metadata in some cases.`),
|
|
19631
19641
|
__mj_CreatedAt: z.date().describe(`
|
|
@@ -26909,7 +26919,7 @@ let AIResultCacheEntity = class AIResultCacheEntity extends BaseEntity {
|
|
|
26909
26919
|
}
|
|
26910
26920
|
/**
|
|
26911
26921
|
* * Field Name: PromptRunID
|
|
26912
|
-
* * Display Name: Prompt Run
|
|
26922
|
+
* * Display Name: Prompt Run
|
|
26913
26923
|
* * SQL Data Type: uniqueidentifier
|
|
26914
26924
|
* * Related Entity/Foreign Key: MJ: AI Prompt Runs (vwAIPromptRuns.ID)
|
|
26915
26925
|
* * Description: Reference to the AIPromptRun that created this cache entry.
|
|
@@ -31931,7 +31941,7 @@ let ConversationEntity = class ConversationEntity extends BaseEntity {
|
|
|
31931
31941
|
}
|
|
31932
31942
|
/**
|
|
31933
31943
|
* * Field Name: LinkedRecordID
|
|
31934
|
-
* * Display Name: Linked Record
|
|
31944
|
+
* * Display Name: Linked Record ID
|
|
31935
31945
|
* * SQL Data Type: nvarchar(500)
|
|
31936
31946
|
* * Description: ID of a related record this conversation is about (support ticket, order, etc.).
|
|
31937
31947
|
*/
|
|
@@ -33359,7 +33369,7 @@ let DuplicateRunDetailEntity = class DuplicateRunDetailEntity extends BaseEntity
|
|
|
33359
33369
|
}
|
|
33360
33370
|
/**
|
|
33361
33371
|
* * Field Name: RecordID
|
|
33362
|
-
* * Display Name: Record
|
|
33372
|
+
* * Display Name: Record ID
|
|
33363
33373
|
* * SQL Data Type: nvarchar(500)
|
|
33364
33374
|
* * Description: The ID of the record being analyzed for duplicates.
|
|
33365
33375
|
*/
|
|
@@ -33767,7 +33777,7 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
|
|
|
33767
33777
|
}
|
|
33768
33778
|
/**
|
|
33769
33779
|
* * Field Name: ExternalSystemRecordID
|
|
33770
|
-
* * Display Name: External System Record
|
|
33780
|
+
* * Display Name: External System Record ID
|
|
33771
33781
|
* * SQL Data Type: nvarchar(750)
|
|
33772
33782
|
* * Description: The employee's unique identifier in the external integrated system.
|
|
33773
33783
|
*/
|
|
@@ -33810,7 +33820,7 @@ let EmployeeCompanyIntegrationEntity = class EmployeeCompanyIntegrationEntity ex
|
|
|
33810
33820
|
}
|
|
33811
33821
|
/**
|
|
33812
33822
|
* * Field Name: Employee
|
|
33813
|
-
* * Display Name: Employee
|
|
33823
|
+
* * Display Name: Employee
|
|
33814
33824
|
* * SQL Data Type: nvarchar(81)
|
|
33815
33825
|
*/
|
|
33816
33826
|
get Employee() {
|
|
@@ -33913,7 +33923,7 @@ let EmployeeRoleEntity = class EmployeeRoleEntity extends BaseEntity {
|
|
|
33913
33923
|
}
|
|
33914
33924
|
/**
|
|
33915
33925
|
* * Field Name: Employee
|
|
33916
|
-
* * Display Name: Employee
|
|
33926
|
+
* * Display Name: Employee
|
|
33917
33927
|
* * SQL Data Type: nvarchar(81)
|
|
33918
33928
|
*/
|
|
33919
33929
|
get Employee() {
|
|
@@ -34024,7 +34034,7 @@ let EmployeeSkillEntity = class EmployeeSkillEntity extends BaseEntity {
|
|
|
34024
34034
|
}
|
|
34025
34035
|
/**
|
|
34026
34036
|
* * Field Name: Skill
|
|
34027
|
-
* * Display Name: Skill
|
|
34037
|
+
* * Display Name: Skill Name
|
|
34028
34038
|
* * SQL Data Type: nvarchar(50)
|
|
34029
34039
|
*/
|
|
34030
34040
|
get Skill() {
|
|
@@ -35108,7 +35118,7 @@ let EntityActionFilterEntity = class EntityActionFilterEntity extends BaseEntity
|
|
|
35108
35118
|
}
|
|
35109
35119
|
/**
|
|
35110
35120
|
* * Field Name: EntityActionID
|
|
35111
|
-
* * Display Name: Entity Action
|
|
35121
|
+
* * Display Name: Entity Action ID
|
|
35112
35122
|
* * SQL Data Type: uniqueidentifier
|
|
35113
35123
|
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
|
|
35114
35124
|
*/
|
|
@@ -35120,7 +35130,7 @@ let EntityActionFilterEntity = class EntityActionFilterEntity extends BaseEntity
|
|
|
35120
35130
|
}
|
|
35121
35131
|
/**
|
|
35122
35132
|
* * Field Name: ActionFilterID
|
|
35123
|
-
* * Display Name: Action Filter
|
|
35133
|
+
* * Display Name: Action Filter ID
|
|
35124
35134
|
* * SQL Data Type: uniqueidentifier
|
|
35125
35135
|
* * Related Entity/Foreign Key: Action Filters (vwActionFilters.ID)
|
|
35126
35136
|
*/
|
|
@@ -35180,7 +35190,7 @@ let EntityActionFilterEntity = class EntityActionFilterEntity extends BaseEntity
|
|
|
35180
35190
|
}
|
|
35181
35191
|
/**
|
|
35182
35192
|
* * Field Name: EntityAction
|
|
35183
|
-
* * Display Name: Action
|
|
35193
|
+
* * Display Name: Entity Action
|
|
35184
35194
|
* * SQL Data Type: nvarchar(425)
|
|
35185
35195
|
*/
|
|
35186
35196
|
get EntityAction() {
|
|
@@ -35188,7 +35198,7 @@ let EntityActionFilterEntity = class EntityActionFilterEntity extends BaseEntity
|
|
|
35188
35198
|
}
|
|
35189
35199
|
/**
|
|
35190
35200
|
* * Field Name: ActionFilter
|
|
35191
|
-
* * Display Name: Filter
|
|
35201
|
+
* * Display Name: Action Filter
|
|
35192
35202
|
* * SQL Data Type: nvarchar(MAX)
|
|
35193
35203
|
*/
|
|
35194
35204
|
get ActionFilter() {
|
|
@@ -35341,7 +35351,7 @@ let EntityActionInvocationEntity = class EntityActionInvocationEntity extends Ba
|
|
|
35341
35351
|
}
|
|
35342
35352
|
/**
|
|
35343
35353
|
* * Field Name: EntityActionID
|
|
35344
|
-
* * Display Name: Entity Action
|
|
35354
|
+
* * Display Name: Entity Action ID
|
|
35345
35355
|
* * SQL Data Type: uniqueidentifier
|
|
35346
35356
|
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
|
|
35347
35357
|
*/
|
|
@@ -35353,7 +35363,7 @@ let EntityActionInvocationEntity = class EntityActionInvocationEntity extends Ba
|
|
|
35353
35363
|
}
|
|
35354
35364
|
/**
|
|
35355
35365
|
* * Field Name: InvocationTypeID
|
|
35356
|
-
* * Display Name: Invocation Type
|
|
35366
|
+
* * Display Name: Invocation Type ID
|
|
35357
35367
|
* * SQL Data Type: uniqueidentifier
|
|
35358
35368
|
* * Related Entity/Foreign Key: Entity Action Invocation Types (vwEntityActionInvocationTypes.ID)
|
|
35359
35369
|
*/
|
|
@@ -35401,7 +35411,7 @@ let EntityActionInvocationEntity = class EntityActionInvocationEntity extends Ba
|
|
|
35401
35411
|
}
|
|
35402
35412
|
/**
|
|
35403
35413
|
* * Field Name: EntityAction
|
|
35404
|
-
* * Display Name: Action
|
|
35414
|
+
* * Display Name: Entity Action
|
|
35405
35415
|
* * SQL Data Type: nvarchar(425)
|
|
35406
35416
|
*/
|
|
35407
35417
|
get EntityAction() {
|
|
@@ -35462,7 +35472,7 @@ let EntityActionParamEntity = class EntityActionParamEntity extends BaseEntity {
|
|
|
35462
35472
|
}
|
|
35463
35473
|
/**
|
|
35464
35474
|
* * Field Name: EntityActionID
|
|
35465
|
-
* * Display Name: Entity Action
|
|
35475
|
+
* * Display Name: Entity Action
|
|
35466
35476
|
* * SQL Data Type: uniqueidentifier
|
|
35467
35477
|
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
|
|
35468
35478
|
*/
|
|
@@ -35474,7 +35484,7 @@ let EntityActionParamEntity = class EntityActionParamEntity extends BaseEntity {
|
|
|
35474
35484
|
}
|
|
35475
35485
|
/**
|
|
35476
35486
|
* * Field Name: ActionParamID
|
|
35477
|
-
* * Display Name: Action Parameter
|
|
35487
|
+
* * Display Name: Action Parameter
|
|
35478
35488
|
* * SQL Data Type: uniqueidentifier
|
|
35479
35489
|
* * Related Entity/Foreign Key: Action Params (vwActionParams.ID)
|
|
35480
35490
|
*/
|
|
@@ -35554,7 +35564,7 @@ let EntityActionParamEntity = class EntityActionParamEntity extends BaseEntity {
|
|
|
35554
35564
|
}
|
|
35555
35565
|
/**
|
|
35556
35566
|
* * Field Name: ActionParam
|
|
35557
|
-
* * Display Name:
|
|
35567
|
+
* * Display Name: Parameter Name
|
|
35558
35568
|
* * SQL Data Type: nvarchar(255)
|
|
35559
35569
|
*/
|
|
35560
35570
|
get ActionParam() {
|
|
@@ -35977,7 +35987,7 @@ let EntityCommunicationFieldEntity = class EntityCommunicationFieldEntity extend
|
|
|
35977
35987
|
}
|
|
35978
35988
|
/**
|
|
35979
35989
|
* * Field Name: EntityCommunicationMessageTypeID
|
|
35980
|
-
* * Display Name: Message Type
|
|
35990
|
+
* * Display Name: Entity Communication Message Type
|
|
35981
35991
|
* * SQL Data Type: uniqueidentifier
|
|
35982
35992
|
* * Related Entity/Foreign Key: Entity Communication Message Types (vwEntityCommunicationMessageTypes.ID)
|
|
35983
35993
|
*/
|
|
@@ -36031,7 +36041,7 @@ let EntityCommunicationFieldEntity = class EntityCommunicationFieldEntity extend
|
|
|
36031
36041
|
}
|
|
36032
36042
|
/**
|
|
36033
36043
|
* * Field Name: EntityCommunicationMessageType
|
|
36034
|
-
* * Display Name: Message Type
|
|
36044
|
+
* * Display Name: Entity Communication Message Type
|
|
36035
36045
|
* * SQL Data Type: nvarchar(100)
|
|
36036
36046
|
*/
|
|
36037
36047
|
get EntityCommunicationMessageType() {
|
|
@@ -38865,7 +38875,7 @@ let ErrorLogEntity = class ErrorLogEntity extends BaseEntity {
|
|
|
38865
38875
|
}
|
|
38866
38876
|
/**
|
|
38867
38877
|
* * Field Name: Message
|
|
38868
|
-
* * Display Name: Message
|
|
38878
|
+
* * Display Name: Error Message
|
|
38869
38879
|
* * SQL Data Type: nvarchar(MAX)
|
|
38870
38880
|
* * Description: The primary error message describing what went wrong.
|
|
38871
38881
|
*/
|
|
@@ -38890,7 +38900,7 @@ let ErrorLogEntity = class ErrorLogEntity extends BaseEntity {
|
|
|
38890
38900
|
}
|
|
38891
38901
|
/**
|
|
38892
38902
|
* * Field Name: Status
|
|
38893
|
-
* * Display Name: Status
|
|
38903
|
+
* * Display Name: Error Status
|
|
38894
38904
|
* * SQL Data Type: nvarchar(10)
|
|
38895
38905
|
*/
|
|
38896
38906
|
get Status() {
|
|
@@ -38901,7 +38911,7 @@ let ErrorLogEntity = class ErrorLogEntity extends BaseEntity {
|
|
|
38901
38911
|
}
|
|
38902
38912
|
/**
|
|
38903
38913
|
* * Field Name: Category
|
|
38904
|
-
* * Display Name: Category
|
|
38914
|
+
* * Display Name: Error Category
|
|
38905
38915
|
* * SQL Data Type: nvarchar(20)
|
|
38906
38916
|
* * Description: High-level category for grouping related errors (Database, API, Validation, etc.).
|
|
38907
38917
|
*/
|
|
@@ -38913,7 +38923,7 @@ let ErrorLogEntity = class ErrorLogEntity extends BaseEntity {
|
|
|
38913
38923
|
}
|
|
38914
38924
|
/**
|
|
38915
38925
|
* * Field Name: Details
|
|
38916
|
-
* * Display Name: Details
|
|
38926
|
+
* * Display Name: Error Details
|
|
38917
38927
|
* * SQL Data Type: nvarchar(MAX)
|
|
38918
38928
|
* * Description: Full error details including stack trace, inner exceptions, and context data.
|
|
38919
38929
|
*/
|
|
@@ -43823,7 +43833,7 @@ detailed information about what validation rules failed.
|
|
|
43823
43833
|
}
|
|
43824
43834
|
/**
|
|
43825
43835
|
* * Field Name: ParentID
|
|
43826
|
-
* * Display Name: Parent
|
|
43836
|
+
* * Display Name: Parent ID
|
|
43827
43837
|
* * SQL Data Type: uniqueidentifier
|
|
43828
43838
|
* * Related Entity/Foreign Key: MJ: AI Agent Run Steps (vwAIAgentRunSteps.ID)
|
|
43829
43839
|
* * Description: Optional reference to parent step for tracking hierarchical relationships like code->test->fix->code cycles
|
|
@@ -54124,7 +54134,7 @@ let ConversationDetailArtifactEntity = class ConversationDetailArtifactEntity ex
|
|
|
54124
54134
|
}
|
|
54125
54135
|
/**
|
|
54126
54136
|
* * Field Name: ConversationDetail
|
|
54127
|
-
* * Display Name: Conversation
|
|
54137
|
+
* * Display Name: Conversation Detail
|
|
54128
54138
|
* * SQL Data Type: nvarchar(MAX)
|
|
54129
54139
|
*/
|
|
54130
54140
|
get ConversationDetail() {
|
|
@@ -54548,7 +54558,7 @@ let ConversationDetailRatingEntity = class ConversationDetailRatingEntity extend
|
|
|
54548
54558
|
}
|
|
54549
54559
|
/**
|
|
54550
54560
|
* * Field Name: ConversationDetail
|
|
54551
|
-
* * Display Name:
|
|
54561
|
+
* * Display Name: Message Text
|
|
54552
54562
|
* * SQL Data Type: nvarchar(MAX)
|
|
54553
54563
|
*/
|
|
54554
54564
|
get ConversationDetail() {
|
|
@@ -57351,7 +57361,7 @@ let MCPServerConnectionToolEntity = class MCPServerConnectionToolEntity extends
|
|
|
57351
57361
|
}
|
|
57352
57362
|
/**
|
|
57353
57363
|
* * Field Name: IsEnabled
|
|
57354
|
-
* * Display Name:
|
|
57364
|
+
* * Display Name: Enabled
|
|
57355
57365
|
* * SQL Data Type: bit
|
|
57356
57366
|
* * Default Value: 1
|
|
57357
57367
|
* * Description: Whether this tool is enabled for the connection
|
|
@@ -57406,7 +57416,7 @@ let MCPServerConnectionToolEntity = class MCPServerConnectionToolEntity extends
|
|
|
57406
57416
|
}
|
|
57407
57417
|
/**
|
|
57408
57418
|
* * Field Name: MCPServerConnection
|
|
57409
|
-
* * Display Name:
|
|
57419
|
+
* * Display Name: Server Connection
|
|
57410
57420
|
* * SQL Data Type: nvarchar(255)
|
|
57411
57421
|
*/
|
|
57412
57422
|
get MCPServerConnection() {
|
|
@@ -57414,7 +57424,7 @@ let MCPServerConnectionToolEntity = class MCPServerConnectionToolEntity extends
|
|
|
57414
57424
|
}
|
|
57415
57425
|
/**
|
|
57416
57426
|
* * Field Name: MCPServerTool
|
|
57417
|
-
* * Display Name:
|
|
57427
|
+
* * Display Name: Server Tool
|
|
57418
57428
|
* * SQL Data Type: nvarchar(255)
|
|
57419
57429
|
*/
|
|
57420
57430
|
get MCPServerTool() {
|
|
@@ -61536,7 +61546,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61536
61546
|
}
|
|
61537
61547
|
/**
|
|
61538
61548
|
* * Field Name: ParentID
|
|
61539
|
-
* * Display Name: Parent
|
|
61549
|
+
* * Display Name: Parent
|
|
61540
61550
|
* * SQL Data Type: uniqueidentifier
|
|
61541
61551
|
* * Related Entity/Foreign Key: MJ: Tasks (vwTasks.ID)
|
|
61542
61552
|
*/
|
|
@@ -61572,7 +61582,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61572
61582
|
}
|
|
61573
61583
|
/**
|
|
61574
61584
|
* * Field Name: TypeID
|
|
61575
|
-
* * Display Name: Type
|
|
61585
|
+
* * Display Name: Type
|
|
61576
61586
|
* * SQL Data Type: uniqueidentifier
|
|
61577
61587
|
* * Related Entity/Foreign Key: MJ: Task Types (vwTaskTypes.ID)
|
|
61578
61588
|
*/
|
|
@@ -61584,7 +61594,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61584
61594
|
}
|
|
61585
61595
|
/**
|
|
61586
61596
|
* * Field Name: EnvironmentID
|
|
61587
|
-
* * Display Name: Environment
|
|
61597
|
+
* * Display Name: Environment
|
|
61588
61598
|
* * SQL Data Type: uniqueidentifier
|
|
61589
61599
|
* * Related Entity/Foreign Key: MJ: Environments (vwEnvironments.ID)
|
|
61590
61600
|
* * Default Value: F51358F3-9447-4176-B313-BF8025FD8D09
|
|
@@ -61597,7 +61607,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61597
61607
|
}
|
|
61598
61608
|
/**
|
|
61599
61609
|
* * Field Name: ProjectID
|
|
61600
|
-
* * Display Name: Project
|
|
61610
|
+
* * Display Name: Project
|
|
61601
61611
|
* * SQL Data Type: uniqueidentifier
|
|
61602
61612
|
* * Related Entity/Foreign Key: MJ: Projects (vwProjects.ID)
|
|
61603
61613
|
*/
|
|
@@ -61609,7 +61619,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61609
61619
|
}
|
|
61610
61620
|
/**
|
|
61611
61621
|
* * Field Name: ConversationDetailID
|
|
61612
|
-
* * Display Name: Conversation Detail
|
|
61622
|
+
* * Display Name: Conversation Detail
|
|
61613
61623
|
* * SQL Data Type: uniqueidentifier
|
|
61614
61624
|
* * Related Entity/Foreign Key: Conversation Details (vwConversationDetails.ID)
|
|
61615
61625
|
*/
|
|
@@ -61621,7 +61631,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61621
61631
|
}
|
|
61622
61632
|
/**
|
|
61623
61633
|
* * Field Name: UserID
|
|
61624
|
-
* * Display Name: User
|
|
61634
|
+
* * Display Name: User
|
|
61625
61635
|
* * SQL Data Type: uniqueidentifier
|
|
61626
61636
|
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
61627
61637
|
*/
|
|
@@ -61633,7 +61643,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61633
61643
|
}
|
|
61634
61644
|
/**
|
|
61635
61645
|
* * Field Name: AgentID
|
|
61636
|
-
* * Display Name: Agent
|
|
61646
|
+
* * Display Name: Agent
|
|
61637
61647
|
* * SQL Data Type: uniqueidentifier
|
|
61638
61648
|
* * Related Entity/Foreign Key: AI Agents (vwAIAgents.ID)
|
|
61639
61649
|
*/
|
|
@@ -61734,7 +61744,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61734
61744
|
}
|
|
61735
61745
|
/**
|
|
61736
61746
|
* * Field Name: Parent
|
|
61737
|
-
* * Display Name: Parent
|
|
61747
|
+
* * Display Name: Parent
|
|
61738
61748
|
* * SQL Data Type: nvarchar(255)
|
|
61739
61749
|
*/
|
|
61740
61750
|
get Parent() {
|
|
@@ -61742,7 +61752,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61742
61752
|
}
|
|
61743
61753
|
/**
|
|
61744
61754
|
* * Field Name: Type
|
|
61745
|
-
* * Display Name: Type
|
|
61755
|
+
* * Display Name: Type
|
|
61746
61756
|
* * SQL Data Type: nvarchar(255)
|
|
61747
61757
|
*/
|
|
61748
61758
|
get Type() {
|
|
@@ -61750,7 +61760,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61750
61760
|
}
|
|
61751
61761
|
/**
|
|
61752
61762
|
* * Field Name: Environment
|
|
61753
|
-
* * Display Name: Environment
|
|
61763
|
+
* * Display Name: Environment
|
|
61754
61764
|
* * SQL Data Type: nvarchar(255)
|
|
61755
61765
|
*/
|
|
61756
61766
|
get Environment() {
|
|
@@ -61758,7 +61768,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61758
61768
|
}
|
|
61759
61769
|
/**
|
|
61760
61770
|
* * Field Name: Project
|
|
61761
|
-
* * Display Name: Project
|
|
61771
|
+
* * Display Name: Project
|
|
61762
61772
|
* * SQL Data Type: nvarchar(255)
|
|
61763
61773
|
*/
|
|
61764
61774
|
get Project() {
|
|
@@ -61774,7 +61784,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61774
61784
|
}
|
|
61775
61785
|
/**
|
|
61776
61786
|
* * Field Name: User
|
|
61777
|
-
* * Display Name: User
|
|
61787
|
+
* * Display Name: User
|
|
61778
61788
|
* * SQL Data Type: nvarchar(100)
|
|
61779
61789
|
*/
|
|
61780
61790
|
get User() {
|
|
@@ -61782,7 +61792,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61782
61792
|
}
|
|
61783
61793
|
/**
|
|
61784
61794
|
* * Field Name: Agent
|
|
61785
|
-
* * Display Name: Agent
|
|
61795
|
+
* * Display Name: Agent
|
|
61786
61796
|
* * SQL Data Type: nvarchar(255)
|
|
61787
61797
|
*/
|
|
61788
61798
|
get Agent() {
|
|
@@ -61790,7 +61800,7 @@ let TaskEntity = class TaskEntity extends BaseEntity {
|
|
|
61790
61800
|
}
|
|
61791
61801
|
/**
|
|
61792
61802
|
* * Field Name: RootParentID
|
|
61793
|
-
* * Display Name: Root Parent
|
|
61803
|
+
* * Display Name: Root Parent
|
|
61794
61804
|
* * SQL Data Type: uniqueidentifier
|
|
61795
61805
|
*/
|
|
61796
61806
|
get RootParentID() {
|
|
@@ -66754,7 +66764,7 @@ let RecommendationItemEntity = class RecommendationItemEntity extends BaseEntity
|
|
|
66754
66764
|
}
|
|
66755
66765
|
/**
|
|
66756
66766
|
* * Field Name: RecommendationID
|
|
66757
|
-
* * Display Name: Recommendation
|
|
66767
|
+
* * Display Name: Recommendation ID
|
|
66758
66768
|
* * SQL Data Type: uniqueidentifier
|
|
66759
66769
|
* * Related Entity/Foreign Key: Recommendations (vwRecommendations.ID)
|
|
66760
66770
|
*/
|
|
@@ -67123,7 +67133,7 @@ let RecommendationEntity = class RecommendationEntity extends BaseEntity {
|
|
|
67123
67133
|
}
|
|
67124
67134
|
/**
|
|
67125
67135
|
* * Field Name: RecommendationRunID
|
|
67126
|
-
* * Display Name: Recommendation Run
|
|
67136
|
+
* * Display Name: Recommendation Run ID
|
|
67127
67137
|
* * SQL Data Type: uniqueidentifier
|
|
67128
67138
|
* * Related Entity/Foreign Key: Recommendation Runs (vwRecommendationRuns.ID)
|
|
67129
67139
|
*/
|
|
@@ -67147,7 +67157,7 @@ let RecommendationEntity = class RecommendationEntity extends BaseEntity {
|
|
|
67147
67157
|
}
|
|
67148
67158
|
/**
|
|
67149
67159
|
* * Field Name: SourceEntityRecordID
|
|
67150
|
-
* * Display Name: Source Entity Record
|
|
67160
|
+
* * Display Name: Source Entity Record
|
|
67151
67161
|
* * SQL Data Type: nvarchar(MAX)
|
|
67152
67162
|
* * Description: The record ID of the source entity
|
|
67153
67163
|
*/
|
|
@@ -67177,7 +67187,7 @@ let RecommendationEntity = class RecommendationEntity extends BaseEntity {
|
|
|
67177
67187
|
}
|
|
67178
67188
|
/**
|
|
67179
67189
|
* * Field Name: RecommendationRun
|
|
67180
|
-
* * Display Name: Run
|
|
67190
|
+
* * Display Name: Recommendation Run
|
|
67181
67191
|
* * SQL Data Type: nvarchar(255)
|
|
67182
67192
|
*/
|
|
67183
67193
|
get RecommendationRun() {
|
|
@@ -67646,7 +67656,7 @@ let RecordMergeDeletionLogEntity = class RecordMergeDeletionLogEntity extends Ba
|
|
|
67646
67656
|
}
|
|
67647
67657
|
/**
|
|
67648
67658
|
* * Field Name: RecordMergeLogID
|
|
67649
|
-
* * Display Name: Record Merge Log
|
|
67659
|
+
* * Display Name: Record Merge Log ID
|
|
67650
67660
|
* * SQL Data Type: uniqueidentifier
|
|
67651
67661
|
* * Related Entity/Foreign Key: Record Merge Logs (vwRecordMergeLogs.ID)
|
|
67652
67662
|
*/
|
|
@@ -69811,7 +69821,7 @@ let SchemaInfoEntity = class SchemaInfoEntity extends BaseEntity {
|
|
|
69811
69821
|
}
|
|
69812
69822
|
/**
|
|
69813
69823
|
* * Field Name: EntityIDMin
|
|
69814
|
-
* * Display Name: Entity
|
|
69824
|
+
* * Display Name: Entity ID Minimum
|
|
69815
69825
|
* * SQL Data Type: int
|
|
69816
69826
|
* * Description: Field EntityIDMin for entity Schema Info.
|
|
69817
69827
|
*/
|
|
@@ -69823,7 +69833,7 @@ let SchemaInfoEntity = class SchemaInfoEntity extends BaseEntity {
|
|
|
69823
69833
|
}
|
|
69824
69834
|
/**
|
|
69825
69835
|
* * Field Name: EntityIDMax
|
|
69826
|
-
* * Display Name: Entity
|
|
69836
|
+
* * Display Name: Entity ID Maximum
|
|
69827
69837
|
* * SQL Data Type: int
|
|
69828
69838
|
* * Description: Field EntityIDMax for entity Schema Info.
|
|
69829
69839
|
*/
|
|
@@ -69873,6 +69883,30 @@ let SchemaInfoEntity = class SchemaInfoEntity extends BaseEntity {
|
|
|
69873
69883
|
set Description(value) {
|
|
69874
69884
|
this.Set('Description', value);
|
|
69875
69885
|
}
|
|
69886
|
+
/**
|
|
69887
|
+
* * Field Name: EntityNamePrefix
|
|
69888
|
+
* * Display Name: Entity Name Prefix
|
|
69889
|
+
* * SQL Data Type: nvarchar(25)
|
|
69890
|
+
* * 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.
|
|
69891
|
+
*/
|
|
69892
|
+
get EntityNamePrefix() {
|
|
69893
|
+
return this.Get('EntityNamePrefix');
|
|
69894
|
+
}
|
|
69895
|
+
set EntityNamePrefix(value) {
|
|
69896
|
+
this.Set('EntityNamePrefix', value);
|
|
69897
|
+
}
|
|
69898
|
+
/**
|
|
69899
|
+
* * Field Name: EntityNameSuffix
|
|
69900
|
+
* * Display Name: Entity Name Suffix
|
|
69901
|
+
* * SQL Data Type: nvarchar(25)
|
|
69902
|
+
* * Description: Optional suffix to append to entity names generated for this schema. Can be overridden by mj.config.cjs NameRulesBySchema settings.
|
|
69903
|
+
*/
|
|
69904
|
+
get EntityNameSuffix() {
|
|
69905
|
+
return this.Get('EntityNameSuffix');
|
|
69906
|
+
}
|
|
69907
|
+
set EntityNameSuffix(value) {
|
|
69908
|
+
this.Set('EntityNameSuffix', value);
|
|
69909
|
+
}
|
|
69876
69910
|
};
|
|
69877
69911
|
SchemaInfoEntity = __decorate([
|
|
69878
69912
|
RegisterClass(BaseEntity, 'Schema Info')
|
|
@@ -70645,7 +70679,7 @@ let TemplateParamEntity = class TemplateParamEntity extends BaseEntity {
|
|
|
70645
70679
|
}
|
|
70646
70680
|
/**
|
|
70647
70681
|
* * Field Name: TemplateID
|
|
70648
|
-
* * Display Name: Template
|
|
70682
|
+
* * Display Name: Template ID
|
|
70649
70683
|
* * SQL Data Type: uniqueidentifier
|
|
70650
70684
|
* * Related Entity/Foreign Key: Templates (vwTemplates.ID)
|
|
70651
70685
|
*/
|
|
@@ -70713,7 +70747,7 @@ let TemplateParamEntity = class TemplateParamEntity extends BaseEntity {
|
|
|
70713
70747
|
}
|
|
70714
70748
|
/**
|
|
70715
70749
|
* * Field Name: IsRequired
|
|
70716
|
-
* * Display Name:
|
|
70750
|
+
* * Display Name: Required
|
|
70717
70751
|
* * SQL Data Type: bit
|
|
70718
70752
|
* * Default Value: 0
|
|
70719
70753
|
* * Description: Whether this parameter must be provided when using the template.
|
|
@@ -70762,7 +70796,7 @@ let TemplateParamEntity = class TemplateParamEntity extends BaseEntity {
|
|
|
70762
70796
|
}
|
|
70763
70797
|
/**
|
|
70764
70798
|
* * Field Name: EntityID
|
|
70765
|
-
* * Display Name: Entity
|
|
70799
|
+
* * Display Name: Entity ID
|
|
70766
70800
|
* * SQL Data Type: uniqueidentifier
|
|
70767
70801
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
70768
70802
|
*/
|
|
@@ -70774,7 +70808,7 @@ let TemplateParamEntity = class TemplateParamEntity extends BaseEntity {
|
|
|
70774
70808
|
}
|
|
70775
70809
|
/**
|
|
70776
70810
|
* * Field Name: RecordID
|
|
70777
|
-
* * Display Name: Record
|
|
70811
|
+
* * Display Name: Record ID
|
|
70778
70812
|
* * SQL Data Type: nvarchar(2000)
|
|
70779
70813
|
* * Description: Record ID, used only when Type is Record and a specific hardcoded record ID is desired, this is an uncommon use case, helpful for pulling in static types and metadata in some cases.
|
|
70780
70814
|
*/
|