@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.
|
@@ -5745,6 +5745,7 @@ export declare const MJComponentLibrarySchema: z.ZodObject<{
|
|
|
5745
5745
|
LintRules: z.ZodNullable<z.ZodString>;
|
|
5746
5746
|
Dependencies: z.ZodNullable<z.ZodString>;
|
|
5747
5747
|
UsageType: z.ZodUnion<[z.ZodLiteral<"Both">, z.ZodLiteral<"Dependency">, z.ZodLiteral<"Direct">]>;
|
|
5748
|
+
UsageInstructions: z.ZodNullable<z.ZodString>;
|
|
5748
5749
|
}, "strip", z.ZodTypeAny, {
|
|
5749
5750
|
ID?: string;
|
|
5750
5751
|
__mj_CreatedAt?: Date;
|
|
@@ -5761,6 +5762,7 @@ export declare const MJComponentLibrarySchema: z.ZodObject<{
|
|
|
5761
5762
|
CDNCssUrl?: string;
|
|
5762
5763
|
LintRules?: string;
|
|
5763
5764
|
Dependencies?: string;
|
|
5765
|
+
UsageInstructions?: string;
|
|
5764
5766
|
}, {
|
|
5765
5767
|
ID?: string;
|
|
5766
5768
|
__mj_CreatedAt?: Date;
|
|
@@ -5777,6 +5779,7 @@ export declare const MJComponentLibrarySchema: z.ZodObject<{
|
|
|
5777
5779
|
CDNCssUrl?: string;
|
|
5778
5780
|
LintRules?: string;
|
|
5779
5781
|
Dependencies?: string;
|
|
5782
|
+
UsageInstructions?: string;
|
|
5780
5783
|
}>;
|
|
5781
5784
|
export type MJComponentLibraryEntityType = z.infer<typeof MJComponentLibrarySchema>;
|
|
5782
5785
|
/**
|
|
@@ -32771,7 +32774,7 @@ export declare class MJComponentLibraryEntity extends BaseEntity<MJComponentLibr
|
|
|
32771
32774
|
set Category(value: 'Charting' | 'Core' | 'Other' | 'Runtime' | 'UI' | 'Utility' | null);
|
|
32772
32775
|
/**
|
|
32773
32776
|
* * Field Name: CDNUrl
|
|
32774
|
-
* * Display Name: CDN
|
|
32777
|
+
* * Display Name: CDN URL
|
|
32775
32778
|
* * SQL Data Type: nvarchar(1000)
|
|
32776
32779
|
* * Description: CDN URL for loading the library JavaScript
|
|
32777
32780
|
*/
|
|
@@ -32779,7 +32782,7 @@ export declare class MJComponentLibraryEntity extends BaseEntity<MJComponentLibr
|
|
|
32779
32782
|
set CDNUrl(value: string | null);
|
|
32780
32783
|
/**
|
|
32781
32784
|
* * Field Name: CDNCssUrl
|
|
32782
|
-
* * Display Name: CDN
|
|
32785
|
+
* * Display Name: CDN CSS URL
|
|
32783
32786
|
* * SQL Data Type: nvarchar(1000)
|
|
32784
32787
|
* * Description: Optional CDN URL for loading library CSS
|
|
32785
32788
|
*/
|
|
@@ -32851,6 +32854,14 @@ export declare class MJComponentLibraryEntity extends BaseEntity<MJComponentLibr
|
|
|
32851
32854
|
*/
|
|
32852
32855
|
get UsageType(): 'Both' | 'Dependency' | 'Direct';
|
|
32853
32856
|
set UsageType(value: 'Both' | 'Dependency' | 'Direct');
|
|
32857
|
+
/**
|
|
32858
|
+
* * Field Name: UsageInstructions
|
|
32859
|
+
* * Display Name: Usage Instructions
|
|
32860
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
32861
|
+
* * 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.
|
|
32862
|
+
*/
|
|
32863
|
+
get UsageInstructions(): string | null;
|
|
32864
|
+
set UsageInstructions(value: string | null);
|
|
32854
32865
|
}
|
|
32855
32866
|
/**
|
|
32856
32867
|
* MJ: Component Library Links - strongly typed entity sub-class
|