Skip to content

Commit

Permalink
typegen
Browse files Browse the repository at this point in the history
  • Loading branch information
undercover-cactus committed Dec 31, 2024
1 parent f867acd commit e2ca772
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 6 deletions.
3 changes: 2 additions & 1 deletion api-augment/dist/interfaces/lookup.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api-augment/dist/interfaces/lookup.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions api-augment/dist/types/interfaces/augment-api-errors.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,10 @@ declare module "@polkadot/api-base/types/errors" {
* Number of removed BSPs volunteered from storage request prefix did not match the expected number.
**/
UnexpectedNumberOfRemovedVolunteeredBsps: AugmentedError<ApiType>;
/**
* Used Capacity value should be 0.
**/
UsedCapacityShouldBeZero: AugmentedError<ApiType>;
/**
* A SP tried to stop storing files from a user that was supposedly insolvent, but the user is not insolvent.
**/
Expand Down
4 changes: 3 additions & 1 deletion api-augment/dist/types/interfaces/types-lookup.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5443,6 +5443,7 @@ declare module "@polkadot/types/lookup" {
readonly isRootNotUpdated: boolean;
readonly isNoPrivacyChange: boolean;
readonly isOperationNotAllowedForInsolventProvider: boolean;
readonly isUsedCapacityShouldBeZero: boolean;
readonly type:
| "StorageRequestAlreadyRegistered"
| "StorageRequestNotFound"
Expand Down Expand Up @@ -5515,7 +5516,8 @@ declare module "@polkadot/types/lookup" {
| "NoFileKeysToConfirm"
| "RootNotUpdated"
| "NoPrivacyChange"
| "OperationNotAllowedForInsolventProvider";
| "OperationNotAllowedForInsolventProvider"
| "UsedCapacityShouldBeZero";
}
/** @name PalletProofsDealerError (471) */
interface PalletProofsDealerError extends Enum {
Expand Down
4 changes: 4 additions & 0 deletions api-augment/src/interfaces/augment-api-errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,10 @@ declare module "@polkadot/api-base/types/errors" {
* Number of removed BSPs volunteered from storage request prefix did not match the expected number.
**/
UnexpectedNumberOfRemovedVolunteeredBsps: AugmentedError<ApiType>;
/**
* Used Capacity value should be 0.
**/
UsedCapacityShouldBeZero: AugmentedError<ApiType>;
/**
* A SP tried to stop storing files from a user that was supposedly insolvent, but the user is not insolvent.
**/
Expand Down
3 changes: 2 additions & 1 deletion api-augment/src/interfaces/lookup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4527,7 +4527,8 @@ export default {
"NoFileKeysToConfirm",
"RootNotUpdated",
"NoPrivacyChange",
"OperationNotAllowedForInsolventProvider"
"OperationNotAllowedForInsolventProvider",
"UsedCapacityShouldBeZero"
]
},
/**
Expand Down
4 changes: 3 additions & 1 deletion api-augment/src/interfaces/types-lookup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5709,6 +5709,7 @@ declare module "@polkadot/types/lookup" {
readonly isRootNotUpdated: boolean;
readonly isNoPrivacyChange: boolean;
readonly isOperationNotAllowedForInsolventProvider: boolean;
readonly isUsedCapacityShouldBeZero: boolean;
readonly type:
| "StorageRequestAlreadyRegistered"
| "StorageRequestNotFound"
Expand Down Expand Up @@ -5781,7 +5782,8 @@ declare module "@polkadot/types/lookup" {
| "NoFileKeysToConfirm"
| "RootNotUpdated"
| "NoPrivacyChange"
| "OperationNotAllowedForInsolventProvider";
| "OperationNotAllowedForInsolventProvider"
| "UsedCapacityShouldBeZero";
}

/** @name PalletProofsDealerError (471) */
Expand Down
2 changes: 1 addition & 1 deletion api-augment/storagehub.json

Large diffs are not rendered by default.

0 comments on commit e2ca772

Please sign in to comment.