waldur-js-client 8.0.8-dev.41 → 8.0.8-dev.42

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.js CHANGED
@@ -7857,11 +7857,7 @@ export const chatThreadsArchive = (options) => {
7857
7857
  }
7858
7858
  ],
7859
7859
  url: '/api/chat-threads/{uuid}/archive/',
7860
- ...options,
7861
- headers: {
7862
- 'Content-Type': 'application/json',
7863
- ...options.headers
7864
- }
7860
+ ...options
7865
7861
  });
7866
7862
  };
7867
7863
  /**
@@ -7913,11 +7909,7 @@ export const chatThreadsUnarchive = (options) => {
7913
7909
  }
7914
7910
  ],
7915
7911
  url: '/api/chat-threads/{uuid}/unarchive/',
7916
- ...options,
7917
- headers: {
7918
- 'Content-Type': 'application/json',
7919
- ...options.headers
7920
- }
7912
+ ...options
7921
7913
  });
7922
7914
  };
7923
7915
  /**
@@ -9332,11 +9324,7 @@ export const customerCreditsApplyCompensations = (options) => {
9332
9324
  }
9333
9325
  ],
9334
9326
  url: '/api/customer-credits/{uuid}/apply_compensations/',
9335
- ...options,
9336
- headers: {
9337
- 'Content-Type': 'application/json',
9338
- ...options.headers
9339
- }
9327
+ ...options
9340
9328
  });
9341
9329
  };
9342
9330
  export const customerCreditsClearCompensations = (options) => {
@@ -9356,11 +9344,7 @@ export const customerCreditsClearCompensations = (options) => {
9356
9344
  }
9357
9345
  ],
9358
9346
  url: '/api/customer-credits/{uuid}/clear_compensations/',
9359
- ...options,
9360
- headers: {
9361
- 'Content-Type': 'application/json',
9362
- ...options.headers
9363
- }
9347
+ ...options
9364
9348
  });
9365
9349
  };
9366
9350
  /**
@@ -29526,11 +29510,7 @@ export const marketplaceSoftwareCatalogsUpdateCatalog = (options) => {
29526
29510
  }
29527
29511
  ],
29528
29512
  url: '/api/marketplace-software-catalogs/{uuid}/update_catalog/',
29529
- ...options,
29530
- headers: {
29531
- 'Content-Type': 'application/json',
29532
- ...options.headers
29533
- }
29513
+ ...options
29534
29514
  });
29535
29515
  };
29536
29516
  /**
@@ -46738,11 +46718,7 @@ export const proposalProtectedCallsComputeAffinities = (options) => {
46738
46718
  }
46739
46719
  ],
46740
46720
  url: '/api/proposal-protected-calls/{uuid}/compute-affinities/',
46741
- ...options,
46742
- headers: {
46743
- 'Content-Type': 'application/json',
46744
- ...options.headers
46745
- }
46721
+ ...options
46746
46722
  });
46747
46723
  };
46748
46724
  /**
@@ -48975,11 +48951,7 @@ export const rancherCatalogsRefresh = (options) => {
48975
48951
  }
48976
48952
  ],
48977
48953
  url: '/api/rancher-catalogs/{uuid}/refresh/',
48978
- ...options,
48979
- headers: {
48980
- 'Content-Type': 'application/json',
48981
- ...options.headers
48982
- }
48954
+ ...options
48983
48955
  });
48984
48956
  };
48985
48957
  export const rancherClusterSecurityGroupsList = (options) => {
@@ -55293,11 +55265,7 @@ export const supportIssuesSync = (options) => {
55293
55265
  }
55294
55266
  ],
55295
55267
  url: '/api/support-issues/{uuid}/sync/',
55296
- ...options,
55297
- headers: {
55298
- 'Content-Type': 'application/json',
55299
- ...options.headers
55300
- }
55268
+ ...options
55301
55269
  });
55302
55270
  };
55303
55271
  export const supportJiraWebhook = (options) => {
@@ -5789,15 +5789,6 @@ export type CustomerCreditConsumption = {
5789
5789
  readonly date: string;
5790
5790
  readonly price: string;
5791
5791
  };
5792
- export type CustomerCreditRequest = {
5793
- value?: string;
5794
- customer: string;
5795
- end_date?: string | null;
5796
- expected_consumption?: string;
5797
- minimal_consumption_logic?: MinimalConsumptionLogicEnum;
5798
- grace_coefficient?: string;
5799
- apply_as_minimal_consumption?: boolean;
5800
- };
5801
5792
  export type CustomerDetails = {
5802
5793
  name?: string;
5803
5794
  address?: string;
@@ -9752,6 +9743,10 @@ export type MergedPluginOptions = {
9752
9743
  * Enable sub-project management within resources.
9753
9744
  */
9754
9745
  enable_resource_projects?: boolean;
9746
+ /**
9747
+ * If set to True, every limit-billing component declared by the offering must have a value when creating or updating a resource project. Use this for backends that reject projects without resource quotas (e.g. the rancher-keycloak-operator's project-level resourceQuota.limit cap).
9748
+ */
9749
+ resource_projects_limits_required?: boolean;
9755
9750
  /**
9756
9751
  * If set to True, create orders when resource projects are created, updated or deleted.
9757
9752
  */
@@ -10046,6 +10041,10 @@ export type MergedPluginOptionsRequest = {
10046
10041
  * Enable sub-project management within resources.
10047
10042
  */
10048
10043
  enable_resource_projects?: boolean;
10044
+ /**
10045
+ * If set to True, every limit-billing component declared by the offering must have a value when creating or updating a resource project. Use this for backends that reject projects without resource quotas (e.g. the rancher-keycloak-operator's project-level resourceQuota.limit cap).
10046
+ */
10047
+ resource_projects_limits_required?: boolean;
10049
10048
  /**
10050
10049
  * If set to True, create orders when resource projects are created, updated or deleted.
10051
10050
  */
@@ -11233,10 +11232,6 @@ export type NestedProviderOffering = {
11233
11232
  type: string;
11234
11233
  name: string;
11235
11234
  };
11236
- export type NestedProviderOfferingRequest = {
11237
- type: string;
11238
- name: string;
11239
- };
11240
11235
  export type NestedPublicOffering = {
11241
11236
  readonly uuid: string;
11242
11237
  readonly url: string;
@@ -20426,13 +20421,6 @@ export type RancherCatalogCreateRequest = {
20426
20421
  username?: string;
20427
20422
  password?: string;
20428
20423
  };
20429
- export type RancherCatalogRequest = {
20430
- name: string;
20431
- description?: string;
20432
- catalog_url: string;
20433
- branch: string;
20434
- scope: string;
20435
- };
20436
20424
  export type RancherCatalogScopeType = 'global' | 'cluster' | 'project';
20437
20425
  export type RancherCatalogUpdate = {
20438
20426
  readonly uuid: string;
@@ -31291,11 +31279,9 @@ export type AwsInstancesRestartData = {
31291
31279
  url: '/api/aws-instances/{uuid}/restart/';
31292
31280
  };
31293
31281
  export type AwsInstancesRestartResponses = {
31294
- /**
31295
- * No response body
31296
- */
31297
- 200: unknown;
31282
+ 200: AwsInstance;
31298
31283
  };
31284
+ export type AwsInstancesRestartResponse = AwsInstancesRestartResponses[keyof AwsInstancesRestartResponses];
31299
31285
  export type AwsInstancesSetErredData = {
31300
31286
  body?: SetErredRequest;
31301
31287
  path: {
@@ -31329,11 +31315,9 @@ export type AwsInstancesStartData = {
31329
31315
  url: '/api/aws-instances/{uuid}/start/';
31330
31316
  };
31331
31317
  export type AwsInstancesStartResponses = {
31332
- /**
31333
- * No response body
31334
- */
31335
- 200: unknown;
31318
+ 200: AwsInstance;
31336
31319
  };
31320
+ export type AwsInstancesStartResponse = AwsInstancesStartResponses[keyof AwsInstancesStartResponses];
31337
31321
  export type AwsInstancesStopData = {
31338
31322
  body?: never;
31339
31323
  path: {
@@ -31343,11 +31327,9 @@ export type AwsInstancesStopData = {
31343
31327
  url: '/api/aws-instances/{uuid}/stop/';
31344
31328
  };
31345
31329
  export type AwsInstancesStopResponses = {
31346
- /**
31347
- * No response body
31348
- */
31349
- 200: unknown;
31330
+ 200: AwsInstance;
31350
31331
  };
31332
+ export type AwsInstancesStopResponse = AwsInstancesStopResponses[keyof AwsInstancesStopResponses];
31351
31333
  export type AwsInstancesUnlinkData = {
31352
31334
  body?: never;
31353
31335
  path: {
@@ -31626,11 +31608,9 @@ export type AwsVolumesDetachData = {
31626
31608
  url: '/api/aws-volumes/{uuid}/detach/';
31627
31609
  };
31628
31610
  export type AwsVolumesDetachResponses = {
31629
- /**
31630
- * No response body
31631
- */
31632
- 200: unknown;
31611
+ 200: AwsVolume;
31633
31612
  };
31613
+ export type AwsVolumesDetachResponse = AwsVolumesDetachResponses[keyof AwsVolumesDetachResponses];
31634
31614
  export type AwsVolumesPullData = {
31635
31615
  body?: never;
31636
31616
  path: {
@@ -33203,11 +33183,9 @@ export type AzureVirtualmachinesRestartData = {
33203
33183
  url: '/api/azure-virtualmachines/{uuid}/restart/';
33204
33184
  };
33205
33185
  export type AzureVirtualmachinesRestartResponses = {
33206
- /**
33207
- * No response body
33208
- */
33209
- 200: unknown;
33186
+ 200: AzureVirtualMachine;
33210
33187
  };
33188
+ export type AzureVirtualmachinesRestartResponse = AzureVirtualmachinesRestartResponses[keyof AzureVirtualmachinesRestartResponses];
33211
33189
  export type AzureVirtualmachinesSetErredData = {
33212
33190
  body?: SetErredRequest;
33213
33191
  path: {
@@ -33241,11 +33219,9 @@ export type AzureVirtualmachinesStartData = {
33241
33219
  url: '/api/azure-virtualmachines/{uuid}/start/';
33242
33220
  };
33243
33221
  export type AzureVirtualmachinesStartResponses = {
33244
- /**
33245
- * No response body
33246
- */
33247
- 200: unknown;
33222
+ 200: AzureVirtualMachine;
33248
33223
  };
33224
+ export type AzureVirtualmachinesStartResponse = AzureVirtualmachinesStartResponses[keyof AzureVirtualmachinesStartResponses];
33249
33225
  export type AzureVirtualmachinesStopData = {
33250
33226
  body?: never;
33251
33227
  path: {
@@ -33255,11 +33231,9 @@ export type AzureVirtualmachinesStopData = {
33255
33231
  url: '/api/azure-virtualmachines/{uuid}/stop/';
33256
33232
  };
33257
33233
  export type AzureVirtualmachinesStopResponses = {
33258
- /**
33259
- * No response body
33260
- */
33261
- 200: unknown;
33234
+ 200: AzureVirtualMachine;
33262
33235
  };
33236
+ export type AzureVirtualmachinesStopResponse = AzureVirtualmachinesStopResponses[keyof AzureVirtualmachinesStopResponses];
33263
33237
  export type AzureVirtualmachinesUnlinkData = {
33264
33238
  body?: never;
33265
33239
  path: {
@@ -34155,11 +34129,9 @@ export type BookingResourcesAcceptData = {
34155
34129
  url: '/api/booking-resources/{uuid}/accept/';
34156
34130
  };
34157
34131
  export type BookingResourcesAcceptResponses = {
34158
- /**
34159
- * No response body
34160
- */
34161
- 200: unknown;
34132
+ 200: BookingResource;
34162
34133
  };
34134
+ export type BookingResourcesAcceptResponse = BookingResourcesAcceptResponses[keyof BookingResourcesAcceptResponses];
34163
34135
  export type BookingResourcesRejectData = {
34164
34136
  body?: never;
34165
34137
  path: {
@@ -34169,11 +34141,9 @@ export type BookingResourcesRejectData = {
34169
34141
  url: '/api/booking-resources/{uuid}/reject/';
34170
34142
  };
34171
34143
  export type BookingResourcesRejectResponses = {
34172
- /**
34173
- * No response body
34174
- */
34175
- 200: unknown;
34144
+ 200: BookingResource;
34176
34145
  };
34146
+ export type BookingResourcesRejectResponse = BookingResourcesRejectResponses[keyof BookingResourcesRejectResponses];
34177
34147
  export type BroadcastMessageTemplatesListData = {
34178
34148
  body?: never;
34179
34149
  path?: never;
@@ -35549,7 +35519,7 @@ export type ChatThreadsRetrieveResponses = {
35549
35519
  };
35550
35520
  export type ChatThreadsRetrieveResponse = ChatThreadsRetrieveResponses[keyof ChatThreadsRetrieveResponses];
35551
35521
  export type ChatThreadsArchiveData = {
35552
- body?: ThreadSessionRequest;
35522
+ body?: never;
35553
35523
  path: {
35554
35524
  uuid: string;
35555
35525
  };
@@ -35578,7 +35548,7 @@ export type ChatThreadsCancelResponses = {
35578
35548
  200: unknown;
35579
35549
  };
35580
35550
  export type ChatThreadsUnarchiveData = {
35581
- body?: ThreadSessionRequest;
35551
+ body?: never;
35582
35552
  path: {
35583
35553
  uuid: string;
35584
35554
  };
@@ -36672,7 +36642,7 @@ export type CustomerCreditsUpdateResponses = {
36672
36642
  };
36673
36643
  export type CustomerCreditsUpdateResponse = CustomerCreditsUpdateResponses[keyof CustomerCreditsUpdateResponses];
36674
36644
  export type CustomerCreditsApplyCompensationsData = {
36675
- body: CustomerCreditRequest;
36645
+ body?: never;
36676
36646
  path: {
36677
36647
  uuid: string;
36678
36648
  };
@@ -36684,7 +36654,7 @@ export type CustomerCreditsApplyCompensationsResponses = {
36684
36654
  };
36685
36655
  export type CustomerCreditsApplyCompensationsResponse = CustomerCreditsApplyCompensationsResponses[keyof CustomerCreditsApplyCompensationsResponses];
36686
36656
  export type CustomerCreditsClearCompensationsData = {
36687
- body: CustomerCreditRequest;
36657
+ body?: never;
36688
36658
  path: {
36689
36659
  uuid: string;
36690
36660
  };
@@ -38363,11 +38333,9 @@ export type DigitaloceanDropletsRestartData = {
38363
38333
  url: '/api/digitalocean-droplets/{uuid}/restart/';
38364
38334
  };
38365
38335
  export type DigitaloceanDropletsRestartResponses = {
38366
- /**
38367
- * No response body
38368
- */
38369
- 200: unknown;
38336
+ 200: DigitalOceanDroplet;
38370
38337
  };
38338
+ export type DigitaloceanDropletsRestartResponse = DigitaloceanDropletsRestartResponses[keyof DigitaloceanDropletsRestartResponses];
38371
38339
  export type DigitaloceanDropletsSetErredData = {
38372
38340
  body?: SetErredRequest;
38373
38341
  path: {
@@ -38401,11 +38369,9 @@ export type DigitaloceanDropletsStartData = {
38401
38369
  url: '/api/digitalocean-droplets/{uuid}/start/';
38402
38370
  };
38403
38371
  export type DigitaloceanDropletsStartResponses = {
38404
- /**
38405
- * No response body
38406
- */
38407
- 200: unknown;
38372
+ 200: DigitalOceanDroplet;
38408
38373
  };
38374
+ export type DigitaloceanDropletsStartResponse = DigitaloceanDropletsStartResponses[keyof DigitaloceanDropletsStartResponses];
38409
38375
  export type DigitaloceanDropletsStopData = {
38410
38376
  body?: never;
38411
38377
  path: {
@@ -38415,11 +38381,9 @@ export type DigitaloceanDropletsStopData = {
38415
38381
  url: '/api/digitalocean-droplets/{uuid}/stop/';
38416
38382
  };
38417
38383
  export type DigitaloceanDropletsStopResponses = {
38418
- /**
38419
- * No response body
38420
- */
38421
- 200: unknown;
38384
+ 200: DigitalOceanDroplet;
38422
38385
  };
38386
+ export type DigitaloceanDropletsStopResponse = DigitaloceanDropletsStopResponses[keyof DigitaloceanDropletsStopResponses];
38423
38387
  export type DigitaloceanDropletsUnlinkData = {
38424
38388
  body?: never;
38425
38389
  path: {
@@ -40863,11 +40827,9 @@ export type InvoicesSendNotificationData = {
40863
40827
  url: '/api/invoices/{uuid}/send_notification/';
40864
40828
  };
40865
40829
  export type InvoicesSendNotificationResponses = {
40866
- /**
40867
- * No response body
40868
- */
40869
- 200: unknown;
40830
+ 200: Invoice;
40870
40831
  };
40832
+ export type InvoicesSendNotificationResponse = InvoicesSendNotificationResponses[keyof InvoicesSendNotificationResponses];
40871
40833
  export type InvoicesSetBackendIdData = {
40872
40834
  body?: BackendIdRequest;
40873
40835
  path: {
@@ -57149,7 +57111,7 @@ export type MarketplaceSoftwareCatalogsUpdateResponses = {
57149
57111
  };
57150
57112
  export type MarketplaceSoftwareCatalogsUpdateResponse = MarketplaceSoftwareCatalogsUpdateResponses[keyof MarketplaceSoftwareCatalogsUpdateResponses];
57151
57113
  export type MarketplaceSoftwareCatalogsUpdateCatalogData = {
57152
- body: SoftwareCatalogRequest;
57114
+ body?: never;
57153
57115
  path: {
57154
57116
  uuid: string;
57155
57117
  };
@@ -69246,11 +69208,9 @@ export type OpenstackSubnetsConnectData = {
69246
69208
  url: '/api/openstack-subnets/{uuid}/connect/';
69247
69209
  };
69248
69210
  export type OpenstackSubnetsConnectResponses = {
69249
- /**
69250
- * No response body
69251
- */
69252
- 200: unknown;
69211
+ 200: OpenStackSubNet;
69253
69212
  };
69213
+ export type OpenstackSubnetsConnectResponse = OpenstackSubnetsConnectResponses[keyof OpenstackSubnetsConnectResponses];
69254
69214
  export type OpenstackSubnetsDisconnectData = {
69255
69215
  body?: never;
69256
69216
  path: {
@@ -69260,11 +69220,9 @@ export type OpenstackSubnetsDisconnectData = {
69260
69220
  url: '/api/openstack-subnets/{uuid}/disconnect/';
69261
69221
  };
69262
69222
  export type OpenstackSubnetsDisconnectResponses = {
69263
- /**
69264
- * No response body
69265
- */
69266
- 200: unknown;
69223
+ 200: OpenStackSubNet;
69267
69224
  };
69225
+ export type OpenstackSubnetsDisconnectResponse = OpenstackSubnetsDisconnectResponses[keyof OpenstackSubnetsDisconnectResponses];
69268
69226
  export type OpenstackSubnetsPullData = {
69269
69227
  body?: never;
69270
69228
  path: {
@@ -71056,11 +71014,9 @@ export type PaymentProfilesEnableData = {
71056
71014
  url: '/api/payment-profiles/{uuid}/enable/';
71057
71015
  };
71058
71016
  export type PaymentProfilesEnableResponses = {
71059
- /**
71060
- * No response body
71061
- */
71062
- 200: unknown;
71017
+ 200: PaymentProfile;
71063
71018
  };
71019
+ export type PaymentProfilesEnableResponse = PaymentProfilesEnableResponses[keyof PaymentProfilesEnableResponses];
71064
71020
  export type PaymentsListData = {
71065
71021
  body?: never;
71066
71022
  path?: never;
@@ -71189,11 +71145,9 @@ export type PaymentsUnlinkFromInvoiceData = {
71189
71145
  url: '/api/payments/{uuid}/unlink_from_invoice/';
71190
71146
  };
71191
71147
  export type PaymentsUnlinkFromInvoiceResponses = {
71192
- /**
71193
- * No response body
71194
- */
71195
- 200: unknown;
71148
+ 200: Payment;
71196
71149
  };
71150
+ export type PaymentsUnlinkFromInvoiceResponse = PaymentsUnlinkFromInvoiceResponses[keyof PaymentsUnlinkFromInvoiceResponses];
71197
71151
  export type PersonalAccessTokensListData = {
71198
71152
  body?: never;
71199
71153
  path?: never;
@@ -73509,7 +73463,7 @@ export type ProposalProtectedCallsComplianceOverviewRetrieveResponses = {
73509
73463
  };
73510
73464
  export type ProposalProtectedCallsComplianceOverviewRetrieveResponse = ProposalProtectedCallsComplianceOverviewRetrieveResponses[keyof ProposalProtectedCallsComplianceOverviewRetrieveResponses];
73511
73465
  export type ProposalProtectedCallsComputeAffinitiesData = {
73512
- body: ProtectedCallRequest;
73466
+ body?: never;
73513
73467
  path: {
73514
73468
  uuid: string;
73515
73469
  };
@@ -75547,7 +75501,7 @@ export type RancherCatalogsUpdateResponses = {
75547
75501
  };
75548
75502
  export type RancherCatalogsUpdateResponse = RancherCatalogsUpdateResponses[keyof RancherCatalogsUpdateResponses];
75549
75503
  export type RancherCatalogsRefreshData = {
75550
- body: RancherCatalogRequest;
75504
+ body?: never;
75551
75505
  path: {
75552
75506
  uuid: string;
75553
75507
  };
@@ -80985,7 +80939,7 @@ export type SupportIssuesCommentResponses = {
80985
80939
  };
80986
80940
  export type SupportIssuesCommentResponse = SupportIssuesCommentResponses[keyof SupportIssuesCommentResponses];
80987
80941
  export type SupportIssuesSyncData = {
80988
- body: IssueRequest;
80942
+ body?: never;
80989
80943
  path: {
80990
80944
  uuid: string;
80991
80945
  };
@@ -85790,11 +85744,9 @@ export type VmwareVirtualMachineRebootGuestData = {
85790
85744
  url: '/api/vmware-virtual-machine/{uuid}/reboot_guest/';
85791
85745
  };
85792
85746
  export type VmwareVirtualMachineRebootGuestResponses = {
85793
- /**
85794
- * No response body
85795
- */
85796
- 200: unknown;
85747
+ 200: VmwareVirtualMachine;
85797
85748
  };
85749
+ export type VmwareVirtualMachineRebootGuestResponse = VmwareVirtualMachineRebootGuestResponses[keyof VmwareVirtualMachineRebootGuestResponses];
85798
85750
  export type VmwareVirtualMachineResetData = {
85799
85751
  body?: never;
85800
85752
  path: {
@@ -85804,11 +85756,9 @@ export type VmwareVirtualMachineResetData = {
85804
85756
  url: '/api/vmware-virtual-machine/{uuid}/reset/';
85805
85757
  };
85806
85758
  export type VmwareVirtualMachineResetResponses = {
85807
- /**
85808
- * No response body
85809
- */
85810
- 200: unknown;
85759
+ 200: VmwareVirtualMachine;
85811
85760
  };
85761
+ export type VmwareVirtualMachineResetResponse = VmwareVirtualMachineResetResponses[keyof VmwareVirtualMachineResetResponses];
85812
85762
  export type VmwareVirtualMachineSetErredData = {
85813
85763
  body?: SetErredRequest;
85814
85764
  path: {
@@ -85842,11 +85792,9 @@ export type VmwareVirtualMachineShutdownGuestData = {
85842
85792
  url: '/api/vmware-virtual-machine/{uuid}/shutdown_guest/';
85843
85793
  };
85844
85794
  export type VmwareVirtualMachineShutdownGuestResponses = {
85845
- /**
85846
- * No response body
85847
- */
85848
- 200: unknown;
85795
+ 200: VmwareVirtualMachine;
85849
85796
  };
85797
+ export type VmwareVirtualMachineShutdownGuestResponse = VmwareVirtualMachineShutdownGuestResponses[keyof VmwareVirtualMachineShutdownGuestResponses];
85850
85798
  export type VmwareVirtualMachineStartData = {
85851
85799
  body?: never;
85852
85800
  path: {
@@ -85856,11 +85804,9 @@ export type VmwareVirtualMachineStartData = {
85856
85804
  url: '/api/vmware-virtual-machine/{uuid}/start/';
85857
85805
  };
85858
85806
  export type VmwareVirtualMachineStartResponses = {
85859
- /**
85860
- * No response body
85861
- */
85862
- 200: unknown;
85807
+ 200: VmwareVirtualMachine;
85863
85808
  };
85809
+ export type VmwareVirtualMachineStartResponse = VmwareVirtualMachineStartResponses[keyof VmwareVirtualMachineStartResponses];
85864
85810
  export type VmwareVirtualMachineStopData = {
85865
85811
  body?: never;
85866
85812
  path: {
@@ -85870,11 +85816,9 @@ export type VmwareVirtualMachineStopData = {
85870
85816
  url: '/api/vmware-virtual-machine/{uuid}/stop/';
85871
85817
  };
85872
85818
  export type VmwareVirtualMachineStopResponses = {
85873
- /**
85874
- * No response body
85875
- */
85876
- 200: unknown;
85819
+ 200: VmwareVirtualMachine;
85877
85820
  };
85821
+ export type VmwareVirtualMachineStopResponse = VmwareVirtualMachineStopResponses[keyof VmwareVirtualMachineStopResponses];
85878
85822
  export type VmwareVirtualMachineSuspendData = {
85879
85823
  body?: never;
85880
85824
  path: {
@@ -85884,11 +85828,9 @@ export type VmwareVirtualMachineSuspendData = {
85884
85828
  url: '/api/vmware-virtual-machine/{uuid}/suspend/';
85885
85829
  };
85886
85830
  export type VmwareVirtualMachineSuspendResponses = {
85887
- /**
85888
- * No response body
85889
- */
85890
- 200: unknown;
85831
+ 200: VmwareVirtualMachine;
85891
85832
  };
85833
+ export type VmwareVirtualMachineSuspendResponse = VmwareVirtualMachineSuspendResponses[keyof VmwareVirtualMachineSuspendResponses];
85892
85834
  export type VmwareVirtualMachineUnlinkData = {
85893
85835
  body?: never;
85894
85836
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.8-dev.41",
3
+ "version": "8.0.8-dev.42",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",