You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {string} [from] Queries items created since the specified date-time (inclusive).
376
376
* @param {string} [to] Queries items created before the specified date-time (inclusive).
377
377
* @param {string} [pageBefore] A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next `n` items before the id, with `n` being specified by `pageSize`. The items will be returned in the natural order of the collection. The resource will return the first page if neither `pageAfter` nor `pageBefore` are specified. SHOULD NOT be used in conjuction with pageAfter.
@@ -404,6 +404,7 @@ export const PayoutsApiAxiosParamCreator = function (
* @param {string} [from] Queries items created since the specified date-time (inclusive).
679
680
* @param {string} [to] Queries items created before the specified date-time (inclusive).
680
681
* @param {string} [pageBefore] A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next `n` items before the id, with `n` being specified by `pageSize`. The items will be returned in the natural order of the collection. The resource will return the first page if neither `pageAfter` nor `pageBefore` are specified. SHOULD NOT be used in conjuction with pageAfter.
* @param {string} [from] Queries items created since the specified date-time (inclusive).
869
871
* @param {string} [to] Queries items created before the specified date-time (inclusive).
870
872
* @param {string} [pageBefore] A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next `n` items before the id, with `n` being specified by `pageSize`. The items will be returned in the natural order of the collection. The resource will return the first page if neither `pageAfter` nor `pageBefore` are specified. SHOULD NOT be used in conjuction with pageAfter.
@@ -897,6 +899,7 @@ export const PayoutsApiFactory = function (
897
899
|"FLOW"
898
900
|"HBAR"
899
901
|"MATIC"
902
+
|"NOBLE"
900
903
|"OP"
901
904
|"SOL"
902
905
|"TRX"
@@ -1048,7 +1051,7 @@ export class PayoutsApi extends BaseAPI {
1048
1051
* @param {Set<PayoutStatus>} [status] Queries items with the specified status. Matches any status if unspecified.
1049
1052
* @param {'USD' | 'EUR' | 'BTC' | 'ETH' | 'MTC' | 'FLW' | 'MAN'} [sourceCurrency] Queries items with the specified source currency `amount.currency`. Matches any source currency if unspecified.
1050
1053
* @param {'USD' | 'EUR' | 'BTC' | 'ETH' | 'MTC' | 'FLW' | 'MAN'} [destinationCurrency] Queries items with the specified destination currency `toAmount.currency`. Matches any destination currency if unspecified.
1051
-
* @param {'ALGO' | 'ARB' | 'AVAX' | 'BASE' | 'BTC' | 'ETH' | 'FLOW' | 'HBAR' | 'MATIC' | 'OP' | 'SOL' | 'TRX' | 'XLM'} [chain] Queries items with the specified chain. Matches any chain if unspecified
* @param {string} [from] Queries items created since the specified date-time (inclusive).
1053
1056
* @param {string} [to] Queries items created before the specified date-time (inclusive).
1054
1057
* @param {string} [pageBefore] A collection ID value used for pagination. It marks the exclusive end of a page. When provided, the collection resource will return the next `n` items before the id, with `n` being specified by `pageSize`. The items will be returned in the natural order of the collection. The resource will return the first page if neither `pageAfter` nor `pageBefore` are specified. SHOULD NOT be used in conjuction with pageAfter.
@@ -1075,6 +1078,7 @@ export class PayoutsApi extends BaseAPI {
0 commit comments