@memberjunction/core-entities 2.90.0 → 2.91.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.
@@ -9216,6 +9216,17 @@ exports.ComponentLibrarySchema = zod_1.z.object({
9216
9216
  * * Display Name: Updated At
9217
9217
  * * SQL Data Type: datetimeoffset
9218
9218
  * * Default Value: getutcdate()`),
9219
+ Status: zod_1.z.union([zod_1.z.literal('Active'), zod_1.z.literal('Deprecated'), zod_1.z.literal('Disabled')]).describe(`
9220
+ * * Field Name: Status
9221
+ * * Display Name: Status
9222
+ * * SQL Data Type: nvarchar(20)
9223
+ * * Default Value: Active
9224
+ * * Value List Type: List
9225
+ * * Possible Values
9226
+ * * Active
9227
+ * * Deprecated
9228
+ * * Disabled
9229
+ * * Description: Status of the component library. Active: fully supported; Deprecated: works but shows console warning; Disabled: throws error if used`),
9219
9230
  });
9220
9231
  /**
9221
9232
  * zod schema definition for the entity MJ: Component Library Links
@@ -36907,6 +36918,24 @@ let ComponentLibraryEntity = class ComponentLibraryEntity extends core_1.BaseEnt
36907
36918
  get __mj_UpdatedAt() {
36908
36919
  return this.Get('__mj_UpdatedAt');
36909
36920
  }
36921
+ /**
36922
+ * * Field Name: Status
36923
+ * * Display Name: Status
36924
+ * * SQL Data Type: nvarchar(20)
36925
+ * * Default Value: Active
36926
+ * * Value List Type: List
36927
+ * * Possible Values
36928
+ * * Active
36929
+ * * Deprecated
36930
+ * * Disabled
36931
+ * * Description: Status of the component library. Active: fully supported; Deprecated: works but shows console warning; Disabled: throws error if used
36932
+ */
36933
+ get Status() {
36934
+ return this.Get('Status');
36935
+ }
36936
+ set Status(value) {
36937
+ this.Set('Status', value);
36938
+ }
36910
36939
  };
36911
36940
  exports.ComponentLibraryEntity = ComponentLibraryEntity;
36912
36941
  exports.ComponentLibraryEntity = ComponentLibraryEntity = __decorate([