repository-provider 28.3.8 → 28.3.9

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": "28.3.8",
3
+ "version": "28.3.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -88,6 +88,22 @@ export class BaseObject {
88
88
  return this.name;
89
89
  }
90
90
 
91
+ /**
92
+ * Beautified name use for human displaying only.
93
+ * @return {string} human readable name
94
+ */
95
+ get displayName() {
96
+ return this.name;
97
+ }
98
+
99
+ /**
100
+ * Complete name in the hierachy.
101
+ * @return {string}
102
+ */
103
+ get fullName() {
104
+ return this.name;
105
+ }
106
+
91
107
  /**
92
108
  * By default cannot be written to.
93
109
  * @return {boolean} false
@@ -405,14 +405,6 @@ export class BaseProvider extends BaseObject {
405
405
  return this.constructor.name;
406
406
  }
407
407
 
408
- /**
409
- * @return {string} name
410
- */
411
- get fullName()
412
- {
413
- return this.name;
414
- }
415
-
416
408
  /**
417
409
  * We are our own provider.
418
410
  * @return {BaseProvider} this
@@ -29,15 +29,6 @@ export class NamedObject extends BaseObject {
29
29
  this.provider.equals(other.provider)
30
30
  );
31
31
  }
32
-
33
- /**
34
- * Beautified name use for human displaying only.
35
- * @return {string} human readable name
36
- */
37
- get displayName() {
38
- return this.name;
39
- }
40
-
41
32
  /**
42
33
  * @return {string} name with owner name
43
34
  */