Skip to content

Commit 8dc05c2

Browse files
Agrim JainAgrim Jain
authored andcommitted
Merge branch 'master' into Agrim/DAPI-536/copyproduction
2 parents 83b84a5 + 75ca0db commit 8dc05c2

File tree

6 files changed

+29
-6
lines changed

6 files changed

+29
-6
lines changed

config/v3/get_settings/receive.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,14 @@
204204
"description": "(Optional) Indicates the timestamp for the next verification attempt",
205205
"type": "integer"
206206
},
207+
"next_email_attempt": {
208+
"description": "(Optional) Indicates the timestamp for the next email verification attempt",
209+
"type": "integer"
210+
},
211+
"next_verify_attempt": {
212+
"description": "(Optional) Indicates the timestamp for the next verify attempt",
213+
"type": "integer"
214+
},
207215
"verified": {
208216
"description": "Indicates the verification status of the client's phone number.",
209217
"type": "integer",

config/v3/p2p_advert_create/receive.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,15 +470,18 @@
470470
]
471471
},
472472
"visibility_status": {
473-
"description": "Reasons why an advert is not visible. Possible values: \n- `advert_inactive`: the advert is set inactive. \n- `advert_max_limit`: the minimum order amount exceeds the system maximum order. \n- `advert_min_limit`: the maximum order amount is too small to be shown on the advert list. \n- `advert_remaining`: the remaining amount of the advert is below the minimum order. \n- `advertiser_ads_paused`: the advertiser has paused all adverts. \n- `advertiser_approval`: the advertiser's proof of identity is not verified. \n- `advertiser_balance`: the advertiser's P2P balance is less than the minimum order. \n- `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading. \n- `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order. \n- `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.",
473+
"description": "Reasons why an advert is not visible. Possible values: \n- `advert_fixed_rate_disabled`: fixed rate adverts are no longer available in the advert's country. \n- `advert_float_rate_disabled`: floating rate adverts are no longer available in the advert's country. \n- `advert_inactive`: the advert is set inactive. \n- `advert_max_limit`: the minimum order amount exceeds the system maximum order. \n- `advert_min_limit`: the maximum order amount is too small to be shown on the advert list. \n- `advert_remaining`: the remaining amount of the advert is below the minimum order. \n- `advert_no_payment_methods`: the advert has no valid payment methods. \n- `advertiser_ads_paused`: the advertiser has paused all adverts. \n- `advertiser_approval`: the advertiser's proof of identity is not verified. \n- `advertiser_balance`: the advertiser's P2P balance is less than the minimum order. \n- `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading. \n- `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order. \n- `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.",
474474
"type": "array",
475475
"items": {
476476
"type": "string",
477477
"enum": [
478+
"advert_fixed_rate_disabled",
479+
"advert_float_rate_disabled",
478480
"advert_inactive",
479481
"advert_max_limit",
480482
"advert_min_limit",
481483
"advert_remaining",
484+
"advert_no_payment_methods",
482485
"advertiser_ads_paused",
483486
"advertiser_approval",
484487
"advertiser_balance",

config/v3/p2p_advert_info/receive.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
]
257257
},
258258
"is_visible": {
259-
"description": "Indicates that this advert will appear on the main advert list. It is only visible to the advert owner.",
259+
"description": "Indicates that this advert will appear on the main advert list.",
260260
"type": "integer",
261261
"default": 0,
262262
"enum": [
@@ -495,15 +495,18 @@
495495
]
496496
},
497497
"visibility_status": {
498-
"description": "Reasons why an advert is not visible, only visible to the advert owner. Possible values: \n- `advert_inactive`: the advert is set inactive. \n- `advert_max_limit`: the minimum order amount exceeds the system maximum order. \n- `advert_min_limit`: the maximum order amount is too small to be shown on the advert list. \n- `advert_remaining`: the remaining amount of the advert is below the minimum order. \n- `advertiser_ads_paused`: the advertiser has paused all adverts. \n- `advertiser_approval`: the advertiser's proof of identity is not verified. \n- `advertiser_balance`: the advertiser's P2P balance is less than the minimum order. \n- `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading. \n- `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order. \n- `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.",
498+
"description": "Reasons why an advert is not visible. Possible values: \n- `advert_fixed_rate_disabled`: fixed rate adverts are no longer available in the advert's country. \n- `advert_float_rate_disabled`: floating rate adverts are no longer available in the advert's country. \n- `advert_inactive`: the advert is set inactive. \n- `advert_max_limit`: the minimum order amount exceeds the system maximum order. \n- `advert_min_limit`: the maximum order amount is too small to be shown on the advert list. \n- `advert_remaining`: the remaining amount of the advert is below the minimum order. \n- `advert_no_payment_methods`: the advert has no valid payment methods. \n- `advertiser_ads_paused`: the advertiser has paused all adverts. \n- `advertiser_approval`: the advertiser's proof of identity is not verified. \n- `advertiser_balance`: the advertiser's P2P balance is less than the minimum order. \n- `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading. \n- `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order. \n- `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.",
499499
"type": "array",
500500
"items": {
501501
"type": "string",
502502
"enum": [
503+
"advert_fixed_rate_disabled",
504+
"advert_float_rate_disabled",
503505
"advert_inactive",
504506
"advert_max_limit",
505507
"advert_min_limit",
506508
"advert_remaining",
509+
"advert_no_payment_methods",
507510
"advertiser_ads_paused",
508511
"advertiser_approval",
509512
"advertiser_balance",

config/v3/p2p_advert_list/receive.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,15 +416,18 @@
416416
]
417417
},
418418
"visibility_status": {
419-
"description": "Reasons why an advert is not visible, only visible to the advert owner. Possible values: \n- `advert_inactive`: the advert is set inactive. \n- `advert_max_limit`: the minimum order amount exceeds the system maximum order. \n- `advert_min_limit`: the maximum order amount is too small to be shown on the advert list. \n- `advert_remaining`: the remaining amount of the advert is below the minimum order. \n- `advertiser_ads_paused`: the advertiser has paused all adverts. \n- `advertiser_approval`: the advertiser's proof of identity is not verified. \n- `advertiser_balance`: the advertiser's P2P balance is less than the minimum order. \n- `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading. \n- `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order. \n- `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.",
419+
"description": "Reasons why an advert is not visible. Possible values: \n- `advert_fixed_rate_disabled`: fixed rate adverts are no longer available in the advert's country. \n- `advert_float_rate_disabled`: floating rate adverts are no longer available in the advert's country. \n- `advert_inactive`: the advert is set inactive. \n- `advert_max_limit`: the minimum order amount exceeds the system maximum order. \n- `advert_min_limit`: the maximum order amount is too small to be shown on the advert list. \n- `advert_remaining`: the remaining amount of the advert is below the minimum order. \n- `advert_no_payment_methods`: the advert has no valid payment methods. \n- `advertiser_ads_paused`: the advertiser has paused all adverts. \n- `advertiser_approval`: the advertiser's proof of identity is not verified. \n- `advertiser_balance`: the advertiser's P2P balance is less than the minimum order. \n- `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading. \n- `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order. \n- `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.",
420420
"type": "array",
421421
"items": {
422422
"type": "string",
423423
"enum": [
424+
"advert_fixed_rate_disabled",
425+
"advert_float_rate_disabled",
424426
"advert_inactive",
425427
"advert_max_limit",
426428
"advert_min_limit",
427429
"advert_remaining",
430+
"advert_no_payment_methods",
428431
"advertiser_ads_paused",
429432
"advertiser_approval",
430433
"advertiser_balance",

config/v3/p2p_advert_update/receive.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,15 +448,18 @@
448448
]
449449
},
450450
"visibility_status": {
451-
"description": "Reasons why an advert is not visible. Possible values: \n- `advert_inactive`: the advert is set inactive. \n- `advert_max_limit`: the minimum order amount exceeds the system maximum order. \n- `advert_min_limit`: the maximum order amount is too small to be shown on the advert list. \n- `advert_remaining`: the remaining amount of the advert is below the minimum order. \n- `advertiser_ads_paused`: the advertiser has paused all adverts. \n- `advertiser_approval`: the advertiser's proof of identity is not verified. \n- `advertiser_balance`: the advertiser's P2P balance is less than the minimum order. \n- `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading. \n- `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order. \n- `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.",
451+
"description": "Reasons why an advert is not visible. Possible values: \n- `advert_fixed_rate_disabled`: fixed rate adverts are no longer available in the advert's country. \n- `advert_float_rate_disabled`: floating rate adverts are no longer available in the advert's country. \n- `advert_inactive`: the advert is set inactive. \n- `advert_max_limit`: the minimum order amount exceeds the system maximum order. \n- `advert_min_limit`: the maximum order amount is too small to be shown on the advert list. \n- `advert_remaining`: the remaining amount of the advert is below the minimum order. \n- `advert_no_payment_methods`: the advert has no valid payment methods. \n- `advertiser_ads_paused`: the advertiser has paused all adverts. \n- `advertiser_approval`: the advertiser's proof of identity is not verified. \n- `advertiser_balance`: the advertiser's P2P balance is less than the minimum order. \n- `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading. \n- `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order. \n- `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.",
452452
"type": "array",
453453
"items": {
454454
"type": "string",
455455
"enum": [
456+
"advert_fixed_rate_disabled",
457+
"advert_float_rate_disabled",
456458
"advert_inactive",
457459
"advert_max_limit",
458460
"advert_min_limit",
459461
"advert_remaining",
462+
"advert_no_payment_methods",
460463
"advertiser_ads_paused",
461464
"advertiser_approval",
462465
"advertiser_balance",

config/v3/p2p_advertiser_adverts/receive.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,15 +377,18 @@
377377
]
378378
},
379379
"visibility_status": {
380-
"description": "Reasons why an advert is not visible. Possible values: \n- `advert_inactive`: the advert is set inactive. \n- `advert_max_limit`: the minimum order amount exceeds the system maximum order. \n- `advert_min_limit`: the maximum order amount is too small to be shown on the advert list. \n- `advert_remaining`: the remaining amount of the advert is below the minimum order. \n- `advertiser_ads_paused`: the advertiser has paused all adverts. \n- `advertiser_approval`: the advertiser's proof of identity is not verified. \n- `advertiser_balance`: the advertiser's P2P balance is less than the minimum order. \n- `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading. \n- `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order. \n- `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.",
380+
"description": "Reasons why an advert is not visible. Possible values: \n- `advert_fixed_rate_disabled`: fixed rate adverts are no longer available in the advert's country. \n- `advert_float_rate_disabled`: floating rate adverts are no longer available in the advert's country. \n- `advert_inactive`: the advert is set inactive. \n- `advert_max_limit`: the minimum order amount exceeds the system maximum order. \n- `advert_min_limit`: the maximum order amount is too small to be shown on the advert list. \n- `advert_remaining`: the remaining amount of the advert is below the minimum order. \n- `advert_no_payment_methods`: the advert has no valid payment methods. \n- `advertiser_ads_paused`: the advertiser has paused all adverts. \n- `advertiser_approval`: the advertiser's proof of identity is not verified. \n- `advertiser_balance`: the advertiser's P2P balance is less than the minimum order. \n- `advertiser_block_trade_ineligible`: the advertiser is not currently eligible for block trading. \n- `advertiser_daily_limit`: the advertiser's remaining daily limit is less than the minimum order. \n- `advertiser_temp_ban`: the advertiser is temporarily banned from P2P.",
381381
"type": "array",
382382
"items": {
383383
"type": "string",
384384
"enum": [
385+
"advert_fixed_rate_disabled",
386+
"advert_float_rate_disabled",
385387
"advert_inactive",
386388
"advert_max_limit",
387389
"advert_min_limit",
388390
"advert_remaining",
391+
"advert_no_payment_methods",
389392
"advertiser_ads_paused",
390393
"advertiser_approval",
391394
"advertiser_balance",

0 commit comments

Comments
 (0)