waldur-js-client 1.0.4-dev.54 → 1.0.4-dev.56

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.
@@ -1374,7 +1374,6 @@ export type ConstanceSettings = {
1374
1374
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
1375
1375
  MARKETPLACE_LANDING_PAGE?: string;
1376
1376
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
1377
- ENABLE_RESOURCE_END_DATE?: boolean;
1378
1377
  TELEMETRY_URL?: string;
1379
1378
  TELEMETRY_VERSION?: number;
1380
1379
  SCRIPT_RUN_MODE?: string;
@@ -1496,7 +1495,6 @@ export type ConstanceSettingsRequest = {
1496
1495
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
1497
1496
  MARKETPLACE_LANDING_PAGE?: string;
1498
1497
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
1499
- ENABLE_RESOURCE_END_DATE?: boolean;
1500
1498
  TELEMETRY_URL?: string;
1501
1499
  TELEMETRY_VERSION?: number;
1502
1500
  SCRIPT_RUN_MODE?: string;
@@ -7468,7 +7466,7 @@ export type RancherClusterRequest = {
7468
7466
  service_settings: string;
7469
7467
  project: string;
7470
7468
  nodes: Array<RancherNestedNodeRequest>;
7471
- tenant: string;
7469
+ tenant?: string;
7472
7470
  vm_project?: string | null;
7473
7471
  ssh_public_key?: string;
7474
7472
  /**
@@ -7494,6 +7492,7 @@ export type RancherClusterTemplateNode = {
7494
7492
  export type RancherCreateNode = {
7495
7493
  cluster: string;
7496
7494
  role: RoleEnum;
7495
+ readonly uuid: string;
7497
7496
  };
7498
7497
  export type RancherCreateNodeRequest = {
7499
7498
  cluster: string;
@@ -7506,6 +7505,7 @@ export type RancherCreateNodeRequest = {
7506
7505
  flavor?: string | null;
7507
7506
  data_volumes?: Array<DataVolumeRequest>;
7508
7507
  ssh_public_key?: string;
7508
+ tenant?: string;
7509
7509
  };
7510
7510
  export type RancherHpa = {
7511
7511
  readonly url: string;
@@ -7661,6 +7661,7 @@ export type RancherNestedNodeRequest = {
7661
7661
  memory?: number;
7662
7662
  cpu?: number;
7663
7663
  role: RoleEnum;
7664
+ tenant?: string;
7664
7665
  error_traceback?: string;
7665
7666
  backend_id?: string;
7666
7667
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "1.0.4-dev.54",
3
+ "version": "1.0.4-dev.56",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",