@ludeo/cloud-common 1.2.103 → 1.2.105

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.
@@ -27,7 +27,7 @@ export declare class BuildMetadata {
27
27
  }
28
28
  export declare class AwsArtifactData {
29
29
  basePath: string;
30
- executeableLaunchPath: string;
30
+ executableLaunchPath: string;
31
31
  runtimeEnvironmentConfigurationMap: RuntimeEnvironmentConfigurationMap;
32
32
  applicationName: string;
33
33
  applicationIdentifier?: string;
@@ -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.105",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Yahil Didi",
@@ -47,7 +47,7 @@ export class BuildMetadata {
47
47
 
48
48
  export class AwsArtifactData {
49
49
  basePath: string;
50
- executeableLaunchPath: string;
50
+ executableLaunchPath: string;
51
51
  runtimeEnvironmentConfigurationMap: RuntimeEnvironmentConfigurationMap;
52
52
  applicationName: string;
53
53
  applicationIdentifier?: string;
@@ -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
  }