repository-provider 32.7.8 → 32.7.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": "32.7.8",
3
+ "version": "32.7.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/ref.mjs CHANGED
@@ -54,7 +54,7 @@ export class Ref extends OwnedObject {
54
54
 
55
55
  /**
56
56
  * List entries of the branch.
57
- * @param {string[]} [matchingPatterns]
57
+ * @param {string|string[]} [matchingPatterns]
58
58
  * @return {AsyncIterator<ContentEntry>} all matching entries in the branch
59
59
  */
60
60
  async *entries(matchingPatterns) {}
@@ -39,7 +39,7 @@ export function RepositoryOwner(base) {
39
39
  /**
40
40
  * Lookup a repository.
41
41
  * @param {string} name of the repository may contain a #branch
42
- * @return {Promise<Repository>}
42
+ * @return {Promise<Repository|undefined>}
43
43
  */
44
44
  async repository(name) {
45
45
  if (name !== undefined) {