@memberjunction/core-entities 5.31.0 → 5.33.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.
@@ -9471,12 +9471,12 @@ export const MJComponentLibrarySchema = z.object({
9471
9471
  * * Description: Library category: Core, Runtime, UI, Charting, Utility, or Other`),
9472
9472
  CDNUrl: z.string().nullable().describe(`
9473
9473
  * * Field Name: CDNUrl
9474
- * * Display Name: CDN Url
9474
+ * * Display Name: CDN URL
9475
9475
  * * SQL Data Type: nvarchar(1000)
9476
9476
  * * Description: CDN URL for loading the library JavaScript`),
9477
9477
  CDNCssUrl: z.string().nullable().describe(`
9478
9478
  * * Field Name: CDNCssUrl
9479
- * * Display Name: CDN Css Url
9479
+ * * Display Name: CDN CSS URL
9480
9480
  * * SQL Data Type: nvarchar(1000)
9481
9481
  * * Description: Optional CDN URL for loading library CSS`),
9482
9482
  Description: z.string().nullable().describe(`
@@ -9526,6 +9526,11 @@ export const MJComponentLibrarySchema = z.object({
9526
9526
  * * Dependency
9527
9527
  * * Direct
9528
9528
  * * Description: Controls how the library can be used: Direct (by components), Dependency (only as dependency), or Both`),
9529
+ UsageInstructions: z.string().nullable().describe(`
9530
+ * * Field Name: UsageInstructions
9531
+ * * Display Name: Usage Instructions
9532
+ * * SQL Data Type: nvarchar(MAX)
9533
+ * * Description: Markdown-formatted usage instructions for AI code generators and agents. Injected into prompts when a component references this library. Covers container requirements, initialization patterns, required config options, and common pitfalls. Distinct from Description which is a high-level summary of what the library does.`),
9529
9534
  });
9530
9535
  /**
9531
9536
  * zod schema definition for the entity MJ: Component Library Links
@@ -49123,7 +49128,7 @@ let MJComponentLibraryEntity = class MJComponentLibraryEntity extends BaseEntity
49123
49128
  }
49124
49129
  /**
49125
49130
  * * Field Name: CDNUrl
49126
- * * Display Name: CDN Url
49131
+ * * Display Name: CDN URL
49127
49132
  * * SQL Data Type: nvarchar(1000)
49128
49133
  * * Description: CDN URL for loading the library JavaScript
49129
49134
  */
@@ -49135,7 +49140,7 @@ let MJComponentLibraryEntity = class MJComponentLibraryEntity extends BaseEntity
49135
49140
  }
49136
49141
  /**
49137
49142
  * * Field Name: CDNCssUrl
49138
- * * Display Name: CDN Css Url
49143
+ * * Display Name: CDN CSS URL
49139
49144
  * * SQL Data Type: nvarchar(1000)
49140
49145
  * * Description: Optional CDN URL for loading library CSS
49141
49146
  */
@@ -49235,6 +49240,18 @@ let MJComponentLibraryEntity = class MJComponentLibraryEntity extends BaseEntity
49235
49240
  set UsageType(value) {
49236
49241
  this.Set('UsageType', value);
49237
49242
  }
49243
+ /**
49244
+ * * Field Name: UsageInstructions
49245
+ * * Display Name: Usage Instructions
49246
+ * * SQL Data Type: nvarchar(MAX)
49247
+ * * Description: Markdown-formatted usage instructions for AI code generators and agents. Injected into prompts when a component references this library. Covers container requirements, initialization patterns, required config options, and common pitfalls. Distinct from Description which is a high-level summary of what the library does.
49248
+ */
49249
+ get UsageInstructions() {
49250
+ return this.Get('UsageInstructions');
49251
+ }
49252
+ set UsageInstructions(value) {
49253
+ this.Set('UsageInstructions', value);
49254
+ }
49238
49255
  };
49239
49256
  MJComponentLibraryEntity = __decorate([
49240
49257
  RegisterClass(BaseEntity, 'MJ: Component Libraries')