mftsccs-browser 2.1.228-beta → 2.1.230-beta
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 +17 -9
- package/dist/main.bundle.js +1 -1
- package/dist/serviceWorker.bundle.js +1 -1
- package/dist/types/app.d.ts +0 -2
- package/package.json +5 -6
- package/dist/bundle-report.html +0 -39
- package/dist/main.bundle.js.map +0 -1
- package/dist/serviceWorker.bundle.js.map +0 -1
- package/dist/types/Api/GetAllConcepts.d.ts +0 -11
- package/dist/types/Api/GetAllConnections.d.ts +0 -11
- package/dist/types/Api/GetAllPrefetchConnections.d.ts +0 -12
- package/dist/types/Api/GetConnections/GetConnectionsByTypesApi.d.ts +0 -3
- package/dist/types/Api/Prototype/CreatePrototype.d.ts +0 -14
- package/dist/types/DataStructures/AccessControl/AccessControlModels.d.ts +0 -84
- package/dist/types/DataStructures/ConnectionByType/GetConnectionsByType.d.ts +0 -4
- package/dist/types/DataStructures/PwaStorageManager.d.ts +0 -25
- package/dist/types/DataStructures/ReferentInfo.d.ts +0 -7
- package/dist/types/Database/GetConceptFromIndexDb.d.ts +0 -0
- package/dist/types/Drawing/ConceptDraw.d.ts +0 -1
- package/dist/types/Drawing/ConceptEvents.d.ts +0 -1
- package/dist/types/Metadata/AutocompleteMetadata.d.ts +0 -7
- package/dist/types/Middleware/ErrorHandling.d.ts +0 -0
- package/dist/types/Services/AccessControl/APIClientService.d.ts +0 -167
- package/dist/types/Services/AccessControl/AccessControl.d.ts +0 -114
- package/dist/types/Services/CreateCharacterBinaryTreeFromData.d.ts +0 -5
- package/dist/types/Services/CreateTypeTreeFromData.d.ts +0 -1
- package/dist/types/Services/Delete/DeleteConnectionByIdLocal.d.ts +0 -1
- package/dist/types/Services/GenerateHexNumber.d.ts +0 -1
- package/dist/types/Services/GetAccessIdOfUser.d.ts +0 -0
- package/dist/types/Services/GetMaximumConnectionSyncTime.d.ts +0 -2
- package/dist/types/Services/GetTheReferent.d.ts +0 -2
- package/dist/types/Services/Local/CreateConnectionListFromDatat.d.ts +0 -0
- package/dist/types/Services/Local/CreateLocalBinaryTypeTreeFromData.d.ts +0 -9
- package/dist/types/Services/Local/CreateLocalCharacterBinaryTree.d.ts +0 -9
- package/dist/types/Services/Mqtt/subscribeMessage.d.ts +0 -0
- package/dist/types/Services/PatchComposition.d.ts +0 -2
- package/dist/types/Services/Search/DataFormat.d.ts +0 -23
- package/dist/types/Services/Visualizations/VisualTree.d.ts +0 -9
- package/dist/types/Services/automated/auotmated-update.d.ts +0 -2
- package/dist/types/Visualize/index.d.ts +0 -0
- package/dist/types/Widgets/mainView.class.d.ts +0 -27
- package/dist/types/prototype/getPrototype.service.d.ts +0 -2
- package/scripts/generate-autocomplete-metadata.cjs +0 -271
package/README.md
CHANGED
|
@@ -923,15 +923,23 @@ This automatically:
|
|
|
923
923
|
|
|
924
924
|
#### 2. Build the Package
|
|
925
925
|
|
|
926
|
-
```bash
|
|
927
|
-
npm run build
|
|
928
|
-
```
|
|
929
|
-
|
|
930
|
-
This creates the `dist/` folder with:
|
|
931
|
-
- `dist/main.bundle.js` - Main bundle
|
|
932
|
-
- `dist/types/` - TypeScript declarations
|
|
933
|
-
|
|
934
|
-
|
|
926
|
+
```bash
|
|
927
|
+
npm run build
|
|
928
|
+
```
|
|
929
|
+
|
|
930
|
+
This creates the `dist/` folder with:
|
|
931
|
+
- `dist/main.bundle.js` - Main bundle
|
|
932
|
+
- `dist/types/` - TypeScript declarations
|
|
933
|
+
|
|
934
|
+
For the lean WICO autocomplete metadata package:
|
|
935
|
+
|
|
936
|
+
```bash
|
|
937
|
+
npm run build:wico
|
|
938
|
+
```
|
|
939
|
+
|
|
940
|
+
This creates `dist-wico/` with a metadata-only bundle, minimal TypeScript declarations, and a small package manifest.
|
|
941
|
+
|
|
942
|
+
#### 3. Test the Package Locally (Optional but Recommended)
|
|
935
943
|
|
|
936
944
|
```bash
|
|
937
945
|
# Create a tarball
|