@storagehub/api-augment 0.2.9 → 0.2.10
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.
- package/dist/parachain/interfaces/lookup.js +2 -0
- package/dist/parachain/interfaces/lookup.js.map +1 -1
- package/dist/solochain-evm/interfaces/lookup.js +2 -0
- package/dist/solochain-evm/interfaces/lookup.js.map +1 -1
- package/dist/types/parachain/interfaces/augment-api-events.d.ts +4 -0
- package/dist/types/parachain/interfaces/lookup.d.ts +2 -0
- package/dist/types/parachain/interfaces/types-lookup.d.ts +2 -0
- package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +4 -0
- package/dist/types/solochain-evm/interfaces/lookup.d.ts +2 -0
- package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +2 -0
- package/metadata-sh-parachain.json +1 -1
- package/metadata-sh-solochain-evm.json +1 -1
- package/package.json +1 -1
- package/src/parachain/interfaces/augment-api-events.ts +12 -2
- package/src/parachain/interfaces/lookup.ts +2 -0
- package/src/parachain/interfaces/types-lookup.ts +2 -0
- package/src/solochain-evm/interfaces/augment-api-events.ts +12 -2
- package/src/solochain-evm/interfaces/lookup.ts +2 -0
- package/src/solochain-evm/interfaces/types-lookup.ts +2 -0
package/package.json
CHANGED
|
@@ -780,8 +780,18 @@ declare module "@polkadot/api-base/types/events" {
|
|
|
780
780
|
**/
|
|
781
781
|
StorageRequestRejected: AugmentedEvent<
|
|
782
782
|
ApiType,
|
|
783
|
-
[
|
|
784
|
-
|
|
783
|
+
[
|
|
784
|
+
fileKey: H256,
|
|
785
|
+
mspId: H256,
|
|
786
|
+
bucketId: H256,
|
|
787
|
+
reason: PalletFileSystemRejectedStorageRequestReason
|
|
788
|
+
],
|
|
789
|
+
{
|
|
790
|
+
fileKey: H256;
|
|
791
|
+
mspId: H256;
|
|
792
|
+
bucketId: H256;
|
|
793
|
+
reason: PalletFileSystemRejectedStorageRequestReason;
|
|
794
|
+
}
|
|
785
795
|
>;
|
|
786
796
|
/**
|
|
787
797
|
* Notifies that a storage request has been revoked by the user who initiated it.
|
|
@@ -2099,6 +2099,8 @@ declare module "@polkadot/types/lookup" {
|
|
|
2099
2099
|
readonly isStorageRequestRejected: boolean;
|
|
2100
2100
|
readonly asStorageRequestRejected: {
|
|
2101
2101
|
readonly fileKey: H256;
|
|
2102
|
+
readonly mspId: H256;
|
|
2103
|
+
readonly bucketId: H256;
|
|
2102
2104
|
readonly reason: PalletFileSystemRejectedStorageRequestReason;
|
|
2103
2105
|
} & Struct;
|
|
2104
2106
|
readonly isBspRequestedToStopStoring: boolean;
|
|
@@ -719,8 +719,18 @@ declare module "@polkadot/api-base/types/events" {
|
|
|
719
719
|
**/
|
|
720
720
|
StorageRequestRejected: AugmentedEvent<
|
|
721
721
|
ApiType,
|
|
722
|
-
[
|
|
723
|
-
|
|
722
|
+
[
|
|
723
|
+
fileKey: H256,
|
|
724
|
+
mspId: H256,
|
|
725
|
+
bucketId: H256,
|
|
726
|
+
reason: PalletFileSystemRejectedStorageRequestReason
|
|
727
|
+
],
|
|
728
|
+
{
|
|
729
|
+
fileKey: H256;
|
|
730
|
+
mspId: H256;
|
|
731
|
+
bucketId: H256;
|
|
732
|
+
reason: PalletFileSystemRejectedStorageRequestReason;
|
|
733
|
+
}
|
|
724
734
|
>;
|
|
725
735
|
/**
|
|
726
736
|
* Notifies that a storage request has been revoked by the user who initiated it.
|
|
@@ -1165,6 +1165,8 @@ declare module "@polkadot/types/lookup" {
|
|
|
1165
1165
|
readonly isStorageRequestRejected: boolean;
|
|
1166
1166
|
readonly asStorageRequestRejected: {
|
|
1167
1167
|
readonly fileKey: H256;
|
|
1168
|
+
readonly mspId: H256;
|
|
1169
|
+
readonly bucketId: H256;
|
|
1168
1170
|
readonly reason: PalletFileSystemRejectedStorageRequestReason;
|
|
1169
1171
|
} & Struct;
|
|
1170
1172
|
readonly isBspRequestedToStopStoring: boolean;
|