@ludeo/cloud-common 1.2.186-beta-yahil-5 → 1.2.187-beta-yahil-1

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.
@@ -2,5 +2,6 @@ import { TypeHelpOptions } from "class-transformer";
2
2
  import { AWSProviderSettings } from "./aws";
3
3
  import { MockProviderSettings } from "./mock";
4
4
  import { LudeoCastProviderSettings } from "./ludeocast";
5
- export type CloudProviderSettings = AWSProviderSettings | MockProviderSettings | LudeoCastProviderSettings;
5
+ import { LudeoCastV2ProviderSettings } from "./ludeocast-v2/provider-settings";
6
+ export type CloudProviderSettings = AWSProviderSettings | MockProviderSettings | LudeoCastProviderSettings | LudeoCastV2ProviderSettings;
6
7
  export declare const getProviderSettingsType: ({ object, property, }: TypeHelpOptions) => typeof MockProviderSettings | typeof LudeoCastProviderSettings;
@@ -1 +1 @@
1
- {"version":3,"file":"provider-settings.js","sourceRoot":"","sources":["../../../../src/v4/types/cloud/provider-settings.ts"],"names":[],"mappings":";;;AACA,+BAA4C;AAC5C,iCAA8C;AAC9C,2CAAwD;AAOjD,MAAM,uBAAuB,GAAG,CAAC,EACtC,MAAM,EACN,QAAQ,GACQ,EAAE,EAAE;IACpB,MAAM,gBAAgB,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;IAC1C,IAAI,eAAe,IAAI,gBAAgB,EAAE,CAAC;QACxC,OAAO,yBAAmB,CAAC;IAC7B,CAAC;IAED,IAAI,cAAc,IAAI,gBAAgB,EAAE,CAAC;QACvC,OAAO,qCAAyB,CAAC;IACnC,CAAC;IAED,OAAO,2BAAoB,CAAC;AAC9B,CAAC,CAAC;AAdW,QAAA,uBAAuB,2BAclC"}
1
+ {"version":3,"file":"provider-settings.js","sourceRoot":"","sources":["../../../../src/v4/types/cloud/provider-settings.ts"],"names":[],"mappings":";;;AACA,+BAA4C;AAC5C,iCAA8C;AAC9C,2CAAwD;AASjD,MAAM,uBAAuB,GAAG,CAAC,EACtC,MAAM,EACN,QAAQ,GACQ,EAAE,EAAE;IACpB,MAAM,gBAAgB,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;IAC1C,IAAI,eAAe,IAAI,gBAAgB,EAAE,CAAC;QACxC,OAAO,yBAAmB,CAAC;IAC7B,CAAC;IAED,IAAI,cAAc,IAAI,gBAAgB,EAAE,CAAC;QACvC,OAAO,qCAAyB,CAAC;IACnC,CAAC;IAED,OAAO,2BAAoB,CAAC;AAC9B,CAAC,CAAC;AAdW,QAAA,uBAAuB,2BAclC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludeo/cloud-common",
3
- "version": "1.2.186-beta-yahil-5",
3
+ "version": "1.2.187-beta-yahil-1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Yahil Didi",
@@ -3,12 +3,12 @@ import { LudeoEvent } from "../../infra/ludeo-event";
3
3
  import { ValidateNestedType } from "../../decorators/validate-nested-type.decorator";
4
4
 
5
5
  export enum LudeoCastStreamState {
6
- UNKNOWN = "Unknown", // Unknown state, should not occur
7
- STARTING = "Starting", // Initial state during sidecar startup
6
+ UNKNOWN = "Unknown", // [deprecated] Unknown state, should not occur
7
+ STARTING = "Starting", // [deprecated] Initial state during sidecar startup
8
8
  IDLE = "Idle", // Initialized and ready for WebRTC
9
9
  CONNECTING = "Connecting", // WebRTC connection in progress
10
10
  CONNECTED = "Connected", // WebRTC connection established
11
- STOPPING = "Stopping", // Graceful shutdown initiated
11
+ STOPPING = "Stopping", // [deprecated] Graceful shutdown initiated
12
12
  STOPPED = "Stopped", // Shutdown completed
13
13
  FAULTED = "Faulted", // Error state, requires intervention
14
14
  }
@@ -2,11 +2,13 @@ import { TypeHelpOptions } from "class-transformer";
2
2
  import { AWSProviderSettings } from "./aws";
3
3
  import { MockProviderSettings } from "./mock";
4
4
  import { LudeoCastProviderSettings } from "./ludeocast";
5
+ import { LudeoCastV2ProviderSettings } from "./ludeocast-v2/provider-settings";
5
6
 
6
7
  export type CloudProviderSettings =
7
8
  | AWSProviderSettings
8
9
  | MockProviderSettings
9
- | LudeoCastProviderSettings;
10
+ | LudeoCastProviderSettings
11
+ | LudeoCastV2ProviderSettings;
10
12
 
11
13
  export const getProviderSettingsType = ({
12
14
  object,