Skip to content

Commit

Permalink
fix: additionalProps in asset
Browse files Browse the repository at this point in the history
fix: aditional props
  • Loading branch information
vladimirvolek committed Nov 23, 2022
1 parent 0051a37 commit 8b4c609
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion openapi.yaml
Expand Up @@ -7920,9 +7920,9 @@ components:
example: image/jpeg
files:
type: array
additionalProperties: true
items:
type: object
additionalProperties: true
properties:
name:
type: string
Expand Down
4 changes: 2 additions & 2 deletions src/generated-types.ts
Expand Up @@ -5281,7 +5281,7 @@ export interface components {
* @example image/jpeg
*/
mediaType?: string;
files?: {
files?: ({
/**
* @description Name of the file
* @example myimage
Expand All @@ -5297,7 +5297,7 @@ export interface components {
* @example My NFT token description
*/
src: string | string[];
}[];
} & { [key: string]: unknown })[];
} & { [key: string]: unknown })
| null;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/assets/asset.yaml
Expand Up @@ -63,9 +63,9 @@ properties:
example: image/jpeg
files:
type: array
additionalProperties: true
items:
type: object
additionalProperties: true
properties:
name:
type: string
Expand Down

0 comments on commit 8b4c609

Please sign in to comment.