Skip to content

Commit 3df274b

Browse files
authored
Add helper link to connection definition frontend spec (#9)
1 parent 0b93333 commit 3df274b

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
[workspace]
22
resolver = "2"
3-
members = [
4-
"api",
5-
"event-core",
6-
"gateway",
7-
"watchdog",
8-
]
3+
members = ["api", "event-core", "gateway", "watchdog"]
94

105
[workspace.dependencies]
116
anyhow = "1.0.75"
127
async-recursion = "1.0.5"
138
async-trait = "0.1.74"
14-
axum = {version = "0.7", features = ["macros"]}
9+
axum = { version = "0.7", features = ["macros"] }
1510
base64 = "0.21.5"
1611
base64ct = { version = "1.6.0", features = ["alloc"] }
1712
bson = "2.7.0"
@@ -34,7 +29,7 @@ futures-util = "0.3.28"
3429
handlebars = "4.4.0"
3530
http = "1.1.0"
3631
http-serde-ext = "1.0.2"
37-
integrationos-domain = "3.0.0"
32+
integrationos-domain = "3.0.1"
3833
js-sandbox-ios = "0.1.0"
3934
jsonpath_lib = "0.3.0"
4035
jsonwebtoken = "8.3.0"

api/src/endpoints/connection_definition.rs

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ pub struct CreateRequest {
5353
pub category: String,
5454
pub image: String,
5555
pub tags: Vec<String>,
56+
pub helper_link: Option<String>,
5657
pub authentication: Vec<AuthenticationItem>,
5758
pub auth_method: Option<AuthMethod>,
5859
pub settings: Settings,
@@ -297,6 +298,7 @@ impl CrudRequest for CreateRequest {
297298
category: self.category.clone(),
298299
image: self.image.clone(),
299300
tags: self.tags.clone(),
301+
helper_link: self.helper_link.clone(),
300302
},
301303
connection_form,
302304
},

0 commit comments

Comments
 (0)