@rarible/api-client
Advanced tools
Comparing version 1.120.106 to 1.122.1
@@ -29,3 +29,3 @@ /** | ||
limit?: number; | ||
offset?: number; | ||
continuation?: string; | ||
} | ||
@@ -32,0 +32,0 @@ /** |
@@ -223,4 +223,4 @@ "use strict"; | ||
} | ||
if (requestParameters.offset !== undefined) { | ||
queryParameters['offset'] = requestParameters.offset; | ||
if (requestParameters.continuation !== undefined) { | ||
queryParameters['continuation'] = requestParameters.continuation; | ||
} | ||
@@ -227,0 +227,0 @@ headerParameters = {}; |
@@ -41,3 +41,6 @@ export declare enum Blockchain { | ||
TELOS = "TELOS", | ||
HEDERAEVM = "HEDERAEVM" | ||
HEDERAEVM = "HEDERAEVM", | ||
VICTION = "VICTION", | ||
SETTLUS = "SETTLUS", | ||
GOAT = "GOAT" | ||
} |
@@ -46,2 +46,5 @@ "use strict"; | ||
Blockchain["HEDERAEVM"] = "HEDERAEVM"; | ||
Blockchain["VICTION"] = "VICTION"; | ||
Blockchain["SETTLUS"] = "SETTLUS"; | ||
Blockchain["GOAT"] = "GOAT"; | ||
})(Blockchain = exports.Blockchain || (exports.Blockchain = {})); |
@@ -41,3 +41,6 @@ export declare enum OlapBlockchain { | ||
TELOS = "TELOS", | ||
HEDERAEVM = "HEDERAEVM" | ||
HEDERAEVM = "HEDERAEVM", | ||
VICTION = "VICTION", | ||
SETTLUS = "SETTLUS", | ||
GOAT = "GOAT" | ||
} |
@@ -46,2 +46,5 @@ "use strict"; | ||
OlapBlockchain["HEDERAEVM"] = "HEDERAEVM"; | ||
OlapBlockchain["VICTION"] = "VICTION"; | ||
OlapBlockchain["SETTLUS"] = "SETTLUS"; | ||
OlapBlockchain["GOAT"] = "GOAT"; | ||
})(OlapBlockchain = exports.OlapBlockchain || (exports.OlapBlockchain = {})); |
import { OlapCollectionLeaderboardItem } from "./OlapCollectionLeaderboardItem"; | ||
export type OlapCollectionLeaderboardResponse = { | ||
continuation?: string; | ||
result?: Array<OlapCollectionLeaderboardItem>; | ||
}; |
@@ -26,3 +26,5 @@ export declare enum OlapCurrencyType { | ||
TLOS = "TLOS", | ||
HBAR = "HBAR" | ||
HBAR = "HBAR", | ||
VIC = "VIC", | ||
BTC = "BTC" | ||
} |
@@ -31,2 +31,4 @@ "use strict"; | ||
OlapCurrencyType["HBAR"] = "HBAR"; | ||
OlapCurrencyType["VIC"] = "VIC"; | ||
OlapCurrencyType["BTC"] = "BTC"; | ||
})(OlapCurrencyType = exports.OlapCurrencyType || (exports.OlapCurrencyType = {})); |
import { ItemEvent } from "./ItemEvent"; | ||
import { OrderEvent } from "./OrderEvent"; | ||
import { OwnershipEvent } from "./OwnershipEvent"; | ||
export type SubscriptionEvent = FakeSubscriptionEvent | ItemSubscriptionEvent | OwnershipSubscriptionEvent | OrderSubscriptionEvent; | ||
export type SubscriptionEvent = FakeSubscriptionEvent | ItemSubscriptionEvent | ItemOwnershipSubscriptionEvent | OwnershipSubscriptionEvent | OrderSubscriptionEvent; | ||
export type FakeSubscriptionEvent = { | ||
@@ -12,2 +12,6 @@ "@type": "FAKE"; | ||
}; | ||
export type ItemOwnershipSubscriptionEvent = { | ||
"@type": "ITEM_OWNERSHIP"; | ||
value: OwnershipEvent; | ||
}; | ||
export type OwnershipSubscriptionEvent = { | ||
@@ -14,0 +18,0 @@ "@type": "OWNERSHIP"; |
@@ -7,3 +7,3 @@ import { CollectionId } from "@rarible/types"; | ||
import { SubscriptionAction } from "./SubscriptionAction"; | ||
export type SubscriptionRequest = ItemSubscriptionRequest | OwnershipSubscriptionRequest | OrdersSubscriptionRequest | OrdersByItemSubscriptionRequest | OrdersByCollectionSubscriptionRequest; | ||
export type SubscriptionRequest = ItemSubscriptionRequest | OwnershipSubscriptionRequest | ItemOwnershipSubscriptionRequest | OrdersSubscriptionRequest | OrdersByItemSubscriptionRequest | OrdersByCollectionSubscriptionRequest; | ||
export type ItemSubscriptionRequest = { | ||
@@ -19,2 +19,7 @@ "@type": "ITEM"; | ||
}; | ||
export type ItemOwnershipSubscriptionRequest = { | ||
"@type": "ITEM_OWNERSHIP"; | ||
action: SubscriptionAction; | ||
id: ItemId; | ||
}; | ||
export type OrdersSubscriptionRequest = { | ||
@@ -21,0 +26,0 @@ "@type": "ORDERS"; |
{ | ||
"name": "@rarible/api-client", | ||
"version": "1.120.106", | ||
"version": "1.122.1", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "axios", |
715985
15376