Skip to content

Commit

Permalink
Merge branch 'main' into feat/unified-configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
snowmead committed Feb 27, 2025
2 parents c57da17 + bfc03d2 commit b0257e4
Show file tree
Hide file tree
Showing 30 changed files with 1,293 additions and 477 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

144 changes: 73 additions & 71 deletions api-augment/dist/interfaces/lookup.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion api-augment/dist/interfaces/lookup.js.map

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions api-augment/dist/types/interfaces/augment-api-events.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -687,10 +687,11 @@ declare module "@polkadot/api-base/types/events" {
**/
MoveBucketAccepted: AugmentedEvent<
ApiType,
[bucketId: H256, mspId: H256, valuePropId: H256],
[bucketId: H256, oldMspId: Option<H256>, newMspId: H256, valuePropId: H256],
{
bucketId: H256;
mspId: H256;
oldMspId: Option<H256>;
newMspId: H256;
valuePropId: H256;
}
>;
Expand All @@ -699,10 +700,11 @@ declare module "@polkadot/api-base/types/events" {
**/
MoveBucketRejected: AugmentedEvent<
ApiType,
[bucketId: H256, mspId: H256],
[bucketId: H256, oldMspId: Option<H256>, newMspId: H256],
{
bucketId: H256;
mspId: H256;
oldMspId: Option<H256>;
newMspId: H256;
}
>;
/**
Expand Down
144 changes: 73 additions & 71 deletions api-augment/dist/types/interfaces/lookup.d.ts

Large diffs are not rendered by default.

144 changes: 73 additions & 71 deletions api-augment/dist/types/interfaces/types-lookup.d.ts

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions api-augment/src/interfaces/augment-api-events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -551,16 +551,16 @@ declare module "@polkadot/api-base/types/events" {
**/
MoveBucketAccepted: AugmentedEvent<
ApiType,
[bucketId: H256, mspId: H256, valuePropId: H256],
{ bucketId: H256; mspId: H256; valuePropId: H256 }
[bucketId: H256, oldMspId: Option<H256>, newMspId: H256, valuePropId: H256],
{ bucketId: H256; oldMspId: Option<H256>; newMspId: H256; valuePropId: H256 }
>;
/**
* Notifies that a bucket move request has been rejected by the MSP.
**/
MoveBucketRejected: AugmentedEvent<
ApiType,
[bucketId: H256, mspId: H256],
{ bucketId: H256; mspId: H256 }
[bucketId: H256, oldMspId: Option<H256>, newMspId: H256],
{ bucketId: H256; oldMspId: Option<H256>; newMspId: H256 }
>;
/**
* Notifies that a bucket is being moved to a new MSP.
Expand Down
Loading

0 comments on commit b0257e4

Please sign in to comment.