Skip to content

Commit

Permalink
Fixed inclusion of FormManagementApi and `RecaptchaConfigurationApi…
Browse files Browse the repository at this point in the history
…` API to the client (#235)

* Fixed inclusion of `FormManagementApi` and `RecaptchaConfigurationApi` API to the client

* changelog
  • Loading branch information
patrickcping authored Aug 10, 2023
1 parent 817e6a0 commit 504dcf0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
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

0 comments on commit 504dcf0

Please sign in to comment.