Skip to content

Commit

Permalink
Merge branch 'master' of github.com:binary-com/websockets into jim/ds…
Browse files Browse the repository at this point in the history
…ec-25497/resolve-context-issues
  • Loading branch information
jim-deriv committed Apr 26, 2024
2 parents e1ac0f4 + 0255468 commit 8ebaa80
Show file tree
Hide file tree
Showing 4 changed files with 134 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
RELEASE_VERSION: ${{ steps.extract_version.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
Expand Down Expand Up @@ -44,17 +44,16 @@ jobs:
SERVICEACCOUNT_TOKEN: ${{ secrets.SERVICEACCOUNT_TOKEN }}
CA_CRT: ${{ secrets.CA_CRT }}
APP_VERSION: latest

send_slack_notification:
name: Send Slack notification
runs-on: ubuntu-latest
if: always()
needs: [build_test_and_publish]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Conclusion
uses: technote-space/workflow-conclusion-action@v3
uses: technote-space/workflow-conclusion-action@45ce8e0eb155657ab8ccf346ade734257fd196a5
- name: Create Slack Message
env:
RELEASE_VERSION: ${{ needs.build_test_and_publish.outputs.RELEASE_VERSION }}
Expand Down
95 changes: 95 additions & 0 deletions config/v3/get_account_status/receive.json
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,101 @@
"expired",
"suspected"
]
},
"verified_jurisdiction": {
"description": "This represents the current status of authentication for each mt5 jurisdiction.",
"type": "object",
"additionalProperties": false,
"properties": {
"bvi": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
},
"dsl": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
},
"iom": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
},
"labuan": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
},
"malta": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
},
"maltainvest": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
},
"samoa": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
},
"samoa-virtual": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
},
"svg": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
},
"vanuatu": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
},
"virtual": {
"description": "This represents whether the client is allowed or not to create an account under this jurisdiction",
"type": "integer",
"enum": [
0,
1
]
}
}
}
}
},
Expand Down
22 changes: 22 additions & 0 deletions config/v3/get_settings/receive.json
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,28 @@
],
"sensitive": 1
},
"phone_number_verification": {
"description": "The status of the Phone Number Verification.",
"type": "object",
"additionalProperties": false,
"required": [
"verified"
],
"properties": {
"next_attempt": {
"description": "(Optional) Indicates the timestamp for the next verification attempt",
"type": "integer"
},
"verified": {
"description": "Indicates the verification status of the client's phone number.",
"type": "integer",
"enum": [
0,
1
]
}
}
},
"place_of_birth": {
"description": "Place of birth, 2-letter country code.",
"type": [
Expand Down
14 changes: 14 additions & 0 deletions config/v3/transfer_between_accounts/receive.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@
"real\\svg_ez_usd"
]
},
"landing_company_short": {
"description": "Landing company shortcode of the Trading account.",
"type": "string"
},
"loginid": {
"description": "Account identifier used for system transfers.",
"type": "string",
Expand Down Expand Up @@ -109,6 +113,16 @@
"poa_failed"
]
},
"sub_account_type": {
"description": "Sub account type",
"type": "string",
"enum": [
"financial",
"financial_stp",
"standard",
"swap_free"
]
},
"transfers": {
"description": "Type of transfers allowed between the account and the currently authorized account.",
"type": "string",
Expand Down

0 comments on commit 8ebaa80

Please sign in to comment.