repository-provider 32.6.10 → 32.6.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repository-provider",
3
- "version": "32.6.10",
3
+ "version": "32.6.11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -27,7 +27,7 @@
27
27
  "docs": "documentation readme --section=API ./src/**/*.mjs",
28
28
  "lint": "npm run lint:docs && npm run lint:tsc",
29
29
  "lint:docs": "documentation lint ./src/**/*.mjs",
30
- "lint:tsc": "tsc --allowJs --checkJs --noEmit -t esnext -m esnext ./src/*.mjs"
30
+ "lint:tsc": "tsc --allowJs --checkJs --noEmit -t esnext -m esnext --moduleResolution nodenext ./src/*.mjs"
31
31
  },
32
32
  "dependencies": {
33
33
  "matching-iterator": "^2.0.11"
@@ -7,6 +7,7 @@ import { setAttribute, getAttribute } from "./attribute.mjs";
7
7
  * @property {boolean} writable
8
8
  * @property {boolean} [private] should the value be shown
9
9
  * @property {string} [depends] name of an attribute we depend on
10
+ * @property {string[]} additionalAttributes extra attributes that are present in cas our attribute is set
10
11
  * @property {string} description
11
12
  * @property {any} [default] the default value
12
13
  * @property {Function} [set] set the value
@@ -403,7 +403,7 @@ export class Repository extends OwnedObject {
403
403
  * @param {Hook} hook
404
404
  */
405
405
  async createHook(hook) {
406
- this.addHook(hook);
406
+ this._addHook(hook);
407
407
  }
408
408
 
409
409
  /**