@sinch/voice 1.4.0 → 1.4.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.
@@ -5,7 +5,7 @@ import { CallsApi } from './calls';
5
5
  import { CalloutsApi } from './callouts';
6
6
  export declare class LazyVoiceApiClient {
7
7
  sharedConfig: SinchClientParameters;
8
- private apiFetchClient?;
8
+ apiFetchClient?: ApiFetchClient;
9
9
  constructor(sharedConfig: SinchClientParameters);
10
10
  getApiClient(): ApiFetchClient;
11
11
  resetApiClient(): void;
@@ -13,7 +13,7 @@ export declare class LazyVoiceApiClient {
13
13
  }
14
14
  export declare class LazyVoiceApplicationManagementApiClient {
15
15
  sharedConfig: SinchClientParameters;
16
- private apiFetchClient?;
16
+ apiFetchClient?: ApiFetchClient;
17
17
  constructor(sharedConfig: SinchClientParameters);
18
18
  getApiClient(): ApiFetchClient;
19
19
  resetApiClient(): void;
@@ -30,8 +30,8 @@ export declare class VoiceService {
30
30
  readonly conferences: ConferencesApi;
31
31
  readonly calls: CallsApi;
32
32
  readonly callouts: CalloutsApi;
33
- private readonly lazyVoiceClient;
34
- private readonly lazyVoiceAppMgmtClient;
33
+ readonly lazyVoiceClient: LazyVoiceApiClient;
34
+ readonly lazyVoiceAppMgmtClient: LazyVoiceApplicationManagementApiClient;
35
35
  /**
36
36
  * Create a new VoiceService instance with its configuration. It needs the following parameters for authentication:
37
37
  * - `applicationKey`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinch/voice",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Sinch Voice API",
5
5
  "homepage": "",
6
6
  "repository": {
@@ -29,7 +29,7 @@
29
29
  "test:e2e": "cucumber-js"
30
30
  },
31
31
  "dependencies": {
32
- "@sinch/sdk-client": "^1.4.0"
32
+ "@sinch/sdk-client": "1.4.0"
33
33
  },
34
34
  "devDependencies": {},
35
35
  "publishConfig": {