diff --git a/CHANGELOG.md b/CHANGELOG.md index 57279836..d4f6656d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/management/CHANGELOG.md b/management/CHANGELOG.md index 7d208df5..ed243fbf 100644 --- a/management/CHANGELOG.md +++ b/management/CHANGELOG.md @@ -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) diff --git a/management/client.go b/management/client.go index 775bbab6..47fc947b 100644 --- a/management/client.go +++ b/management/client.go @@ -89,6 +89,8 @@ type APIClient struct { FlowPoliciesApi *FlowPoliciesApiService + FormManagementApi *FormManagementApiService + GatewayCredentialsApi *GatewayCredentialsApiService GatewayInstancesApi *GatewayInstancesApiService @@ -149,6 +151,8 @@ type APIClient struct { PropagationStoresApi *PropagationStoresApiService + RecaptchaConfigurationApi *RecaptchaConfigurationApiService + ResourceAttributesApi *ResourceAttributesApiService ResourceClientSecretApi *ResourceClientSecretApiService @@ -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) @@ -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)