@ludeo/cloud-common 1.2.103 → 1.2.104

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.
@@ -68,8 +68,8 @@ export declare class CloudBuild {
68
68
  }
69
69
  export declare class BuildCreationInput {
70
70
  basePath: string;
71
- executeableLaunchPath: string;
72
- runtimeEnvironment: RuntimeEnvironment;
71
+ executableLaunchPath: string;
72
+ runtimeEnvironment?: RuntimeEnvironment;
73
73
  buildVersion?: string;
74
74
  logPath?: string;
75
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludeo/cloud-common",
3
- "version": "1.2.103",
3
+ "version": "1.2.104",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Yahil Didi",
@@ -97,8 +97,8 @@ export class CloudBuild {
97
97
 
98
98
  export class BuildCreationInput {
99
99
  basePath: string;
100
- executeableLaunchPath: string;
101
- runtimeEnvironment: RuntimeEnvironment;
100
+ executableLaunchPath: string;
101
+ runtimeEnvironment?: RuntimeEnvironment;
102
102
  buildVersion?: string;
103
103
  logPath?: string;
104
104
  }