@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.
@@ -2197,6 +2197,7 @@ export declare const DataContextItemSchema: z.ZodObject<{
2197
2197
  LastRefreshedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
2198
2198
  __mj_CreatedAt: z.ZodDate;
2199
2199
  __mj_UpdatedAt: z.ZodDate;
2200
+ Description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2200
2201
  DataContext: z.ZodString;
2201
2202
  View: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2202
2203
  Query: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2205,6 +2206,7 @@ export declare const DataContextItemSchema: z.ZodObject<{
2205
2206
  ID?: string;
2206
2207
  __mj_CreatedAt?: Date;
2207
2208
  __mj_UpdatedAt?: Date;
2209
+ Description?: string;
2208
2210
  Type?: "view" | "sql" | "query" | "single_record" | "full_entity";
2209
2211
  EntityID?: string;
2210
2212
  Entity?: string;
@@ -2222,6 +2224,7 @@ export declare const DataContextItemSchema: z.ZodObject<{
2222
2224
  ID?: string;
2223
2225
  __mj_CreatedAt?: Date;
2224
2226
  __mj_UpdatedAt?: Date;
2227
+ Description?: string;
2225
2228
  Type?: "view" | "sql" | "query" | "single_record" | "full_entity";
2226
2229
  EntityID?: string;
2227
2230
  Entity?: string;
@@ -12441,6 +12444,13 @@ export declare class DataContextItemEntity extends BaseEntity<DataContextItemEnt
12441
12444
  */
12442
12445
  get __mj_UpdatedAt(): Date;
12443
12446
  /**
12447
+ * * Field Name: Description
12448
+ * * Display Name: Description
12449
+ * * SQL Data Type: nvarchar(MAX)
12450
+ */
12451
+ get Description(): string | null;
12452
+ set Description(value: string | null);
12453
+ /**
12444
12454
  * * Field Name: DataContext
12445
12455
  * * Display Name: Data Context
12446
12456
  * * SQL Data Type: nvarchar(255)
@@ -19042,6 +19052,7 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
19042
19052
  * * Display Name: Destination Entity ID
19043
19053
  * * SQL Data Type: uniqueidentifier
19044
19054
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
19055
+ * * Description: dest entity!
19045
19056
  */
19046
19057
  get DestinationEntityID(): string;
19047
19058
  set DestinationEntityID(value: string);
@@ -19180,6 +19191,7 @@ export declare class RecommendationRunEntity extends BaseEntity<RecommendationRu
19180
19191
  * * Display Name: ID
19181
19192
  * * SQL Data Type: uniqueidentifier
19182
19193
  * * Default Value: newsequentialid()
19194
+ * * Description: Da Key :
19183
19195
  */
19184
19196
  get ID(): string;
19185
19197
  /**