@qualified-salesforce/web 0.1.2 → 0.1.3

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/CHANGELOG.md CHANGED
@@ -4,6 +4,18 @@ All notable changes to `@qualified-salesforce/web` are recorded here. The format
4
4
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); the package aims to follow
5
5
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.1.3]
8
+
9
+ ### Fixed
10
+
11
+ - **Doc links resolved to a private repo.** The `LICENSE.txt` and `CAPABILITY-REFERENCE.md`
12
+ references in the README, and the `CAPABILITY-REFERENCE.md` reference plus the version links in
13
+ this changelog, were relative or `github.com/FatbearLabs` links — the relative ones npm rewrites
14
+ against the package's `repository` field (a private repo), so a reader got a 404. The file
15
+ references are now plain text noting the files ship in the package (the full license text is
16
+ already reproduced inline, and `CAPABILITY-REFERENCE.md` ships in the tarball), and the changelog
17
+ version links now point at the public npm version pages. No runtime or API change.
18
+
7
19
  ## [0.1.2]
8
20
 
9
21
  ### Changed
@@ -85,12 +97,13 @@ All notable changes to `@qualified-salesforce/web` are recorded here. The format
85
97
  - **Origins and CSP.** With every capability denied (the default), the package reaches only your
86
98
  own origin and Qualified's own API / websocket / asset planes — no third-party origin. Each
87
99
  capability's third-party origin and egress, and whether it needs a CSP change, is documented per
88
- key in [`CAPABILITY-REFERENCE.md`](./CAPABILITY-REFERENCE.md).
100
+ key in `CAPABILITY-REFERENCE.md`, shipped in the package.
89
101
  - **Why the gated code ships present-but-inert rather than removed.** A denied capability has no
90
102
  execution path and Qualified cannot enable it remotely, so keeping it inert in one universal,
91
103
  reviewed package is equivalent to absence for what runs in the browser — while letting you enable
92
104
  a feature later by changing one `setup()` option, with no separate build.
93
105
 
94
- [0.1.2]: https://github.com/FatbearLabs/fireball/tree/master/npm-package/package-esm
95
- [0.1.1]: https://github.com/FatbearLabs/fireball/tree/master/npm-package/package-esm
96
- [0.1.0]: https://github.com/FatbearLabs/fireball/tree/master/npm-package/package-esm
106
+ [0.1.3]: https://www.npmjs.com/package/@qualified-salesforce/web/v/0.1.3
107
+ [0.1.2]: https://www.npmjs.com/package/@qualified-salesforce/web/v/0.1.2
108
+ [0.1.1]: https://www.npmjs.com/package/@qualified-salesforce/web/v/0.1.1
109
+ [0.1.0]: https://www.npmjs.com/package/@qualified-salesforce/web/v/0.1.0
package/README.md CHANGED
@@ -40,7 +40,7 @@ renders the widget unstyled.
40
40
  Every optional feature is **off unless you enroll it** in the `capabilities` option. Omitting
41
41
  `capabilities` (or passing `[]`) leaves them all off.
42
42
 
43
- See [`CAPABILITY-REFERENCE.md`](./CAPABILITY-REFERENCE.md) for the full list — what each capability
43
+ See `CAPABILITY-REFERENCE.md`, shipped in the package, for the full list — what each capability
44
44
  does, the data it sends, whether it needs a CSP change, and its default.
45
45
 
46
46
  ## TypeScript
@@ -62,8 +62,7 @@ const qualified = await setup({
62
62
 
63
63
  ## License
64
64
 
65
- Proprietary. The full text is reproduced below and also ships in the package as
66
- [`LICENSE.txt`](./LICENSE.txt).
65
+ Proprietary. The full text is reproduced below and also ships in the package as `LICENSE.txt`.
67
66
 
68
67
  ### Terms of Use
69
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qualified-salesforce/web",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Embeddable Qualified messenger widget (text-only ESM build).",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "private": false,