@memberjunction/core-entities 2.63.1 → 2.64.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.
|
@@ -8874,6 +8874,7 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
|
|
|
8874
8874
|
* * Field Name: Name
|
|
8875
8875
|
* * Display Name: Name
|
|
8876
8876
|
* * SQL Data Type: nvarchar(425)
|
|
8877
|
+
* * Description: The name of the action. Must be unique within the combination of CategoryID and ParentID. Actions with the same name can exist in different categories or under different parents.
|
|
8877
8878
|
*/
|
|
8878
8879
|
get Name(): string;
|
|
8879
8880
|
set Name(value: string);
|
|
@@ -9613,6 +9614,7 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
|
|
|
9613
9614
|
* * Schema: __mj
|
|
9614
9615
|
* * Base Table: AIAgentRequest
|
|
9615
9616
|
* * Base View: vwAIAgentRequests
|
|
9617
|
+
* * @description Table to log AI Agent requests, responses, and their statuses.
|
|
9616
9618
|
* * Primary Key: ID
|
|
9617
9619
|
* @extends {BaseEntity}
|
|
9618
9620
|
* @class
|
|
@@ -9830,6 +9832,7 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
|
|
|
9830
9832
|
* * Field Name: LogoURL
|
|
9831
9833
|
* * Display Name: Logo URL
|
|
9832
9834
|
* * SQL Data Type: nvarchar(255)
|
|
9835
|
+
* * Description: URL to an image file or base64 data URI (e.g., data:image/png;base64,...) for the agent logo. Takes precedence over IconClass in UI display.
|
|
9833
9836
|
*/
|
|
9834
9837
|
get LogoURL(): string | null;
|
|
9835
9838
|
set LogoURL(value: string | null);
|
|
@@ -19525,6 +19528,7 @@ export declare class FileEntity extends BaseEntity<FileEntityType> {
|
|
|
19525
19528
|
* * Schema: __mj
|
|
19526
19529
|
* * Base Table: GeneratedCodeCategory
|
|
19527
19530
|
* * Base View: vwGeneratedCodeCategories
|
|
19531
|
+
* * @description Categorization for generated code, including optional parent-child relationships.
|
|
19528
19532
|
* * Primary Key: ID
|
|
19529
19533
|
* @extends {BaseEntity}
|
|
19530
19534
|
* @class
|
|
@@ -19600,6 +19604,7 @@ export declare class GeneratedCodeCategoryEntity extends BaseEntity<GeneratedCod
|
|
|
19600
19604
|
* * Schema: __mj
|
|
19601
19605
|
* * Base Table: GeneratedCode
|
|
19602
19606
|
* * Base View: vwGeneratedCodes
|
|
19607
|
+
* * @description Stores LLM-generated code snippets, tracking their source, category, and validation status.
|
|
19603
19608
|
* * Primary Key: ID
|
|
19604
19609
|
* @extends {BaseEntity}
|
|
19605
19610
|
* @class
|
|
@@ -20443,6 +20448,7 @@ export declare class ListEntity extends BaseEntity<ListEntityType> {
|
|
|
20443
20448
|
* * Schema: __mj
|
|
20444
20449
|
* * Base Table: AIAgentPrompt
|
|
20445
20450
|
* * Base View: vwAIAgentPrompts
|
|
20451
|
+
* * @description Links AI agents with the prompts they use, including execution order and context handling.
|
|
20446
20452
|
* * Primary Key: ID
|
|
20447
20453
|
* @extends {BaseEntity}
|
|
20448
20454
|
* @class
|
|
@@ -20606,6 +20612,7 @@ export declare class AIAgentPromptEntity extends BaseEntity<AIAgentPromptEntityT
|
|
|
20606
20612
|
* * Schema: __mj
|
|
20607
20613
|
* * Base Table: AIAgentRunStep
|
|
20608
20614
|
* * Base View: vwAIAgentRunSteps
|
|
20615
|
+
* * @description Provides basic, step-by-step tracking of agent execution. Each step represents a discrete action within an agent run, such as prompt execution, tool usage, decision making, or sub-agent coordination.
|
|
20609
20616
|
* * Primary Key: ID
|
|
20610
20617
|
* @extends {BaseEntity}
|
|
20611
20618
|
* @class
|
|
@@ -20806,6 +20813,7 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
|
|
|
20806
20813
|
* * Schema: __mj
|
|
20807
20814
|
* * Base Table: AIAgentRun
|
|
20808
20815
|
* * Base View: vwAIAgentRuns
|
|
20816
|
+
* * @description Tracks individual execution runs of AI agents, including hierarchical sub-agent runs. Provides basic logging, state persistence, and resource tracking for agent executions. Supports pause/resume functionality through state serialization.
|
|
20809
20817
|
* * Primary Key: ID
|
|
20810
20818
|
* @extends {BaseEntity}
|
|
20811
20819
|
* @class
|
|
@@ -21118,6 +21126,7 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
|
|
|
21118
21126
|
* * Schema: __mj
|
|
21119
21127
|
* * Base Table: AIAgentType
|
|
21120
21128
|
* * Base View: vwAIAgentTypes
|
|
21129
|
+
* * @description Defines types of AI agents with their system prompts and behavioral characteristics. Each agent type represents a category of agents that share common system-level instructions and capabilities.
|
|
21121
21130
|
* * Primary Key: ID
|
|
21122
21131
|
* @extends {BaseEntity}
|
|
21123
21132
|
* @class
|
|
@@ -21221,6 +21230,7 @@ export declare class AIAgentTypeEntity extends BaseEntity<AIAgentTypeEntityType>
|
|
|
21221
21230
|
* * Schema: __mj
|
|
21222
21231
|
* * Base Table: AIConfigurationParam
|
|
21223
21232
|
* * Base View: vwAIConfigurationParams
|
|
21233
|
+
* * @description Stores configuration parameters that can be referenced by prompts and used to control execution behavior.
|
|
21224
21234
|
* * Primary Key: ID
|
|
21225
21235
|
* @extends {BaseEntity}
|
|
21226
21236
|
* @class
|
|
@@ -21321,6 +21331,7 @@ export declare class AIConfigurationParamEntity extends BaseEntity<AIConfigurati
|
|
|
21321
21331
|
* * Schema: __mj
|
|
21322
21332
|
* * Base Table: AIConfiguration
|
|
21323
21333
|
* * Base View: vwAIConfigurations
|
|
21334
|
+
* * @description Stores configurations for AI prompt execution environments and settings.
|
|
21324
21335
|
* * Primary Key: ID
|
|
21325
21336
|
* @extends {BaseEntity}
|
|
21326
21337
|
* @class
|
|
@@ -21437,6 +21448,7 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
|
|
|
21437
21448
|
* * Schema: __mj
|
|
21438
21449
|
* * Base Table: AIModelCost
|
|
21439
21450
|
* * Base View: vwAIModelCosts
|
|
21451
|
+
* * @description Stores historical and current pricing information for AI models across different vendors, with optional temporal tracking and support for different processing types
|
|
21440
21452
|
* * Primary Key: ID
|
|
21441
21453
|
* @extends {BaseEntity}
|
|
21442
21454
|
* @class
|
|
@@ -21653,6 +21665,7 @@ export declare class AIModelCostEntity extends BaseEntity<AIModelCostEntityType>
|
|
|
21653
21665
|
* * Schema: __mj
|
|
21654
21666
|
* * Base Table: AIModelPriceType
|
|
21655
21667
|
* * Base View: vwAIModelPriceTypes
|
|
21668
|
+
* * @description Defines the different types of pricing metrics used by AI model vendors (e.g., Tokens, Minutes, Characters, API Calls)
|
|
21656
21669
|
* * Primary Key: ID
|
|
21657
21670
|
* @extends {BaseEntity}
|
|
21658
21671
|
* @class
|
|
@@ -21730,6 +21743,7 @@ export declare class AIModelPriceTypeEntity extends BaseEntity<AIModelPriceTypeE
|
|
|
21730
21743
|
* * Schema: __mj
|
|
21731
21744
|
* * Base Table: AIModelPriceUnitType
|
|
21732
21745
|
* * Base View: vwAIModelPriceUnitTypes
|
|
21746
|
+
* * @description Defines the unit scales used for pricing (e.g., Per 1M Tokens, Per 1K Tokens, Per Minute). Includes driver class for normalization calculations
|
|
21733
21747
|
* * Primary Key: ID
|
|
21734
21748
|
* @extends {BaseEntity}
|
|
21735
21749
|
* @class
|
|
@@ -21823,6 +21837,7 @@ export declare class AIModelPriceUnitTypeEntity extends BaseEntity<AIModelPriceU
|
|
|
21823
21837
|
* * Schema: __mj
|
|
21824
21838
|
* * Base Table: AIModelVendor
|
|
21825
21839
|
* * Base View: vwAIModelVendors
|
|
21840
|
+
* * @description Associates AI models with vendors providing them, including vendor-specific implementation details.
|
|
21826
21841
|
* * Primary Key: ID
|
|
21827
21842
|
* @extends {BaseEntity}
|
|
21828
21843
|
* @class
|
|
@@ -22034,6 +22049,7 @@ export declare class AIModelVendorEntity extends BaseEntity<AIModelVendorEntityT
|
|
|
22034
22049
|
* * Schema: __mj
|
|
22035
22050
|
* * Base Table: AIPromptModel
|
|
22036
22051
|
* * Base View: vwAIPromptModels
|
|
22052
|
+
* * @description Associates AI prompts with specific models and configurations, including execution details.
|
|
22037
22053
|
* * Primary Key: ID
|
|
22038
22054
|
* @extends {BaseEntity}
|
|
22039
22055
|
* @class
|
|
@@ -22251,6 +22267,7 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
|
|
|
22251
22267
|
* * Schema: __mj
|
|
22252
22268
|
* * Base Table: AIPromptRun
|
|
22253
22269
|
* * Base View: vwAIPromptRuns
|
|
22270
|
+
* * @description Tracks AI prompt executions including timings, inputs, outputs, and performance metrics.
|
|
22254
22271
|
* * Primary Key: ID
|
|
22255
22272
|
* @extends {BaseEntity}
|
|
22256
22273
|
* @class
|
|
@@ -22830,6 +22847,7 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
|
|
|
22830
22847
|
* * Schema: __mj
|
|
22831
22848
|
* * Base Table: AIVendorTypeDefinition
|
|
22832
22849
|
* * Base View: vwAIVendorTypeDefinitions
|
|
22850
|
+
* * @description Defines the possible types of AI vendors, such as Model Developer or Inference Provider.
|
|
22833
22851
|
* * Primary Key: ID
|
|
22834
22852
|
* @extends {BaseEntity}
|
|
22835
22853
|
* @class
|
|
@@ -22891,6 +22909,7 @@ export declare class AIVendorTypeDefinitionEntity extends BaseEntity<AIVendorTyp
|
|
|
22891
22909
|
* * Schema: __mj
|
|
22892
22910
|
* * Base Table: AIVendorType
|
|
22893
22911
|
* * Base View: vwAIVendorTypes
|
|
22912
|
+
* * @description Associates vendors with their types (Model Developer, Inference Provider) and tracks the status of each role.
|
|
22894
22913
|
* * Primary Key: ID
|
|
22895
22914
|
* @extends {BaseEntity}
|
|
22896
22915
|
* @class
|
|
@@ -23004,6 +23023,7 @@ export declare class AIVendorTypeEntity extends BaseEntity<AIVendorTypeEntityTyp
|
|
|
23004
23023
|
* * Schema: __mj
|
|
23005
23024
|
* * Base Table: AIVendor
|
|
23006
23025
|
* * Base View: vwAIVendors
|
|
23026
|
+
* * @description Stores information about AI vendors providing models and/or inference services.
|
|
23007
23027
|
* * Primary Key: ID
|
|
23008
23028
|
* @extends {BaseEntity}
|
|
23009
23029
|
* @class
|
|
@@ -23066,6 +23086,7 @@ export declare class AIVendorEntity extends BaseEntity<AIVendorEntityType> {
|
|
|
23066
23086
|
* * Schema: __mj
|
|
23067
23087
|
* * Base Table: ArtifactType
|
|
23068
23088
|
* * Base View: vwArtifactTypes
|
|
23089
|
+
* * @description Defines the types of artifacts that can be created within conversations
|
|
23069
23090
|
* * Primary Key: ID
|
|
23070
23091
|
* @extends {BaseEntity}
|
|
23071
23092
|
* @class
|
|
@@ -23144,6 +23165,7 @@ export declare class ArtifactTypeEntity extends BaseEntity<ArtifactTypeEntityTyp
|
|
|
23144
23165
|
* * Schema: __mj
|
|
23145
23166
|
* * Base Table: ConversationArtifactPermission
|
|
23146
23167
|
* * Base View: vwConversationArtifactPermissions
|
|
23168
|
+
* * @description Manages user permissions for conversation artifacts
|
|
23147
23169
|
* * Primary Key: ID
|
|
23148
23170
|
* @extends {BaseEntity}
|
|
23149
23171
|
* @class
|
|
@@ -23226,6 +23248,7 @@ export declare class ConversationArtifactPermissionEntity extends BaseEntity<Con
|
|
|
23226
23248
|
* * Schema: __mj
|
|
23227
23249
|
* * Base Table: ConversationArtifactVersion
|
|
23228
23250
|
* * Base View: vwConversationArtifactVersions
|
|
23251
|
+
* * @description Stores versions of conversation artifacts
|
|
23229
23252
|
* * Primary Key: ID
|
|
23230
23253
|
* @extends {BaseEntity}
|
|
23231
23254
|
* @class
|
|
@@ -23334,6 +23357,7 @@ export declare class ConversationArtifactVersionEntity extends BaseEntity<Conver
|
|
|
23334
23357
|
* * Schema: __mj
|
|
23335
23358
|
* * Base Table: ConversationArtifact
|
|
23336
23359
|
* * Base View: vwConversationArtifacts
|
|
23360
|
+
* * @description Stores metadata for artifacts created within conversations
|
|
23337
23361
|
* * Primary Key: ID
|
|
23338
23362
|
* @extends {BaseEntity}
|
|
23339
23363
|
* @class
|
|
@@ -23448,6 +23472,7 @@ export declare class ConversationArtifactEntity extends BaseEntity<ConversationA
|
|
|
23448
23472
|
* * Schema: __mj
|
|
23449
23473
|
* * Base Table: DashboardUserPreference
|
|
23450
23474
|
* * Base View: vwDashboardUserPreferences
|
|
23475
|
+
* * @description Stores dashboard preferences for users and system defaults. The absence of a record for a dashboard means it is not shown.
|
|
23451
23476
|
* * Primary Key: ID
|
|
23452
23477
|
* @extends {BaseEntity}
|
|
23453
23478
|
* @class
|
|
@@ -23574,6 +23599,7 @@ export declare class DashboardUserPreferenceEntity extends BaseEntity<DashboardU
|
|
|
23574
23599
|
* * Schema: __mj
|
|
23575
23600
|
* * Base Table: DashboardUserState
|
|
23576
23601
|
* * Base View: vwDashboardUserStates
|
|
23602
|
+
* * @description Stores user-specific dashboard state information
|
|
23577
23603
|
* * Primary Key: ID
|
|
23578
23604
|
* @extends {BaseEntity}
|
|
23579
23605
|
* @class
|
|
@@ -23658,6 +23684,7 @@ export declare class DashboardUserStateEntity extends BaseEntity<DashboardUserSt
|
|
|
23658
23684
|
* * Schema: __mj
|
|
23659
23685
|
* * Base Table: ReportUserState
|
|
23660
23686
|
* * Base View: vwReportUserStates
|
|
23687
|
+
* * @description Tracks individual user state within interactive reports
|
|
23661
23688
|
* * Primary Key: ID
|
|
23662
23689
|
* @extends {BaseEntity}
|
|
23663
23690
|
* @class
|
|
@@ -23740,6 +23767,7 @@ export declare class ReportUserStateEntity extends BaseEntity<ReportUserStateEnt
|
|
|
23740
23767
|
* * Schema: __mj
|
|
23741
23768
|
* * Base Table: ReportVersion
|
|
23742
23769
|
* * Base View: vwReportVersions
|
|
23770
|
+
* * @description Stores iterations of report logic, structure, and layout changes
|
|
23743
23771
|
* * Primary Key: ID
|
|
23744
23772
|
* @extends {BaseEntity}
|
|
23745
23773
|
* @class
|
|
@@ -28980,6 +29008,7 @@ export declare class UserEntity extends BaseEntity<UserEntityType> {
|
|
|
28980
29008
|
/**
|
|
28981
29009
|
* * Field Name: Email
|
|
28982
29010
|
* * SQL Data Type: nvarchar(100)
|
|
29011
|
+
* * Description: Unique email address for the user. This field must be unique across all users in the system.
|
|
28983
29012
|
*/
|
|
28984
29013
|
get Email(): string;
|
|
28985
29014
|
set Email(value: string);
|