@memberjunction/server 2.46.0 → 2.48.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.
@@ -1857,6 +1857,9 @@ let AIAgentRun_ = class AIAgentRun_ {
1857
1857
  TotalCost;
1858
1858
  _mj__CreatedAt;
1859
1859
  _mj__UpdatedAt;
1860
+ Agent;
1861
+ Conversation;
1862
+ User;
1860
1863
  MJ_AIAgentRunSteps_AgentRunIDArray;
1861
1864
  MJ_AIAgentRuns_ParentRunIDArray;
1862
1865
  MJ_AIPromptRuns_AgentRunIDArray;
@@ -1935,6 +1938,21 @@ __decorate([
1935
1938
  MaxLength(10),
1936
1939
  __metadata("design:type", Date)
1937
1940
  ], AIAgentRun_.prototype, "_mj__UpdatedAt", void 0);
1941
+ __decorate([
1942
+ Field({ nullable: true }),
1943
+ MaxLength(510),
1944
+ __metadata("design:type", String)
1945
+ ], AIAgentRun_.prototype, "Agent", void 0);
1946
+ __decorate([
1947
+ Field({ nullable: true }),
1948
+ MaxLength(510),
1949
+ __metadata("design:type", String)
1950
+ ], AIAgentRun_.prototype, "Conversation", void 0);
1951
+ __decorate([
1952
+ Field({ nullable: true }),
1953
+ MaxLength(200),
1954
+ __metadata("design:type", String)
1955
+ ], AIAgentRun_.prototype, "User", void 0);
1938
1956
  __decorate([
1939
1957
  Field(() => [AIAgentRunStep_]),
1940
1958
  __metadata("design:type", Array)
@@ -3040,6 +3058,7 @@ let AIAgent_ = class AIAgent_ {
3040
3058
  TypeID;
3041
3059
  Parent;
3042
3060
  ContextCompressionPrompt;
3061
+ Type;
3043
3062
  AIAgentRequests_AgentIDArray;
3044
3063
  AIAgentLearningCycles_AgentIDArray;
3045
3064
  AIAgentModels_AgentIDArray;
@@ -3116,7 +3135,7 @@ __decorate([
3116
3135
  __metadata("design:type", Number)
3117
3136
  ], AIAgent_.prototype, "ContextCompressionMessageRetentionCount", void 0);
3118
3137
  __decorate([
3119
- Field({ description: `Reference to the AIAgentType that defines the category and system-level behavior for this agent. Cannot be null.` }),
3138
+ Field({ nullable: true, description: `Reference to the AIAgentType that defines the category and system-level behavior for this agent. Cannot be null.` }),
3120
3139
  MaxLength(16),
3121
3140
  __metadata("design:type", String)
3122
3141
  ], AIAgent_.prototype, "TypeID", void 0);
@@ -3130,6 +3149,11 @@ __decorate([
3130
3149
  MaxLength(510),
3131
3150
  __metadata("design:type", String)
3132
3151
  ], AIAgent_.prototype, "ContextCompressionPrompt", void 0);
3152
+ __decorate([
3153
+ Field({ nullable: true }),
3154
+ MaxLength(200),
3155
+ __metadata("design:type", String)
3156
+ ], AIAgent_.prototype, "Type", void 0);
3133
3157
  __decorate([
3134
3158
  Field(() => [AIAgentRequest_]),
3135
3159
  __metadata("design:type", Array)
@@ -4014,6 +4038,7 @@ let AIAgentType_ = class AIAgentType_ {
4014
4038
  IsActive;
4015
4039
  _mj__CreatedAt;
4016
4040
  _mj__UpdatedAt;
4041
+ SystemPrompt;
4017
4042
  AIAgents_TypeIDArray;
4018
4043
  };
4019
4044
  __decorate([
@@ -4049,6 +4074,11 @@ __decorate([
4049
4074
  MaxLength(10),
4050
4075
  __metadata("design:type", Date)
4051
4076
  ], AIAgentType_.prototype, "_mj__UpdatedAt", void 0);
4077
+ __decorate([
4078
+ Field({ nullable: true }),
4079
+ MaxLength(510),
4080
+ __metadata("design:type", String)
4081
+ ], AIAgentType_.prototype, "SystemPrompt", void 0);
4052
4082
  __decorate([
4053
4083
  Field(() => [AIAgent_]),
4054
4084
  __metadata("design:type", Array)
@@ -24982,7 +25012,7 @@ __decorate([
24982
25012
  __metadata("design:type", Date)
24983
25013
  ], Dashboard_.prototype, "_mj__UpdatedAt", void 0);
24984
25014
  __decorate([
24985
- Field({ description: `Specifies if the dashboard is metadata-driven (Config) or code-based (Code)` }),
25015
+ Field({ description: `Dashboard type supporting Config (metadata-driven), Code (compiled TypeScript), and Dynamic Code (Skip-generated runtime JavaScript/React) options` }),
24986
25016
  MaxLength(40),
24987
25017
  __metadata("design:type", String)
24988
25018
  ], Dashboard_.prototype, "Type", void 0);
@@ -56934,11 +56964,13 @@ __decorate([
56934
56964
  __metadata("design:type", String)
56935
56965
  ], AIPromptRun_.prototype, "ConfigurationID", void 0);
56936
56966
  __decorate([
56937
- Field(() => Int, { description: `When the prompt execution started.` }),
56967
+ Field({ description: `When the prompt run started, with timezone offset information.` }),
56968
+ MaxLength(10),
56938
56969
  __metadata("design:type", Date)
56939
56970
  ], AIPromptRun_.prototype, "RunAt", void 0);
56940
56971
  __decorate([
56941
- Field(() => Int, { nullable: true, description: `When the prompt execution finished. NULL indicates a pending or interrupted execution.` }),
56972
+ Field({ nullable: true, description: `When the prompt run completed, with timezone offset information.` }),
56973
+ MaxLength(10),
56942
56974
  __metadata("design:type", Date)
56943
56975
  ], AIPromptRun_.prototype, "CompletedAt", void 0);
56944
56976
  __decorate([
@@ -57086,11 +57118,11 @@ __decorate([
57086
57118
  __metadata("design:type", String)
57087
57119
  ], CreateAIPromptRunInput.prototype, "ConfigurationID", void 0);
57088
57120
  __decorate([
57089
- Field(() => Int, { nullable: true }),
57121
+ Field({ nullable: true }),
57090
57122
  __metadata("design:type", Date)
57091
57123
  ], CreateAIPromptRunInput.prototype, "RunAt", void 0);
57092
57124
  __decorate([
57093
- Field(() => Int, { nullable: true }),
57125
+ Field({ nullable: true }),
57094
57126
  __metadata("design:type", Date)
57095
57127
  ], CreateAIPromptRunInput.prototype, "CompletedAt", void 0);
57096
57128
  __decorate([
@@ -57198,11 +57230,11 @@ __decorate([
57198
57230
  __metadata("design:type", String)
57199
57231
  ], UpdateAIPromptRunInput.prototype, "ConfigurationID", void 0);
57200
57232
  __decorate([
57201
- Field(() => Int, { nullable: true }),
57233
+ Field({ nullable: true }),
57202
57234
  __metadata("design:type", Date)
57203
57235
  ], UpdateAIPromptRunInput.prototype, "RunAt", void 0);
57204
57236
  __decorate([
57205
- Field(() => Int, { nullable: true }),
57237
+ Field({ nullable: true }),
57206
57238
  __metadata("design:type", Date)
57207
57239
  ], UpdateAIPromptRunInput.prototype, "CompletedAt", void 0);
57208
57240
  __decorate([