We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68f9fd6 commit 9608833Copy full SHA for 9608833
jetstream/src/jsapi_types.ts
@@ -646,6 +646,26 @@ export type ClusterInfo = {
646
* The members of the RAFT cluster
647
*/
648
replicas?: PeerInfo[];
649
+
650
+ /**
651
+ * Name of the raft group managing the asset
652
+ */
653
+ raft_group?: string;
654
655
656
+ * The ISO timestamp when the RAFT leader was elected.
657
658
+ leader_since?: string;
659
660
661
+ * The account through which the cluster traffic flows through
662
663
+ traffic_account?: string;
664
665
666
+ * True if the traffic_account is a system account
667
668
+ system_account?: boolean;
669
};
670
671
export type PeerInfo = {
0 commit comments