repository-provider 25.5.7 → 25.5.8
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/README.md +5 -5
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -860,7 +860,7 @@ Commit entries.
|
|
|
860
860
|
#### Parameters
|
|
861
861
|
|
|
862
862
|
* `message` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** commit message
|
|
863
|
-
* `updates` **[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)\<
|
|
863
|
+
* `updates` **[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)\<ContentEntry>** content to be commited
|
|
864
864
|
* `options` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)**
|
|
865
865
|
|
|
866
866
|
Returns **[CommitResult](#commitresult)**
|
|
@@ -1306,13 +1306,13 @@ List entries of the branch.
|
|
|
1306
1306
|
|
|
1307
1307
|
* `matchingPatterns` **[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>**
|
|
1308
1308
|
|
|
1309
|
-
Returns **
|
|
1309
|
+
Returns **ContentEntry** all matching entries in the branch
|
|
1310
1310
|
|
|
1311
1311
|
### asyncIterator
|
|
1312
1312
|
|
|
1313
1313
|
List all entries of the branch.
|
|
1314
1314
|
|
|
1315
|
-
Returns **asyncIterator\<
|
|
1315
|
+
Returns **asyncIterator\<ContentEntry>** all entries in the branch
|
|
1316
1316
|
|
|
1317
1317
|
### maybeEntry
|
|
1318
1318
|
|
|
@@ -1322,7 +1322,7 @@ Get exactly one matching entry by name or undefine if no such entry is found.
|
|
|
1322
1322
|
|
|
1323
1323
|
* `name` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**
|
|
1324
1324
|
|
|
1325
|
-
Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<
|
|
1325
|
+
Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<ContentEntry>**
|
|
1326
1326
|
|
|
1327
1327
|
### entry
|
|
1328
1328
|
|
|
@@ -1332,7 +1332,7 @@ Get exactly one matching entry by name (throws if entry is not found).
|
|
|
1332
1332
|
|
|
1333
1333
|
* `name` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)**
|
|
1334
1334
|
|
|
1335
|
-
Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<
|
|
1335
|
+
Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<ContentEntry>**
|
|
1336
1336
|
|
|
1337
1337
|
### provider
|
|
1338
1338
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider",
|
|
3
|
-
"version": "25.5.
|
|
3
|
+
"version": "25.5.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"exports": {
|
|
9
9
|
".": "./src/index.mjs"
|
|
10
10
|
},
|
|
11
|
-
"description": "abstract interface to git repository providers like github bitbucket",
|
|
11
|
+
"description": "abstract interface to git repository providers like github, bitbucket and gitlab",
|
|
12
12
|
"keywords": [
|
|
13
13
|
"git",
|
|
14
14
|
"repository-provider"
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"ava": "^3.15.0",
|
|
36
36
|
"c8": "^7.10.0",
|
|
37
37
|
"documentation": "^13.2.5",
|
|
38
|
-
"repository-provider-test-support": "^1.
|
|
38
|
+
"repository-provider-test-support": "^1.8.2",
|
|
39
39
|
"semantic-release": "^18.0.0"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
|
-
"node": ">=14.
|
|
42
|
+
"node": ">=14.18.1"
|
|
43
43
|
},
|
|
44
44
|
"repository": {
|
|
45
45
|
"type": "git",
|