@storagehub/api-augment 0.2.8 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storagehub/api-augment",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "author": "",
@@ -780,8 +780,18 @@ declare module "@polkadot/api-base/types/events" {
780
780
  **/
781
781
  StorageRequestRejected: AugmentedEvent<
782
782
  ApiType,
783
- [fileKey: H256, reason: PalletFileSystemRejectedStorageRequestReason],
784
- { fileKey: H256; reason: PalletFileSystemRejectedStorageRequestReason }
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.
@@ -1596,6 +1596,8 @@ export default {
1596
1596
  },
1597
1597
  StorageRequestRejected: {
1598
1598
  fileKey: "H256",
1599
+ mspId: "H256",
1600
+ bucketId: "H256",
1599
1601
  reason: "PalletFileSystemRejectedStorageRequestReason"
1600
1602
  },
1601
1603
  BspRequestedToStopStoring: {
@@ -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
- [fileKey: H256, reason: PalletFileSystemRejectedStorageRequestReason],
723
- { fileKey: H256; reason: PalletFileSystemRejectedStorageRequestReason }
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.
@@ -937,6 +937,8 @@ export default {
937
937
  },
938
938
  StorageRequestRejected: {
939
939
  fileKey: "H256",
940
+ mspId: "H256",
941
+ bucketId: "H256",
940
942
  reason: "PalletFileSystemRejectedStorageRequestReason"
941
943
  },
942
944
  BspRequestedToStopStoring: {
@@ -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;