Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/connector_configs/src/common_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ pub struct DashboardRequestPayload {
#[serde(tag = "type", content = "options")]
pub enum InputType {
Text,
Number,
Toggle,
Radio(Vec<String>),
Select(Vec<String>),
Expand Down
4 changes: 2 additions & 2 deletions crates/connector_configs/toml/development.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1483,13 +1483,13 @@ name="currency_id"
label="ID of the currency in which the refund will be issued"
placeholder="Enter ID of the currency in which the refund will be issued"
required=true
type="Text"
type="Number"
[coingate.metadata.platform_id]
name="platform_id"
label="Platform ID of the currency in which the refund will be issued"
placeholder="Enter Platform ID of the currency in which the refund will be issued"
required=true
type="Text"
type="Number"
[coingate.metadata.ledger_account_id]
name="ledger_account_id"
label="ID of the trader balance associated with the currency in which the refund will be issued"
Expand Down
4 changes: 2 additions & 2 deletions crates/connector_configs/toml/production.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1262,13 +1262,13 @@ name="currency_id"
label="ID of the currency in which the refund will be issued"
placeholder="Enter ID of the currency in which the refund will be issued"
required=true
type="Text"
type="Number"
[coingate.metadata.platform_id]
name="platform_id"
label="Platform ID of the currency in which the refund will be issued"
placeholder="Enter Platform ID of the currency in which the refund will be issued"
required=true
type="Text"
type="Number"
[coingate.metadata.ledger_account_id]
name="ledger_account_id"
label="ID of the trader balance associated with the currency in which the refund will be issued"
Expand Down
4 changes: 2 additions & 2 deletions crates/connector_configs/toml/sandbox.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1481,13 +1481,13 @@ name="currency_id"
label="ID of the currency in which the refund will be issued"
placeholder="Enter ID of the currency in which the refund will be issued"
required=true
type="Text"
type="Number"
[coingate.metadata.platform_id]
name="platform_id"
label="Platform ID of the currency in which the refund will be issued"
placeholder="Enter Platform ID of the currency in which the refund will be issued"
required=true
type="Text"
type="Number"
[coingate.metadata.ledger_account_id]
name="ledger_account_id"
label="ID of the trader balance associated with the currency in which the refund will be issued"
Expand Down
Loading