@xoxno/sdk-js 0.1.118-alpha → 0.1.120-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/collection/index.d.ts +6 -6
- package/dist/common/index.d.ts +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/interactions/index.d.ts +1 -1
- package/dist/interactions/index.d.ts.map +1 -1
- package/dist/interactor.esm.js +1 -1
- package/dist/interactor.js +1 -1
- package/dist/nft/index.d.ts +1 -1
- package/dist/users/index.d.ts +2 -2
- package/dist/utils/getActivity.d.ts +1 -1
- package/package.json +1 -1
package/dist/nft/index.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ export declare class NFTModule {
|
|
|
62
62
|
*
|
|
63
63
|
* @param {TradincActivityArgs} args - The arguments for filtering the trading activity.
|
|
64
64
|
* @returns {Promise<TradingActivityResponse>} A promise resolving to a TradingActivityResponse object containing the activity.
|
|
65
|
-
* @throws {Error} Throws an error if the 'top' argument is greater than
|
|
65
|
+
* @throws {Error} Throws an error if the 'top' argument is greater than 100.
|
|
66
66
|
*/
|
|
67
67
|
getTradingActivity: (args: TradincActivityArgs) => Promise<TradingActivityResponse>;
|
|
68
68
|
}
|
package/dist/users/index.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export declare class UserModule {
|
|
|
61
61
|
*
|
|
62
62
|
* This function fetches suggested users results based on the provided arguments. It takes an object with the following properties:
|
|
63
63
|
* - name (string): The name to search for (required).
|
|
64
|
-
* - top (number, optional): The maximum number of results to return (default is 35, cannot be greater than
|
|
64
|
+
* - top (number, optional): The maximum number of results to return (default is 35, cannot be greater than 100).
|
|
65
65
|
* - skip (number, optional): The number of results to skip (default is 0).
|
|
66
66
|
*
|
|
67
67
|
* Finally, it returns a promise that resolves to the fetched users results.
|
|
@@ -72,7 +72,7 @@ export declare class UserModule {
|
|
|
72
72
|
*
|
|
73
73
|
* @param {TradincActivityArgs} args - The arguments for filtering the trading activity.
|
|
74
74
|
* @returns {Promise<TradingActivityResponse>} A promise resolving to a TradingActivityResponse object containing the activity.
|
|
75
|
-
* @throws {Error} Throws an error if the 'top' argument is greater than
|
|
75
|
+
* @throws {Error} Throws an error if the 'top' argument is greater than 100.
|
|
76
76
|
*/
|
|
77
77
|
getTradingActivity: (args: TradincActivityArgs) => Promise<TradingActivityResponse>;
|
|
78
78
|
/** Gets user's creator profile
|
|
@@ -5,7 +5,7 @@ import { TradincActivityArgs, TradingActivityResponse } from '../types/trading';
|
|
|
5
5
|
* @param args - The trading activity arguments
|
|
6
6
|
* @param api - The API client
|
|
7
7
|
* @returns - The trading activity response
|
|
8
|
-
* @throws - If the top is greater than
|
|
8
|
+
* @throws - If the top is greater than 100
|
|
9
9
|
*/
|
|
10
10
|
export declare const getActivity: (args: TradincActivityArgs, api: XOXNOClient) => Promise<TradingActivityResponse>;
|
|
11
11
|
//# sourceMappingURL=getActivity.d.ts.map
|