|
@@ -416,9 +416,7 @@ export interface DistributionBucket extends Struct {
|
|
|
|
|
|
/** @name DistributionBucketFamily */
|
|
|
export interface DistributionBucketFamily extends Struct {
|
|
|
- readonly distribution_buckets: BTreeMap<DistributionBucketId, {
|
|
|
- readonly accepting_new_bags: bool;
|
|
|
- } & Struct>;
|
|
|
+ readonly distribution_buckets: BTreeMap<DistributionBucketId, DistributionBucketState>;
|
|
|
}
|
|
|
|
|
|
/** @name DistributionBucketFamilyId */
|
|
@@ -430,6 +428,11 @@ export interface DistributionBucketId extends u64 {}
|
|
|
/** @name DistributionBucketIdSet */
|
|
|
export interface DistributionBucketIdSet extends BTreeSet<DistributionBucketId> {}
|
|
|
|
|
|
+/** @name DistributionBucketState */
|
|
|
+export interface DistributionBucketState extends Struct {
|
|
|
+ readonly accepting_new_bags: bool;
|
|
|
+}
|
|
|
+
|
|
|
/** @name Dynamic */
|
|
|
export interface Dynamic extends Enum {
|
|
|
readonly isMember: boolean;
|