Skip to content

Commit 1106278

Browse files
Merge branch 'master' of github.com:deriv-com/deriv-api-docs into update-auth-client
2 parents 3cea7bc + 9e5cdd7 commit 1106278

File tree

250 files changed

+27364
-16592
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

250 files changed

+27364
-16592
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,6 @@ yarn-error.log*
2727

2828
.idea
2929

30-
.vscode/settings.json
30+
.vscode
31+
.vscode*
3132
.vercel

.vscode/extensions.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

config/v3/confirm_email/send.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"verification_code": {
3030
"description": "Email verification code (received from a `verify_email` call, which must be done first).",
3131
"type": "string",
32-
"pattern": "^\\w{8,128}$",
32+
"pattern": "^\\w{6,128}$",
3333
"sensitive": 1
3434
},
3535
"passthrough": {

config/v3/new_account_virtual/send.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
"verification_code": {
221221
"description": "Email verification code (received from a `verify_email` call, which must be done first).",
222222
"type": "string",
223-
"pattern": "^\\w{8,128}$"
223+
"pattern": "^\\w{6,128}$"
224224
},
225225
"loginid": {
226226
"description": "[Optional] The login id of the user. Mandatory when multiple tokens were provided during authorize.",

docusaurus.config.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ const config = {
5151
],
5252
},
5353
],
54+
require.resolve('./plugins/custom-webpack-plugin'),
5455
],
5556

5657
presets: [
@@ -105,21 +106,22 @@ const config = {
105106
position: 'left',
106107
label: 'Documentation',
107108
},
108-
{ to: 'dashboard', label: 'Dashboard', position: 'left' },
109109
{
110110
to: 'api-explorer',
111111
position: 'left',
112-
label: 'API Explorer',
112+
label: 'API explorer',
113113
},
114-
{ to: 'https://tech.deriv.com/', label: 'Blog', position: 'left' },
115-
{ to: 'https://hackerone.com/deriv?type=team', label: 'Bug bounty', position: 'left' },
116114
{
117-
type: 'custom-navbar-separator',
118-
position: 'right',
115+
to: 'https://tech.deriv.com/',
116+
label: 'Deriv tech',
117+
position: 'left',
118+
className: 'external-nav-link',
119119
},
120120
{
121-
type: 'custom-api-token-navbar-item',
122-
position: 'right',
121+
to: 'https://hackerone.com/deriv?type=team',
122+
label: 'Bug bounty',
123+
position: 'left',
124+
className: 'external-nav-link',
123125
},
124126
{
125127
type: 'custom-user-navbar-item',

0 commit comments

Comments
 (0)