@rork8s/ror-resources 1.2.1 → 1.2.2

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.
@@ -535,6 +535,7 @@ export interface KubernetesClusterNodePoolStatus {
535
535
  machineClass: string;
536
536
  autoscaling: KubernetesClusterAutoscalingConfig;
537
537
  resources: KubernetesClusterStatusClusterStatusResources;
538
+ nodes: string[];
538
539
  }
539
540
  export interface KubernetesClusterControlPlaneStatus {
540
541
  status: string;
@@ -542,6 +543,7 @@ export interface KubernetesClusterControlPlaneStatus {
542
543
  scale: number;
543
544
  machineClass: string;
544
545
  resources: KubernetesClusterStatusClusterStatusResources;
546
+ nodes: string[];
545
547
  }
546
548
  export interface KubernetesClusterStatusPrice {
547
549
  monthly: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "author": "ROR Team",
3
- "commit": "ae157ab",
3
+ "commit": "67d484c",
4
4
  "description": "ROR resource models",
5
5
  "devDependencies": {
6
6
  "prettier": "^3.4.2",
@@ -57,5 +57,5 @@
57
57
  }
58
58
  },
59
59
  "typings": "dist/index.d.ts",
60
- "version": "1.2.1"
60
+ "version": "1.2.2"
61
61
  }
Binary file
package/src/resources.ts CHANGED
@@ -521,6 +521,7 @@ export interface KubernetesClusterNodePoolStatus {
521
521
  machineClass: string;
522
522
  autoscaling: KubernetesClusterAutoscalingConfig;
523
523
  resources: KubernetesClusterStatusClusterStatusResources;
524
+ nodes: string[];
524
525
  }
525
526
  export interface KubernetesClusterControlPlaneStatus {
526
527
  status: string;
@@ -528,6 +529,7 @@ export interface KubernetesClusterControlPlaneStatus {
528
529
  scale: number;
529
530
  machineClass: string;
530
531
  resources: KubernetesClusterStatusClusterStatusResources;
532
+ nodes: string[];
531
533
  }
532
534
  export interface KubernetesClusterStatusPrice {
533
535
  monthly: number;
Binary file