yellowgrid-api-ts 3.2.92 → 3.2.93

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.
package/api.ts CHANGED
@@ -2297,6 +2297,10 @@ export interface InstallationDetailsDTO {
2297
2297
  * PBX IP Address
2298
2298
  */
2299
2299
  'ipAddress'?: string | null;
2300
+ /**
2301
+ * PBX Failover IP Address
2302
+ */
2303
+ 'failoverIpAddress'?: string | null;
2300
2304
  /**
2301
2305
  * Instance ID
2302
2306
  */
package/dist/api.d.ts CHANGED
@@ -2268,6 +2268,10 @@ export interface InstallationDetailsDTO {
2268
2268
  * PBX IP Address
2269
2269
  */
2270
2270
  'ipAddress'?: string | null;
2271
+ /**
2272
+ * PBX Failover IP Address
2273
+ */
2274
+ 'failoverIpAddress'?: string | null;
2271
2275
  /**
2272
2276
  * Instance ID
2273
2277
  */
@@ -7,6 +7,7 @@ Installation Passwords
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
9
  **ipAddress** | **string** | PBX IP Address | [optional] [default to undefined]
10
+ **failoverIpAddress** | **string** | PBX Failover IP Address | [optional] [default to undefined]
10
11
  **instanceId** | **string** | Instance ID | [optional] [default to undefined]
11
12
  **project** | **string** | Project ID | [optional] [default to undefined]
12
13
  **sshKey** | [**GenericFileModel**](GenericFileModel.md) | | [optional] [default to undefined]
@@ -23,6 +24,7 @@ import { InstallationDetailsDTO } from 'yellowgrid-api-ts';
23
24
 
24
25
  const instance: InstallationDetailsDTO = {
25
26
  ipAddress,
27
+ failoverIpAddress,
26
28
  instanceId,
27
29
  project,
28
30
  sshKey,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.92",
3
+ "version": "3.2.93",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {