@memberjunction/core-entities 2.23.2 → 2.24.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.
|
@@ -3178,6 +3178,10 @@ exports.DataContextItemSchema = zod_1.z.object({
|
|
|
3178
3178
|
* * Display Name: Updated At
|
|
3179
3179
|
* * SQL Data Type: datetimeoffset
|
|
3180
3180
|
* * Default Value: getutcdate()`),
|
|
3181
|
+
Description: zod_1.z.string().nullish().describe(`
|
|
3182
|
+
* * Field Name: Description
|
|
3183
|
+
* * Display Name: Description
|
|
3184
|
+
* * SQL Data Type: nvarchar(MAX)`),
|
|
3181
3185
|
DataContext: zod_1.z.string().describe(`
|
|
3182
3186
|
* * Field Name: DataContext
|
|
3183
3187
|
* * Display Name: Data Context
|
|
@@ -6763,7 +6767,8 @@ exports.RecommendationItemSchema = zod_1.z.object({
|
|
|
6763
6767
|
* * Field Name: DestinationEntityID
|
|
6764
6768
|
* * Display Name: Destination Entity ID
|
|
6765
6769
|
* * SQL Data Type: uniqueidentifier
|
|
6766
|
-
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
6770
|
+
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
6771
|
+
* * Description: dest entity!`),
|
|
6767
6772
|
DestinationEntityRecordID: zod_1.z.string().describe(`
|
|
6768
6773
|
* * Field Name: DestinationEntityRecordID
|
|
6769
6774
|
* * Display Name: Destination Entity Record ID
|
|
@@ -6825,7 +6830,8 @@ exports.RecommendationRunSchema = zod_1.z.object({
|
|
|
6825
6830
|
* * Field Name: ID
|
|
6826
6831
|
* * Display Name: ID
|
|
6827
6832
|
* * SQL Data Type: uniqueidentifier
|
|
6828
|
-
* * Default Value: newsequentialid()
|
|
6833
|
+
* * Default Value: newsequentialid()
|
|
6834
|
+
* * Description: Da Key :`),
|
|
6829
6835
|
RecommendationProviderID: zod_1.z.string().describe(`
|
|
6830
6836
|
* * Field Name: RecommendationProviderID
|
|
6831
6837
|
* * Display Name: Recommendation Provider ID
|
|
@@ -17586,6 +17592,17 @@ let DataContextItemEntity = class DataContextItemEntity extends core_1.BaseEntit
|
|
|
17586
17592
|
return this.Get('__mj_UpdatedAt');
|
|
17587
17593
|
}
|
|
17588
17594
|
/**
|
|
17595
|
+
* * Field Name: Description
|
|
17596
|
+
* * Display Name: Description
|
|
17597
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
17598
|
+
*/
|
|
17599
|
+
get Description() {
|
|
17600
|
+
return this.Get('Description');
|
|
17601
|
+
}
|
|
17602
|
+
set Description(value) {
|
|
17603
|
+
this.Set('Description', value);
|
|
17604
|
+
}
|
|
17605
|
+
/**
|
|
17589
17606
|
* * Field Name: DataContext
|
|
17590
17607
|
* * Display Name: Data Context
|
|
17591
17608
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -26791,6 +26808,7 @@ let RecommendationItemEntity = class RecommendationItemEntity extends core_1.Bas
|
|
|
26791
26808
|
* * Display Name: Destination Entity ID
|
|
26792
26809
|
* * SQL Data Type: uniqueidentifier
|
|
26793
26810
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
26811
|
+
* * Description: dest entity!
|
|
26794
26812
|
*/
|
|
26795
26813
|
get DestinationEntityID() {
|
|
26796
26814
|
return this.Get('DestinationEntityID');
|
|
@@ -26979,6 +26997,7 @@ let RecommendationRunEntity = class RecommendationRunEntity extends core_1.BaseE
|
|
|
26979
26997
|
* * Display Name: ID
|
|
26980
26998
|
* * SQL Data Type: uniqueidentifier
|
|
26981
26999
|
* * Default Value: newsequentialid()
|
|
27000
|
+
* * Description: Da Key :
|
|
26982
27001
|
*/
|
|
26983
27002
|
get ID() {
|
|
26984
27003
|
return this.Get('ID');
|