Skip to content

Commit

Permalink
docs: ✏️ update deprecated note to reference correct field
Browse files Browse the repository at this point in the history
Update deprecated notices to include "Created" where needed, e.g.
`BlockIdDesc` -> `CreatedBlockIdDesc`
  • Loading branch information
polymath-eric committed Dec 9, 2024
1 parent 91c6381 commit 8260aac
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/middleware/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6107,12 +6107,12 @@ export enum AssetHoldersOrderBy {
AmountDesc = 'AMOUNT_DESC',
AssetIdAsc = 'ASSET_ID_ASC',
AssetIdDesc = 'ASSET_ID_DESC',
/**
* @deprecated - Removed in SQ v19 updates `BlockIdAsc` to work instead
/**
* @deprecated - Removed in SQ v19 updates since `CreatedBlockIdAsc` works as expected in that version
*/
CreatedAtAsc = 'CREATED_AT_ASC',
/**
* @deprecated - Removed in SQ v19 updates `BlockIdDesc` to work instead
/**
* @deprecated - Removed in SQ v19 updates since `CreatedBlockIdDesc` works as expected in that version
*/
CreatedAtDesc = 'CREATED_AT_DESC',
CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC',
Expand Down Expand Up @@ -80253,11 +80253,11 @@ export enum ExtrinsicsOrderBy {
CallIdAsc = 'CALL_ID_ASC',
CallIdDesc = 'CALL_ID_DESC',
/**
* @deprecated - Removed in SQ v19 updates `BlockIdAsc` to work instead
* @deprecated - Removed in SQ v19 updates since `CreatedBlockIdAsc` works as expected in that version
*/
CreatedAtAsc = 'CREATED_AT_ASC',
/**
* @deprecated - Removed in SQ v19 which updates `BlockIdDesc` to work instead
* @deprecated - Removed in SQ v19 updates since `CreatedBlockIdDesc` works as expected in that version
*/
CreatedAtDesc = 'CREATED_AT_DESC',
EventsAverageAttributesAsc = 'EVENTS_AVERAGE_ATTRIBUTES_ASC',
Expand Down Expand Up @@ -106267,12 +106267,12 @@ export type NftHoldersHavingVarianceSampleInput = {
export enum NftHoldersOrderBy {
AssetIdAsc = 'ASSET_ID_ASC',
AssetIdDesc = 'ASSET_ID_DESC',
/**
* @deprecated - Removed in SQ v19 updates `BlockIdAsc` to work instead
/**
* @deprecated - Removed in SQ v19 updates since `CreatedBlockIdAsc` works as expected in that version
*/
CreatedAtAsc = 'CREATED_AT_ASC',
/**
* @deprecated - Removed in SQ v19 updates `BlockIdDesc` to work instead
/**
* @deprecated - Removed in SQ v19 updates since `CreatedBlockIdDesc` works as expected in that version
*/
CreatedAtDesc = 'CREATED_AT_DESC',
CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC',
Expand Down

0 comments on commit 8260aac

Please sign in to comment.