This repository was archived by the owner on Aug 30, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99``` typescript
1010export declare type MakeBidParams = {
1111 listingId: BigNumberish ;
12- bid: BigNumberish ;
12+ bid: Price ;
1313};
1414```
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ import { NFTMetadata } from '@thirdweb-dev/sdk';
4646import type { NFTMetadataOrUri } from ' @thirdweb-dev/sdk/dist/src/schema' ;
4747import { Offer } from ' @thirdweb-dev/sdk' ;
4848import { Pack } from ' @thirdweb-dev/sdk' ;
49+ import type { Price } from ' @thirdweb-dev/sdk' ;
4950import type { PublishedMetadata } from ' @thirdweb-dev/sdk/dist/src/schema/contracts/custom' ;
5051import { QueryAllParams } from ' @thirdweb-dev/sdk' ;
5152import { QueryClient } from ' react-query' ;
@@ -170,7 +171,7 @@ export type MagicConnectorType = "magic" | {
170171// @public (undocumented)
171172export type MakeBidParams = {
172173 listingId: BigNumberish ;
173- bid: BigNumberish ;
174+ bid: Price ;
174175};
175176
176177// @public
Original file line number Diff line number Diff line change 2626 "build" : " yarn build:lib && yarn extract-api && yarn generate:md-docs && yarn generate-snippets" ,
2727 "test" : " yarn build && yarn test-only" ,
2828 "test:watch" : " vitest watch" ,
29- "test-only" : " vitest run"
29+ "test-only" : " vitest run" ,
30+ "prepublishOnly" : " yarn lint && yarn build"
3031 },
3132 "sideEffects:" : false ,
3233 "devDependencies" : {
You can’t perform that action at this time.
0 commit comments