Skip to content

Commit

Permalink
feat: add trade public order types (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
Melisa Anabella Rossi authored Aug 12, 2024
1 parent 4138d6a commit 0ddfe85
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
12 changes: 7 additions & 5 deletions report/schemas.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3113,7 +3113,9 @@ export enum TradeType {
// (undocumented)
BID = "bid",
// (undocumented)
PUBLIC_ORDER = "public_order"
PUBLIC_ITEM_ORDER = "public_item_order",
// (undocumented)
PUBLIC_NFT_ORDER = "public_nft_order"
}

// Warning: (tsdoc-missing-deprecation-message) The @deprecated block must include a deprecation message, e.g. describing the recommended alternative
Expand Down Expand Up @@ -3402,10 +3404,10 @@ export namespace WorldConfiguration {
// src/dapps/sale.ts:18:3 - (ae-incompatible-release-tags) The symbol "network" is marked as @public, but its signature references "Network" which is marked as @alpha
// src/dapps/sale.ts:19:3 - (ae-incompatible-release-tags) The symbol "chainId" is marked as @public, but its signature references "ChainId" which is marked as @alpha
// src/dapps/sale.ts:42:3 - (ae-incompatible-release-tags) The symbol "network" is marked as @public, but its signature references "Network" which is marked as @alpha
// src/dapps/trade.ts:78:3 - (ae-incompatible-release-tags) The symbol "network" is marked as @public, but its signature references "Network" which is marked as @alpha
// src/dapps/trade.ts:79:3 - (ae-incompatible-release-tags) The symbol "chainId" is marked as @public, but its signature references "ChainId" which is marked as @alpha
// src/dapps/trade.ts:90:3 - (ae-incompatible-release-tags) The symbol "network" is marked as @public, but its signature references "Network" which is marked as @alpha
// src/dapps/trade.ts:91:3 - (ae-incompatible-release-tags) The symbol "chainId" is marked as @public, but its signature references "ChainId" which is marked as @alpha
// src/dapps/trade.ts:79:3 - (ae-incompatible-release-tags) The symbol "network" is marked as @public, but its signature references "Network" which is marked as @alpha
// src/dapps/trade.ts:80:3 - (ae-incompatible-release-tags) The symbol "chainId" is marked as @public, but its signature references "ChainId" which is marked as @alpha
// src/dapps/trade.ts:91:3 - (ae-incompatible-release-tags) The symbol "network" is marked as @public, but its signature references "Network" which is marked as @alpha
// src/dapps/trade.ts:92:3 - (ae-incompatible-release-tags) The symbol "chainId" is marked as @public, but its signature references "ChainId" which is marked as @alpha
// src/platform/events/blockchain.ts:124:3 - (ae-forgotten-export) The symbol "RentalMetadata" needs to be exported by the entry point index.d.ts
// src/platform/item/emote/adr74/emote-data-adr74.ts:7:3 - (ae-incompatible-release-tags) The symbol "representations" is marked as @public, but its signature references "EmoteRepresentationADR74" which is marked as @alpha
// src/platform/item/linked-wearable-mappings.ts:251:3 - (ae-incompatible-release-tags) The symbol "getMappings" is marked as @public, but its signature references "Mappings" which is marked as @alpha
Expand Down
3 changes: 2 additions & 1 deletion src/dapps/trade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { Network } from './network'

export enum TradeType {
BID = 'bid',
PUBLIC_ORDER = 'public_order'
PUBLIC_NFT_ORDER = 'public_nft_order',
PUBLIC_ITEM_ORDER = 'public_item_order'
}

export type TradeExternalCheck = {
Expand Down

0 comments on commit 0ddfe85

Please sign in to comment.