@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
@@ -74,6 +74,7 @@ import type {
74
74
  PalletFileSystemEitherAccountIdOrMspId,
75
75
  PalletFileSystemError,
76
76
  PalletFileSystemEvent,
77
+ PalletFileSystemFileDeletionRequest,
77
78
  PalletFileSystemFileKeyWithProof,
78
79
  PalletFileSystemFileOperation,
79
80
  PalletFileSystemFileOperationIntention,
@@ -383,6 +384,7 @@ declare module "@polkadot/types/types/registry" {
383
384
  PalletFileSystemEitherAccountIdOrMspId: PalletFileSystemEitherAccountIdOrMspId;
384
385
  PalletFileSystemError: PalletFileSystemError;
385
386
  PalletFileSystemEvent: PalletFileSystemEvent;
387
+ PalletFileSystemFileDeletionRequest: PalletFileSystemFileDeletionRequest;
386
388
  PalletFileSystemFileKeyWithProof: PalletFileSystemFileKeyWithProof;
387
389
  PalletFileSystemFileOperation: PalletFileSystemFileOperation;
388
390
  PalletFileSystemFileOperationIntention: PalletFileSystemFileOperationIntention;