@ludeo/cloud-common 1.2.192-beta-yahil-3 → 1.2.192-beta-yahil-4

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.
@@ -1,4 +1,4 @@
1
- import { LudeocastV2DistributionData } from '../build';
1
+ import { LudeocastV2Distributions } from '../build';
2
2
  import { MachineResourceSettings } from '../pools';
3
3
  import { LudeoCastV2MachineResourceProviderSettings } from '../cloud';
4
4
  export declare enum MachineMode {
@@ -55,6 +55,6 @@ export interface GameSiteAdapterStatusPayload extends SiteAdapterStatusPayload {
55
55
  }
56
56
  export interface BuildSnapshotAdapterStatusPayload extends SiteAdapterStatusPayload {
57
57
  buildId?: string;
58
- distributionData?: LudeocastV2DistributionData;
58
+ distributions?: LudeocastV2Distributions;
59
59
  envIds?: string[];
60
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludeo/cloud-common",
3
- "version": "1.2.192-beta-yahil-3",
3
+ "version": "1.2.192-beta-yahil-4",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Yahil Didi",
@@ -1,5 +1,5 @@
1
1
  import { IsString, IsOptional, IsObject, IsArray } from 'class-validator';
2
- import { LudeocastV2DistributionData } from '../build';
2
+ import { LudeocastV2Distributions } from '../build';
3
3
  import { MachineResourceSettings } from '../pools';
4
4
  import { LudeoCastV2MachineResourceProviderSettings } from '../cloud';
5
5
 
@@ -86,6 +86,6 @@ export interface GameSiteAdapterStatusPayload extends SiteAdapterStatusPayload {
86
86
  export interface BuildSnapshotAdapterStatusPayload
87
87
  extends SiteAdapterStatusPayload {
88
88
  buildId?: string;
89
- distributionData?: LudeocastV2DistributionData;
89
+ distributions?: LudeocastV2Distributions;
90
90
  envIds?: string[];
91
91
  }