@memberjunction/core-entities 2.50.0 → 2.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom/AIModelExtended.d.ts +7 -1
- package/dist/custom/AIModelExtended.d.ts.map +1 -1
- package/dist/custom/AIModelExtended.js +11 -0
- package/dist/custom/AIModelExtended.js.map +1 -1
- package/dist/custom/AIPromptExtended.d.ts +14 -0
- package/dist/custom/AIPromptExtended.d.ts.map +1 -1
- package/dist/custom/AIPromptExtended.js +53 -0
- package/dist/custom/AIPromptExtended.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +22 -11
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +27 -10
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +3 -3
|
@@ -209,14 +209,14 @@ exports.ActionExecutionLogSchema = zod_1.z.object({
|
|
|
209
209
|
StartedAt: zod_1.z.date().describe(`
|
|
210
210
|
* * Field Name: StartedAt
|
|
211
211
|
* * Display Name: Started At
|
|
212
|
-
* * SQL Data Type:
|
|
213
|
-
* * Default Value:
|
|
214
|
-
* * Description: Timestamp
|
|
212
|
+
* * SQL Data Type: datetimeoffset
|
|
213
|
+
* * Default Value: sysdatetimeoffset()
|
|
214
|
+
* * Description: Timestamp when the action execution started (timezone-aware)`),
|
|
215
215
|
EndedAt: zod_1.z.date().nullable().describe(`
|
|
216
216
|
* * Field Name: EndedAt
|
|
217
217
|
* * Display Name: Ended At
|
|
218
|
-
* * SQL Data Type:
|
|
219
|
-
* * Description: Timestamp
|
|
218
|
+
* * SQL Data Type: datetimeoffset
|
|
219
|
+
* * Description: Timestamp when the action execution ended (timezone-aware)`),
|
|
220
220
|
Params: zod_1.z.string().nullable().describe(`
|
|
221
221
|
* * Field Name: Params
|
|
222
222
|
* * Display Name: Params
|
|
@@ -245,6 +245,11 @@ exports.ActionExecutionLogSchema = zod_1.z.object({
|
|
|
245
245
|
* * Display Name: Updated At
|
|
246
246
|
* * SQL Data Type: datetimeoffset
|
|
247
247
|
* * Default Value: getutcdate()`),
|
|
248
|
+
Message: zod_1.z.string().nullable().describe(`
|
|
249
|
+
* * Field Name: Message
|
|
250
|
+
* * Display Name: Message
|
|
251
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
252
|
+
* * Description: JSON-formatted output data or response from the action execution`),
|
|
248
253
|
Action: zod_1.z.string().describe(`
|
|
249
254
|
* * Field Name: Action
|
|
250
255
|
* * Display Name: Action
|
|
@@ -12036,9 +12041,9 @@ let ActionExecutionLogEntity = class ActionExecutionLogEntity extends core_1.Bas
|
|
|
12036
12041
|
/**
|
|
12037
12042
|
* * Field Name: StartedAt
|
|
12038
12043
|
* * Display Name: Started At
|
|
12039
|
-
* * SQL Data Type:
|
|
12040
|
-
* * Default Value:
|
|
12041
|
-
* * Description: Timestamp
|
|
12044
|
+
* * SQL Data Type: datetimeoffset
|
|
12045
|
+
* * Default Value: sysdatetimeoffset()
|
|
12046
|
+
* * Description: Timestamp when the action execution started (timezone-aware)
|
|
12042
12047
|
*/
|
|
12043
12048
|
get StartedAt() {
|
|
12044
12049
|
return this.Get('StartedAt');
|
|
@@ -12049,8 +12054,8 @@ let ActionExecutionLogEntity = class ActionExecutionLogEntity extends core_1.Bas
|
|
|
12049
12054
|
/**
|
|
12050
12055
|
* * Field Name: EndedAt
|
|
12051
12056
|
* * Display Name: Ended At
|
|
12052
|
-
* * SQL Data Type:
|
|
12053
|
-
* * Description: Timestamp
|
|
12057
|
+
* * SQL Data Type: datetimeoffset
|
|
12058
|
+
* * Description: Timestamp when the action execution ended (timezone-aware)
|
|
12054
12059
|
*/
|
|
12055
12060
|
get EndedAt() {
|
|
12056
12061
|
return this.Get('EndedAt');
|
|
@@ -12123,6 +12128,18 @@ let ActionExecutionLogEntity = class ActionExecutionLogEntity extends core_1.Bas
|
|
|
12123
12128
|
return this.Get('__mj_UpdatedAt');
|
|
12124
12129
|
}
|
|
12125
12130
|
/**
|
|
12131
|
+
* * Field Name: Message
|
|
12132
|
+
* * Display Name: Message
|
|
12133
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
12134
|
+
* * Description: JSON-formatted output data or response from the action execution
|
|
12135
|
+
*/
|
|
12136
|
+
get Message() {
|
|
12137
|
+
return this.Get('Message');
|
|
12138
|
+
}
|
|
12139
|
+
set Message(value) {
|
|
12140
|
+
this.Set('Message', value);
|
|
12141
|
+
}
|
|
12142
|
+
/**
|
|
12126
12143
|
* * Field Name: Action
|
|
12127
12144
|
* * Display Name: Action
|
|
12128
12145
|
* * SQL Data Type: nvarchar(425)
|