mftsccs-browser 2.2.46-beta → 2.2.48-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 CHANGED
@@ -931,13 +931,13 @@ 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:
934
+ To also add the WICO autocomplete metadata bundle to the same `dist/` folder:
935
935
 
936
936
  ```bash
937
937
  npm run build:wico
938
938
  ```
939
939
 
940
- This creates `dist-wico/` with a metadata-only bundle, minimal TypeScript declarations, and a small package manifest.
940
+ This runs the full `build` first (so `dist/main.bundle.js` and `dist/serviceWorker.bundle.js` are present), then adds `dist/wico-metadata.bundle.js` everything from the main entry plus `getTsccsAutocompleteMetadata`/`tsccsAutocompleteMetadata` — importable via the `mftsccs-browser/wico` subpath. A single `npm publish` ships both.
941
941
 
942
942
  #### 3. Test the Package Locally (Optional but Recommended)
943
943
 
@@ -0,0 +1,7 @@
1
+ export type TsccsAutocompleteEntry = {
2
+ parameters: string[];
3
+ documentation?: string;
4
+ };
5
+ export type TsccsAutocompleteMetadata = Record<string, Record<string, TsccsAutocompleteEntry>>;
6
+ export declare const tsccsAutocompleteMetadata: TsccsAutocompleteMetadata;
7
+ export declare function getTsccsAutocompleteMetadata(): TsccsAutocompleteMetadata;
@@ -358,6 +358,7 @@ declare function init(url?: string, aiurl?: string, accessToken?: string, nodeUr
358
358
  logPackage?: boolean;
359
359
  accessTracker?: boolean;
360
360
  isTest?: boolean;
361
+ accessControl?: boolean;
361
362
  }, parameters?: {
362
363
  logserver?: string;
363
364
  isPwa?: boolean;
@@ -0,0 +1,3 @@
1
+ export * from "./app";
2
+ export { getTsccsAutocompleteMetadata, tsccsAutocompleteMetadata, } from "./Metadata/AutocompleteMetadata";
3
+ export type { TsccsAutocompleteEntry, TsccsAutocompleteMetadata, } from "./Metadata/AutocompleteMetadata";