Skip to content

Commit

Permalink
fix operation elements
Browse files Browse the repository at this point in the history
  • Loading branch information
tharindu1st committed Apr 5, 2024
1 parent e53299f commit 242b8c5
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
3 changes: 2 additions & 1 deletion runtime/config-deployer-service/ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,8 @@ dependencies = [
modules = [
{org = "wso2", packageName = "apk_common_lib", moduleName = "apk_common_lib"},
{org = "wso2", packageName = "apk_common_lib", moduleName = "apk_common_lib.java.io"},
{org = "wso2", packageName = "apk_common_lib", moduleName = "apk_common_lib.java.lang"}
{org = "wso2", packageName = "apk_common_lib", moduleName = "apk_common_lib.java.lang"},
{org = "wso2", packageName = "apk_common_lib", moduleName = "apk_common_lib.org.wso2.apk.common"}
]

[[package]]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,8 @@ dependencies = [
modules = [
{org = "wso2", packageName = "apk_common_lib", moduleName = "apk_common_lib"},
{org = "wso2", packageName = "apk_common_lib", moduleName = "apk_common_lib.java.io"},
{org = "wso2", packageName = "apk_common_lib", moduleName = "apk_common_lib.java.lang"}
{org = "wso2", packageName = "apk_common_lib", moduleName = "apk_common_lib.java.lang"},
{org = "wso2", packageName = "apk_common_lib", moduleName = "apk_common_lib.org.wso2.apk.common"}
]

[[package]]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,9 @@ components:
APKOperations:
title: Operation
type: object
required:
- target
- verb
properties:
target:
type: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,10 @@
}
}
},
"required": [
"target",
"verb"
],
"additionalProperties": false
},
"K8sService": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,10 @@
}
}
},
"required":[
"target",
"verb"
],
"additionalProperties": false
},
"K8sService": {
Expand Down

0 comments on commit 242b8c5

Please sign in to comment.