@storagehub/api-augment 0.2.6 → 0.2.8

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.
Files changed (39) hide show
  1. package/dist/parachain/interfaces/lookup.js +245 -239
  2. package/dist/parachain/interfaces/lookup.js.map +1 -1
  3. package/dist/solochain-evm/interfaces/lookup.js +195 -189
  4. package/dist/solochain-evm/interfaces/lookup.js.map +1 -1
  5. package/dist/types/parachain/interfaces/augment-api-consts.d.ts +4 -0
  6. package/dist/types/parachain/interfaces/augment-api-errors.d.ts +24 -0
  7. package/dist/types/parachain/interfaces/augment-api-events.d.ts +10 -24
  8. package/dist/types/parachain/interfaces/augment-api-runtime.d.ts +4 -0
  9. package/dist/types/parachain/interfaces/augment-api-tx.d.ts +27 -29
  10. package/dist/types/parachain/interfaces/lookup.d.ts +239 -239
  11. package/dist/types/parachain/interfaces/registry.d.ts +2 -1
  12. package/dist/types/parachain/interfaces/types-lookup.d.ts +247 -244
  13. package/dist/types/solochain-evm/interfaces/augment-api-consts.d.ts +4 -0
  14. package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +24 -0
  15. package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +10 -24
  16. package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +4 -0
  17. package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +27 -23
  18. package/dist/types/solochain-evm/interfaces/lookup.d.ts +189 -189
  19. package/dist/types/solochain-evm/interfaces/registry.d.ts +2 -1
  20. package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +197 -194
  21. package/metadata-sh-parachain.json +1 -1
  22. package/metadata-sh-solochain-evm.json +1 -1
  23. package/package.json +2 -2
  24. package/src/parachain/interfaces/augment-api-consts.ts +4 -0
  25. package/src/parachain/interfaces/augment-api-errors.ts +24 -0
  26. package/src/parachain/interfaces/augment-api-events.ts +8 -32
  27. package/src/parachain/interfaces/augment-api-runtime.ts +10 -0
  28. package/src/parachain/interfaces/augment-api-tx.ts +36 -41
  29. package/src/parachain/interfaces/lookup.ts +245 -239
  30. package/src/parachain/interfaces/registry.ts +2 -0
  31. package/src/parachain/interfaces/types-lookup.ts +255 -246
  32. package/src/solochain-evm/interfaces/augment-api-consts.ts +4 -0
  33. package/src/solochain-evm/interfaces/augment-api-errors.ts +24 -0
  34. package/src/solochain-evm/interfaces/augment-api-events.ts +8 -32
  35. package/src/solochain-evm/interfaces/augment-api-runtime.ts +10 -0
  36. package/src/solochain-evm/interfaces/augment-api-tx.ts +36 -35
  37. package/src/solochain-evm/interfaces/lookup.ts +195 -189
  38. package/src/solochain-evm/interfaces/registry.ts +2 -0
  39. package/src/solochain-evm/interfaces/types-lookup.ts +205 -196
@@ -84,6 +84,7 @@ import type {
84
84
  PalletFileSystemEitherAccountIdOrMspId,
85
85
  PalletFileSystemError,
86
86
  PalletFileSystemEvent,
87
+ PalletFileSystemFileDeletionRequest,
87
88
  PalletFileSystemFileKeyWithProof,
88
89
  PalletFileSystemFileOperation,
89
90
  PalletFileSystemFileOperationIntention,
@@ -334,6 +335,7 @@ declare module "@polkadot/types/types/registry" {
334
335
  PalletFileSystemEitherAccountIdOrMspId: PalletFileSystemEitherAccountIdOrMspId;
335
336
  PalletFileSystemError: PalletFileSystemError;
336
337
  PalletFileSystemEvent: PalletFileSystemEvent;
338
+ PalletFileSystemFileDeletionRequest: PalletFileSystemFileDeletionRequest;
337
339
  PalletFileSystemFileKeyWithProof: PalletFileSystemFileKeyWithProof;
338
340
  PalletFileSystemFileOperation: PalletFileSystemFileOperation;
339
341
  PalletFileSystemFileOperationIntention: PalletFileSystemFileOperationIntention;