@memberjunction/core-entities 2.8.0 → 2.9.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.
@@ -2851,6 +2851,11 @@ exports.DatasetItemSchema = zod_1.z.object({
2851
2851
  * * Display Name: Updated At
2852
2852
  * * SQL Data Type: datetimeoffset
2853
2853
  * * Default Value: getutcdate()`),
2854
+ Columns: zod_1.z.string().nullish().describe(`
2855
+ * * Field Name: Columns
2856
+ * * Display Name: Columns
2857
+ * * SQL Data Type: nvarchar(MAX)
2858
+ * * Description: Optional column to store a comma-delimited list of columns for the DatasetItem`),
2854
2859
  Dataset: zod_1.z.string().describe(`
2855
2860
  * * Field Name: Dataset
2856
2861
  * * Display Name: Dataset
@@ -7003,14 +7008,13 @@ exports.ResourcePermissionSchema = zod_1.z.object({
7003
7008
  * * Display Name: Updated At
7004
7009
  * * SQL Data Type: datetimeoffset
7005
7010
  * * Default Value: getutcdate()`),
7006
- Status: zod_1.z.union([zod_1.z.literal('Pending'), zod_1.z.literal('Approved'), zod_1.z.literal('Rejected'), zod_1.z.literal('Revoked'), zod_1.z.literal('Requested')]).describe(`
7011
+ Status: zod_1.z.union([zod_1.z.literal('Approved'), zod_1.z.literal('Rejected'), zod_1.z.literal('Revoked'), zod_1.z.literal('Requested')]).describe(`
7007
7012
  * * Field Name: Status
7008
7013
  * * Display Name: Status
7009
7014
  * * SQL Data Type: nvarchar(20)
7010
7015
  * * Default Value: Requested
7011
7016
  * * Value List Type: List
7012
7017
  * * Possible Values
7013
- * * Pending
7014
7018
  * * Approved
7015
7019
  * * Rejected
7016
7020
  * * Revoked
@@ -16337,6 +16341,18 @@ let DatasetItemEntity = class DatasetItemEntity extends core_1.BaseEntity {
16337
16341
  return this.Get('__mj_UpdatedAt');
16338
16342
  }
16339
16343
  /**
16344
+ * * Field Name: Columns
16345
+ * * Display Name: Columns
16346
+ * * SQL Data Type: nvarchar(MAX)
16347
+ * * Description: Optional column to store a comma-delimited list of columns for the DatasetItem
16348
+ */
16349
+ get Columns() {
16350
+ return this.Get('Columns');
16351
+ }
16352
+ set Columns(value) {
16353
+ this.Set('Columns', value);
16354
+ }
16355
+ /**
16340
16356
  * * Field Name: Dataset
16341
16357
  * * Display Name: Dataset
16342
16358
  * * SQL Data Type: nvarchar(100)
@@ -27224,11 +27240,11 @@ let ResourcePermissionEntity = class ResourcePermissionEntity extends core_1.Bas
27224
27240
  * * Default Value: Requested
27225
27241
  * * Value List Type: List
27226
27242
  * * Possible Values
27227
- * * Requested
27228
27243
  * * Approved
27229
27244
  * * Rejected
27230
27245
  * * Revoked
27231
- * * Description: Status of the resource permission request. Possible values are Requested, Approved, Rejected, or Revoked.
27246
+ * * Requested
27247
+ * * Description: Status of the resource permission request. Possible values are Pending, Approved, Rejected, Revoked, or Requested.
27232
27248
  */
27233
27249
  get Status() {
27234
27250
  return this.Get('Status');