From 4d5674dec8c5441d11d5411580b134d050f642a4 Mon Sep 17 00:00:00 2001 From: team-devx Date: Thu, 23 Jan 2025 20:27:37 +0000 Subject: [PATCH] chore: build SDK from openapi.yaml changes --- src/api.ts | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/src/api.ts b/src/api.ts index d633e90..99e86c5 100644 --- a/src/api.ts +++ b/src/api.ts @@ -297,6 +297,12 @@ export interface AuthStrategyClientCredentials { * @memberof AuthStrategyClientCredentials */ 'auth_methods': Array; + /** + * Possible developer selectable scopes for an application. Only present when using DCR Provider that supports it. + * @type {Array} + * @memberof AuthStrategyClientCredentials + */ + 'available_scopes'?: Array; } export const AuthStrategyClientCredentialsCredentialTypeEnum = { @@ -330,6 +336,12 @@ export interface AuthStrategyKeyAuth { * @memberof AuthStrategyKeyAuth */ 'credential_type': AuthStrategyKeyAuthCredentialTypeEnum; + /** + * + * @type {Array} + * @memberof AuthStrategyKeyAuth + */ + 'key_names': Array; } export const AuthStrategyKeyAuthCredentialTypeEnum = { @@ -1648,6 +1660,7 @@ export const InvalidRules = { IsFqdn: 'is_fqdn', IsArn: 'is_arn', UnknownProperty: 'unknown_property', + MissingReference: 'missing_reference', IsLabel: 'is_label', MatchesRegex: 'matches_regex', Invalid: 'invalid', @@ -6217,7 +6230,7 @@ export const DocumentationApiAxiosParamCreator = function (configuration?: Confi * Returns the specified document from the product\'s document tree. * @summary Get one product document * @param {string} productId Contains a unique identifier used by the Portal API for this resource. - * @param {string} documentId Contains a unique identifier used by the Portal API for this resource. + * @param {string} documentId ID of the document. * @param {DocumentFormatContentTypeEnum} [accept] * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -6327,7 +6340,7 @@ export const DocumentationApiFp = function(configuration?: Configuration) { * Returns the specified document from the product\'s document tree. * @summary Get one product document * @param {string} productId Contains a unique identifier used by the Portal API for this resource. - * @param {string} documentId Contains a unique identifier used by the Portal API for this resource. + * @param {string} documentId ID of the document. * @param {DocumentFormatContentTypeEnum} [accept] * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -6364,7 +6377,7 @@ export const DocumentationApiFactory = function (configuration?: Configuration, * Returns the specified document from the product\'s document tree. * @summary Get one product document * @param {string} productId Contains a unique identifier used by the Portal API for this resource. - * @param {string} documentId Contains a unique identifier used by the Portal API for this resource. + * @param {string} documentId ID of the document. * @param {DocumentFormatContentTypeEnum} [accept] * @param {*} [options] Override http request option. * @throws {RequiredError} @@ -6402,7 +6415,7 @@ export interface DocumentationApiGetProductDocumentRequest { readonly productId: string /** - * Contains a unique identifier used by the Portal API for this resource. + * ID of the document. * @type {string} * @memberof DocumentationApiGetProductDocument */