Skip to content

Commit b445ce7

Browse files
committed
chore: bump version to 0.29.6
Source: Dokploy/dokploy@v0.29.6
1 parent 190b8e2 commit b445ce7

3 files changed

Lines changed: 298 additions & 1 deletion

File tree

openapi.json

Lines changed: 249 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41504,6 +41504,178 @@
4150441504
}
4150541505
}
4150641506
},
41507+
"/settings.updateRemoteServersOnly": {
41508+
"post": {
41509+
"operationId": "settings-updateRemoteServersOnly",
41510+
"tags": [
41511+
"settings"
41512+
],
41513+
"security": [
41514+
{
41515+
"Authorization": []
41516+
}
41517+
],
41518+
"parameters": [],
41519+
"requestBody": {
41520+
"required": true,
41521+
"content": {
41522+
"application/json": {
41523+
"schema": {
41524+
"type": "object",
41525+
"properties": {
41526+
"remoteServersOnly": {
41527+
"type": "boolean"
41528+
}
41529+
},
41530+
"required": [
41531+
"remoteServersOnly"
41532+
]
41533+
}
41534+
}
41535+
}
41536+
},
41537+
"responses": {
41538+
"200": {
41539+
"description": "Successful response",
41540+
"content": {
41541+
"application/json": {
41542+
"schema": {
41543+
"type": "object",
41544+
"properties": {},
41545+
"additionalProperties": false
41546+
}
41547+
}
41548+
}
41549+
},
41550+
"400": {
41551+
"description": "Invalid input data",
41552+
"content": {
41553+
"application/json": {
41554+
"schema": {
41555+
"$ref": "#/components/schemas/error.BAD_REQUEST"
41556+
}
41557+
}
41558+
}
41559+
},
41560+
"401": {
41561+
"description": "Authorization not provided",
41562+
"content": {
41563+
"application/json": {
41564+
"schema": {
41565+
"$ref": "#/components/schemas/error.UNAUTHORIZED"
41566+
}
41567+
}
41568+
}
41569+
},
41570+
"403": {
41571+
"description": "Insufficient access",
41572+
"content": {
41573+
"application/json": {
41574+
"schema": {
41575+
"$ref": "#/components/schemas/error.FORBIDDEN"
41576+
}
41577+
}
41578+
}
41579+
},
41580+
"500": {
41581+
"description": "Internal server error",
41582+
"content": {
41583+
"application/json": {
41584+
"schema": {
41585+
"$ref": "#/components/schemas/error.INTERNAL_SERVER_ERROR"
41586+
}
41587+
}
41588+
}
41589+
}
41590+
}
41591+
}
41592+
},
41593+
"/settings.updateEnforceSSO": {
41594+
"post": {
41595+
"operationId": "settings-updateEnforceSSO",
41596+
"tags": [
41597+
"settings"
41598+
],
41599+
"security": [
41600+
{
41601+
"Authorization": []
41602+
}
41603+
],
41604+
"parameters": [],
41605+
"requestBody": {
41606+
"required": true,
41607+
"content": {
41608+
"application/json": {
41609+
"schema": {
41610+
"type": "object",
41611+
"properties": {
41612+
"enforceSSO": {
41613+
"type": "boolean"
41614+
}
41615+
},
41616+
"required": [
41617+
"enforceSSO"
41618+
]
41619+
}
41620+
}
41621+
}
41622+
},
41623+
"responses": {
41624+
"200": {
41625+
"description": "Successful response",
41626+
"content": {
41627+
"application/json": {
41628+
"schema": {
41629+
"type": "object",
41630+
"properties": {},
41631+
"additionalProperties": false
41632+
}
41633+
}
41634+
}
41635+
},
41636+
"400": {
41637+
"description": "Invalid input data",
41638+
"content": {
41639+
"application/json": {
41640+
"schema": {
41641+
"$ref": "#/components/schemas/error.BAD_REQUEST"
41642+
}
41643+
}
41644+
}
41645+
},
41646+
"401": {
41647+
"description": "Authorization not provided",
41648+
"content": {
41649+
"application/json": {
41650+
"schema": {
41651+
"$ref": "#/components/schemas/error.UNAUTHORIZED"
41652+
}
41653+
}
41654+
}
41655+
},
41656+
"403": {
41657+
"description": "Insufficient access",
41658+
"content": {
41659+
"application/json": {
41660+
"schema": {
41661+
"$ref": "#/components/schemas/error.FORBIDDEN"
41662+
}
41663+
}
41664+
}
41665+
},
41666+
"500": {
41667+
"description": "Internal server error",
41668+
"content": {
41669+
"application/json": {
41670+
"schema": {
41671+
"$ref": "#/components/schemas/error.INTERNAL_SERVER_ERROR"
41672+
}
41673+
}
41674+
}
41675+
}
41676+
}
41677+
}
41678+
},
4150741679
"/settings.readTraefikConfig": {
4150841680
"get": {
4150941681
"operationId": "settings-readTraefikConfig",
@@ -50615,6 +50787,83 @@
5061550787
}
5061650788
}
5061750789
},
50790+
"/sso.enforceSSO": {
50791+
"get": {
50792+
"operationId": "sso-enforceSSO",
50793+
"tags": [
50794+
"sso"
50795+
],
50796+
"security": [
50797+
{
50798+
"Authorization": []
50799+
}
50800+
],
50801+
"responses": {
50802+
"200": {
50803+
"description": "Successful response",
50804+
"content": {
50805+
"application/json": {
50806+
"schema": {
50807+
"type": "object",
50808+
"properties": {},
50809+
"additionalProperties": false
50810+
}
50811+
}
50812+
}
50813+
},
50814+
"400": {
50815+
"description": "Invalid input data",
50816+
"content": {
50817+
"application/json": {
50818+
"schema": {
50819+
"$ref": "#/components/schemas/error.BAD_REQUEST"
50820+
}
50821+
}
50822+
}
50823+
},
50824+
"401": {
50825+
"description": "Authorization not provided",
50826+
"content": {
50827+
"application/json": {
50828+
"schema": {
50829+
"$ref": "#/components/schemas/error.UNAUTHORIZED"
50830+
}
50831+
}
50832+
}
50833+
},
50834+
"403": {
50835+
"description": "Insufficient access",
50836+
"content": {
50837+
"application/json": {
50838+
"schema": {
50839+
"$ref": "#/components/schemas/error.FORBIDDEN"
50840+
}
50841+
}
50842+
}
50843+
},
50844+
"404": {
50845+
"description": "Not found",
50846+
"content": {
50847+
"application/json": {
50848+
"schema": {
50849+
"$ref": "#/components/schemas/error.NOT_FOUND"
50850+
}
50851+
}
50852+
}
50853+
},
50854+
"500": {
50855+
"description": "Internal server error",
50856+
"content": {
50857+
"application/json": {
50858+
"schema": {
50859+
"$ref": "#/components/schemas/error.INTERNAL_SERVER_ERROR"
50860+
}
50861+
}
50862+
}
50863+
}
50864+
}
50865+
}
50866+
},
5061850867
"/sso.listProviders": {
5061950868
"get": {
5062050869
"operationId": "sso-listProviders",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dokploy/cli",
33
"description": "A CLI to manage dokploy server remotely",
4-
"version": "0.29.5",
4+
"version": "0.29.6",
55
"author": "Mauricio Siu",
66
"licenses": [
77
{

src/generated/commands.ts

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8750,6 +8750,22 @@ export function registerGeneratedCommands(program: Command) {
87508750
}
87518751
});
87528752

8753+
g_settings
8754+
.command('update-enforce-sso')
8755+
.description('settings updateEnforceSSO')
8756+
.requiredOption('--enforceSSO', 'enforceSSO')
8757+
.option('--json', 'Output raw JSON')
8758+
.action(async (opts: Record<string, any>) => {
8759+
const jsonOutput = opts.json; delete opts.json;
8760+
if (opts["enforceSSO"] != null) opts["enforceSSO"] = opts["enforceSSO"] === true || opts["enforceSSO"] === "true";
8761+
const data = await apiPost("settings.updateEnforceSSO", opts);
8762+
if (jsonOutput) {
8763+
console.log(JSON.stringify(data, null, 2));
8764+
} else {
8765+
printOutput(data);
8766+
}
8767+
});
8768+
87538769
g_settings
87548770
.command('update-log-cleanup')
87558771
.description('settings updateLogCleanup')
@@ -8782,6 +8798,22 @@ export function registerGeneratedCommands(program: Command) {
87828798
}
87838799
});
87848800

8801+
g_settings
8802+
.command('update-remote-servers-only')
8803+
.description('settings updateRemoteServersOnly')
8804+
.requiredOption('--remoteServersOnly', 'remoteServersOnly')
8805+
.option('--json', 'Output raw JSON')
8806+
.action(async (opts: Record<string, any>) => {
8807+
const jsonOutput = opts.json; delete opts.json;
8808+
if (opts["remoteServersOnly"] != null) opts["remoteServersOnly"] = opts["remoteServersOnly"] === true || opts["remoteServersOnly"] === "true";
8809+
const data = await apiPost("settings.updateRemoteServersOnly", opts);
8810+
if (jsonOutput) {
8811+
console.log(JSON.stringify(data, null, 2));
8812+
} else {
8813+
printOutput(data);
8814+
}
8815+
});
8816+
87858817
g_settings
87868818
.command('update-server')
87878819
.description('settings updateServer')
@@ -9051,6 +9083,22 @@ export function registerGeneratedCommands(program: Command) {
90519083
}
90529084
});
90539085

9086+
g_sso
9087+
.command('enforce-sso')
9088+
.description('sso enforceSSO')
9089+
9090+
.option('--json', 'Output raw JSON')
9091+
.action(async (opts: Record<string, any>) => {
9092+
const jsonOutput = opts.json; delete opts.json;
9093+
9094+
const data = await apiGet("sso.enforceSSO", opts);
9095+
if (jsonOutput) {
9096+
console.log(JSON.stringify(data, null, 2));
9097+
} else {
9098+
printOutput(data);
9099+
}
9100+
});
9101+
90549102
g_sso
90559103
.command('get-trusted-origins')
90569104
.description('sso getTrustedOrigins')

0 commit comments

Comments
 (0)