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 Nov 26, 2024
1 parent ce8787a commit 936b119
Showing 1 changed file with 66 additions and 7 deletions.
73 changes: 66 additions & 7 deletions src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1494,6 +1494,52 @@ export const InvalidParameterDependentItemRuleEnum = {

export type InvalidParameterDependentItemRuleEnum = typeof InvalidParameterDependentItemRuleEnum[keyof typeof InvalidParameterDependentItemRuleEnum];

/**
*
* @export
* @interface InvalidParameterMaximumLength
*/
export interface InvalidParameterMaximumLength {
/**
*
* @type {string}
* @memberof InvalidParameterMaximumLength
*/
'field': string;
/**
* invalid parameters rules
* @type {string}
* @memberof InvalidParameterMaximumLength
*/
'rule': InvalidParameterMaximumLengthRuleEnum;
/**
*
* @type {number}
* @memberof InvalidParameterMaximumLength
*/
'maximum': number;
/**
*
* @type {string}
* @memberof InvalidParameterMaximumLength
*/
'source'?: string;
/**
*
* @type {string}
* @memberof InvalidParameterMaximumLength
*/
'reason': string;
}

export const InvalidParameterMaximumLengthRuleEnum = {
MaxLength: 'max_length',
MaxItems: 'max_items',
Max: 'max'
} as const;

export type InvalidParameterMaximumLengthRuleEnum = typeof InvalidParameterMaximumLengthRuleEnum[keyof typeof InvalidParameterMaximumLengthRuleEnum];

/**
*
* @export
Expand Down Expand Up @@ -1533,11 +1579,13 @@ export interface InvalidParameterMinimumLength {
}

export const InvalidParameterMinimumLengthRuleEnum = {
Length: 'min_length',
Digits: 'min_digits',
Lowercase: 'min_lowercase',
Uppercase: 'min_uppercase',
Symbols: 'min_symbols'
MinLength: 'min_length',
MinDigits: 'min_digits',
MinLowercase: 'min_lowercase',
MinUppercase: 'min_uppercase',
MinSymbols: 'min_symbols',
MinItems: 'min_items',
Min: 'min'
} as const;

export type InvalidParameterMinimumLengthRuleEnum = typeof InvalidParameterMinimumLengthRuleEnum[keyof typeof InvalidParameterMinimumLengthRuleEnum];
Expand Down Expand Up @@ -1577,7 +1625,7 @@ export interface InvalidParameterStandard {
* @type InvalidParametersInner
* @export
*/
export type InvalidParametersInner = InvalidParameterChoiceItem | InvalidParameterDependentItem | InvalidParameterMinimumLength | InvalidParameterStandard;
export type InvalidParametersInner = InvalidParameterChoiceItem | InvalidParameterDependentItem | InvalidParameterMaximumLength | InvalidParameterMinimumLength | InvalidParameterStandard;

/**
* invalid parameters rules
Expand All @@ -1587,7 +1635,6 @@ export type InvalidParametersInner = InvalidParameterChoiceItem | InvalidParamet

export const InvalidRules = {
Required: 'required',
MaxLength: 'max_length',
IsArray: 'is_array',
IsBase64: 'is_base64',
IsBoolean: 'is_boolean',
Expand Down Expand Up @@ -2342,6 +2389,12 @@ export interface Product {
* @memberof Product
*/
'latest_version'?: LatestVersion | null;
/**
* Public labels store information about an entity that can be used for filtering a list of objects. Public labels are intended to store **PUBLIC** metadata. Keys must be of length 1-63 characters, and cannot start with \"kong\", \"konnect\", \"mesh\", \"kic\", or \"_\".
* @type {{ [key: string]: string; }}
* @memberof Product
*/
'public_labels': { [key: string]: string; };
}
/**
*
Expand Down Expand Up @@ -2435,6 +2488,12 @@ export interface ProductCatalogIndexSource {
* @memberof ProductCatalogIndexSource
*/
'latest_version': ProductCatalogIndexSourceLatestVersion | null;
/**
* Public labels store information about an entity that can be used for filtering a list of objects. Public labels are intended to store **PUBLIC** metadata. Keys must be of length 1-63 characters, and cannot start with \"kong\", \"konnect\", \"mesh\", \"kic\", or \"_\".
* @type {{ [key: string]: string; }}
* @memberof ProductCatalogIndexSource
*/
'public_labels': { [key: string]: string; };
}
/**
* Last created version.
Expand Down

0 comments on commit 936b119

Please sign in to comment.