repository-provider 31.0.1 → 31.1.0

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": "31.0.1",
3
+ "version": "31.1.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -123,7 +123,7 @@ export class BaseObject {
123
123
  * Complete name in the hierachy.
124
124
  * @return {string}
125
125
  */
126
- get fullCondensedName() {
126
+ get fullCondensedName() {
127
127
  return this.fullName;
128
128
  }
129
129
 
@@ -164,6 +164,14 @@ export class BaseObject {
164
164
  return this.owner.provider;
165
165
  }
166
166
 
167
+ /**
168
+ * API as given by the owner.
169
+ * @return {string} url
170
+ */
171
+ get api() {
172
+ return this.owner.api;
173
+ }
174
+
167
175
  /**
168
176
  * Forwarded to the owner.
169
177
  * @param {...any} args