repository-provider 32.7.16 → 32.7.17

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.7.16",
3
+ "version": "32.7.17",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -10,7 +10,7 @@ import {
10
10
  * Object with a name.
11
11
  * @param {string} name
12
12
  * @param {Object} [options]
13
- * @param {Object} [additionalProperties|
13
+ * @param {Object} [additionalProperties]
14
14
  *
15
15
  * @property {string} name
16
16
  */
@@ -30,6 +30,16 @@ export class NamedObject extends BaseObject {
30
30
  });
31
31
  }
32
32
 
33
+ #name;
34
+
35
+ get name() {
36
+ return this.#name;
37
+ }
38
+
39
+ set name(name) {
40
+ this.#name = name;
41
+ }
42
+
33
43
  /**
34
44
  * Check for equality.
35
45
  * @param {NamedObject} other