@storagehub/api-augment 0.2.7 → 0.2.9
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/types/parachain/interfaces/augment-api-runtime.d.ts +4 -0
- package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +4 -0
- package/metadata-sh-parachain.json +1 -1
- package/metadata-sh-solochain-evm.json +1 -1
- package/package.json +2 -2
- package/src/parachain/interfaces/augment-api-runtime.ts +10 -0
- package/src/solochain-evm/interfaces/augment-api-runtime.ts +10 -0
|
@@ -188,6 +188,10 @@ declare module "@polkadot/api-base/types/calls" {
|
|
|
188
188
|
* Check if a storage request is open to volunteers.
|
|
189
189
|
**/
|
|
190
190
|
isStorageRequestOpenToVolunteers: AugmentedCall<ApiType, (fileKey: H256 | string | Uint8Array) => Observable<Result<bool, IsStorageRequestOpenToVolunteersError>>>;
|
|
191
|
+
/**
|
|
192
|
+
* List incomplete storage request keys with pagination.
|
|
193
|
+
**/
|
|
194
|
+
listIncompleteStorageRequestKeys: AugmentedCall<ApiType, (startAfter: Option<H256> | null | Uint8Array | H256 | string, limit: u32 | AnyNumber | Uint8Array) => Observable<Vec<H256>>>;
|
|
191
195
|
/**
|
|
192
196
|
* Get pending storage requests for a Main Storage Provider.
|
|
193
197
|
**/
|
|
@@ -218,6 +218,10 @@ declare module "@polkadot/api-base/types/calls" {
|
|
|
218
218
|
* Check if a storage request is open to volunteers.
|
|
219
219
|
**/
|
|
220
220
|
isStorageRequestOpenToVolunteers: AugmentedCall<ApiType, (fileKey: H256 | string | Uint8Array) => Observable<Result<bool, IsStorageRequestOpenToVolunteersError>>>;
|
|
221
|
+
/**
|
|
222
|
+
* List incomplete storage request keys with pagination.
|
|
223
|
+
**/
|
|
224
|
+
listIncompleteStorageRequestKeys: AugmentedCall<ApiType, (startAfter: Option<H256> | null | Uint8Array | H256 | string, limit: u32 | AnyNumber | Uint8Array) => Observable<Vec<H256>>>;
|
|
221
225
|
/**
|
|
222
226
|
* Get pending storage requests for a Main Storage Provider.
|
|
223
227
|
**/
|