waldur-js-client 7.7.7-dev.8 → 7.7.7

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.
@@ -5710,6 +5710,20 @@ export type OpenStackNestedPortRequest = {
5710
5710
  };
5711
5711
  export type OpenStackNestedSecurityGroup = {
5712
5712
  url?: string;
5713
+ readonly name?: string;
5714
+ readonly description?: string;
5715
+ readonly state?: string;
5716
+ readonly rules?: Array<{
5717
+ id?: number;
5718
+ protocol?: string | null;
5719
+ from_port?: number | null;
5720
+ to_port?: number | null;
5721
+ cidr?: string | null;
5722
+ remote_group?: string | null;
5723
+ direction?: string;
5724
+ ethertype?: string;
5725
+ description?: string | null;
5726
+ }>;
5713
5727
  };
5714
5728
  export type OpenStackNestedSecurityGroupRequest = {
5715
5729
  url?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.7.7-dev.8",
3
+ "version": "7.7.7",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",