@omnia/tooling-composers 8.0.66-dev → 8.0.67-dev
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/internal-do-not-import-from-here/CustomServiceComposer.js +1 -1
- package/internal-do-not-import-from-here/ServiceComposer.d.ts +1 -1
- package/internal-do-not-import-from-here/models/Enums.d.ts +1 -2
- package/internal-do-not-import-from-here/models/Enums.js +0 -1
- package/internal-do-not-import-from-here/models/ServerManifests.d.ts +1 -1
- package/package.json +3 -3
|
@@ -24,7 +24,7 @@ class CustomServiceComposer extends ServiceManifestComposer_1.ServiceManifestCom
|
|
|
24
24
|
ServiceManifestRegistry_1.ServiceManifestRegistry.AddService(serviceInfo);
|
|
25
25
|
}
|
|
26
26
|
runHelm(cmd) {
|
|
27
|
-
ServiceManifestRegistry_1.ServiceManifestRegistry.getServiceInfo().
|
|
27
|
+
ServiceManifestRegistry_1.ServiceManifestRegistry.getServiceInfo().helmCommand = cmd;
|
|
28
28
|
return this;
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -19,7 +19,7 @@ export interface IServiceComposer {
|
|
|
19
19
|
*/
|
|
20
20
|
AsWorker: () => IWorkerServiceComposer;
|
|
21
21
|
/**
|
|
22
|
-
* Register service to be of custom type (to install
|
|
22
|
+
* Register service to be of custom type (to install helm)
|
|
23
23
|
*/
|
|
24
24
|
AsCustom: () => ICustomServiceComposer;
|
|
25
25
|
}
|
|
@@ -34,8 +34,7 @@ export declare enum ServerManifestTypes {
|
|
|
34
34
|
ServiceFeature = "servicefeature",
|
|
35
35
|
ServiceAppDefinition = "serviceappdefinition",
|
|
36
36
|
AzureADAppPermission = "azureadapppermission",
|
|
37
|
-
ServiceRoleDefinition = "serviceroledefinition"
|
|
38
|
-
HemlProvider = "hemlprovider"
|
|
37
|
+
ServiceRoleDefinition = "serviceroledefinition"
|
|
39
38
|
}
|
|
40
39
|
export declare enum BundleTargetTypes {
|
|
41
40
|
Javascript = "js",
|
|
@@ -45,7 +45,6 @@ var ServerManifestTypes;
|
|
|
45
45
|
ServerManifestTypes["ServiceAppDefinition"] = "serviceappdefinition";
|
|
46
46
|
ServerManifestTypes["AzureADAppPermission"] = "azureadapppermission";
|
|
47
47
|
ServerManifestTypes["ServiceRoleDefinition"] = "serviceroledefinition";
|
|
48
|
-
ServerManifestTypes["HemlProvider"] = "hemlprovider";
|
|
49
48
|
})(ServerManifestTypes || (exports.ServerManifestTypes = ServerManifestTypes = {}));
|
|
50
49
|
var BundleTargetTypes;
|
|
51
50
|
(function (BundleTargetTypes) {
|
|
@@ -220,7 +220,7 @@ export interface ServiceBase extends ServiceOptions {
|
|
|
220
220
|
optionalService: boolean;
|
|
221
221
|
}
|
|
222
222
|
export interface CustomService extends ServiceBase {
|
|
223
|
-
|
|
223
|
+
helmCommand?: string;
|
|
224
224
|
}
|
|
225
225
|
export interface ServiceManifest extends ServiceBase, ServerManifest {
|
|
226
226
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/tooling-composers",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.67-dev",
|
|
5
5
|
"description": "Provide tooling to work with manifest things.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Precio Fishbone",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@omnia/fx-models": "8.0.
|
|
23
|
-
"@omnia/tooling": "8.0.
|
|
22
|
+
"@omnia/fx-models": "8.0.67-dev",
|
|
23
|
+
"@omnia/tooling": "8.0.67-dev",
|
|
24
24
|
"deep-extend": "0.6.0",
|
|
25
25
|
"fs-extra": "11.1.0",
|
|
26
26
|
"del": "6.0.0",
|