waldur-js-client 8.0.8-dev.30 → 8.0.8-dev.31

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/sdk.gen.d.ts CHANGED
@@ -5638,12 +5638,12 @@ export declare const openstackHypervisorsRetrieve: <ThrowOnError extends boolean
5638
5638
  * Get hypervisor summary statistics
5639
5639
  * Return aggregated vCPU, RAM and disk totals across all hypervisors matching the current filter (e.g. settings_uuid).
5640
5640
  */
5641
- export declare const openstackHypervisorsSummaryRetrieve: <ThrowOnError extends boolean = false>(options?: Options<OpenstackHypervisorsSummaryRetrieveData, ThrowOnError>) => import("./client").RequestResult<OpenstackHypervisorsSummaryRetrieveResponses, unknown, ThrowOnError, "fields">;
5641
+ export declare const openstackHypervisorsSummaryRetrieve: <ThrowOnError extends boolean = false>(options: Options<OpenstackHypervisorsSummaryRetrieveData, ThrowOnError>) => import("./client").RequestResult<OpenstackHypervisorsSummaryRetrieveResponses, unknown, ThrowOnError, "fields">;
5642
5642
  /**
5643
5643
  * Get hypervisor summary statistics
5644
5644
  * Get number of items in the collection matching the request parameters.
5645
5645
  */
5646
- export declare const openstackHypervisorsSummaryCount: <ThrowOnError extends boolean = false>(options?: Options<OpenstackHypervisorsSummaryCountData, ThrowOnError>) => import("./client").RequestResult<OpenstackHypervisorsSummaryCountResponses, unknown, ThrowOnError, "fields">;
5646
+ export declare const openstackHypervisorsSummaryCount: <ThrowOnError extends boolean = false>(options: Options<OpenstackHypervisorsSummaryCountData, ThrowOnError>) => import("./client").RequestResult<OpenstackHypervisorsSummaryCountResponses, unknown, ThrowOnError, "fields">;
5647
5647
  /**
5648
5648
  * List images
5649
5649
  * Get a list of available VM instance images.
package/dist/sdk.gen.js CHANGED
@@ -36819,7 +36819,7 @@ export const openstackHypervisorsRetrieve = (options) => {
36819
36819
  * Return aggregated vCPU, RAM and disk totals across all hypervisors matching the current filter (e.g. settings_uuid).
36820
36820
  */
36821
36821
  export const openstackHypervisorsSummaryRetrieve = (options) => {
36822
- return (options?.client ?? _heyApiClient).get({
36822
+ return (options.client ?? _heyApiClient).get({
36823
36823
  security: [
36824
36824
  {
36825
36825
  name: 'Authorization',
@@ -36843,7 +36843,7 @@ export const openstackHypervisorsSummaryRetrieve = (options) => {
36843
36843
  * Get number of items in the collection matching the request parameters.
36844
36844
  */
36845
36845
  export const openstackHypervisorsSummaryCount = (options) => {
36846
- return (options?.client ?? _heyApiClient).head({
36846
+ return (options.client ?? _heyApiClient).head({
36847
36847
  security: [
36848
36848
  {
36849
36849
  name: 'Authorization',
@@ -63761,7 +63761,12 @@ export type OpenstackHypervisorsRetrieveResponse = OpenstackHypervisorsRetrieveR
63761
63761
  export type OpenstackHypervisorsSummaryRetrieveData = {
63762
63762
  body?: never;
63763
63763
  path?: never;
63764
- query?: never;
63764
+ query: {
63765
+ /**
63766
+ * UUID of the OpenStack ServiceSettings to aggregate over.
63767
+ */
63768
+ settings_uuid: string;
63769
+ };
63765
63770
  url: '/api/openstack-hypervisors/summary/';
63766
63771
  };
63767
63772
  export type OpenstackHypervisorsSummaryRetrieveResponses = {
@@ -63771,7 +63776,12 @@ export type OpenstackHypervisorsSummaryRetrieveResponse = OpenstackHypervisorsSu
63771
63776
  export type OpenstackHypervisorsSummaryCountData = {
63772
63777
  body?: never;
63773
63778
  path?: never;
63774
- query?: never;
63779
+ query: {
63780
+ /**
63781
+ * UUID of the OpenStack ServiceSettings to aggregate over.
63782
+ */
63783
+ settings_uuid: string;
63784
+ };
63775
63785
  url: '/api/openstack-hypervisors/summary/';
63776
63786
  };
63777
63787
  export type OpenstackHypervisorsSummaryCountResponses = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.8-dev.30",
3
+ "version": "8.0.8-dev.31",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",