jcicl 1.0.64 → 1.0.65
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/api.js +3 -0
- package/package.json +1 -1
package/api.js
CHANGED
|
@@ -3,6 +3,9 @@ var h = (s, e, r) => e in s ? T(s, e, { enumerable: !0, configurable: !0, writab
|
|
|
3
3
|
var m = (s, e, r) => h(s, typeof e != "symbol" ? e + "" : e, r);
|
|
4
4
|
class x {
|
|
5
5
|
constructor(e) {
|
|
6
|
+
// `protected` (not `private`): subclasses may need to read or override the URL
|
|
7
|
+
// (e.g., versioned-API subclass that prepends '/v2'). Not `public`: external
|
|
8
|
+
// code shouldn't be able to read or mutate the base URL after construction.
|
|
6
9
|
m(this, "baseUrl");
|
|
7
10
|
if (!e)
|
|
8
11
|
throw new Error(
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jcicl",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.65",
|
|
5
5
|
"description": "Component library for the websites of Johnson County Iowa",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary?path=%2FREADME.md&version=GBmaster",
|