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

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',
@@ -3738,6 +3738,18 @@ export type ChatResponse = {
3738
3738
  * Available offering options [{uuid, name}]. Present when status='offering_form'.
3739
3739
  */
3740
3740
  offerings?: Array<unknown>;
3741
+ /**
3742
+ * Network name (e.g. 'default'). Present when status='preview'.
3743
+ */
3744
+ network?: string;
3745
+ /**
3746
+ * SSH key name. Present when status='preview'.
3747
+ */
3748
+ ssh_key_name?: string;
3749
+ /**
3750
+ * System volume size in GB. Present when status='preview'.
3751
+ */
3752
+ system_volume_size?: number;
3741
3753
  /**
3742
3754
  * Customer/organization UUID filter hint. Present when k='resource_list'.
3743
3755
  */
@@ -10366,9 +10378,9 @@ export type Message = {
10366
10378
  role: MessageRoleEnum;
10367
10379
  readonly blocks: Array<{
10368
10380
  id: string;
10369
- key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool';
10381
+ key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'ask_user_form' | 'tool';
10370
10382
  status: string;
10371
- [key: string]: unknown | string | ('markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool');
10383
+ [key: string]: unknown | string | ('markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'ask_user_form' | 'tool');
10372
10384
  }>;
10373
10385
  readonly warning: string;
10374
10386
  readonly sequence_index: number;
@@ -63761,7 +63773,12 @@ export type OpenstackHypervisorsRetrieveResponse = OpenstackHypervisorsRetrieveR
63761
63773
  export type OpenstackHypervisorsSummaryRetrieveData = {
63762
63774
  body?: never;
63763
63775
  path?: never;
63764
- query?: never;
63776
+ query: {
63777
+ /**
63778
+ * UUID of the OpenStack ServiceSettings to aggregate over.
63779
+ */
63780
+ settings_uuid: string;
63781
+ };
63765
63782
  url: '/api/openstack-hypervisors/summary/';
63766
63783
  };
63767
63784
  export type OpenstackHypervisorsSummaryRetrieveResponses = {
@@ -63771,7 +63788,12 @@ export type OpenstackHypervisorsSummaryRetrieveResponse = OpenstackHypervisorsSu
63771
63788
  export type OpenstackHypervisorsSummaryCountData = {
63772
63789
  body?: never;
63773
63790
  path?: never;
63774
- query?: never;
63791
+ query: {
63792
+ /**
63793
+ * UUID of the OpenStack ServiceSettings to aggregate over.
63794
+ */
63795
+ settings_uuid: string;
63796
+ };
63775
63797
  url: '/api/openstack-hypervisors/summary/';
63776
63798
  };
63777
63799
  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.32",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",