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

Commit

Permalink
Merge branch 'production'
Browse files Browse the repository at this point in the history
  • Loading branch information
nobody committed Mar 3, 2023
2 parents 78c62b1 + 609542b commit af8cae6
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion config/v3/app_markup_details/send.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
},
"offset": {
"description": "[Optional] Number of transactions to skip.",
"type": "number"
"type": "integer",
"minimum": 0
},
"sort": {
"description": "[Optional] Sort direction on `transaction_time`. Other fields sort order is ASC.",
Expand Down
3 changes: 2 additions & 1 deletion config/v3/p2p_advert_list/send.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@
"offset": {
"description": "[Optional] Used for paging.",
"type": "integer",
"default": 0
"default": 0,
"minimum": 0
},
"payment_method": {
"description": "[Optional] Search by supported payment methods.",
Expand Down
3 changes: 2 additions & 1 deletion config/v3/p2p_advertiser_adverts/send.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"offset": {
"description": "[Optional] Used for paging. This value will also apply to subsription responses.",
"type": "integer",
"default": 0
"default": 0,
"minimum": 0
},
"passthrough": {
"description": "[Optional] Used to pass data through the websocket, which may be retrieved via the `echo_req` output field.",
Expand Down
3 changes: 2 additions & 1 deletion config/v3/p2p_advertiser_list/send.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"offset": {
"description": "[Optional] Used for paging.",
"type": "integer",
"default": 0
"default": 0,
"minimum": 0
},
"sort_by": {
"description": "[Optional] How the results are sorted.",
Expand Down
3 changes: 2 additions & 1 deletion config/v3/p2p_order_list/send.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"offset": {
"description": "[Optional] Used for paging.",
"type": "integer",
"default": 0
"default": 0,
"minimum": 0
},
"subscribe": {
"description": "[Optional] If set to 1, will send updates whenever there is a change to any order belonging to you.",
Expand Down
3 changes: 2 additions & 1 deletion config/v3/profit_table/send.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@
},
"offset": {
"description": "[Optional] Number of transactions to skip.",
"type": "number"
"type": "integer",
"minimum": 0
},
"sort": {
"description": "[Optional] Sort direction.",
Expand Down
3 changes: 2 additions & 1 deletion config/v3/statement/send.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@
},
"offset": {
"description": "[Optional] Number of transactions to skip.",
"type": "number"
"type": "integer",
"minimum": 0
},
"passthrough": {
"description": "[Optional] Used to pass data through the websocket, which may be retrieved via the `echo_req` output field.",
Expand Down

1 comment on commit af8cae6

@vercel
Copy link

@vercel vercel bot commented on af8cae6 Mar 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

deriv-developers-portal – ./

deriv-developers-portal-git-master.binary.sx
deriv-developers-portal.binary.sx

Please sign in to comment.