Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed inclusion of FormManagementApi and RecaptchaConfigurationApi API to the client #235

Merged
merged 2 commits into from
Aug 10, 2023
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Release (Unreleased)

* `github.com/patrickcping/pingone-go-sdk-v2/management` : [v0.26.0](./management/CHANGELOG.md)
* **Bug** Fixed inclusion of `FormManagementApi` and `RecaptchaConfigurationApi` API to the client. [#235](https://github.com/patrickcping/pingone-go-sdk-v2/pull/235)
* **Enhancement** Clarified the `headers` parameter in the `SubscriptionHttpEndpoint` model of the subscriptions API endpoint to be a map of strings rather than a map of any data type. [#234](https://github.com/patrickcping/pingone-go-sdk-v2/pull/234)

# Release (2023-08-08)
Expand Down
1 change: 1 addition & 0 deletions management/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# v0.26.0 (Unreleased)

* **Bug** Fixed inclusion of `FormManagementApi` and `RecaptchaConfigurationApi` API to the client. [#235](https://github.com/patrickcping/pingone-go-sdk-v2/pull/235)
* **Enhancement** Clarified the `headers` parameter in the `SubscriptionHttpEndpoint` model of the subscriptions API endpoint to be a map of strings rather than a map of any data type. [#234](https://github.com/patrickcping/pingone-go-sdk-v2/pull/234)

# v0.25.0 (2023-08-08)
Expand Down
6 changes: 6 additions & 0 deletions management/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ type APIClient struct {

FlowPoliciesApi *FlowPoliciesApiService

FormManagementApi *FormManagementApiService

GatewayCredentialsApi *GatewayCredentialsApiService

GatewayInstancesApi *GatewayInstancesApiService
Expand Down Expand Up @@ -149,6 +151,8 @@ type APIClient struct {

PropagationStoresApi *PropagationStoresApiService

RecaptchaConfigurationApi *RecaptchaConfigurationApiService

ResourceAttributesApi *ResourceAttributesApiService

ResourceClientSecretApi *ResourceClientSecretApiService
Expand Down Expand Up @@ -251,6 +255,7 @@ func NewAPIClient(cfg *Configuration) *APIClient {
c.EnableUsersApi = (*EnableUsersApiService)(&c.common)
c.EnvironmentsApi = (*EnvironmentsApiService)(&c.common)
c.FlowPoliciesApi = (*FlowPoliciesApiService)(&c.common)
c.FormManagementApi = (*FormManagementApiService)(&c.common)
c.GatewayCredentialsApi = (*GatewayCredentialsApiService)(&c.common)
c.GatewayInstancesApi = (*GatewayInstancesApiService)(&c.common)
c.GatewayRoleAssignmentsApi = (*GatewayRoleAssignmentsApiService)(&c.common)
Expand Down Expand Up @@ -281,6 +286,7 @@ func NewAPIClient(cfg *Configuration) *APIClient {
c.PropagationRulesApi = (*PropagationRulesApiService)(&c.common)
c.PropagationStoreMetadataApi = (*PropagationStoreMetadataApiService)(&c.common)
c.PropagationStoresApi = (*PropagationStoresApiService)(&c.common)
c.RecaptchaConfigurationApi = (*RecaptchaConfigurationApiService)(&c.common)
c.ResourceAttributesApi = (*ResourceAttributesApiService)(&c.common)
c.ResourceClientSecretApi = (*ResourceClientSecretApiService)(&c.common)
c.ResourceScopesApi = (*ResourceScopesApiService)(&c.common)
Expand Down
Loading