@memberjunction/core-entities 5.34.1 → 5.35.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.
@@ -1529,7 +1529,7 @@ export declare const MJAIAgentRunStepSchema: z.ZodObject<{
1529
1529
  ID: z.ZodString;
1530
1530
  AgentRunID: z.ZodString;
1531
1531
  StepNumber: z.ZodNumber;
1532
- StepType: z.ZodUnion<[z.ZodLiteral<"Actions">, z.ZodLiteral<"Chat">, z.ZodLiteral<"Decision">, z.ZodLiteral<"ForEach">, z.ZodLiteral<"Prompt">, z.ZodLiteral<"Sub-Agent">, z.ZodLiteral<"Validation">, z.ZodLiteral<"While">]>;
1532
+ StepType: z.ZodUnion<[z.ZodLiteral<"Actions">, z.ZodLiteral<"Chat">, z.ZodLiteral<"Decision">, z.ZodLiteral<"ForEach">, z.ZodLiteral<"Prompt">, z.ZodLiteral<"Sub-Agent">, z.ZodLiteral<"Tool">, z.ZodLiteral<"Validation">, z.ZodLiteral<"While">]>;
1533
1533
  StepName: z.ZodString;
1534
1534
  TargetID: z.ZodNullable<z.ZodString>;
1535
1535
  Status: z.ZodUnion<[z.ZodLiteral<"Cancelled">, z.ZodLiteral<"Completed">, z.ZodLiteral<"Failed">, z.ZodLiteral<"Running">]>;
@@ -1564,7 +1564,7 @@ export declare const MJAIAgentRunStepSchema: z.ZodObject<{
1564
1564
  AgentRunID?: string;
1565
1565
  AgentRun?: string;
1566
1566
  StepNumber?: number;
1567
- StepType?: "Prompt" | "Actions" | "Chat" | "Decision" | "ForEach" | "Sub-Agent" | "Validation" | "While";
1567
+ StepType?: "Prompt" | "Actions" | "Chat" | "Decision" | "ForEach" | "Sub-Agent" | "Tool" | "Validation" | "While";
1568
1568
  StepName?: string;
1569
1569
  TargetID?: string;
1570
1570
  CompletedAt?: Date;
@@ -1590,7 +1590,7 @@ export declare const MJAIAgentRunStepSchema: z.ZodObject<{
1590
1590
  AgentRunID?: string;
1591
1591
  AgentRun?: string;
1592
1592
  StepNumber?: number;
1593
- StepType?: "Prompt" | "Actions" | "Chat" | "Decision" | "ForEach" | "Sub-Agent" | "Validation" | "While";
1593
+ StepType?: "Prompt" | "Actions" | "Chat" | "Decision" | "ForEach" | "Sub-Agent" | "Tool" | "Validation" | "While";
1594
1594
  StepName?: string;
1595
1595
  TargetID?: string;
1596
1596
  CompletedAt?: Date;
@@ -2113,6 +2113,7 @@ export declare const MJAIAgentSchema: z.ZodObject<{
2113
2113
  AllowEphemeralClientTools: z.ZodBoolean;
2114
2114
  DefaultStorageAccountID: z.ZodNullable<z.ZodString>;
2115
2115
  SearchScopeAccess: z.ZodUnion<[z.ZodLiteral<"All">, z.ZodLiteral<"Assigned">, z.ZodLiteral<"None">]>;
2116
+ AcceptUnregisteredFiles: z.ZodBoolean;
2116
2117
  Parent: z.ZodNullable<z.ZodString>;
2117
2118
  ContextCompressionPrompt: z.ZodNullable<z.ZodString>;
2118
2119
  Type: z.ZodNullable<z.ZodString>;
@@ -2193,6 +2194,7 @@ export declare const MJAIAgentSchema: z.ZodObject<{
2193
2194
  RerankerConfiguration?: string;
2194
2195
  AllowEphemeralClientTools?: boolean;
2195
2196
  SearchScopeAccess?: "None" | "All" | "Assigned";
2197
+ AcceptUnregisteredFiles?: boolean;
2196
2198
  ContextCompressionPrompt?: string;
2197
2199
  DefaultArtifactType?: string;
2198
2200
  OwnerUser?: string;
@@ -2268,6 +2270,7 @@ export declare const MJAIAgentSchema: z.ZodObject<{
2268
2270
  RerankerConfiguration?: string;
2269
2271
  AllowEphemeralClientTools?: boolean;
2270
2272
  SearchScopeAccess?: "None" | "All" | "Assigned";
2273
+ AcceptUnregisteredFiles?: boolean;
2271
2274
  ContextCompressionPrompt?: string;
2272
2275
  DefaultArtifactType?: string;
2273
2276
  OwnerUser?: string;
@@ -4566,6 +4569,9 @@ export declare const MJArtifactTypeSchema: z.ZodObject<{
4566
4569
  Icon: z.ZodNullable<z.ZodString>;
4567
4570
  ContentCategory: z.ZodUnion<[z.ZodLiteral<"File">, z.ZodLiteral<"Text">]>;
4568
4571
  ToolLibraryClass: z.ZodNullable<z.ZodString>;
4572
+ Priority: z.ZodNumber;
4573
+ DefaultDeliveryMode: z.ZodUnion<[z.ZodLiteral<"Inline">, z.ZodLiteral<"ToolsOnly">]>;
4574
+ SystemSupplied: z.ZodBoolean;
4569
4575
  Parent: z.ZodNullable<z.ZodString>;
4570
4576
  RootParentID: z.ZodNullable<z.ZodString>;
4571
4577
  }, "strip", z.ZodTypeAny, {
@@ -4578,12 +4584,15 @@ export declare const MJArtifactTypeSchema: z.ZodObject<{
4578
4584
  Parent?: string;
4579
4585
  RootParentID?: string;
4580
4586
  DriverClass?: string;
4587
+ Priority?: number;
4581
4588
  Icon?: string;
4582
4589
  ContentType?: string;
4583
4590
  IsEnabled?: boolean;
4584
4591
  ExtractRules?: string;
4585
4592
  ContentCategory?: "File" | "Text";
4586
4593
  ToolLibraryClass?: string;
4594
+ DefaultDeliveryMode?: "Inline" | "ToolsOnly";
4595
+ SystemSupplied?: boolean;
4587
4596
  }, {
4588
4597
  ID?: string;
4589
4598
  __mj_CreatedAt?: Date;
@@ -4594,12 +4603,15 @@ export declare const MJArtifactTypeSchema: z.ZodObject<{
4594
4603
  Parent?: string;
4595
4604
  RootParentID?: string;
4596
4605
  DriverClass?: string;
4606
+ Priority?: number;
4597
4607
  Icon?: string;
4598
4608
  ContentType?: string;
4599
4609
  IsEnabled?: boolean;
4600
4610
  ExtractRules?: string;
4601
4611
  ContentCategory?: "File" | "Text";
4602
4612
  ToolLibraryClass?: string;
4613
+ DefaultDeliveryMode?: "Inline" | "ToolsOnly";
4614
+ SystemSupplied?: boolean;
4603
4615
  }>;
4604
4616
  export type MJArtifactTypeEntityType = z.infer<typeof MJArtifactTypeSchema>;
4605
4617
  /**
@@ -4693,6 +4705,7 @@ export declare const MJArtifactVersionSchema: z.ZodObject<{
4693
4705
  MimeType: z.ZodNullable<z.ZodString>;
4694
4706
  FileName: z.ZodNullable<z.ZodString>;
4695
4707
  ContentSizeBytes: z.ZodNullable<z.ZodNumber>;
4708
+ ForceToolsOnly: z.ZodBoolean;
4696
4709
  Artifact: z.ZodString;
4697
4710
  User: z.ZodString;
4698
4711
  File: z.ZodNullable<z.ZodString>;
@@ -4717,6 +4730,7 @@ export declare const MJArtifactVersionSchema: z.ZodObject<{
4717
4730
  ContentHash?: string;
4718
4731
  ContentMode?: "File" | "Text";
4719
4732
  ContentSizeBytes?: number;
4733
+ ForceToolsOnly?: boolean;
4720
4734
  }, {
4721
4735
  ID?: string;
4722
4736
  User?: string;
@@ -4738,6 +4752,7 @@ export declare const MJArtifactVersionSchema: z.ZodObject<{
4738
4752
  ContentHash?: string;
4739
4753
  ContentMode?: "File" | "Text";
4740
4754
  ContentSizeBytes?: number;
4755
+ ForceToolsOnly?: boolean;
4741
4756
  }>;
4742
4757
  export type MJArtifactVersionEntityType = z.infer<typeof MJArtifactVersionSchema>;
4743
4758
  /**
@@ -6785,9 +6800,11 @@ export declare const MJConversationDetailAttachmentSchema: z.ZodObject<{
6785
6800
  __mj_CreatedAt: z.ZodDate;
6786
6801
  __mj_UpdatedAt: z.ZodDate;
6787
6802
  Description: z.ZodNullable<z.ZodString>;
6803
+ ArtifactVersionID: z.ZodNullable<z.ZodString>;
6788
6804
  ConversationDetail: z.ZodString;
6789
6805
  Modality: z.ZodString;
6790
6806
  File: z.ZodNullable<z.ZodString>;
6807
+ ArtifactVersion: z.ZodNullable<z.ZodString>;
6791
6808
  }, "strip", z.ZodTypeAny, {
6792
6809
  ID?: string;
6793
6810
  __mj_CreatedAt?: Date;
@@ -6808,6 +6825,8 @@ export declare const MJConversationDetailAttachmentSchema: z.ZodObject<{
6808
6825
  File?: string;
6809
6826
  ConversationDetailID?: string;
6810
6827
  ConversationDetail?: string;
6828
+ ArtifactVersionID?: string;
6829
+ ArtifactVersion?: string;
6811
6830
  }, {
6812
6831
  ID?: string;
6813
6832
  __mj_CreatedAt?: Date;
@@ -6828,6 +6847,8 @@ export declare const MJConversationDetailAttachmentSchema: z.ZodObject<{
6828
6847
  File?: string;
6829
6848
  ConversationDetailID?: string;
6830
6849
  ConversationDetail?: string;
6850
+ ArtifactVersionID?: string;
6851
+ ArtifactVersion?: string;
6831
6852
  }>;
6832
6853
  export type MJConversationDetailAttachmentEntityType = z.infer<typeof MJConversationDetailAttachmentSchema>;
6833
6854
  /**
@@ -12444,7 +12465,7 @@ export declare const MJRecordGeoCodeSchema: z.ZodObject<{
12444
12465
  RetryCount: z.ZodNumber;
12445
12466
  SourceFieldHash: z.ZodNullable<z.ZodString>;
12446
12467
  GeocodedAt: z.ZodNullable<z.ZodDate>;
12447
- GeocodingSource: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"google">, z.ZodLiteral<"ip_geolocation">, z.ZodLiteral<"manual">, z.ZodLiteral<"native">, z.ZodLiteral<"reference_data">, z.ZodLiteral<"reverse">]>>;
12468
+ GeocodingSource: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"geocodio">, z.ZodLiteral<"google">, z.ZodLiteral<"here">, z.ZodLiteral<"ip_geolocation">, z.ZodLiteral<"manual">, z.ZodLiteral<"native">, z.ZodLiteral<"reference_data">, z.ZodLiteral<"reverse">]>>;
12448
12469
  __mj_CreatedAt: z.ZodDate;
12449
12470
  __mj_UpdatedAt: z.ZodDate;
12450
12471
  Entity: z.ZodString;
@@ -12468,7 +12489,7 @@ export declare const MJRecordGeoCodeSchema: z.ZodObject<{
12468
12489
  StateProvinceID?: string;
12469
12490
  SourceFieldHash?: string;
12470
12491
  GeocodedAt?: Date;
12471
- GeocodingSource?: "reverse" | "google" | "ip_geolocation" | "manual" | "native" | "reference_data";
12492
+ GeocodingSource?: "reverse" | "geocodio" | "google" | "here" | "ip_geolocation" | "manual" | "native" | "reference_data";
12472
12493
  Country?: string;
12473
12494
  StateProvince?: string;
12474
12495
  }, {
@@ -12489,7 +12510,7 @@ export declare const MJRecordGeoCodeSchema: z.ZodObject<{
12489
12510
  StateProvinceID?: string;
12490
12511
  SourceFieldHash?: string;
12491
12512
  GeocodedAt?: Date;
12492
- GeocodingSource?: "reverse" | "google" | "ip_geolocation" | "manual" | "native" | "reference_data";
12513
+ GeocodingSource?: "reverse" | "geocodio" | "google" | "here" | "ip_geolocation" | "manual" | "native" | "reference_data";
12493
12514
  Country?: string;
12494
12515
  StateProvince?: string;
12495
12516
  }>;
@@ -20899,12 +20920,13 @@ export declare class MJAIAgentRunStepEntity extends BaseEntity<MJAIAgentRunStepE
20899
20920
  * * ForEach
20900
20921
  * * Prompt
20901
20922
  * * Sub-Agent
20923
+ * * Tool
20902
20924
  * * Validation
20903
20925
  * * While
20904
- * * Description: Type of execution step: Prompt, Actions, Sub-Agent, Decision, Chat, Validation
20926
+ * * Description: Type of execution step: Prompt, Actions, Sub-Agent, Decision, Chat, Validation, ForEach, While, Tool
20905
20927
  */
20906
- get StepType(): 'Actions' | 'Chat' | 'Decision' | 'ForEach' | 'Prompt' | 'Sub-Agent' | 'Validation' | 'While';
20907
- set StepType(value: 'Actions' | 'Chat' | 'Decision' | 'ForEach' | 'Prompt' | 'Sub-Agent' | 'Validation' | 'While');
20928
+ get StepType(): 'Actions' | 'Chat' | 'Decision' | 'ForEach' | 'Prompt' | 'Sub-Agent' | 'Tool' | 'Validation' | 'While';
20929
+ set StepType(value: 'Actions' | 'Chat' | 'Decision' | 'ForEach' | 'Prompt' | 'Sub-Agent' | 'Tool' | 'Validation' | 'While');
20908
20930
  /**
20909
20931
  * * Field Name: StepName
20910
20932
  * * Display Name: Step Name
@@ -22577,7 +22599,7 @@ export declare class MJAIAgentEntity extends BaseEntity<MJAIAgentEntityType> {
22577
22599
  set EnableContextCompression(value: boolean);
22578
22600
  /**
22579
22601
  * * Field Name: ContextCompressionMessageThreshold
22580
- * * Display Name: Message Threshold
22602
+ * * Display Name: Compression Message Threshold
22581
22603
  * * SQL Data Type: int
22582
22604
  * * Description: Number of messages that triggers context compression when EnableContextCompression is true.
22583
22605
  */
@@ -22593,7 +22615,7 @@ export declare class MJAIAgentEntity extends BaseEntity<MJAIAgentEntityType> {
22593
22615
  set ContextCompressionPromptID(value: string | null);
22594
22616
  /**
22595
22617
  * * Field Name: ContextCompressionMessageRetentionCount
22596
- * * Display Name: Retention Count
22618
+ * * Display Name: Compression Retention Count
22597
22619
  * * SQL Data Type: int
22598
22620
  * * Description: Number of recent messages to keep uncompressed when context compression is applied.
22599
22621
  */
@@ -22653,7 +22675,7 @@ export declare class MJAIAgentEntity extends BaseEntity<MJAIAgentEntityType> {
22653
22675
  set ModelSelectionMode(value: 'Agent' | 'Agent Type');
22654
22676
  /**
22655
22677
  * * Field Name: PayloadDownstreamPaths
22656
- * * Display Name: Downstream Paths
22678
+ * * Display Name: Payload Downstream Paths
22657
22679
  * * SQL Data Type: nvarchar(MAX)
22658
22680
  * * Default Value: ["*"]
22659
22681
  * * Description: JSON array of paths that define which parts of the payload should be sent downstream to sub-agents. Use ["*"] to send entire payload, or specify paths like ["customer.id", "campaign.*", "analysis.sentiment"]
@@ -22662,7 +22684,7 @@ export declare class MJAIAgentEntity extends BaseEntity<MJAIAgentEntityType> {
22662
22684
  set PayloadDownstreamPaths(value: string);
22663
22685
  /**
22664
22686
  * * Field Name: PayloadUpstreamPaths
22665
- * * Display Name: Upstream Paths
22687
+ * * Display Name: Payload Upstream Paths
22666
22688
  * * SQL Data Type: nvarchar(MAX)
22667
22689
  * * Default Value: ["*"]
22668
22690
  * * Description: JSON array of paths that define which parts of the payload sub-agents are allowed to write back upstream. Use ["*"] to allow all writes, or specify paths like ["analysis.results", "recommendations.*"]
@@ -22671,7 +22693,7 @@ export declare class MJAIAgentEntity extends BaseEntity<MJAIAgentEntityType> {
22671
22693
  set PayloadUpstreamPaths(value: string);
22672
22694
  /**
22673
22695
  * * Field Name: PayloadSelfReadPaths
22674
- * * Display Name: Self Read Paths
22696
+ * * Display Name: Payload Self Read Paths
22675
22697
  * * SQL Data Type: nvarchar(MAX)
22676
22698
  * * Description: JSON array of paths that specify what parts of the payload the agent's own prompt can read. Controls downstream data
22677
22699
  flow when the agent executes its own prompt step.
@@ -22680,7 +22702,7 @@ flow when the agent executes its own prompt step.
22680
22702
  set PayloadSelfReadPaths(value: string | null);
22681
22703
  /**
22682
22704
  * * Field Name: PayloadSelfWritePaths
22683
- * * Display Name: Self Write Paths
22705
+ * * Display Name: Payload Self Write Paths
22684
22706
  * * SQL Data Type: nvarchar(MAX)
22685
22707
  * * Description: JSON array of paths that specify what parts of the payload the agent's own prompt can write back. Controls upstream
22686
22708
  data flow when the agent executes its own prompt step.
@@ -22705,7 +22727,7 @@ data flow when the agent executes its own prompt step.
22705
22727
  set FinalPayloadValidation(value: string | null);
22706
22728
  /**
22707
22729
  * * Field Name: FinalPayloadValidationMode
22708
- * * Display Name: Final Validation Mode
22730
+ * * Display Name: Final Payload Validation Mode
22709
22731
  * * SQL Data Type: nvarchar(25)
22710
22732
  * * Default Value: Retry
22711
22733
  * * Value List Type: List
@@ -22719,7 +22741,7 @@ data flow when the agent executes its own prompt step.
22719
22741
  set FinalPayloadValidationMode(value: 'Fail' | 'Retry' | 'Warn');
22720
22742
  /**
22721
22743
  * * Field Name: FinalPayloadValidationMaxRetries
22722
- * * Display Name: Max Validation Retries
22744
+ * * Display Name: Final Payload Validation Max Retries
22723
22745
  * * SQL Data Type: int
22724
22746
  * * Default Value: 3
22725
22747
  * * Description: Maximum number of retry attempts allowed when FinalPayloadValidation fails with
@@ -22789,7 +22811,7 @@ if this limit is exceeded.
22789
22811
  set StartingPayloadValidation(value: string | null);
22790
22812
  /**
22791
22813
  * * Field Name: StartingPayloadValidationMode
22792
- * * Display Name: Starting Validation Mode
22814
+ * * Display Name: Starting Payload Validation Mode
22793
22815
  * * SQL Data Type: nvarchar(25)
22794
22816
  * * Default Value: Fail
22795
22817
  * * Value List Type: List
@@ -22802,7 +22824,7 @@ if this limit is exceeded.
22802
22824
  set StartingPayloadValidationMode(value: 'Fail' | 'Warn');
22803
22825
  /**
22804
22826
  * * Field Name: DefaultPromptEffortLevel
22805
- * * Display Name: Default Effort Level
22827
+ * * Display Name: Default Prompt Effort Level
22806
22828
  * * SQL Data Type: int
22807
22829
  * * Description: Default effort level for all prompts executed by this agent (1-100, where 1=minimal effort, 100=maximum effort). Takes precedence over individual prompt EffortLevel settings but can be overridden by runtime parameters. Inherited by sub-agents unless explicitly overridden.
22808
22830
  */
@@ -22895,7 +22917,7 @@ if this limit is exceeded.
22895
22917
  set InjectNotes(value: boolean);
22896
22918
  /**
22897
22919
  * * Field Name: MaxNotesToInject
22898
- * * Display Name: Max Notes to Inject
22920
+ * * Display Name: Max Notes To Inject
22899
22921
  * * SQL Data Type: int
22900
22922
  * * Default Value: 5
22901
22923
  * * Description: Maximum number of notes to inject into agent context per request.
@@ -22927,7 +22949,7 @@ if this limit is exceeded.
22927
22949
  set InjectExamples(value: boolean);
22928
22950
  /**
22929
22951
  * * Field Name: MaxExamplesToInject
22930
- * * Display Name: Max Examples to Inject
22952
+ * * Display Name: Max Examples To Inject
22931
22953
  * * SQL Data Type: int
22932
22954
  * * Default Value: 3
22933
22955
  * * Description: Maximum number of examples to inject into agent context per request.
@@ -22982,7 +23004,7 @@ if this limit is exceeded.
22982
23004
  set MaxMessages(value: number | null);
22983
23005
  /**
22984
23006
  * * Field Name: AttachmentStorageProviderID
22985
- * * Display Name: Storage Provider
23007
+ * * Display Name: Attachment Storage Provider
22986
23008
  * * SQL Data Type: uniqueidentifier
22987
23009
  * * Related Entity/Foreign Key: MJ: File Storage Providers (vwFileStorageProviders.ID)
22988
23010
  * * Description: File storage provider for large attachments. Overrides the default from AIConfiguration. NULL uses system default.
@@ -22991,7 +23013,7 @@ if this limit is exceeded.
22991
23013
  set AttachmentStorageProviderID(value: string | null);
22992
23014
  /**
22993
23015
  * * Field Name: AttachmentRootPath
22994
- * * Display Name: Root Path
23016
+ * * Display Name: Attachment Root Path
22995
23017
  * * SQL Data Type: nvarchar(500)
22996
23018
  * * Description: Base path within the storage provider for this agent's attachments. Agent run ID and sequence number are appended to create unique paths. Format: /folder/subfolder
22997
23019
  */
@@ -22999,7 +23021,7 @@ if this limit is exceeded.
22999
23021
  set AttachmentRootPath(value: string | null);
23000
23022
  /**
23001
23023
  * * Field Name: InlineStorageThresholdBytes
23002
- * * Display Name: Inline Storage Threshold
23024
+ * * Display Name: Inline Storage Threshold Bytes
23003
23025
  * * SQL Data Type: int
23004
23026
  * * Description: File size threshold for inline storage. Files <= this size are stored as base64 inline, larger files use MJStorage. NULL uses system default (1MB). Set to 0 to always use MJStorage.
23005
23027
  */
@@ -23007,7 +23029,7 @@ if this limit is exceeded.
23007
23029
  set InlineStorageThresholdBytes(value: number | null);
23008
23030
  /**
23009
23031
  * * Field Name: AgentTypePromptParams
23010
- * * Display Name: Prompt Parameters
23032
+ * * Display Name: Agent Type Prompt Params
23011
23033
  * * SQL Data Type: nvarchar(MAX)
23012
23034
  * * Description: JSON object containing parameter values that customize how this agent's type-level system prompt is rendered. The schema is defined by the agent type's PromptParamsSchema field. Allows per-agent control over which prompt sections are included, enabling token savings by excluding unused documentation.
23013
23035
  */
@@ -23067,7 +23089,7 @@ if this limit is exceeded.
23067
23089
  set CategoryID(value: string | null);
23068
23090
  /**
23069
23091
  * * Field Name: AllowEphemeralClientTools
23070
- * * Display Name: Allow Ephemeral Tools
23092
+ * * Display Name: Allow Ephemeral Client Tools
23071
23093
  * * SQL Data Type: bit
23072
23094
  * * Default Value: 1
23073
23095
  * * Description: When true (default), this agent accepts runtime-registered ephemeral client tools that are not defined in metadata. Set to false for agents that require strict tool governance.
@@ -23098,6 +23120,15 @@ if this limit is exceeded.
23098
23120
  get SearchScopeAccess(): 'All' | 'Assigned' | 'None';
23099
23121
  set SearchScopeAccess(value: 'All' | 'Assigned' | 'None');
23100
23122
  /**
23123
+ * * Field Name: AcceptUnregisteredFiles
23124
+ * * Display Name: Accept Unregistered Files
23125
+ * * SQL Data Type: bit
23126
+ * * Default Value: 0
23127
+ * * Description: Per-agent opt-in to a Generic Binary fallback for file uploads whose MIME type does not match any registered Artifact Type. When false (default), unrecognized uploads are rejected at upload time with an actionable error. When true, unrecognized uploads resolve to the Generic Binary artifact type, exposing only get_full and get_metadata tools. Scoped per agent — there is no system-wide global flag.
23128
+ */
23129
+ get AcceptUnregisteredFiles(): boolean;
23130
+ set AcceptUnregisteredFiles(value: boolean);
23131
+ /**
23101
23132
  * * Field Name: Parent
23102
23133
  * * Display Name: Parent Name
23103
23134
  * * SQL Data Type: nvarchar(255)
@@ -23105,13 +23136,13 @@ if this limit is exceeded.
23105
23136
  get Parent(): string | null;
23106
23137
  /**
23107
23138
  * * Field Name: ContextCompressionPrompt
23108
- * * Display Name: Compression Prompt Name
23139
+ * * Display Name: Compression Prompt Text
23109
23140
  * * SQL Data Type: nvarchar(255)
23110
23141
  */
23111
23142
  get ContextCompressionPrompt(): string | null;
23112
23143
  /**
23113
23144
  * * Field Name: Type
23114
- * * Display Name: Type Name
23145
+ * * Display Name: Type
23115
23146
  * * SQL Data Type: nvarchar(100)
23116
23147
  */
23117
23148
  get Type(): string | null;
@@ -23129,7 +23160,7 @@ if this limit is exceeded.
23129
23160
  get OwnerUser(): string;
23130
23161
  /**
23131
23162
  * * Field Name: AttachmentStorageProvider
23132
- * * Display Name: Storage Provider Name
23163
+ * * Display Name: Attachment Storage Provider Name
23133
23164
  * * SQL Data Type: nvarchar(50)
23134
23165
  */
23135
23166
  get AttachmentStorageProvider(): string | null;
@@ -30007,6 +30038,37 @@ export declare class MJArtifactTypeEntity extends BaseEntity<MJArtifactTypeEntit
30007
30038
  get ToolLibraryClass(): string | null;
30008
30039
  set ToolLibraryClass(value: string | null);
30009
30040
  /**
30041
+ * * Field Name: Priority
30042
+ * * Display Name: Priority
30043
+ * * SQL Data Type: int
30044
+ * * Default Value: 0
30045
+ * * Description: Deterministic tiebreaker when multiple Artifact Types match the same MIME pattern. Higher values win. Within a specificity tier (exact > subtype-wildcard), the resolver sorts by Priority desc, then SystemSupplied = false beats SystemSupplied = true, then lowest ID wins.
30046
+ */
30047
+ get Priority(): number;
30048
+ set Priority(value: number);
30049
+ /**
30050
+ * * Field Name: DefaultDeliveryMode
30051
+ * * Display Name: Default Delivery Mode
30052
+ * * SQL Data Type: nvarchar(20)
30053
+ * * Default Value: ToolsOnly
30054
+ * * Value List Type: List
30055
+ * * Possible Values
30056
+ * * Inline
30057
+ * * ToolsOnly
30058
+ * * Description: How artifacts of this type are delivered to the LLM by default. Inline: emitted as an inline content block (image_url, audio_url, small text, etc.) when the model supports the modality and the size is under the inline cap. ToolsOnly: never inlined; the agent reaches the bytes only through tool calls (get_full, library-specific tools). Per-instance override is one-way via ConversationArtifactVersion.ForceToolsOnly — an instance can opt out of inline but never opt in when the type default is ToolsOnly.
30059
+ */
30060
+ get DefaultDeliveryMode(): 'Inline' | 'ToolsOnly';
30061
+ set DefaultDeliveryMode(value: 'Inline' | 'ToolsOnly');
30062
+ /**
30063
+ * * Field Name: SystemSupplied
30064
+ * * Display Name: System Supplied
30065
+ * * SQL Data Type: bit
30066
+ * * Default Value: 0
30067
+ * * Description: True for Artifact Types shipped as part of the MemberJunction default registry (JSON, PDF, Office variants, Image/Audio/Video, Generic Text, Generic Binary). False for user/org-supplied customizations. Used as a tiebreaker in MIME pattern resolution: user customizations win over shipped defaults at equal Priority.
30068
+ */
30069
+ get SystemSupplied(): boolean;
30070
+ set SystemSupplied(value: boolean);
30071
+ /**
30010
30072
  * * Field Name: Parent
30011
30073
  * * Display Name: Parent
30012
30074
  * * SQL Data Type: nvarchar(100)
@@ -30293,7 +30355,7 @@ export declare class MJArtifactVersionEntity extends BaseEntity<MJArtifactVersio
30293
30355
  set Comments(value: string | null);
30294
30356
  /**
30295
30357
  * * Field Name: UserID
30296
- * * Display Name: User
30358
+ * * Display Name: User ID
30297
30359
  * * SQL Data Type: uniqueidentifier
30298
30360
  * * Related Entity/Foreign Key: MJ: Users (vwUsers.ID)
30299
30361
  */
@@ -30339,7 +30401,7 @@ export declare class MJArtifactVersionEntity extends BaseEntity<MJArtifactVersio
30339
30401
  set Description(value: string | null);
30340
30402
  /**
30341
30403
  * * Field Name: FileID
30342
- * * Display Name: File
30404
+ * * Display Name: File ID
30343
30405
  * * SQL Data Type: uniqueidentifier
30344
30406
  * * Related Entity/Foreign Key: MJ: Files (vwFiles.ID)
30345
30407
  * * Description: Foreign key to the MJ: Files entity. When ContentMode is 'File', this references the binary file stored in MJStorage. NULL when ContentMode is 'Text'.
@@ -30377,13 +30439,22 @@ export declare class MJArtifactVersionEntity extends BaseEntity<MJArtifactVersio
30377
30439
  set FileName(value: string | null);
30378
30440
  /**
30379
30441
  * * Field Name: ContentSizeBytes
30380
- * * Display Name: Content Size Bytes
30442
+ * * Display Name: Content Size (Bytes)
30381
30443
  * * SQL Data Type: bigint
30382
30444
  * * Description: Size of the stored file in bytes. Denormalized for display without loading the file. Only populated when ContentMode is 'File'.
30383
30445
  */
30384
30446
  get ContentSizeBytes(): number | null;
30385
30447
  set ContentSizeBytes(value: number | null);
30386
30448
  /**
30449
+ * * Field Name: ForceToolsOnly
30450
+ * * Display Name: Force Tools Only
30451
+ * * SQL Data Type: bit
30452
+ * * Default Value: 0
30453
+ * * Description: One-way override that forces this artifact version to be delivered via tools regardless of the Artifact Type's DefaultDeliveryMode. When true, the resolver never emits an inline content block for this version. There is no inverse override — an instance cannot be widened from ToolsOnly to Inline. Default false.
30454
+ */
30455
+ get ForceToolsOnly(): boolean;
30456
+ set ForceToolsOnly(value: boolean);
30457
+ /**
30387
30458
  * * Field Name: Artifact
30388
30459
  * * Display Name: Artifact
30389
30460
  * * SQL Data Type: nvarchar(255)
@@ -36248,6 +36319,7 @@ export declare class MJConversationDetailArtifactEntity extends BaseEntity<MJCon
36248
36319
  * @extends {BaseEntity}
36249
36320
  * @class
36250
36321
  * @public
36322
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
36251
36323
  */
36252
36324
  export declare class MJConversationDetailAttachmentEntity extends BaseEntity<MJConversationDetailAttachmentEntityType> {
36253
36325
  /**
@@ -36407,23 +36479,38 @@ export declare class MJConversationDetailAttachmentEntity extends BaseEntity<MJC
36407
36479
  get Description(): string | null;
36408
36480
  set Description(value: string | null);
36409
36481
  /**
36482
+ * * Field Name: ArtifactVersionID
36483
+ * * Display Name: Artifact Version ID
36484
+ * * SQL Data Type: uniqueidentifier
36485
+ * * Related Entity/Foreign Key: MJ: Artifact Versions (vwArtifactVersions.ID)
36486
+ * * Description: Foreign key to the ArtifactVersion created alongside this attachment by the storage-unification path. When set, the agent resolver routes via the artifact path (manifest + tool dispatch) and skips inline embedding of the attachment to avoid double-processing. NULL for pre-v5.35 attachment rows authored before storage unification.
36487
+ */
36488
+ get ArtifactVersionID(): string | null;
36489
+ set ArtifactVersionID(value: string | null);
36490
+ /**
36410
36491
  * * Field Name: ConversationDetail
36411
- * * Display Name: Conversation Detail
36492
+ * * Display Name: Conversation Detail Record
36412
36493
  * * SQL Data Type: nvarchar(MAX)
36413
36494
  */
36414
36495
  get ConversationDetail(): string;
36415
36496
  /**
36416
36497
  * * Field Name: Modality
36417
- * * Display Name: Modality
36498
+ * * Display Name: Modality Record
36418
36499
  * * SQL Data Type: nvarchar(50)
36419
36500
  */
36420
36501
  get Modality(): string;
36421
36502
  /**
36422
36503
  * * Field Name: File
36423
- * * Display Name: File
36504
+ * * Display Name: File Record
36424
36505
  * * SQL Data Type: nvarchar(500)
36425
36506
  */
36426
36507
  get File(): string | null;
36508
+ /**
36509
+ * * Field Name: ArtifactVersion
36510
+ * * Display Name: Artifact Version Record
36511
+ * * SQL Data Type: nvarchar(255)
36512
+ */
36513
+ get ArtifactVersion(): string | null;
36427
36514
  }
36428
36515
  /**
36429
36516
  * MJ: Conversation Detail Ratings - strongly typed entity sub-class
@@ -52051,16 +52138,18 @@ export declare class MJRecordGeoCodeEntity extends BaseEntity<MJRecordGeoCodeEnt
52051
52138
  * * SQL Data Type: nvarchar(30)
52052
52139
  * * Value List Type: List
52053
52140
  * * Possible Values
52141
+ * * geocodio
52054
52142
  * * google
52143
+ * * here
52055
52144
  * * ip_geolocation
52056
52145
  * * manual
52057
52146
  * * native
52058
52147
  * * reference_data
52059
52148
  * * reverse
52060
- * * Description: How this geocode was produced: google (Google Geocoding API), reference_data (resolved via Country/StateProvince tables), manual (user-entered), ip_geolocation (IP lookup), native (copied from entity lat/lng fields), reverse (reverse geocode from coordinates).
52149
+ * * Description: Source that produced this geocode. One of: google, geocodio, here, reference_data, manual, ip_geolocation, native, reverse.
52061
52150
  */
52062
- get GeocodingSource(): 'google' | 'ip_geolocation' | 'manual' | 'native' | 'reference_data' | 'reverse' | null;
52063
- set GeocodingSource(value: 'google' | 'ip_geolocation' | 'manual' | 'native' | 'reference_data' | 'reverse' | null);
52151
+ get GeocodingSource(): 'geocodio' | 'google' | 'here' | 'ip_geolocation' | 'manual' | 'native' | 'reference_data' | 'reverse' | null;
52152
+ set GeocodingSource(value: 'geocodio' | 'google' | 'here' | 'ip_geolocation' | 'manual' | 'native' | 'reference_data' | 'reverse' | null);
52064
52153
  /**
52065
52154
  * * Field Name: __mj_CreatedAt
52066
52155
  * * Display Name: Created At