mftsccs-browser 2.1.230-beta → 2.1.232-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 -17
- package/dist/main.bundle.js +1 -1
- package/dist/serviceWorker.bundle.js +1 -1
- package/dist/types/Api/GetInstanceConceptByCharacterType.d.ts +9 -0
- package/dist/types/DataStructures/BaseUrl.d.ts +2 -0
- package/dist/types/DataStructures/Search/FreeschemaQuery.d.ts +1 -0
- package/dist/types/DataStructures/Security/TokenStorage.d.ts +1 -0
- package/dist/types/Services/Security/GetRequestHeader.d.ts +6 -3
- package/dist/types/Services/User/UserFromLocalStorage.d.ts +5 -0
- package/dist/types/app.d.ts +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -923,23 +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
|
-
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)
|
|
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)
|
|
943
943
|
|
|
944
944
|
```bash
|
|
945
945
|
# Create a tarball
|