@memberjunction/doc-utils 5.1.0 → 5.3.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.
- package/README.md +23 -23
- package/dist/Engine.d.ts +5 -5
- package/dist/Engine.d.ts.map +1 -1
- package/dist/Engine.js +8 -8
- package/dist/Engine.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -18,8 +18,8 @@ This package is particularly useful for:
|
|
|
18
18
|
graph TB
|
|
19
19
|
subgraph DocUtils["DocUtils Package"]
|
|
20
20
|
DE["DocumentationEngine<br/>(Singleton)"]
|
|
21
|
-
LEE["
|
|
22
|
-
LIEE["
|
|
21
|
+
LEE["MJLibraryEntityExtended"]
|
|
22
|
+
LIEE["MJLibraryItemEntityExtended"]
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
subgraph MJCore["@memberjunction/core"]
|
|
@@ -73,9 +73,9 @@ sequenceDiagram
|
|
|
73
73
|
|
|
74
74
|
App->>DE: Config(forceRefresh, contextUser)
|
|
75
75
|
DE->>DB: Load Libraries (entity metadata)
|
|
76
|
-
DB-->>DE:
|
|
76
|
+
DB-->>DE: MJLibraryEntityExtended[]
|
|
77
77
|
DE->>DB: Load Library Items (entity metadata)
|
|
78
|
-
DB-->>DE:
|
|
78
|
+
DB-->>DE: MJLibraryItemEntityExtended[]
|
|
79
79
|
|
|
80
80
|
Note over DE: AdditionalLoading phase
|
|
81
81
|
|
|
@@ -106,8 +106,8 @@ classDiagram
|
|
|
106
106
|
|
|
107
107
|
class DocumentationEngine {
|
|
108
108
|
+Instance$ DocumentationEngine
|
|
109
|
-
+Libraries
|
|
110
|
-
+LibraryItems
|
|
109
|
+
+Libraries MJLibraryEntityExtended[]
|
|
110
|
+
+LibraryItems MJLibraryItemEntityExtended[]
|
|
111
111
|
+Config(forceRefresh, contextUser, provider)
|
|
112
112
|
#AdditionalLoading(contextUser)
|
|
113
113
|
#GetContent(url, rootSelector) string
|
|
@@ -131,8 +131,8 @@ classDiagram
|
|
|
131
131
|
+SampleCode string?
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
-
class
|
|
135
|
-
+Items
|
|
134
|
+
class MJLibraryEntityExtended {
|
|
135
|
+
+Items MJLibraryItemEntityExtended[]
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
class LibraryItemEntity {
|
|
@@ -143,7 +143,7 @@ classDiagram
|
|
|
143
143
|
+Library string
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
-
class
|
|
146
|
+
class MJLibraryItemEntityExtended {
|
|
147
147
|
+URL string
|
|
148
148
|
+HTMLContent string
|
|
149
149
|
+TypeURLSegment string
|
|
@@ -152,15 +152,15 @@ classDiagram
|
|
|
152
152
|
BaseEngine <|-- DocumentationEngine
|
|
153
153
|
BaseEntity <|-- LibraryEntity
|
|
154
154
|
BaseEntity <|-- LibraryItemEntity
|
|
155
|
-
LibraryEntity <|--
|
|
156
|
-
LibraryItemEntity <|--
|
|
157
|
-
DocumentationEngine o--
|
|
158
|
-
DocumentationEngine o--
|
|
159
|
-
|
|
155
|
+
LibraryEntity <|-- MJLibraryEntityExtended
|
|
156
|
+
LibraryItemEntity <|-- MJLibraryItemEntityExtended
|
|
157
|
+
DocumentationEngine o-- MJLibraryEntityExtended
|
|
158
|
+
DocumentationEngine o-- MJLibraryItemEntityExtended
|
|
159
|
+
MJLibraryEntityExtended o-- MJLibraryItemEntityExtended
|
|
160
160
|
|
|
161
161
|
style DocumentationEngine fill:#2d6a9f,stroke:#1a4971,color:#fff
|
|
162
|
-
style
|
|
163
|
-
style
|
|
162
|
+
style MJLibraryEntityExtended fill:#2d8659,stroke:#1a5c3a,color:#fff
|
|
163
|
+
style MJLibraryItemEntityExtended fill:#2d8659,stroke:#1a5c3a,color:#fff
|
|
164
164
|
style BaseEngine fill:#7c5295,stroke:#563a6b,color:#fff
|
|
165
165
|
style BaseEntity fill:#7c5295,stroke:#563a6b,color:#fff
|
|
166
166
|
style LibraryEntity fill:#7c5295,stroke:#563a6b,color:#fff
|
|
@@ -282,11 +282,11 @@ The primary class providing access to MJ library documentation. Extends `BaseEng
|
|
|
282
282
|
| Member | Type | Description |
|
|
283
283
|
|--------|------|-------------|
|
|
284
284
|
| `Instance` (static) | `DocumentationEngine` | Returns the singleton instance |
|
|
285
|
-
| `Libraries` | `
|
|
286
|
-
| `LibraryItems` | `
|
|
285
|
+
| `Libraries` | `MJLibraryEntityExtended[]` | All loaded libraries with their items |
|
|
286
|
+
| `LibraryItems` | `MJLibraryItemEntityExtended[]` | Flat list of all library items across all libraries |
|
|
287
287
|
| `Config(forceRefresh?, contextUser?, provider?)` | `Promise<void>` | Initializes the engine: loads metadata, fetches and parses documentation |
|
|
288
288
|
|
|
289
|
-
###
|
|
289
|
+
### MJLibraryEntityExtended
|
|
290
290
|
|
|
291
291
|
Extended entity class for libraries. Registered via `@RegisterClass(BaseEntity, "Libraries")`.
|
|
292
292
|
|
|
@@ -298,9 +298,9 @@ Extended entity class for libraries. Registered via `@RegisterClass(BaseEntity,
|
|
|
298
298
|
| `Status` | `'Active' \| 'Disabled' \| 'Pending'` | Library availability status |
|
|
299
299
|
| `TypeDefinitions` | `string \| null` | Type/function definitions for reference by humans and AI |
|
|
300
300
|
| `SampleCode` | `string \| null` | Usage examples for the library |
|
|
301
|
-
| `Items` | `
|
|
301
|
+
| `Items` | `MJLibraryItemEntityExtended[]` | All items belonging to this library |
|
|
302
302
|
|
|
303
|
-
###
|
|
303
|
+
### MJLibraryItemEntityExtended
|
|
304
304
|
|
|
305
305
|
Extended entity class for individual library items (classes, interfaces, functions, etc.). Registered via `@RegisterClass(BaseEntity, "Library Items")`.
|
|
306
306
|
|
|
@@ -359,7 +359,7 @@ graph LR
|
|
|
359
359
|
|
|
360
360
|
This package integrates with the broader MemberJunction ecosystem through several mechanisms:
|
|
361
361
|
|
|
362
|
-
- **Entity System**: Uses `@RegisterClass` to register `
|
|
362
|
+
- **Entity System**: Uses `@RegisterClass` to register `MJLibraryEntityExtended` and `MJLibraryItemEntityExtended` as entity subclasses, ensuring the MJ class factory returns the extended types when loading Libraries and Library Items.
|
|
363
363
|
- **BaseEngine Pattern**: Extends `BaseEngine` with the `Config()` / `AdditionalLoading()` lifecycle, allowing consistent initialization and caching across all MJ engine classes.
|
|
364
364
|
- **User Context**: Supports `contextUser` for proper data isolation and security when running on the server side.
|
|
365
365
|
- **Metadata Provider**: Accepts an optional `IMetadataProvider` for environments with custom metadata access patterns.
|
|
@@ -380,7 +380,7 @@ npm start
|
|
|
380
380
|
| File | Description |
|
|
381
381
|
|------|-------------|
|
|
382
382
|
| `src/index.ts` | Public API surface -- re-exports from `Engine.ts` |
|
|
383
|
-
| `src/Engine.ts` | Core implementation: `DocumentationEngine`, `
|
|
383
|
+
| `src/Engine.ts` | Core implementation: `DocumentationEngine`, `MJLibraryEntityExtended`, `MJLibraryItemEntityExtended` |
|
|
384
384
|
|
|
385
385
|
## Notes
|
|
386
386
|
|
package/dist/Engine.d.ts
CHANGED
|
@@ -4,14 +4,14 @@ import { MJLibraryEntity, MJLibraryItemEntity } from "@memberjunction/core-entit
|
|
|
4
4
|
* Represents a single item within a library/package that is used to provide documentation for the MemberJunction system. For example a library would be something like
|
|
5
5
|
* @memberjunction/core and an item within that library might be the BaseEntity or BaseEngine class.
|
|
6
6
|
*/
|
|
7
|
-
export declare class
|
|
7
|
+
export declare class MJLibraryItemEntityExtended extends MJLibraryItemEntity {
|
|
8
8
|
URL: string;
|
|
9
9
|
HTMLContent: string;
|
|
10
10
|
get TypeURLSegment(): string;
|
|
11
11
|
}
|
|
12
|
-
export declare class
|
|
12
|
+
export declare class MJLibraryEntityExtended extends MJLibraryEntity {
|
|
13
13
|
private _items;
|
|
14
|
-
get Items():
|
|
14
|
+
get Items(): MJLibraryItemEntityExtended[];
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* Provides utility functionality for documentation of the MemberJunction system using external website content from the MemberJunction project.
|
|
@@ -35,10 +35,10 @@ export declare class DocumentationEngine extends BaseEngine<DocumentationEngine>
|
|
|
35
35
|
/**
|
|
36
36
|
* List of all the Entity Action objects that are available for use in the system. Make sure you call Config() before any other methods on this class.
|
|
37
37
|
*/
|
|
38
|
-
get Libraries():
|
|
38
|
+
get Libraries(): MJLibraryEntityExtended[];
|
|
39
39
|
/**
|
|
40
40
|
* List of all the Entity Action objects that are available for use in the system. Make sure you call Config() before any other methods on this class.
|
|
41
41
|
*/
|
|
42
|
-
get LibraryItems():
|
|
42
|
+
get LibraryItems(): MJLibraryItemEntityExtended[];
|
|
43
43
|
}
|
|
44
44
|
//# sourceMappingURL=Engine.d.ts.map
|
package/dist/Engine.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Engine.d.ts","sourceRoot":"","sources":["../src/Engine.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,UAAU,EAAsC,QAAQ,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC/H,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAIrF;;;GAGG;AACH,qBACa,
|
|
1
|
+
{"version":3,"file":"Engine.d.ts","sourceRoot":"","sources":["../src/Engine.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,UAAU,EAAsC,QAAQ,EAAc,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAC/H,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAIrF;;;GAGG;AACH,qBACa,2BAA4B,SAAQ,mBAAmB;IAChE,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,EAAE,MAAM,CAAC;IAEpB,IAAW,cAAc,IAAI,MAAM,CAiBlC;CACJ;AAED,qBACa,uBAAwB,SAAQ,eAAe;IACxD,OAAO,CAAC,MAAM,CAAqC;IACnD,IAAW,KAAK,IAAI,2BAA2B,EAAE,CAEhD;CACJ;AAED;;GAEG;AACH,qBAAa,mBAAoB,SAAQ,UAAU,CAAC,mBAAmB,CAAC;IACpE,WAAkB,QAAQ,IAAI,mBAAmB,CAEhD;IAID,OAAO,CAAC,UAAU,CAAiC;IACnD,OAAO,CAAC,aAAa,CAAqC;IAE1D;;;;;OAKG;IACU,MAAM,CAAC,YAAY,GAAE,OAAe,EAAE,WAAW,CAAC,EAAE,QAAQ,EAAE,QAAQ,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC;IAgBvH,OAAO,CAAC,QAAQ,CAAkD;cACzC,iBAAiB,CAAC,WAAW,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;cAejE,UAAU,CAAC,GAAG,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;cAI/D,kBAAkB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAchE,SAAS,CAAE,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM;IAO1E;;OAEG;IACH,IAAW,SAAS,IAAI,uBAAuB,EAAE,CAEhD;IAEA;;MAEE;IACF,IAAW,YAAY,IAAI,2BAA2B,EAAE,CAExD;CACJ"}
|
package/dist/Engine.js
CHANGED
|
@@ -13,7 +13,7 @@ import { RegisterClass } from '@memberjunction/global';
|
|
|
13
13
|
* Represents a single item within a library/package that is used to provide documentation for the MemberJunction system. For example a library would be something like
|
|
14
14
|
* @memberjunction/core and an item within that library might be the BaseEntity or BaseEngine class.
|
|
15
15
|
*/
|
|
16
|
-
let
|
|
16
|
+
let MJLibraryItemEntityExtended = class MJLibraryItemEntityExtended extends MJLibraryItemEntity {
|
|
17
17
|
get TypeURLSegment() {
|
|
18
18
|
switch (this.Type) {
|
|
19
19
|
case 'Class':
|
|
@@ -33,11 +33,11 @@ let LibraryItemEntityExtended = class LibraryItemEntityExtended extends MJLibrar
|
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
};
|
|
36
|
-
|
|
36
|
+
MJLibraryItemEntityExtended = __decorate([
|
|
37
37
|
RegisterClass(BaseEntity, "MJ: Library Items")
|
|
38
|
-
],
|
|
39
|
-
export {
|
|
40
|
-
let
|
|
38
|
+
], MJLibraryItemEntityExtended);
|
|
39
|
+
export { MJLibraryItemEntityExtended };
|
|
40
|
+
let MJLibraryEntityExtended = class MJLibraryEntityExtended extends MJLibraryEntity {
|
|
41
41
|
constructor() {
|
|
42
42
|
super(...arguments);
|
|
43
43
|
this._items = [];
|
|
@@ -46,10 +46,10 @@ let LibraryEntityExtended = class LibraryEntityExtended extends MJLibraryEntity
|
|
|
46
46
|
return this._items;
|
|
47
47
|
}
|
|
48
48
|
};
|
|
49
|
-
|
|
49
|
+
MJLibraryEntityExtended = __decorate([
|
|
50
50
|
RegisterClass(BaseEntity, "MJ: Libraries")
|
|
51
|
-
],
|
|
52
|
-
export {
|
|
51
|
+
], MJLibraryEntityExtended);
|
|
52
|
+
export { MJLibraryEntityExtended };
|
|
53
53
|
/**
|
|
54
54
|
* Provides utility functionality for documentation of the MemberJunction system using external website content from the MemberJunction project.
|
|
55
55
|
*/
|
package/dist/Engine.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Engine.js","sourceRoot":"","sources":["../src/Engine.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAE9B,OAAO,EAAE,UAAU,EAA4B,QAAQ,EAAY,UAAU,EAAqB,MAAM,sBAAsB,CAAC;AAC/H,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAGvD;;;GAGG;AAEI,IAAM,
|
|
1
|
+
{"version":3,"file":"Engine.js","sourceRoot":"","sources":["../src/Engine.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/doc-utils",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.3.0",
|
|
5
5
|
"description": "This library provides functionality for dynamically retreiving documentation from the official MemberJunction object model documentation site, parsing it, and caching elements in memory for performance. Use this whenever you need dynamic access to the MJ documentation to feed to AI models and for any other similar purpose.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@asamuzakjp/css-color": "^4.1.2",
|
|
24
|
-
"@memberjunction/core": "5.
|
|
25
|
-
"@memberjunction/core-entities": "5.
|
|
26
|
-
"@memberjunction/global": "5.
|
|
24
|
+
"@memberjunction/core": "5.3.0",
|
|
25
|
+
"@memberjunction/core-entities": "5.3.0",
|
|
26
|
+
"@memberjunction/global": "5.3.0",
|
|
27
27
|
"axios": "^1.13.4",
|
|
28
28
|
"cssstyle": "^6.0.1",
|
|
29
29
|
"data-urls": "^7.0.0",
|