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
2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.16.0
7.17.0
2 changes: 2 additions & 0 deletions docs/Api/AuthApi.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Gopad\AuthApi



All URIs are relative to https://try.gopad.eu/api/v1, except if the operation defines another base path.

| Method | HTTP request | Description |
Expand Down
2 changes: 2 additions & 0 deletions docs/Api/GroupApi.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Gopad\GroupApi



All URIs are relative to https://try.gopad.eu/api/v1, except if the operation defines another base path.

| Method | HTTP request | Description |
Expand Down
2 changes: 2 additions & 0 deletions docs/Api/ProfileApi.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Gopad\ProfileApi



All URIs are relative to https://try.gopad.eu/api/v1, except if the operation defines another base path.

| Method | HTTP request | Description |
Expand Down
2 changes: 2 additions & 0 deletions docs/Api/UserApi.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Gopad\UserApi



All URIs are relative to https://try.gopad.eu/api/v1, except if the operation defines another base path.

| Method | HTTP request | Description |
Expand Down
10 changes: 9 additions & 1 deletion lib/Api/AuthApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down Expand Up @@ -2126,6 +2126,14 @@ protected function createHttpClientOption()
}
}

if ($this->config->getCertFile()) {
$options[RequestOptions::CERT] = $this->config->getCertFile();
}

if ($this->config->getKeyFile()) {
$options[RequestOptions::SSL_KEY] = $this->config->getKeyFile();
}

return $options;
}

Expand Down
10 changes: 9 additions & 1 deletion lib/Api/GroupApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down Expand Up @@ -3432,6 +3432,14 @@ protected function createHttpClientOption()
}
}

if ($this->config->getCertFile()) {
$options[RequestOptions::CERT] = $this->config->getCertFile();
}

if ($this->config->getKeyFile()) {
$options[RequestOptions::SSL_KEY] = $this->config->getKeyFile();
}

return $options;
}

Expand Down
10 changes: 9 additions & 1 deletion lib/Api/ProfileApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down Expand Up @@ -1062,6 +1062,14 @@ protected function createHttpClientOption()
}
}

if ($this->config->getCertFile()) {
$options[RequestOptions::CERT] = $this->config->getCertFile();
}

if ($this->config->getKeyFile()) {
$options[RequestOptions::SSL_KEY] = $this->config->getKeyFile();
}

return $options;
}

Expand Down
10 changes: 9 additions & 1 deletion lib/Api/UserApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down Expand Up @@ -3432,6 +3432,14 @@ protected function createHttpClientOption()
}
}

if ($this->config->getCertFile()) {
$options[RequestOptions::CERT] = $this->config->getCertFile();
}

if ($this->config->getKeyFile()) {
$options[RequestOptions::SSL_KEY] = $this->config->getKeyFile();
}

return $options;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/ApiException.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
59 changes: 58 additions & 1 deletion lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down Expand Up @@ -124,6 +124,20 @@ class Configuration
*/
protected $tempFolderPath;

/**
* Path to a certificate file, for mTLS
*
* @var string
*/
protected $certFile;

/**
* Path to a key file, for mTLS
*
* @var string
*/
protected $keyFile;

/**
* Constructor
*/
Expand Down Expand Up @@ -397,6 +411,49 @@ public function getTempFolderPath()
return $this->tempFolderPath;
}

/**
* Sets the certificate file path, for mTLS
*
* @return $this
*/
public function setCertFile($certFile)
{
$this->certFile = $certFile;
return $this;
}

/**
* Gets the certificate file path, for mTLS
*
* @return string Certificate file path
*/
public function getCertFile()
{
return $this->certFile;
}

/**
* Sets the certificate key path, for mTLS
*
* @return $this
*/
public function setKeyFile($keyFile)
{
$this->keyFile = $keyFile;
return $this;
}

/**
* Gets the certificate key path, for mTLS
*
* @return string Certificate key path
*/
public function getKeyFile()
{
return $this->keyFile;
}


/**
* Gets the default configuration instance
*
Expand Down
2 changes: 1 addition & 1 deletion lib/FormDataProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/HeaderSelector.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/AuthToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/AuthVerify.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/CreateGroupRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/CreateUserRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/DeleteGroupFromUserRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/DeleteUserFromGroupRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/Group.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/ListGroupUsers200Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/ListGroups200Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/ListProviders200Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/ListUserGroups200Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/ListUsers200Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/LoginAuthRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/ModelInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/Notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/PermitGroupUserRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/PermitUserGroupRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Model/Profile.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of the OpenAPI document: 1.0.0-alpha1
* Contact: gopad@webhippie.de
* Generated by: https://openapi-generator.tech
* Generator version: 7.16.0
* Generator version: 7.17.0
*/

/**
Expand Down
Loading