Skip to content
This repository was archived by the owner on Dec 28, 2023. It is now read-only.

Commit af8cae6

Browse files
author
nobody
committed
Merge branch 'production'
2 parents 78c62b1 + 609542b commit af8cae6

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

config/v3/app_markup_details/send.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
},
5858
"offset": {
5959
"description": "[Optional] Number of transactions to skip.",
60-
"type": "number"
60+
"type": "integer",
61+
"minimum": 0
6162
},
6263
"sort": {
6364
"description": "[Optional] Sort direction on `transaction_time`. Other fields sort order is ASC.",

config/v3/p2p_advert_list/send.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161
"offset": {
6262
"description": "[Optional] Used for paging.",
6363
"type": "integer",
64-
"default": 0
64+
"default": 0,
65+
"minimum": 0
6566
},
6667
"payment_method": {
6768
"description": "[Optional] Search by supported payment methods.",

config/v3/p2p_advertiser_adverts/send.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
"offset": {
2828
"description": "[Optional] Used for paging. This value will also apply to subsription responses.",
2929
"type": "integer",
30-
"default": 0
30+
"default": 0,
31+
"minimum": 0
3132
},
3233
"passthrough": {
3334
"description": "[Optional] Used to pass data through the websocket, which may be retrieved via the `echo_req` output field.",

config/v3/p2p_advertiser_list/send.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"offset": {
4040
"description": "[Optional] Used for paging.",
4141
"type": "integer",
42-
"default": 0
42+
"default": 0,
43+
"minimum": 0
4344
},
4445
"sort_by": {
4546
"description": "[Optional] How the results are sorted.",

config/v3/p2p_order_list/send.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
"offset": {
4141
"description": "[Optional] Used for paging.",
4242
"type": "integer",
43-
"default": 0
43+
"default": 0,
44+
"minimum": 0
4445
},
4546
"subscribe": {
4647
"description": "[Optional] If set to 1, will send updates whenever there is a change to any order belonging to you.",

config/v3/profit_table/send.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@
9393
},
9494
"offset": {
9595
"description": "[Optional] Number of transactions to skip.",
96-
"type": "number"
96+
"type": "integer",
97+
"minimum": 0
9798
},
9899
"sort": {
99100
"description": "[Optional] Sort direction.",

config/v3/statement/send.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@
6363
},
6464
"offset": {
6565
"description": "[Optional] Number of transactions to skip.",
66-
"type": "number"
66+
"type": "integer",
67+
"minimum": 0
6768
},
6869
"passthrough": {
6970
"description": "[Optional] Used to pass data through the websocket, which may be retrieved via the `echo_req` output field.",

0 commit comments

Comments
 (0)