repository-provider 36.0.14 → 36.0.16
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 +2 -0
- package/package.json +3 -3
- package/src/base-provider.mjs +1 -0
package/README.md
CHANGED
|
@@ -749,6 +749,7 @@ Creates a new provider for a given set of options.
|
|
|
749
749
|
|
|
750
750
|
* `options.instanceIdentifier` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** name of the provider instance
|
|
751
751
|
* `options.description` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** 
|
|
752
|
+
* `options.messageDestination` **[MessageDestination](#messagedestination)?** 
|
|
752
753
|
* `env` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** taken from process.env
|
|
753
754
|
|
|
754
755
|
Returns **([BaseProvider](#baseprovider) | [undefined](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/undefined))** newly created provider or undefined if options are not sufficient to construct a provider
|
|
@@ -990,6 +991,7 @@ Creates a new provider for a given set of options.
|
|
|
990
991
|
|
|
991
992
|
* `options.instanceIdentifier` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** name of the provider instance
|
|
992
993
|
* `options.description` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** 
|
|
994
|
+
* `options.messageDestination` **[MessageDestination](#messagedestination)?** 
|
|
993
995
|
* `env` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** taken from process.env
|
|
994
996
|
|
|
995
997
|
Returns **([BaseProvider](#baseprovider) | [undefined](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/undefined))** newly created provider or undefined if options are not sufficient to construct a provider
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider",
|
|
3
|
-
"version": "36.0.
|
|
3
|
+
"version": "36.0.16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"content-entry": "^14.2.7",
|
|
37
37
|
"matching-iterator": "^2.1.5",
|
|
38
|
-
"pacc": "^6.
|
|
38
|
+
"pacc": "^6.8.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"ava": "^6.4.1",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"semantic-release": "^25.0.2"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
|
-
"node": ">=24.
|
|
49
|
+
"node": ">=24.12.0"
|
|
50
50
|
},
|
|
51
51
|
"repository": {
|
|
52
52
|
"type": "git",
|
package/src/base-provider.mjs
CHANGED
|
@@ -99,6 +99,7 @@ export class BaseProvider extends BaseObject {
|
|
|
99
99
|
* @param {Object} options additional options
|
|
100
100
|
* @param {string} [options.instanceIdentifier] name of the provider instance
|
|
101
101
|
* @param {string} [options.description]
|
|
102
|
+
* @param {MessageDestination} [options.messageDestination]
|
|
102
103
|
* @param {Object} env taken from process.env
|
|
103
104
|
* @return {BaseProvider|undefined} newly created provider or undefined if options are not sufficient to construct a provider
|
|
104
105
|
*/
|