File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -1010,6 +1010,10 @@ export type V1CreateRequest = {
1010
1010
* Proxy mode to use
1011
1011
*/
1012
1012
proxy_mode ?: string
1013
+ /**
1014
+ * Port for the HTTP proxy to listen on
1015
+ */
1016
+ proxy_port ?: number
1013
1017
/**
1014
1018
* Secret parameters to inject
1015
1019
*/
@@ -1410,6 +1414,10 @@ export type V1UpdateRequest = {
1410
1414
* Proxy mode to use
1411
1415
*/
1412
1416
proxy_mode ?: string
1417
+ /**
1418
+ * Port for the HTTP proxy to listen on
1419
+ */
1420
+ proxy_port ?: number
1413
1421
/**
1414
1422
* Secret parameters to inject
1415
1423
*/
Original file line number Diff line number Diff line change 1194
1194
"description" : " Proxy mode to use" ,
1195
1195
"type" : " string"
1196
1196
},
1197
+ "proxy_port" : {
1198
+ "description" : " Port for the HTTP proxy to listen on" ,
1199
+ "type" : " integer"
1200
+ },
1197
1201
"secrets" : {
1198
1202
"description" : " Secret parameters to inject" ,
1199
1203
"items" : { "$ref" : " #/components/schemas/secrets.SecretParameter" },
1596
1600
"description" : " Proxy mode to use" ,
1597
1601
"type" : " string"
1598
1602
},
1603
+ "proxy_port" : {
1604
+ "description" : " Port for the HTTP proxy to listen on" ,
1605
+ "type" : " integer"
1606
+ },
1599
1607
"secrets" : {
1600
1608
"description" : " Secret parameters to inject" ,
1601
1609
"items" : { "$ref" : " #/components/schemas/secrets.SecretParameter" },
Original file line number Diff line number Diff line change 1
- export const TOOLHIVE_VERSION = process . env . THV_VERSION ?? 'v0.3.0 '
1
+ export const TOOLHIVE_VERSION = process . env . THV_VERSION ?? 'v0.3.1 '
You can’t perform that action at this time.
0 commit comments