waldur-js-client 7.7.2-dev.0 → 7.7.2-dev.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.
- package/dist/types.gen.d.ts +2 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5455,7 +5455,7 @@ export type OpenStackPort = {
|
|
|
5455
5455
|
state?: CoreStates;
|
|
5456
5456
|
readonly created?: string;
|
|
5457
5457
|
readonly modified?: string;
|
|
5458
|
-
readonly backend_id?: string;
|
|
5458
|
+
readonly backend_id?: string | null;
|
|
5459
5459
|
readonly access_url?: string | null;
|
|
5460
5460
|
fixed_ips?: Array<OpenStackFixedIp>;
|
|
5461
5461
|
mac_address?: string;
|
|
@@ -5531,7 +5531,7 @@ export type OpenStackRouter = {
|
|
|
5531
5531
|
state?: CoreStates;
|
|
5532
5532
|
readonly created?: string;
|
|
5533
5533
|
readonly modified?: string;
|
|
5534
|
-
backend_id?: string;
|
|
5534
|
+
backend_id?: string | null;
|
|
5535
5535
|
readonly access_url?: string | null;
|
|
5536
5536
|
tenant?: string;
|
|
5537
5537
|
readonly tenant_name?: string;
|