mftsccs-browser 2.1.229-beta → 2.1.231-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 +8 -0
- package/dist/main.bundle.js +2 -46515
- package/dist/serviceWorker.bundle.js +2 -47440
- package/dist/types/Api/GetInstanceConceptByCharacterType.d.ts +9 -0
- package/dist/types/DataStructures/BaseUrl.d.ts +1 -0
- package/dist/types/DataStructures/Search/FreeschemaQuery.d.ts +1 -0
- package/dist/types/Widgets/RenderWidgetService.d.ts +1 -1
- package/dist/types/app.d.ts +1 -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
|
@@ -931,6 +931,14 @@ This creates the `dist/` folder with:
|
|
|
931
931
|
- `dist/main.bundle.js` - Main bundle
|
|
932
932
|
- `dist/types/` - TypeScript declarations
|
|
933
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
|
+
|
|
934
942
|
#### 3. Test the Package Locally (Optional but Recommended)
|
|
935
943
|
|
|
936
944
|
```bash
|