@boostercloud/framework-provider-azure 0.23.0 → 0.24.2
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/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { HasInfrastructure, ProviderLibrary } from '@boostercloud/framework-types';
|
|
1
|
+
import { HasInfrastructure, ProviderLibrary, RocketDescriptor } from '@boostercloud/framework-types';
|
|
2
2
|
export declare function loadInfrastructurePackage(packageName: string): HasInfrastructure;
|
|
3
|
-
export declare const Provider: () => ProviderLibrary;
|
|
3
|
+
export declare const Provider: (rockets?: RocketDescriptor[] | undefined) => ProviderLibrary;
|
|
4
4
|
export * from './constants';
|
package/dist/index.js
CHANGED
|
@@ -25,7 +25,7 @@ function loadInfrastructurePackage(packageName) {
|
|
|
25
25
|
return require(packageName);
|
|
26
26
|
}
|
|
27
27
|
exports.loadInfrastructurePackage = loadInfrastructurePackage;
|
|
28
|
-
const Provider = () => ({
|
|
28
|
+
const Provider = (rockets) => ({
|
|
29
29
|
// ProviderEventsLibrary
|
|
30
30
|
events: {
|
|
31
31
|
rawToEnvelopes: events_adapter_1.rawEventsToEnvelopes,
|
|
@@ -78,7 +78,7 @@ const Provider = () => ({
|
|
|
78
78
|
` - It has been specified in your "devDependencies" section of your "package.json" file. You can do so by running 'npm install --save-dev ${infrastructurePackageName}'\n` +
|
|
79
79
|
` - Or it has been installed globally. You can do so by running 'npm install -g ${infrastructurePackageName}'`);
|
|
80
80
|
}
|
|
81
|
-
return infrastructure.Infrastructure();
|
|
81
|
+
return infrastructure.Infrastructure(rockets);
|
|
82
82
|
},
|
|
83
83
|
});
|
|
84
84
|
exports.Provider = Provider;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boostercloud/framework-provider-azure",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.2",
|
|
4
4
|
"description": "Handle Booster's integration with Azure",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"framework-provider-azure"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@azure/cosmos": "3.7.3",
|
|
24
24
|
"@azure/functions": "^1.2.2",
|
|
25
|
-
"@boostercloud/framework-types": "^0.
|
|
25
|
+
"@boostercloud/framework-types": "^0.24.2",
|
|
26
26
|
"chai": "4.2.0",
|
|
27
27
|
"chai-as-promised": "7.1.1",
|
|
28
28
|
"mocha": "8.4.0",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"bugs": {
|
|
42
42
|
"url": "https://github.com/boostercloud/booster/issues"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "2cb24f409123cf14dd38670e5be2c0a8f7e4c769"
|
|
45
45
|
}
|