Skip to content

Commit

Permalink
chore: build SDK from openapi.yaml changes
Browse files Browse the repository at this point in the history
  • Loading branch information
team-devx-bot committed Jan 23, 2025
1 parent 22f7325 commit 4d5674d
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,12 @@ export interface AuthStrategyClientCredentials {
* @memberof AuthStrategyClientCredentials
*/
'auth_methods': Array<string>;
/**
* Possible developer selectable scopes for an application. Only present when using DCR Provider that supports it.
* @type {Array<string>}
* @memberof AuthStrategyClientCredentials
*/
'available_scopes'?: Array<string>;
}

export const AuthStrategyClientCredentialsCredentialTypeEnum = {
Expand Down Expand Up @@ -330,6 +336,12 @@ export interface AuthStrategyKeyAuth {
* @memberof AuthStrategyKeyAuth
*/
'credential_type': AuthStrategyKeyAuthCredentialTypeEnum;
/**
*
* @type {Array<string>}
* @memberof AuthStrategyKeyAuth
*/
'key_names': Array<string>;
}

export const AuthStrategyKeyAuthCredentialTypeEnum = {
Expand Down Expand Up @@ -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',
Expand Down Expand Up @@ -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}
Expand Down Expand Up @@ -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}
Expand Down Expand Up @@ -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}
Expand Down Expand Up @@ -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
*/
Expand Down

0 comments on commit 4d5674d

Please sign in to comment.