@memberjunction/core-entities 2.93.0 → 2.95.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.
|
@@ -5870,6 +5870,7 @@ export declare const ComponentLibrarySchema: z.ZodObject<{
|
|
|
5870
5870
|
__mj_UpdatedAt: z.ZodDate;
|
|
5871
5871
|
Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Deprecated">, z.ZodLiteral<"Disabled">]>;
|
|
5872
5872
|
LintRules: z.ZodNullable<z.ZodString>;
|
|
5873
|
+
Dependencies: z.ZodNullable<z.ZodString>;
|
|
5873
5874
|
}, "strip", z.ZodTypeAny, {
|
|
5874
5875
|
ID?: string;
|
|
5875
5876
|
__mj_CreatedAt?: Date;
|
|
@@ -5884,6 +5885,7 @@ export declare const ComponentLibrarySchema: z.ZodObject<{
|
|
|
5884
5885
|
CDNUrl?: string;
|
|
5885
5886
|
CDNCssUrl?: string;
|
|
5886
5887
|
LintRules?: string;
|
|
5888
|
+
Dependencies?: string;
|
|
5887
5889
|
}, {
|
|
5888
5890
|
ID?: string;
|
|
5889
5891
|
__mj_CreatedAt?: Date;
|
|
@@ -5898,6 +5900,7 @@ export declare const ComponentLibrarySchema: z.ZodObject<{
|
|
|
5898
5900
|
CDNUrl?: string;
|
|
5899
5901
|
CDNCssUrl?: string;
|
|
5900
5902
|
LintRules?: string;
|
|
5903
|
+
Dependencies?: string;
|
|
5901
5904
|
}>;
|
|
5902
5905
|
export type ComponentLibraryEntityType = z.infer<typeof ComponentLibrarySchema>;
|
|
5903
5906
|
/**
|
|
@@ -25420,6 +25423,14 @@ export declare class ComponentLibraryEntity extends BaseEntity<ComponentLibraryE
|
|
|
25420
25423
|
*/
|
|
25421
25424
|
get LintRules(): string | null;
|
|
25422
25425
|
set LintRules(value: string | null);
|
|
25426
|
+
/**
|
|
25427
|
+
* * Field Name: Dependencies
|
|
25428
|
+
* * Display Name: Dependencies
|
|
25429
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
25430
|
+
* * Description: JSON object defining dependencies for this component library. Format: { "libraryName": "versionSpec", ... }. Version specifications follow NPM-style syntax (e.g., "~1.0.0", "^1.2.3", "2.3.4"). Dependencies are loaded before this library to ensure proper execution context.
|
|
25431
|
+
*/
|
|
25432
|
+
get Dependencies(): string | null;
|
|
25433
|
+
set Dependencies(value: string | null);
|
|
25423
25434
|
}
|
|
25424
25435
|
/**
|
|
25425
25436
|
* MJ: Component Library Links - strongly typed entity sub-class
|