├── .gitattributes ├── api ├── resources │ ├── episode │ │ ├── included.yml │ │ ├── one.yml │ │ └── many.yml │ ├── manga │ │ ├── included.yml │ │ ├── one.yml │ │ └── many.yml │ ├── anime │ │ ├── included.yml │ │ ├── one.yml │ │ └── many.yml │ ├── included.yml │ ├── error │ │ ├── base.yml │ │ ├── 400.yml │ │ ├── 404.yml │ │ └── 403.yml │ └── algoliaKeys │ │ ├── many.yml │ │ └── one.yml ├── schemas │ ├── filters │ │ ├── resourceFilters │ │ │ ├── base.yml │ │ │ ├── base_sluggable.yml │ │ │ ├── base_episodic.yml │ │ │ ├── manga.yml │ │ │ ├── anime.yml │ │ │ └── media.yml │ │ ├── slug.yml │ │ ├── resource │ │ │ ├── anime.yml │ │ │ ├── base.yml │ │ │ └── manga.yml │ │ ├── id.yml │ │ ├── text.yml │ │ ├── status.yml │ │ ├── ageRating.yml │ │ ├── subtype_anime.yml │ │ ├── subtype_manga.yml │ │ ├── since.yml │ │ ├── categories.yml │ │ ├── streamers.yml │ │ ├── season.yml │ │ ├── year.yml │ │ ├── episodeCount.yml │ │ ├── userCount.yml │ │ ├── chapterCount.yml │ │ ├── episodeLength.yml │ │ ├── seasonYear.yml │ │ └── averageRating.yml │ ├── enums │ │ ├── ageRating.yml │ │ ├── algoliaIndex.yml │ │ ├── season.yml │ │ ├── status.yml │ │ ├── subtype_anime.yml │ │ └── subtype_manga.yml │ ├── resources │ │ ├── relationships │ │ │ ├── reviews.yml │ │ │ ├── castings.yml │ │ │ ├── genres.yml │ │ │ ├── animeStaff.yml │ │ │ ├── mangaStaff.yml │ │ │ ├── animeCharacters.yml │ │ │ ├── installments.yml │ │ │ ├── mangaCharacters.yml │ │ │ ├── animeProductions.yml │ │ │ ├── anime.yml │ │ │ ├── manga.yml │ │ │ ├── quotes.yml │ │ │ ├── videos.yml │ │ │ ├── chapters.yml │ │ │ ├── episodes.yml │ │ │ ├── mappings.yml │ │ │ ├── staff.yml │ │ │ ├── categories.yml │ │ │ ├── characters.yml │ │ │ ├── productions.yml │ │ │ ├── streamingLinks.yml │ │ │ └── mediaRelationships.yml │ │ ├── resourceRelationships │ │ │ ├── base_episodic.yml │ │ │ ├── episode.yml │ │ │ ├── manga.yml │ │ │ ├── anime.yml │ │ │ └── media.yml │ │ ├── base_sluggable.yml │ │ ├── base.yml │ │ ├── base_episodic.yml │ │ ├── algoliaKeys │ │ │ ├── users.yml │ │ │ ├── groups.yml │ │ │ ├── posts.yml │ │ │ ├── media.yml │ │ │ └── characters.yml │ │ ├── anime.yml │ │ ├── manga.yml │ │ ├── episode.yml │ │ └── media.yml │ ├── meta │ │ └── count.yml │ ├── links │ │ ├── self.yml │ │ ├── self_related.yml │ │ └── pagination.yml │ └── id_type.yml ├── parameters │ ├── path │ │ ├── id.yml │ │ └── index.yml │ ├── sort.yml │ ├── filter.yml │ ├── include.yml │ ├── fields.yml │ └── page.yml ├── paths │ ├── search │ │ ├── algolia-keys.yml │ │ └── algolia-keys_index.yml │ └── media │ │ ├── manga.yml │ │ ├── anime.yml │ │ ├── episodes.yml │ │ ├── manga_id.yml │ │ ├── anime_id.yml │ │ └── episodes_id.yml └── kitsu.yml ├── .gitignore ├── .vscode └── extensions.json ├── .editorconfig ├── .github └── workflows │ └── deploy.yml ├── package.json ├── README.md └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | api/**/*.yml linguist-detectable 2 | * eol=lf 3 | -------------------------------------------------------------------------------- /api/resources/episode/included.yml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ../included.yml 3 | -------------------------------------------------------------------------------- /api/resources/manga/included.yml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ../included.yml 3 | -------------------------------------------------------------------------------- /api/schemas/filters/resourceFilters/base.yml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ../id.yml 3 | -------------------------------------------------------------------------------- /api/schemas/filters/resourceFilters/base_sluggable.yml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ../slug.yml 3 | -------------------------------------------------------------------------------- /api/schemas/enums/ageRating.yml: -------------------------------------------------------------------------------- 1 | 2 | type: string 3 | enum: [G, PG, R, R18] 4 | example: PG 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | docs 3 | apiary.apib 4 | *.log* 5 | 6 | kitsu.yml 7 | redoc-static.html 8 | -------------------------------------------------------------------------------- /api/schemas/enums/algoliaIndex.yml: -------------------------------------------------------------------------------- 1 | type: string 2 | enum: 3 | - character 4 | - group 5 | - media 6 | - post 7 | - user 8 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/reviews.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: reviews 3 | readOnly: true 4 | deprecated: true 5 | -------------------------------------------------------------------------------- /api/schemas/enums/season.yml: -------------------------------------------------------------------------------- 1 | type: string 2 | enum: 3 | - winter 4 | - spring 5 | - summer 6 | - fall 7 | example: spring 8 | -------------------------------------------------------------------------------- /api/schemas/filters/resourceFilters/base_episodic.yml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ../episodeCount.yml 3 | - $ref: ../episodeLength.yml 4 | -------------------------------------------------------------------------------- /api/schemas/filters/slug.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | slug: 3 | type: string 4 | description: Filter by `slug` 5 | example: trigun 6 | -------------------------------------------------------------------------------- /api/parameters/path/id.yml: -------------------------------------------------------------------------------- 1 | in: path 2 | name: id 3 | description: Resource ID 4 | required: true 5 | schema: 6 | type: string 7 | example: '1' 8 | -------------------------------------------------------------------------------- /api/schemas/enums/status.yml: -------------------------------------------------------------------------------- 1 | type: string 2 | enum: 3 | - tba 4 | - unreleased 5 | - upcoming 6 | - current 7 | - finished 8 | example: finished 9 | -------------------------------------------------------------------------------- /api/schemas/filters/resource/anime.yml: -------------------------------------------------------------------------------- 1 | $ref: ../../../parameters/filter.yml 2 | schema: 3 | allOf: 4 | - $ref: ../resourceFilters/anime.yml 5 | -------------------------------------------------------------------------------- /api/schemas/filters/resource/base.yml: -------------------------------------------------------------------------------- 1 | $ref: ../../../parameters/filter.yml 2 | schema: 3 | allOf: 4 | - $ref: ../resourceFilters/base.yml 5 | -------------------------------------------------------------------------------- /api/schemas/filters/resource/manga.yml: -------------------------------------------------------------------------------- 1 | $ref: ../../../parameters/filter.yml 2 | schema: 3 | allOf: 4 | - $ref: ../resourceFilters/manga.yml 5 | -------------------------------------------------------------------------------- /api/schemas/filters/resourceFilters/manga.yml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ./media.yml 3 | - $ref: ../chapterCount.yml 4 | - $ref: ../subtype_manga.yml 5 | -------------------------------------------------------------------------------- /api/schemas/enums/subtype_anime.yml: -------------------------------------------------------------------------------- 1 | type: string 2 | enum: 3 | - ONA 4 | - OVA 5 | - TV 6 | - movie 7 | - music 8 | - special 9 | example: TV 10 | -------------------------------------------------------------------------------- /api/schemas/resources/resourceRelationships/base_episodic.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | properties: 3 | episodes: 4 | $ref: ../relationships/episodes.yml 5 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/castings.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: castings 3 | deprecated: true 4 | readOnly: true 5 | description: Replaced by `staff` 6 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/genres.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: genres 3 | deprecated: true 4 | readOnly: true 5 | description: Replaced by `categories` 6 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/animeStaff.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: animeStaff 3 | deprecated: true 4 | readOnly: true 5 | description: Replaced by `staff` 6 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/mangaStaff.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: mangaStaff 3 | deprecated: true 4 | readOnly: true 5 | description: Replaced by `staff` 6 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "vncz.vscode-apielements", 4 | "EditorConfig.editorconfig", 5 | "42Crunch.vscode-openapi" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /api/schemas/enums/subtype_manga.yml: -------------------------------------------------------------------------------- 1 | type: string 2 | enum: 3 | - manga 4 | - manhwa 5 | - manhua 6 | - novel 7 | - oneshot 8 | - doujin 9 | - oel 10 | example: manga 11 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/animeCharacters.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: animeCharacters 3 | deprecated: true 4 | readOnly: true 5 | description: Replaced by `characters` 6 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/installments.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: installments 3 | deprecated: true 4 | readOnly: true 5 | description: Replaced by `mediaRelationships` 6 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/mangaCharacters.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: mangaCharacters 3 | deprecated: true 4 | readOnly: true 5 | description: Replaced by `characters` 6 | -------------------------------------------------------------------------------- /api/schemas/filters/id.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | id: 3 | type: string 4 | description: Filter by `id`. Use a comma-deliminated list to filter by multiple IDs 5 | example: '1,2' 6 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/animeProductions.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: animeProductions 3 | deprecated: true 4 | readOnly: true 5 | description: Replaced by `productions` 6 | -------------------------------------------------------------------------------- /api/schemas/resources/base_sluggable.yml: -------------------------------------------------------------------------------- 1 | # Implements: 2 | # filter[slug] 3 | type: object 4 | properties: 5 | slug: 6 | type: string 7 | description: Unique URL-safe identifier 8 | -------------------------------------------------------------------------------- /api/parameters/path/index.yml: -------------------------------------------------------------------------------- 1 | in: path 2 | name: index 3 | description: Short name of the Algolia Search Index 4 | required: true 5 | schema: 6 | $ref: ../../schemas/enums/algoliaIndex.yml 7 | -------------------------------------------------------------------------------- /api/schemas/filters/text.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | text: 3 | type: string 4 | description: Search within `titles`, `abbreviatedTitles`, `description` `people` and `characters` 5 | example: id 6 | -------------------------------------------------------------------------------- /api/schemas/meta/count.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | readOnly: true 3 | properties: 4 | count: 5 | type: integer 6 | description: Total number of resources in the collection 7 | example: 15000 8 | -------------------------------------------------------------------------------- /api/resources/anime/included.yml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ../included.yml 3 | - properties: 4 | included: 5 | items: 6 | anyOf: 7 | - $ref: ../../schemas/resources/episode.yml 8 | 9 | -------------------------------------------------------------------------------- /api/schemas/filters/status.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | status: 3 | $ref: ../../schemas/enums/status.yml 4 | description: Filter by status. Use a comma-deliminated list to filter by multiple statuses 5 | -------------------------------------------------------------------------------- /api/schemas/links/self.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | readOnly: true 3 | properties: 4 | self: 5 | type: string 6 | description: Link to the individual resource 7 | example: https://kitsu.io/api/edge/... 8 | -------------------------------------------------------------------------------- /api/schemas/resources/resourceRelationships/episode.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | properties: 3 | media: 4 | oneOf: 5 | - $ref: ../relationships/anime.yml 6 | videos: 7 | $ref: ../relationships/videos.yml 8 | -------------------------------------------------------------------------------- /api/resources/anime/one.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - data 4 | allOf: 5 | - properties: 6 | data: 7 | type: object 8 | $ref: ../../schemas/resources/anime.yml 9 | - $ref: ./included.yml 10 | -------------------------------------------------------------------------------- /api/resources/manga/one.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - data 4 | allOf: 5 | - properties: 6 | data: 7 | type: object 8 | $ref: ../../schemas/resources/manga.yml 9 | - $ref: ./included.yml 10 | -------------------------------------------------------------------------------- /api/schemas/filters/ageRating.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | ageRating: 3 | $ref: ../enums/ageRating.yml 4 | description: | 5 | Filter by `ageRating`. Use a comma-deliminated list to filter by multiple age ratings 6 | -------------------------------------------------------------------------------- /api/schemas/filters/subtype_anime.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | subtype: 3 | $ref: ../../schemas/enums/subtype_anime.yml 4 | description: Filter by subtype. Use a comma-deliminated list to filter by multiple subtypes 5 | -------------------------------------------------------------------------------- /api/schemas/filters/subtype_manga.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | subtype: 3 | $ref: ../../schemas/enums/subtype_manga.yml 4 | description: Filter by subtype. Use a comma-deliminated list to filter by multiple subtypes 5 | -------------------------------------------------------------------------------- /api/resources/episode/one.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - data 4 | allOf: 5 | - properties: 6 | data: 7 | type: object 8 | $ref: ../../schemas/resources/episode.yml 9 | - $ref: ./included.yml 10 | -------------------------------------------------------------------------------- /api/resources/included.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | included: 3 | type: array 4 | readOnly: true 5 | description: Included resources. Only present with the `include={relationship}` query parameter 6 | items: 7 | type: object 8 | -------------------------------------------------------------------------------- /api/schemas/filters/since.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | since: 3 | type: string 4 | format: date-time 5 | description: Filter by `updatedAt`. Returns resources updated since the requested Date Time. 6 | example: '2020-01-01T00:00:00.000Z' 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.{apib,mson}] 12 | indent_size = 4 13 | -------------------------------------------------------------------------------- /api/schemas/filters/resourceFilters/anime.yml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ./media.yml 3 | - $ref: ./base_episodic.yml 4 | - $ref: ../ageRating.yml 5 | - $ref: ../season.yml 6 | - $ref: ../seasonYear.yml 7 | - $ref: ../streamers.yml 8 | - $ref: ../subtype_anime.yml 9 | -------------------------------------------------------------------------------- /api/schemas/filters/categories.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | categories: 3 | type: string 4 | description: | 5 | Filter media by categories. Uses the categories' `slug` value. Use a comma-deliminated list to filter by multiple categories 6 | example: comedy 7 | -------------------------------------------------------------------------------- /api/schemas/filters/streamers.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | streamers: 3 | type: string 4 | description: | 5 | Filter media by streaming providers. Uses the streamers' `slug` value. Use a comma-deliminated list to filter by multiple streamers 6 | example: crunchyroll 7 | -------------------------------------------------------------------------------- /api/resources/error/base.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | properties: 3 | errors: 4 | type: object 5 | properties: 6 | title: 7 | type: string 8 | detail: 9 | type: string 10 | code: 11 | type: string 12 | status: 13 | type: string 14 | -------------------------------------------------------------------------------- /api/schemas/filters/season.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | season: 3 | $ref: ../../schemas/enums/season.yml 4 | description: | 5 | Filter by season. Use a comma-deliminated list to filter by multiple seasons 6 | 7 | Dec-Feb = Winter; Mar-May = Spring; Jun-Aug = Summer; Oct-Nov = Fall 8 | -------------------------------------------------------------------------------- /api/schemas/id_type.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - id 4 | - type 5 | properties: 6 | id: 7 | type: string 8 | format: integer 9 | description: ID of the resource 10 | example: '1' 11 | 12 | type: 13 | type: string 14 | description: Type of the resource 15 | -------------------------------------------------------------------------------- /api/schemas/resources/resourceRelationships/manga.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | properties: 3 | chapters: 4 | $ref: ../relationships/chapters.yml 5 | mangaCharacters: 6 | $ref: ../relationships/mangaCharacters.yml 7 | mangaStaff: 8 | $ref: ../relationships/mangaStaff.yml 9 | 10 | -------------------------------------------------------------------------------- /api/schemas/filters/resourceFilters/media.yml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ./base.yml 3 | - $ref: ./base_sluggable.yml 4 | - $ref: ../averageRating.yml 5 | - $ref: ../categories.yml 6 | - $ref: ../since.yml 7 | - $ref: ../status.yml 8 | - $ref: ../text.yml 9 | - $ref: ../userCount.yml 10 | - $ref: ../year.yml 11 | -------------------------------------------------------------------------------- /api/parameters/sort.yml: -------------------------------------------------------------------------------- 1 | in: query 2 | name: sort 3 | description: | 4 | Sort by ID or resource attributes in ascending order. Prefix with `-` to sort descending. Use a comma-deliminated list to sort by multiple attributes. 5 | 6 | [Sorting](/#section/JSON:API/Sorting) 7 | schema: 8 | type: string 9 | example: id 10 | -------------------------------------------------------------------------------- /api/parameters/filter.yml: -------------------------------------------------------------------------------- 1 | in: query 2 | name: filter 3 | description: | 4 | Filter resources 5 | 6 | [Filtering and Search](/#section/JSON:API/Filtering-and-Search) 7 | schema: 8 | type: object 9 | style: deepObject 10 | allowReserved: true 11 | explode: true 12 | example: 13 | filter1: '1,2' 14 | filter2: example 15 | -------------------------------------------------------------------------------- /api/resources/algoliaKeys/many.yml: -------------------------------------------------------------------------------- 1 | allOf: 2 | - $ref: ../../schemas/resources/algoliaKeys/characters.yml 3 | - $ref: ../../schemas/resources/algoliaKeys/groups.yml 4 | - $ref: ../../schemas/resources/algoliaKeys/media.yml 5 | - $ref: ../../schemas/resources/algoliaKeys/posts.yml 6 | - $ref: ../../schemas/resources/algoliaKeys/users.yml 7 | -------------------------------------------------------------------------------- /api/resources/algoliaKeys/one.yml: -------------------------------------------------------------------------------- 1 | oneOf: 2 | - $ref: ../../schemas/resources/algoliaKeys/characters.yml 3 | - $ref: ../../schemas/resources/algoliaKeys/groups.yml 4 | - $ref: ../../schemas/resources/algoliaKeys/media.yml 5 | - $ref: ../../schemas/resources/algoliaKeys/posts.yml 6 | - $ref: ../../schemas/resources/algoliaKeys/users.yml 7 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/anime.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: anime 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: object 8 | properties: 9 | id: 10 | type: string 11 | example: '1' 12 | type: 13 | type: string 14 | enum: [anime] 15 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/manga.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: anime 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: object 8 | properties: 9 | id: 10 | type: string 11 | example: '1' 12 | type: 13 | type: string 14 | enum: [anime] 15 | -------------------------------------------------------------------------------- /api/schemas/links/self_related.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | readOnly: true 3 | properties: 4 | self: 5 | type: string 6 | description: Retrieve only the relationship resource ID and type 7 | example: https://kitsu.io/api/edge/... 8 | 9 | related: 10 | type: string 11 | description: The relationship resource data 12 | example: https://kitsu.io/api/edge/... 13 | -------------------------------------------------------------------------------- /api/resources/error/400.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | allOf: 3 | - $ref: ./base.yml 4 | - properties: 5 | errors: 6 | properties: 7 | title: 8 | example: Invalid field 9 | detail: 10 | example: '{field} is not a valid relationship of {resource}' 11 | code: 12 | example: '112' 13 | status: 14 | enum: ['400'] 15 | -------------------------------------------------------------------------------- /api/schemas/filters/year.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | year: 3 | type: integer 4 | description: | 5 | Filter by year. Supports numeric ranges with Ruby syntax: 6 | - `2020..` to inclusively get media from `>= 2020` 7 | - `..2020` to inclusively get media from `<= 2020` 8 | - `2015..2020` to inclusively get media from `>= 2015` and `<= 2020` 9 | example: 2020 10 | -------------------------------------------------------------------------------- /api/resources/error/404.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | allOf: 3 | - $ref: ./base.yml 4 | - properties: 5 | errors: 6 | properties: 7 | title: 8 | enum: [Record not found] 9 | detail: 10 | enum: 11 | - The record identified by {id} could not be found. 12 | code: 13 | enum: ['404'] 14 | status: 15 | enum: ['404'] 16 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/quotes.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: quotes 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [quotes] 17 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/videos.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: videos 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [videos] 17 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/chapters.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: chapters 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [chapters] 17 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/episodes.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: episodes 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [episodes] 17 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/mappings.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: mappings 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [mappings] 17 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/staff.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: mediaStaff 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [mediaStaff] 17 | -------------------------------------------------------------------------------- /api/resources/anime/many.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - data 4 | - links 5 | - meta 6 | allOf: 7 | - properties: 8 | data: 9 | type: array 10 | items: 11 | $ref: ../../schemas/resources/anime.yml 12 | meta: 13 | allOf: 14 | - $ref: ../../schemas/meta/count.yml 15 | links: 16 | $ref: ../../schemas/links/pagination.yml 17 | - $ref: ./included.yml 18 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/categories.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: categories 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [categories] 17 | -------------------------------------------------------------------------------- /api/resources/episode/many.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - data 4 | - links 5 | - meta 6 | allOf: 7 | - properties: 8 | data: 9 | type: array 10 | items: 11 | $ref: ../../schemas/resources/episode.yml 12 | meta: 13 | allOf: 14 | - $ref: ../../schemas/meta/count.yml 15 | links: 16 | $ref: ../../schemas/links/pagination.yml 17 | - $ref: ./included.yml 18 | 19 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/characters.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: mediaCharacters 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [mediaCharacters] 17 | -------------------------------------------------------------------------------- /api/resources/manga/many.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - data 4 | - links 5 | - meta 6 | allOf: 7 | - properties: 8 | data: 9 | type: array 10 | items: 11 | $ref: ../../schemas/resources/manga.yml 12 | meta: 13 | allOf: 14 | - $ref: ../../schemas/meta/count.yml 15 | links: 16 | $ref: ../../schemas/links/pagination.yml 17 | - $ref: ./included.yml 18 | 19 | 20 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/productions.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: mediaProductions 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [mediaProductions] 17 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/streamingLinks.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: streamingLinks 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [streamingLinks] 17 | -------------------------------------------------------------------------------- /api/parameters/include.yml: -------------------------------------------------------------------------------- 1 | in: query 2 | name: include 3 | description: | 4 | Include related resources. Use a dot-seperated path to include relationships of relationships. Use a comma-deliminated list to include multiple relationships 5 | 6 | [Inclusion of Related Resources](/#section/JSON:API/Inclusion-of-Related-Resources) 7 | schema: 8 | type: string 9 | example: characters,staff.person 10 | explode: false 11 | -------------------------------------------------------------------------------- /api/resources/error/403.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | allOf: 3 | - $ref: ./base.yml 4 | - properties: 5 | errors: 6 | properties: 7 | title: 8 | enum: [Create/Update/Delete Forbidden] 9 | detail: 10 | enum: 11 | - You don't have permission to create/update/delete this {resource} 12 | code: 13 | enum: ['403'] 14 | status: 15 | enum: ['403'] 16 | -------------------------------------------------------------------------------- /api/schemas/resources/base.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | properties: 3 | createdAt: 4 | type: string 5 | readOnly: true 6 | format: date-time 7 | description: Resource creation 8 | example: '2013-02-20T16:00:13.609Z' 9 | 10 | updatedAt: 11 | type: string 12 | readOnly: true 13 | format: date-time 14 | description: Most recent resource update 15 | example: '2017-12-20T00:00:09.270Z' 16 | -------------------------------------------------------------------------------- /api/schemas/resources/relationships/mediaRelationships.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: mediaRelationships 3 | properties: 4 | links: 5 | $ref: ../../links/self_related.yml 6 | data: 7 | type: array 8 | items: 9 | type: object 10 | properties: 11 | id: 12 | type: string 13 | example: '1' 14 | type: 15 | type: string 16 | enum: [mediaRelationships] 17 | -------------------------------------------------------------------------------- /api/schemas/resources/resourceRelationships/anime.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | allOf: 3 | - $ref: ./base_episodic.yml 4 | - properties: 5 | streamingLinks: 6 | $ref: ../relationships/streamingLinks.yml 7 | animeProductions: 8 | $ref: ../relationships/animeProductions.yml 9 | animeCharacters: 10 | $ref: ../relationships/animeCharacters.yml 11 | animeStaff: 12 | $ref: ../relationships/animeStaff.yml 13 | 14 | -------------------------------------------------------------------------------- /api/schemas/filters/episodeCount.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | episodeCount: 3 | type: integer 4 | description: | 5 | Filter by `episodeCount`. Supports numeric ranges with Ruby syntax: 6 | - `20..` to inclusively get media with `>= 20` episodes 7 | - `..20` to inclusively get media with `<= 20` episodes 8 | - `12..24` to inclusively get media with `>= 12` and `<= 24` episodes 9 | example: 100 10 | minimum: 0 11 | -------------------------------------------------------------------------------- /api/schemas/filters/userCount.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | userCount: 3 | type: integer 4 | description: | 5 | Filter by `userCount`. Supports numeric ranges with Ruby syntax: 6 | - `10000..` to inclusively get media with `>= 10,000` users 7 | - `..100` to inclusively get media with `<= 100` users 8 | - `100..200` to inclusively get media with `>= 100` and `<= 200` users 9 | example: 10000 10 | minimum: 0 11 | -------------------------------------------------------------------------------- /api/schemas/filters/chapterCount.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | chapterCount: 3 | type: integer 4 | minimum: 0 5 | description: | 6 | Filter by `chapterCount`. Supports numeric ranges with Ruby syntax: 7 | - `100..` to inclusively get manga with `>= 100` chapters 8 | - `..100` to inclusively get manga with `<= 100` chapters 9 | - `100..200` to inclusively get manga with `>= 100` and `<= 200` chapters 10 | example: 100 11 | -------------------------------------------------------------------------------- /api/schemas/filters/episodeLength.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | episodeLength: 3 | type: integer 4 | description: | 5 | Filter by `episodeLength`. Supports numeric ranges with Ruby syntax: 6 | - `20..` to inclusively get media with `>= 20` minute episodes 7 | - `..20` to inclusively get media with `<= 20` minute episodes 8 | - `12..24` to inclusively get media with `>= 12` and `<= 24` minute episodes 9 | example: 24 10 | minimum: 0 11 | -------------------------------------------------------------------------------- /api/schemas/filters/seasonYear.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | seasonYear: 3 | type: integer 4 | description: | 5 | Filter by season year. Supports numeric ranges with Ruby syntax: 6 | - `2020..` to inclusively get media from `>= 2020` 7 | - `..2020` to inclusively get media from `<= 2020` 8 | - `2015..2020` to inclusively get media from `>= 2015` and `<= 2020` 9 | 10 | 2020 is the season year for December 2019 11 | example: 2020 12 | -------------------------------------------------------------------------------- /api/schemas/filters/averageRating.yml: -------------------------------------------------------------------------------- 1 | properties: 2 | averageRating: 3 | type: integer 4 | description: | 5 |
filter[averageRating]=80
6 | 7 | Filter by `averageRating`. Supports numeric ranges with Ruby syntax: 8 | - `80..` to inclusively get media rated `>= 80%` 9 | - `..80` to inclusively get media rated `<= 80%` 10 | - `50..80` to inclusively get media rated `>= 50%` and `<= 80%` 11 | minimum: 10 12 | maximum: 100 13 | -------------------------------------------------------------------------------- /api/parameters/fields.yml: -------------------------------------------------------------------------------- 1 | in: query 2 | name: fields 3 | description: | 4 | Return only the provided attributes and relationships in the request response. Use a comma-deliminated list for multiple attributes/relationships 5 | 6 | [Sparse Fieldsets](/#section/JSON:API/Sparse-Fieldsets) 7 | schema: 8 | type: object 9 | additionalProperties: 10 | type: string 11 | example: 12 | anime: slug 13 | categories: slug,title 14 | style: deepObject 15 | allowReserved: true 16 | explode: true 17 | -------------------------------------------------------------------------------- /api/schemas/resources/base_episodic.yml: -------------------------------------------------------------------------------- 1 | # Implements 2 | # filter[episodeCount] 3 | # filter[episodeLength] 4 | type: object 5 | properties: 6 | episodeCount: 7 | type: integer 8 | nullable: true 9 | minimum: 1 10 | 11 | episodeLength: 12 | type: integer 13 | format: minutes 14 | nullable: true 15 | minimum: 1 16 | description: Length of the episode in minutes 17 | 18 | totalLength: 19 | type: integer 20 | format: minutes 21 | nullable: true 22 | minimum: 1 23 | readOnly: true 24 | -------------------------------------------------------------------------------- /api/paths/search/algolia-keys.yml: -------------------------------------------------------------------------------- 1 | get: 2 | tags: 3 | - Algolia 4 | summary: All Algolia Keys 5 | description: | 6 | Get all the Algolia Keys needed to search Kitsu with Algolia. 7 | 8 | These keys **can** contain private information for requests with a valid Authorization header - [check the Algolia section description for details](./#tag/Algolia). 9 | responses: 10 | '200': 11 | description: OK 12 | content: 13 | application/vnd.api+json: 14 | schema: 15 | $ref: ../../resources/algoliaKeys/many.yml 16 | -------------------------------------------------------------------------------- /api/schemas/resources/algoliaKeys/users.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: Users 3 | properties: 4 | users: 5 | type: object 6 | description: Search-only API Key and Index for users 7 | properties: 8 | key: 9 | type: string 10 | format: base64 11 | description: Algolia Search-only API Key for the users index 12 | example: ZXhhbXBsZSB1c2Vycw== 13 | 14 | index: 15 | type: string 16 | format: base64 17 | description: Name of the users index on Algolia 18 | enum: [production_users] 19 | -------------------------------------------------------------------------------- /api/schemas/resources/algoliaKeys/groups.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: Groups 3 | properties: 4 | groups: 5 | type: object 6 | description: Search-only API Key and Index for groups 7 | properties: 8 | key: 9 | type: string 10 | format: base64 11 | description: Algolia Search-only API Key for the groups index 12 | example: ZXhhbXBsZSBncm91cHM= 13 | 14 | index: 15 | type: string 16 | format: base64 17 | description: Name of the groups index on Algolia 18 | enum: [production_groups] 19 | -------------------------------------------------------------------------------- /api/schemas/resources/algoliaKeys/posts.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: Posts 3 | properties: 4 | posts: 5 | type: object 6 | description: Search-only API Key and Index for posts 7 | properties: 8 | key: 9 | type: string 10 | format: base64 11 | description: Algolia Search-only API Key for the posts index 12 | example: ZXhhbXBsZSBwb3N0cw== 13 | 14 | index: 15 | type: string 16 | format: base64 17 | description: Name of the posts index on Algolia 18 | enum: [production_posts] 19 | 20 | -------------------------------------------------------------------------------- /api/schemas/resources/algoliaKeys/media.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: Media 3 | properties: 4 | media: 5 | type: object 6 | description: Search-only API Key and Index for anime and manga 7 | properties: 8 | key: 9 | type: string 10 | format: base64 11 | description: Algolia Search-only API Key for the media index 12 | example: ZXhhbXBsZSBtZWRpYQ== 13 | 14 | index: 15 | type: string 16 | format: base64 17 | description: Name of the media index on Algolia 18 | enum: [production_media] 19 | -------------------------------------------------------------------------------- /api/schemas/resources/algoliaKeys/characters.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | title: Characters 3 | properties: 4 | characters: 5 | type: object 6 | description: Search-only API Key and Index for characters 7 | properties: 8 | key: 9 | type: string 10 | format: base64 11 | description: Algolia Search-only API Key for the characters index 12 | example: ZXhhbXBsZSBjaGFyYWN0ZXJz 13 | 14 | index: 15 | type: string 16 | format: base64 17 | description: Name of the characters index on Algolia 18 | enum: [production_characters] 19 | -------------------------------------------------------------------------------- /api/paths/search/algolia-keys_index.yml: -------------------------------------------------------------------------------- 1 | get: 2 | tags: 3 | - Algolia 4 | summary: Single Algolia Key 5 | description: | 6 | Get an Algolia Key needed to search Kitsu with Algolia. 7 | 8 | These keys **can** contain private information for requests with a valid Authorization header - [check the Algolia section description for details](./#tag/Algolia). 9 | responses: 10 | '200': 11 | description: OK 12 | content: 13 | application/vnd.api+json: 14 | schema: 15 | $ref: ../../resources/algoliaKeys/one.yml 16 | parameters: 17 | - $ref: ../../parameters/path/index.yml 18 | -------------------------------------------------------------------------------- /api/schemas/links/pagination.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | readOnly: true 3 | required: 4 | - first 5 | - last 6 | properties: 7 | first: 8 | type: string 9 | description: First page of the collection 10 | example: https://kitsu.io/api/edge/... 11 | 12 | prev: 13 | type: string 14 | description: Previous page of the collection 15 | example: https://kitsu.io/api/edge/... 16 | 17 | next: 18 | type: string 19 | description: Next page of the collection 20 | example: https://kitsu.io/api/edge/... 21 | 22 | last: 23 | type: string 24 | description: Last page of the collection 25 | example: https://kitsu.io/api/edge/... 26 | -------------------------------------------------------------------------------- /api/parameters/page.yml: -------------------------------------------------------------------------------- 1 | in: query 2 | name: page 3 | description: | 4 | Resource pagination 5 | 6 | [Pagination](/#section/JSON:API/Pagination) 7 | schema: 8 | type: object 9 | properties: 10 | limit: 11 | type: integer 12 | description: Number of resources to return per page. Maximum value for most resources is `20` 13 | example: 20 14 | offset: 15 | type: integer 16 | description: Number of resources to offset pagination by. Using the `links.next|prev` URL handles this for you, or you can do it manually with `limit * page` or `offset += limit` 17 | example: 0 18 | example: 19 | limit: 20 20 | offset: 0 21 | style: deepObject 22 | allowReserved: true 23 | explode: true 24 | -------------------------------------------------------------------------------- /api/schemas/resources/resourceRelationships/media.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | properties: 3 | genres: 4 | $ref: ../relationships/genres.yml 5 | categories: 6 | $ref: ../relationships/categories.yml 7 | castings: 8 | $ref: ../relationships/castings.yml 9 | installments: 10 | $ref: ../relationships/installments.yml 11 | mappings: 12 | $ref: ../relationships/mappings.yml 13 | reviews: 14 | $ref: ../relationships/reviews.yml 15 | mediaRelationships: 16 | $ref: ../relationships/mediaRelationships.yml 17 | characters: 18 | $ref: ../relationships/characters.yml 19 | staff: 20 | $ref: ../relationships/staff.yml 21 | productions: 22 | $ref: ../relationships/productions.yml 23 | quotes: 24 | $ref: ../relationships/quotes.yml 25 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: API Docs Deployment 2 | on: 3 | push: 4 | branches: 5 | - openapi3 6 | jobs: 7 | deploy: 8 | name: GitHub Pages 9 | runs-on: ubuntu-latest 10 | steps: 11 | - name: Checkout repository 12 | uses: actions/checkout@v2 13 | with: 14 | persist-credentials: false 15 | - name: Use node 16 16 | uses: actions/setup-node@v1 17 | with: 18 | node-version: 16 19 | - name: Restore cache 20 | uses: actions/cache@v2 21 | with: 22 | path: node_modules 23 | key: yarn-${{ hashFiles('**/yarn.lock') }} 24 | restore-keys: yarn- 25 | - name: Install yarn dependencies 26 | run: yarn install 27 | - name: Build documentation 28 | run: yarn start:bundle 29 | - name: Deploy to GitHub Pages 30 | if: success() 31 | uses: crazy-max/ghaction-github-pages@v2 32 | with: 33 | target_branch: gh-pages 34 | build_dir: docs 35 | env: 36 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 37 | -------------------------------------------------------------------------------- /api/schemas/resources/anime.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - id 4 | - type 5 | allOf: 6 | - $ref: ../id_type.yml 7 | - type: object 8 | properties: 9 | type: 10 | enum: [anime] 11 | 12 | links: 13 | $ref: ../links/self.yml 14 | 15 | attributes: 16 | type: object 17 | allOf: 18 | - $ref: ./media.yml 19 | - $ref: ./base_episodic.yml 20 | - type: object 21 | properties: 22 | subtype: 23 | $ref: ../enums/subtype_anime.yml 24 | 25 | showType: 26 | readOnly: true 27 | deprecated: true 28 | description: Replaced by `subtype` 29 | 30 | youtubeVideoId: 31 | type: string 32 | nullable: true 33 | description: Promotional video for the media. For short ONA/OVAs, this may be the actual short if it was released on YouTube officially 34 | 35 | nsfw: 36 | type: boolean 37 | readOnly: true 38 | example: false 39 | 40 | 41 | relationships: 42 | description: Related resources 43 | allOf: 44 | - $ref: ./resourceRelationships/media.yml 45 | - $ref: ./resourceRelationships/anime.yml 46 | -------------------------------------------------------------------------------- /api/schemas/resources/manga.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - id 4 | - type 5 | allOf: 6 | - $ref: ../id_type.yml 7 | - type: object 8 | properties: 9 | type: 10 | enum: [manga] 11 | 12 | links: 13 | $ref: ../links/self.yml 14 | 15 | attributes: 16 | type: object 17 | allOf: 18 | - $ref: ./media.yml 19 | - type: object 20 | properties: 21 | subtype: 22 | $ref: ../enums/subtype_manga.yml 23 | 24 | mangaType: 25 | deprecated: true 26 | readOnly: true 27 | description: Replaced by `subtype` 28 | 29 | chapterCount: 30 | type: integer 31 | nullable: true 32 | minimum: 1 33 | 34 | volumeCount: 35 | type: integer 36 | nullable: true 37 | minimum: 1 38 | 39 | serialization: 40 | type: string 41 | nullable: true 42 | description: Magazine the media was published in 43 | 44 | relationships: 45 | description: Related resources 46 | allOf: 47 | - $ref: ./resourceRelationships/media.yml 48 | - $ref: ./resourceRelationships/manga.yml 49 | -------------------------------------------------------------------------------- /api/paths/media/manga.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | - $ref: ../../parameters/fields.yml 3 | - $ref: ../../parameters/include.yml 4 | - $ref: ../../parameters/page.yml 5 | - $ref: ../../parameters/sort.yml 6 | - $ref: ../../schemas/filters/resource/manga.yml 7 | 8 | get: 9 | tags: 10 | - Manga 11 | summary: Get Manga Collection 12 | description: Get a collection of manga resources 13 | responses: 14 | '200': 15 | description: OK 16 | content: 17 | application/vnd.api+json: 18 | schema: 19 | $ref: ../../resources/manga/many.yml 20 | '400': 21 | description: Bad Request 22 | content: 23 | application/vnd.api+json: 24 | schema: 25 | $ref: ../../resources/error/400.yml 26 | '404': 27 | description: Not Found 28 | content: 29 | application/vnd.api+json: 30 | schema: 31 | $ref: ../../resources/error/404.yml 32 | 33 | post: 34 | security: 35 | - OAuth2: [admin] 36 | tags: 37 | - Manga 38 | description: Create a manga resource 39 | summary: Create Manga 40 | requestBody: 41 | content: 42 | application/vnd.api+json: 43 | schema: 44 | $ref: ../../resources/manga/one.yml 45 | responses: 46 | '201': 47 | description: Created 48 | content: 49 | application/vnd.api+json: 50 | schema: 51 | $ref: ../../resources/manga/one.yml 52 | '403': 53 | description: Forbidden 54 | content: 55 | application/vnd.api+json: 56 | schema: 57 | $ref: ../../resources/error/403.yml 58 | '404': 59 | description: Not Found 60 | content: 61 | application/vnd.api+json: 62 | schema: 63 | $ref: ../../resources/error/404.yml 64 | -------------------------------------------------------------------------------- /api/paths/media/anime.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | - $ref: ../../parameters/fields.yml 3 | - $ref: ../../parameters/include.yml 4 | - $ref: ../../parameters/page.yml 5 | - $ref: ../../parameters/sort.yml 6 | - $ref: ../../schemas/filters/resource/anime.yml 7 | 8 | get: 9 | tags: 10 | - Anime 11 | summary: Get Anime Collection 12 | description: Get a collection of anime resources 13 | responses: 14 | '200': 15 | description: OK 16 | content: 17 | application/vnd.api+json: 18 | schema: 19 | $ref: ../../resources/anime/many.yml 20 | '400': 21 | description: Bad Request 22 | content: 23 | application/vnd.api+json: 24 | schema: 25 | $ref: ../../resources/error/400.yml 26 | '404': 27 | description: Not Found 28 | content: 29 | application/vnd.api+json: 30 | schema: 31 | $ref: ../../resources/error/404.yml 32 | 33 | post: 34 | security: 35 | - OAuth2: [admin] 36 | tags: 37 | - Anime 38 | description: Create an anime resource 39 | summary: Create Anime 40 | requestBody: 41 | content: 42 | application/vnd.api+json: 43 | schema: 44 | $ref: ../../resources/anime/one.yml 45 | responses: 46 | '201': 47 | description: Created 48 | content: 49 | application/vnd.api+json: 50 | schema: 51 | $ref: ../../resources/anime/one.yml 52 | '403': 53 | description: Forbidden 54 | content: 55 | application/vnd.api+json: 56 | schema: 57 | $ref: ../../resources/error/403.yml 58 | '404': 59 | description: Not Found 60 | content: 61 | application/vnd.api+json: 62 | schema: 63 | $ref: ../../resources/error/404.yml 64 | -------------------------------------------------------------------------------- /api/paths/media/episodes.yml: -------------------------------------------------------------------------------- 1 | 2 | parameters: 3 | - $ref: ../../parameters/fields.yml 4 | - $ref: ../../parameters/include.yml 5 | - $ref: ../../parameters/page.yml 6 | - $ref: ../../parameters/sort.yml 7 | - $ref: ../../schemas/filters/resource/base.yml 8 | 9 | get: 10 | tags: 11 | - Episodes 12 | summary: Get Episode Collection 13 | description: Get a collection of episode resources 14 | responses: 15 | '200': 16 | description: OK 17 | content: 18 | application/vnd.api+json: 19 | schema: 20 | $ref: ../../resources/episode/many.yml 21 | '400': 22 | description: Bad Request 23 | content: 24 | application/vnd.api+json: 25 | schema: 26 | $ref: ../../resources/error/400.yml 27 | '404': 28 | description: Not Found 29 | content: 30 | application/vnd.api+json: 31 | schema: 32 | $ref: ../../resources/error/404.yml 33 | 34 | post: 35 | security: 36 | - OAuth2: [admin] 37 | tags: 38 | - Episodes 39 | description: Create an episode resource 40 | summary: Create Episode 41 | requestBody: 42 | content: 43 | application/vnd.api+json: 44 | schema: 45 | $ref: ../../resources/episode/one.yml 46 | responses: 47 | '201': 48 | description: Created 49 | content: 50 | application/vnd.api+json: 51 | schema: 52 | $ref: ../../resources/episode/one.yml 53 | '403': 54 | description: Forbidden 55 | content: 56 | application/vnd.api+json: 57 | schema: 58 | $ref: ../../resources/error/403.yml 59 | '404': 60 | description: Not Found 61 | content: 62 | application/vnd.api+json: 63 | schema: 64 | $ref: ../../resources/error/404.yml 65 | -------------------------------------------------------------------------------- /api/paths/media/manga_id.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | - $ref: ../../parameters/path/id.yml 3 | - $ref: ../../parameters/fields.yml 4 | - $ref: ../../parameters/include.yml 5 | - $ref: ../../parameters/page.yml 6 | - $ref: ../../parameters/sort.yml 7 | - $ref: ../../schemas/filters/resource/manga.yml 8 | 9 | get: 10 | tags: 11 | - Manga 12 | description: Get a manga resource 13 | summary: Get Manga 14 | responses: 15 | '200': 16 | description: OK 17 | content: 18 | application/vnd.api+json: 19 | schema: 20 | $ref: ../../resources/manga/one.yml 21 | '400': 22 | description: Bad Request 23 | content: 24 | application/vnd.api+json: 25 | schema: 26 | $ref: ../../resources/error/400.yml 27 | '404': 28 | description: Not Found 29 | content: 30 | application/vnd.api+json: 31 | schema: 32 | $ref: ../../resources/error/404.yml 33 | 34 | patch: 35 | security: 36 | - OAuth2: [admin] 37 | tags: 38 | - Manga 39 | description: Update a manga resource 40 | summary: Update Manga 41 | requestBody: 42 | content: 43 | application/vnd.api+json: 44 | schema: 45 | $ref: ../../resources/manga/one.yml 46 | responses: 47 | '200': 48 | description: OK 49 | content: 50 | application/vnd.api+json: 51 | schema: 52 | $ref: ../../resources/manga/one.yml 53 | '403': 54 | description: Forbidden 55 | content: 56 | application/vnd.api+json: 57 | schema: 58 | $ref: ../../resources/error/403.yml 59 | '404': 60 | description: Not Found 61 | content: 62 | application/vnd.api+json: 63 | schema: 64 | $ref: ../../resources/error/404.yml 65 | 66 | delete: 67 | security: 68 | - OAuth2: [admin] 69 | tags: 70 | - Manga 71 | description: Delete a manga resource 72 | summary: Delete Manga 73 | responses: 74 | '204': 75 | description: No Content 76 | '403': 77 | description: Forbidden 78 | content: 79 | application/vnd.api+json: 80 | schema: 81 | $ref: ../../resources/error/403.yml 82 | '404': 83 | description: Not Found 84 | content: 85 | application/vnd.api+json: 86 | schema: 87 | $ref: ../../resources/error/404.yml 88 | -------------------------------------------------------------------------------- /api/paths/media/anime_id.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | - $ref: ../../parameters/path/id.yml 3 | - $ref: ../../parameters/fields.yml 4 | - $ref: ../../parameters/include.yml 5 | - $ref: ../../parameters/page.yml 6 | - $ref: ../../parameters/sort.yml 7 | - $ref: ../../schemas/filters/resource/anime.yml 8 | 9 | get: 10 | tags: 11 | - Anime 12 | description: Get an anime resource 13 | summary: Get Anime 14 | responses: 15 | '200': 16 | description: OK 17 | content: 18 | application/vnd.api+json: 19 | schema: 20 | $ref: ../../resources/anime/one.yml 21 | '400': 22 | description: Bad Request 23 | content: 24 | application/vnd.api+json: 25 | schema: 26 | $ref: ../../resources/error/400.yml 27 | '404': 28 | description: Not Found 29 | content: 30 | application/vnd.api+json: 31 | schema: 32 | $ref: ../../resources/error/404.yml 33 | 34 | patch: 35 | security: 36 | - OAuth2: [admin] 37 | tags: 38 | - Anime 39 | description: Update an anime resource 40 | summary: Update Anime 41 | requestBody: 42 | content: 43 | application/vnd.api+json: 44 | schema: 45 | $ref: ../../resources/anime/one.yml 46 | responses: 47 | '200': 48 | description: OK 49 | content: 50 | application/vnd.api+json: 51 | schema: 52 | $ref: ../../resources/anime/one.yml 53 | '403': 54 | description: Forbidden 55 | content: 56 | application/vnd.api+json: 57 | schema: 58 | $ref: ../../resources/error/403.yml 59 | '404': 60 | description: Not Found 61 | content: 62 | application/vnd.api+json: 63 | schema: 64 | $ref: ../../resources/error/404.yml 65 | 66 | delete: 67 | security: 68 | - OAuth2: [admin] 69 | tags: 70 | - Anime 71 | description: Delete an anime resource 72 | summary: Delete Anime 73 | responses: 74 | '204': 75 | description: No Content 76 | '403': 77 | description: Forbidden 78 | content: 79 | application/vnd.api+json: 80 | schema: 81 | $ref: ../../resources/error/403.yml 82 | '404': 83 | description: Not Found 84 | content: 85 | application/vnd.api+json: 86 | schema: 87 | $ref: ../../resources/error/404.yml 88 | -------------------------------------------------------------------------------- /api/paths/media/episodes_id.yml: -------------------------------------------------------------------------------- 1 | parameters: 2 | - $ref: ../../parameters/path/id.yml 3 | - $ref: ../../parameters/fields.yml 4 | - $ref: ../../parameters/include.yml 5 | - $ref: ../../parameters/page.yml 6 | - $ref: ../../parameters/sort.yml 7 | - $ref: ../../schemas/filters/resource/base.yml 8 | 9 | get: 10 | tags: 11 | - Episodes 12 | description: Get an episode resource 13 | summary: Get Episode 14 | responses: 15 | '200': 16 | description: OK 17 | content: 18 | application/vnd.api+json: 19 | schema: 20 | $ref: ../../resources/episode/one.yml 21 | '400': 22 | description: Bad Request 23 | content: 24 | application/vnd.api+json: 25 | schema: 26 | $ref: ../../resources/error/400.yml 27 | '404': 28 | description: Not Found 29 | content: 30 | application/vnd.api+json: 31 | schema: 32 | $ref: ../../resources/error/404.yml 33 | 34 | patch: 35 | security: 36 | - OAuth2: [admin] 37 | tags: 38 | - Episodes 39 | description: Update an episode resource 40 | summary: Update Episode 41 | requestBody: 42 | content: 43 | application/vnd.api+json: 44 | schema: 45 | $ref: ../../resources/episode/one.yml 46 | responses: 47 | '200': 48 | description: OK 49 | content: 50 | application/vnd.api+json: 51 | schema: 52 | $ref: ../../resources/episode/one.yml 53 | '403': 54 | description: Forbidden 55 | content: 56 | application/vnd.api+json: 57 | schema: 58 | $ref: ../../resources/error/403.yml 59 | '404': 60 | description: Not Found 61 | content: 62 | application/vnd.api+json: 63 | schema: 64 | $ref: ../../resources/error/404.yml 65 | 66 | delete: 67 | security: 68 | - OAuth2: [admin] 69 | tags: 70 | - Episodes 71 | description: Delete an episode resource 72 | summary: Delete Episode 73 | responses: 74 | '204': 75 | description: No Content 76 | '403': 77 | description: Forbidden 78 | content: 79 | application/vnd.api+json: 80 | schema: 81 | $ref: ../../resources/error/403.yml 82 | '404': 83 | description: Not Found 84 | content: 85 | application/vnd.api+json: 86 | schema: 87 | $ref: ../../resources/error/404.yml 88 | -------------------------------------------------------------------------------- /api/schemas/resources/episode.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | required: 3 | - id 4 | - type 5 | allOf: 6 | - $ref: ../id_type.yml 7 | - type: object 8 | properties: 9 | type: 10 | enum: [episodes] 11 | 12 | links: 13 | $ref: ../links/self.yml 14 | 15 | attributes: 16 | type: object 17 | allOf: 18 | - $ref: ./base.yml 19 | - type: object 20 | properties: 21 | description: 22 | type: string 23 | description: Short synopsis of the episode 24 | 25 | synopsis: 26 | type: string 27 | deprecated: true 28 | description: Replaced by the `description` attribute 29 | 30 | titles: 31 | type: object 32 | description: Localised episode titles. Any ISO 639-1 (`en`) or ICU Locale (`en_us`) may appear here 33 | additionalProperties: 34 | type: string 35 | example: 36 | en: And Between the Wasteland and Sky 37 | en_jp: Soshite Kouya to Sora no Aida wo 38 | ja_jp: そして荒野と空の間を 39 | 40 | canonicalTitle: 41 | type: string 42 | nullable: true 43 | description: The most commonly used title from the `titles` attribute 44 | example: And Between the Wasteland and Sky 45 | 46 | seasonNumber: 47 | type: integer 48 | nullable: true 49 | example: 1 50 | 51 | number: 52 | type: integer 53 | nullable: true 54 | example: 8 55 | description: Absolute episode number 56 | 57 | relativeNumber: 58 | type: integer 59 | nullable: true 60 | example: 8 61 | description: Episode number relative to the `seasonNumber` 62 | 63 | airDate: 64 | type: string 65 | nullable: true 66 | format: date 67 | description: Date the episode aired. YYYY-MM-DD 68 | example: '1998-05-20' 69 | 70 | length: 71 | type: integer 72 | format: minutes 73 | nullable: true 74 | minimum: 1 75 | description: Length of the episode in minutes 76 | 77 | thumbnail: 78 | type: object 79 | nullable: true 80 | properties: 81 | original: 82 | type: string 83 | format: uri 84 | example: https://media.kitsu.io/.../original.jpg 85 | meta: 86 | type: object 87 | properties: 88 | dimensions: 89 | type: object 90 | 91 | relationships: 92 | description: Related resources 93 | allOf: 94 | - $ref: ./resourceRelationships/episode.yml 95 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kitsu-api-docs", 3 | "version": "1.0.0", 4 | "license": "Apache-2.0", 5 | "private": true, 6 | "scripts": { 7 | "build": "openapi bundle api/kitsu.yml --output kitsu.yml", 8 | "lint": "openapi lint kitsu.yml --skip-rule operation-operationId", 9 | "serve": "redoc-cli serve kitsu.yml --options.hideLoading=false --options.pathInMiddlePanel=false --options.nativeScrollbars=true --options.expandSingleSchemaField=true --options.requiredPropsFirst=true --options.sortPropsAlphabetically=true --options.hideSingleRequestSampleTab=true --options.theme.typography.links.color=#f75239 --options.theme.colors.primary.main=#464646 --options.theme.colors.success.main=#19b698 --options.theme.colors.warning.main=#f39c12 --options.theme.colors.error.main=#ff4136 --options.theme.colors.text.primary=#464646 --options.theme.rightPanel.backgroundColor=#332532 --options.theme.rightPanel.textColor=#edf0f1 --options.theme.sidebar.backgroundColor=#332532 --options.theme.sidebar.textColor=#edf0f1 --options.theme.sidebar.level1Items.textTransform=capitalize --options.theme.typography.fontSize=1rem --options.theme.typography.code.fontSize=1rem --options.theme.typography.headings.lineHeight=1.1 --options.theme.typography.headings.fontWeight=700 --options.theme.schema.arrow.size=1rem --options.theme.typography.lineHeight=1.5rem --options.theme.colors.border.dark=#332532 --options.theme.colors.border.light=#edf0f1 --options.jsonSampleExpandLevel=2 --options.simpleOneOfTypeLabel=true --options.expandResponses=\"200,201\" --options.theme.schema.labelsTextSize=0.9rem", 10 | "serve:bundle": "redoc-cli bundle kitsu.yml --output docs/index.html --options.hideLoading=false --options.pathInMiddlePanel=false --options.nativeScrollbars=true --options.expandSingleSchemaField=true --options.requiredPropsFirst=true --options.sortPropsAlphabetically=true --options.hideSingleRequestSampleTab=true --options.theme.typography.links.color=#f75239 --options.theme.colors.primary.main=#464646 --options.theme.colors.success.main=#19b698 --options.theme.colors.warning.main=#f39c12 --options.theme.colors.error.main=#ff4136 --options.theme.colors.text.primary=#464646 --options.theme.rightPanel.backgroundColor=#332532 --options.theme.rightPanel.textColor=#edf0f1 --options.theme.sidebar.backgroundColor=#332532 --options.theme.sidebar.textColor=#edf0f1 --options.theme.sidebar.level1Items.textTransform=capitalize --options.theme.typography.fontSize=1rem --options.theme.typography.code.fontSize=1rem --options.theme.typography.headings.lineHeight=1.1 --options.theme.typography.headings.fontWeight=700 --options.theme.schema.arrow.size=1rem --options.theme.typography.lineHeight=1.5rem --options.theme.colors.border.dark=#332532 --options.theme.colors.border.light=#edf0f1 --options.jsonSampleExpandLevel=2 --options.simpleOneOfTypeLabel=true --options.expandResponses=\"200,201\" --options.theme.schema.labelsTextSize=0.9rem", 11 | "start": "yarn build && yarn lint && yarn serve", 12 | "start:bundle": "yarn build && yarn lint && yarn serve:bundle" 13 | }, 14 | "dependencies": { 15 | "@redocly/openapi-cli": "1.0.0-beta.79", 16 | "redoc-cli": "0.13.2" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # API Docs 2 | [![API Docs Deployment](https://github.com/hummingbird-me/api-docs/workflows/API%20Docs%20Deployment/badge.svg)](https://hummingbird-me.github.io/api-docs) 3 | 4 | Kitsu is a modern anime discovery platform that helps you track the anime you're watching, discover new anime and socialize with other fans. 5 | 6 | --- 7 | **

This is our [api docs] repository.
Check out the [tools], [web], [mobile] and [server] repositories.

** 8 | 9 | [tools]:https://github.com/hummingbird-me/kitsu-tools 10 | [web]:https://github.com/hummingbird-me/kitsu-web 11 | [server]:https://github.com/hummingbird-me/kitsu-server 12 | [mobile]:https://github.com/hummingbird-me/kitsu-mobile 13 | [api docs]:https://kitsu.docs.apiary.io 14 | 15 | --- 16 | 17 | ## Documentation 18 | 19 | Legacy documentation is available on Apiary: https://kitsu.docs.apiary.io/ 20 | 21 | The API documentation is currently being converted from API Blueprint to OpenAPI 3. You can view the progress at: https://hummingbird-me.github.io/api-docs and https://github.com/hummingbird-me/api-docs/issues/71 22 | 23 | ## Contributing 24 | 25 | The documentation is written with [OpenAPI 3][3] and [YAML 1.2][4]. Trivial changes can be added using GitHub's built-in editor. For bigger changes it is advised to follow the steps below. 26 | 27 | If you have any questions you can: 28 | - Ask us in `#api` on our [Discord server][7] 29 | - Ping [@wopian], [@matthewdias] or [@nuck] on Kitsu. 30 | 31 | ### File Structure 32 | 33 | The OpenAPI schema is split into multiple directories. While it looks complicated, it reduces the amount of repeated parameters and resource attributes/relationships to near zero. 34 | 35 | Resource, relationship and filter inheritence matches the model definitions on the server repo. 36 | 37 | ```yaml 38 | api 39 | ├───parameters # Query Parameters 40 | │ └───path # Path Parameters 41 | │ 42 | ├───paths # Endpoints, grouped by tagGroups 43 | │ 44 | ├───resources # Top-level JSON:API resource structures (one, many, included) 45 | │ ├───anime 46 | │ └───error # JSON:API error responses 47 | │ 48 | └───schemas # Data Models 49 | ├───enums 50 | │ 51 | ├───filters # Reusable JSON:API filter parameters 52 | │ ├───resource # Root filter parameter for each resource 53 | │ └───resourceFilters # Grouped filters (inheritance) 54 | │ 55 | ├───links # JSON:API link properties 56 | │ 57 | ├───meta # JSON:API meta properties 58 | │ 59 | └───resources # JSON:API resources 60 | ├───relationships # JSON:API relationships 61 | └───resourceRelationships # Grouped relationships (inheritance) 62 | ``` 63 | 64 | ### Base Files 65 | 66 | These are defined as seperate resources in the server definitions and are inherited by all other definitions. Check `anime` and `media` in `api/schemas/resources` and `api/schemas/filters/resourceFilters` to see how inheritance is applied. 67 | 68 | #### Resources 69 | 70 | All resources inherit from `api/schemas/resources/base.yml` 71 | 72 | In addition: 73 | 74 | - Sluggable resources inherit from `api/schemas/resources/base_sluggable.yml` 75 | - Episodic resources inherit from `api/schemas/resources/base_episodic.yml` 76 | 77 | #### Resource Relationships 78 | 79 | - Episodic resources inherit from `api/schemas/resources/resourceRelationships/base_episodic.yml` 80 | 81 | #### Filters 82 | 83 | All resources inherit from `api/schemas/filters/resourceFilters/base.yml` 84 | 85 | In addiion: 86 | 87 | - Sluggable resources inherit from `api/schemas/filters/resourceFilters/base_sluggable.yml` 88 | - Episodic resources inherit from `api/schemas/filters/resourceFilters/base_episodic.yml` 89 | 90 | ### Requirements 91 | 92 | - [git](https://git-scm.com) > `2.0.0` 93 | - [node.js](https://nodejs.org) > `12.0.0` 94 | - [yarn](https://yarnpkg.com) > `1.22.0` 95 | 96 | ### Development 97 | 98 | 1. [Fork the repo][5] 99 | 100 | 2. Clone the repo (`git clone https://github.com/{yourusername}/api-docs.git`) 101 | 102 | 3. Create a new branch (`git checkout -b improve-docs`) 103 | 104 | 4. Install dependencies (`yarn`) 105 | 106 | 5. Make the appropriate changes in the source files 107 | - Check the changes locally with `yarn start` 108 | 109 | 6. Commit your changes (`git commit -am 'feat: improve docs'`) 110 | 111 | 7. Push to your branch (`git push origin improve-docs`) 112 | 113 | 8. [Create a Pull Request][6] 114 | 115 | ## Contributors 116 | 117 | [![](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/images/0)](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/links/0)[![](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/images/1)](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/links/1)[![](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/images/2)](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/links/2)[![](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/images/3)](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/links/3)[![](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/images/4)](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/links/4)[![](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/images/5)](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/links/5)[![](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/images/6)](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/links/6)[![](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/images/7)](https://sourcerer.io/fame/wopian/hummingbird-me/api-docs/links/7) 118 | 119 | [0]:https://github.com/hummingbird-me/hummingbird-server 120 | [1]:https://github.com/hummingbird-me/hummingbird-client 121 | [3]:http://spec.openapis.org/oas/v3.0.3 122 | [4]:https://yaml.org/spec/1.2/spec.html 123 | [5]:https://help.github.com/articles/fork-a-repo/#fork-an-example-repository 124 | [6]:https://help.github.com/articles/creating-a-pull-request/#creating-the-pull-request 125 | [7]:https://invite.gg/kitsu 126 | 127 | [@wopian]:https://kitsu.io/users/wopian 128 | [@matthewdias]:https://kitsu.io/users/matthewdias 129 | [@nuck]:https://kitsu.io/users/nuck 130 | -------------------------------------------------------------------------------- /api/schemas/resources/media.yml: -------------------------------------------------------------------------------- 1 | type: object 2 | allOf: 3 | - $ref: ./base.yml 4 | - $ref: ./base_sluggable.yml 5 | - properties: 6 | description: 7 | type: string 8 | description: Short synopsis of the media 9 | 10 | synopsis: 11 | type: string 12 | deprecated: true 13 | description: Replaced by the `description` attribute 14 | 15 | coverImageTopOffset: 16 | type: integer 17 | nullable: true 18 | deprecated: true 19 | 20 | coverImage: 21 | type: object 22 | nullable: true 23 | description: Banner displayed at the top of the media page 24 | properties: 25 | tiny: 26 | type: string 27 | format: uri 28 | example: https://media.kitsu.io/.../tiny.jpg 29 | small: 30 | type: string 31 | format: uri 32 | example: https://media.kitsu.io/.../small.jpg 33 | large: 34 | type: string 35 | format: uri 36 | example: https://media.kitsu.io/.../large.jpg 37 | original: 38 | type: string 39 | format: uri 40 | example: https://media.kitsu.io/.../original.jpg 41 | meta: 42 | type: object 43 | properties: 44 | dimensions: 45 | type: object 46 | properties: 47 | tiny: 48 | type: object 49 | properties: 50 | width: 51 | type: integer 52 | enum: [840] 53 | height: 54 | type: integer 55 | enum: [200] 56 | small: 57 | type: object 58 | properties: 59 | width: 60 | type: integer 61 | enum: [1640] 62 | height: 63 | type: integer 64 | enum: [400] 65 | large: 66 | type: object 67 | properties: 68 | width: 69 | type: integer 70 | enum: [3360] 71 | height: 72 | type: integer 73 | enum: [800] 74 | 75 | posterImage: 76 | type: object 77 | nullable: true 78 | properties: 79 | tiny: 80 | type: string 81 | format: uri 82 | example: https://media.kitsu.io/.../tiny.jpg 83 | small: 84 | type: string 85 | format: uri 86 | example: https://media.kitsu.io/.../small.jpg 87 | medium: 88 | type: string 89 | format: uri 90 | example: https://media.kitsu.io/.../medium.jpg 91 | large: 92 | type: string 93 | format: uri 94 | example: https://media.kitsu.io/.../large.jpg 95 | original: 96 | type: string 97 | format: uri 98 | example: https://media.kitsu.io/.../original.jpg 99 | meta: 100 | type: object 101 | properties: 102 | dimensions: 103 | type: object 104 | properties: 105 | tiny: 106 | type: object 107 | properties: 108 | width: 109 | type: integer 110 | enum: [110] 111 | height: 112 | type: integer 113 | enum: [156] 114 | small: 115 | type: object 116 | properties: 117 | width: 118 | type: integer 119 | enum: [284] 120 | height: 121 | type: integer 122 | enum: [402] 123 | medium: 124 | type: object 125 | properties: 126 | width: 127 | type: integer 128 | enum: [390] 129 | height: 130 | type: integer 131 | enum: [554] 132 | large: 133 | type: object 134 | properties: 135 | width: 136 | type: integer 137 | enum: [550] 138 | height: 139 | type: integer 140 | enum: [780] 141 | 142 | titles: 143 | type: object 144 | description: Localised media titles. Any ISO 639-1 (`en`) or ICU Locale (`en_us`) may appear here 145 | additionalProperties: 146 | type: string 147 | example: 148 | en: Trigun 149 | en_jp: Trigun 150 | ja_jp: トライガン 151 | 152 | canonicalTitle: 153 | type: string 154 | description: The most commonly used title from the `titles` attribute 155 | example: Trigun 156 | 157 | abbreviatedTitles: 158 | type: array 159 | description: Abbreviations or other names the media is known by 160 | items: 161 | type: string 162 | 163 | averageRating: 164 | type: string 165 | nullable: true 166 | readOnly: true 167 | maximum: 100 168 | minimum: 10 169 | format: percentage 170 | description: The bayesian average of the media. Requires at least 50 user ratings 171 | example: '82.28' 172 | 173 | ratingFrequencies: 174 | type: object 175 | readOnly: true 176 | description: Number of user ratings for each rating value. Key is the rating stored as 2,3..20 and displayed as 1,1.5..10 177 | properties: 178 | 2: 179 | type: string 180 | minimum: 0 181 | format: integer 182 | description: Minimum rating of 1/10 183 | example: '460' 184 | 3: 185 | type: string 186 | minimum: 0 187 | format: integer 188 | example: '10' 189 | 4: 190 | type: string 191 | minimum: 0 192 | format: integer 193 | example: '63' 194 | 5: 195 | type: string 196 | minimum: 0 197 | format: integer 198 | example: '3' 199 | 6: 200 | type: string 201 | minimum: 0 202 | format: integer 203 | example: '59' 204 | 7: 205 | type: string 206 | minimum: 0 207 | format: integer 208 | example: '3' 209 | 8: 210 | type: string 211 | minimum: 0 212 | format: integer 213 | example: '523' 214 | 9: 215 | type: string 216 | minimum: 0 217 | format: integer 218 | example: '8' 219 | 10: 220 | type: string 221 | minimum: 0 222 | format: integer 223 | example: '378' 224 | 11: 225 | type: string 226 | minimum: 0 227 | format: integer 228 | example: '23' 229 | 12: 230 | type: string 231 | minimum: 0 232 | format: integer 233 | example: '1118' 234 | 13: 235 | type: string 236 | minimum: 0 237 | format: integer 238 | example: '63' 239 | 14: 240 | type: string 241 | minimum: 0 242 | format: integer 243 | example: '3392' 244 | 15: 245 | type: string 246 | minimum: 0 247 | format: integer 248 | example: '159' 249 | 16: 250 | type: string 251 | minimum: 0 252 | format: integer 253 | example: '4700' 254 | 17: 255 | type: string 256 | minimum: 0 257 | format: integer 258 | example: '236' 259 | 18: 260 | type: string 261 | minimum: 0 262 | format: integer 263 | example: '3532' 264 | 19: 265 | type: string 266 | minimum: 0 267 | format: integer 268 | example: '113' 269 | 20: 270 | type: string 271 | minimum: 0 272 | format: integer 273 | description: Maximum rating of 10/10 274 | example: '7320' 275 | 276 | userCount: 277 | type: integer 278 | readOnly: true 279 | minimum: 0 280 | description: Number of users who have the media in their library 281 | example: 44322 282 | 283 | favoritesCount: 284 | type: integer 285 | nullable: true 286 | readOnly: true 287 | minimum: 0 288 | description: Number of users who have favorited the media 289 | example: 1219 290 | 291 | startDate: 292 | type: string 293 | nullable: true 294 | format: date 295 | description: Date the media started airing/publishing. YYYY-MM-DD 296 | example: '1998-04-01' 297 | 298 | endDate: 299 | type: string 300 | nullable: true 301 | format: date 302 | description: Date the media finished airing/publishing. YYYY-MM-DD 303 | example: '1998-09-30' 304 | 305 | nextRelease: 306 | type: string 307 | readOnly: true 308 | 309 | popularityRank: 310 | type: integer 311 | minimum: 1 312 | readOnly: true 313 | example: 165 314 | 315 | ratingRank: 316 | type: integer 317 | minimum: 1 318 | readOnly: true 319 | example: 217 320 | 321 | # Age Ratings 322 | ageRating: 323 | $ref: ../enums/ageRating.yml 324 | 325 | ageRatingGuide: 326 | type: string 327 | nullable: true 328 | description: Additional content warnings 329 | example: Teens 13 or older 330 | 331 | status: 332 | type: string 333 | readOnly: true 334 | description: | 335 | `tba` (to be announced) if there is no start/end dates `unreleased` if start date is in the future and `upcoming` if start date is within 3 months 336 | enum: [tba, finished, current, upcoming, unreleased] 337 | 338 | tba: 339 | type: string 340 | nullable: true 341 | description: Expected release year or season 342 | -------------------------------------------------------------------------------- /api/kitsu.yml: -------------------------------------------------------------------------------- 1 | openapi: 3.0.3 2 | 3 | info: 4 | version: 'edge' 5 | title: Kitsu JSON:API Documentation 6 | termsOfService: https://kitsu.io/terms 7 | contact: 8 | url: https://kitsu.io 9 | license: 10 | name: Apache 2.0 11 | url: https://www.apache.org/licenses/LICENSE-2.0.html 12 | description: | 13 | Kitsu is a modern anime discovery platform that helps you track the anime you're watching, discover new anime and socialize with other fans. 14 | 15 | With the Kitsu API you can do everything the client can do and much more. 16 | 17 | Base API path: https://kitsu.io/api/edge 18 | 19 | # JSON:API 20 | 21 | The Kitsu API implements the [JSON:API specification](https://jsonapi.org/format/). This means there are some notable semantics to how you consume it, but understanding it will take a lot of the work of using it out of your hands. 22 | 23 | We have included a short overview of the capabilities, but you can consult the [JSON:API Specification](https://jsonapi.org/format/) for more information. 24 | 25 | You can be more specific about the data you want to retrieve by using URL parameters and are outlined below. 26 | 27 | **NOTE:** This documentation will display parameters with brackets ([ and ]) for readability, but actual URLs will need to be percent-encoded (%5B and %5D). 28 | 29 | ## Request Headers 30 | 31 | As per the JSON:API specification, all requests to the API should contain these headers: 32 | 33 |
  34 |     Accept: application/vnd.api+json
  35 |     Content-Type: application/vnd.api+json
  36 |     
37 | 38 | ## Filtering and Search 39 | 40 | Filtering lets you query data that contains certain matching attributes or relationships. These take the form of `filter[attribute]=value`. 41 | 42 | For example, you can request all the anime of the Adventure category: 43 | 44 | ``` 45 | /anime?filter[categories]=adventure 46 | ``` 47 | 48 | For some models, you can also search based on the query text: 49 | 50 | ``` 51 | /anime?filter[text]=cowboy%20bebop 52 | ``` 53 | 54 | For more advanced search capabilities, consider using [Algolia](./#tag/Algolia). 55 | 56 | https://jsonapi.org/format/#fetching-filtering 57 | 58 | ## Pagination 59 | 60 | You can choose how much of a resource to receive by specifying pagination parameters. 61 | 62 | Pagination is supported via `limit` and `offset`. Resources are paginated in groups of 10 by default and can be increased to a maximum of 20 (some routes may increase the limit). 63 | 64 | ``` 65 | /anime?page[limit]=5&page[offset]=0 66 | ``` 67 | 68 | The response will include URLs for the first, next and last page of resources in the links object based on your request. 69 | 70 | https://jsonapi.org/format/#fetching-pagination 71 | 72 | ## Sorting 73 | 74 | Sorting by attributes is also supported. By default, sorts are applied in ascending order. You can request a descending order by prepending `-` to the parameter. 75 | 76 | You can use a comma-delimited list to sort by multiple attributes. 77 | 78 | ``` 79 | /users?sort=-followersCount,-followingCount 80 | ``` 81 | 82 | https://jsonapi.org/format/#fetching-sorting 83 | 84 | ## Inclusion of Related Resources 85 | 86 | You can include related resources with `include=[relationship]`. You can also specify successive relationships using `.`. A comma-delimited list can be used to request multiple relationships. 87 | 88 | ``` 89 | /anime?include=categories,mediaRelationships.destination 90 | ``` 91 | 92 | Included resources are added to a top-level array and linked to from the resources' relationship: 93 | 94 | ```json5 95 | { 96 | data: { 97 | id: '1', 98 | type: 'anime', 99 | attributes: { ... }, 100 | relationships: { 101 | categories: { 102 | data: [ 103 | { id: '155', type: 'categories' } // Link ID and Type to included array 104 | ] 105 | } 106 | } 107 | }, 108 | included: [ 109 | { id: '155', type: 'categories', attributes: { ... }, relationships: { ... } } 110 | ] 111 | } 112 | ``` 113 | 114 | https://jsonapi.org/format/#fetching-includes 115 | 116 | ## Sparse Fieldsets 117 | 118 | You can request a resource to only return a specific set of fields in its response. For example, to only receive a user's name and creation date: 119 | 120 | ``` 121 | /users?fields[users]=name,createdAt 122 | ``` 123 | 124 | https://jsonapi.org/format/#fetching-sparse-fieldsets 125 | 126 | ## Client Implementations 127 | 128 | JSON:API has a great advantage in that since its standardised, API-agnostic tools can be made to abstract away the semantics of consuming and working with the data. It is recommended that you use a JSON:API client to implement the Kitsu API for this reason. 129 | 130 | Many implementations in over 13 languages can be found on the [JSON:API website](https://jsonapi.org/implementations/#client-libraries). 131 | 132 | # Authentication 133 | 134 | Kitsu uses OAuth 2 for authentication. 135 | Authentication is not required for most public-facing `GET` endpoints. 136 | 137 | It is advised to use an OAuth2 client for the language you're using, however it is not required. 138 | 139 | **NOTE:** NSFW/R18 content (feed posts, media, categories etc.) are hidden for all unauthenticated requests and for accounts that have NSFW content disabled in their settings. 140 | 141 | 142 | 143 | ### Request Headers 144 | 145 | OAuth does not use the JSON:API headers, instead one of the following headers are required: 146 | 147 | | Header | json | x-www-form-urlencoded 148 | | ------------ | ------------------ | --------------------- 149 | | Content-Type | application/json | application/x-www-form-urlencoded 150 | 151 | ## App Registration 152 | 153 | After registering your app, you will receieve a client ID and a client secret. 154 | The client ID is considered public information and is used to build login URLs or included in source code. 155 | The client secret **must** be kept confidential. 156 | 157 | **NOTE:** Application registration has not yet been implemented. 158 | For now, `client_id` and `client_secret` can be omitted, provided as empty strings or with the following: 159 | 160 |
 161 |     CLIENT_ID: dd031b32d2f56c990b1425efe6c42ad847e7fe3ab46bf1299f05ecd856bdb7dd
 162 |     CLIENT_SECRET: 54d7307928f63414defd96399fc31ba847961ceaecef3a5fd93144e960c0e151
 163 |     
164 | 165 | ## Obtaining an Access Token 166 | 167 | ### Password Grant 168 | 169 | Send a `POST` request to `https://kitsu.io/api/oauth/token` with the following body: 170 | 171 | #### application/json 172 | 173 | ```json5 174 | { 175 | grant_type: 'password', 176 | username: '', 177 | password: '' // RFC3986 URl encoded string 178 | } 179 | ``` 180 | 181 | #### application/x-www-form-urlencoded 182 | 183 | ``` 184 | grant_type=password&username=&password= 185 | ``` 186 | 187 | **IMPORTANT:** If you use `x-www-form-urlencoded`, you **must** URL encode the password field using the [RFC3986 encoding scheme](http://whatwebwhat.com/en/page/350/oauth-and-url-encoding). 188 | 189 | ## Refreshing an Access Token 190 | 191 | Send a `POST` request to `https://kitsu.io/api/oauth/token` with the following body: 192 | 193 | **NOTE:** If the token was issued using a `client_secret` then the `client_id` and `client_secret` parameters must be provided. 194 | 195 | #### application/json 196 | 197 | ```json5 198 | { 199 | grant_type: 'refresh_token', 200 | refresh_token: '' 201 | } 202 | ``` 203 | 204 | #### application/x-www-form-urlencoded 205 | 206 | ``` 207 | grant_type=refresh_token&refresh_token= 208 | ``` 209 | 210 | ## Using an Access Token 211 | 212 | Once you've obtained the `access_token` using one of the grant types, you can add the following header to all API requests: 213 | 214 | ``` 215 | Authorization: Bearer 216 | ``` 217 | 218 | 219 | ## Access Token Responses 220 | 221 | ### Successful Response 222 | 223 | If the request for an access token is valid, the server will respond with the following data: 224 | 225 | ```json5 226 | { 227 | access_token: 'abc123', // Token used in Authorization header 228 | created_at: 1518235801, 229 | expires_in: 2591963, // Seconds until the access_token expires (30 days default) 230 | refresh_token: '123abc', // Token used to get a new access_token 231 | scope: 'public', 232 | token_type: 'bearer' 233 | } 234 | ``` 235 | 236 | ### Unsuccessful Response 237 | 238 | If the access token request is invalid, the server will respond with one of six errors in the following format: 239 | 240 | ```json5 241 | { 242 | error: 'invalid_request', 243 | error_description: '' 244 | } 245 | ``` 246 | 247 | These six errors are: 248 | 249 | | Error | Status | Explanation 250 | | ------------------------ | ------ | ----------- 251 | | `invalid_request` | `400` | The request is missing a parameter, uses an unsupported parameter or repeats a parameter. 252 | | `invalid_client` | `401` | The request contains an invalid client ID or secret. 253 | | `invalid_grant` | `400` | The authorization code (or password with the password grant) is invalid or expired. 254 | | `invalid_scope` | `400` | The request contains an invalid scope (password or client credential grants). 255 | | `unauthorized_client` | `400` | The client is not authorized to use the requested grant type. 256 | | `unsupported_grant_type` | `400` | The grant type requested is not recognized by the server. 257 | 258 | servers: 259 | - url: https://kitsu.io/api/edge 260 | description: Production API 261 | 262 | x-tagGroups: 263 | - name: Search 264 | tags: 265 | - Algolia 266 | - name: Media 267 | tags: 268 | - Anime 269 | - Manga 270 | - Episodes 271 | 272 | tags: 273 | - name: Algolia 274 | externalDocs: 275 | url: https://www.algolia.com/doc/api-client/getting-started/instantiate-client-index/ 276 | description: | 277 | Kitsu uses [Algolia](https://www.algolia.com) for searching. Algolia's search provides more accurate search results and allows you to build complex search filters to find exactly what you want. Refer to the [Algolia Docs](https://www.algolia.com/doc/api-client/getting-started/instantiate-client-index/) for further usage. 278 | 279 | **IMPORTANT:** 280 | - These keys are **not** static; 281 | - These keys respect user content settings - Mature content will **not** be visible if: 282 | - The keys are requested without a valid `Authorization` header 283 | - The user associated with the `Authorization` header has mature content disabled in their settings. 284 | - These keys are unique for each logged-in user and **must not be shared**. 285 | - Sharing keys requested with a valid `Authorization` header will leak blocked accounts, blocked media and private groups the user has joined. 286 | - name: Anime 287 | description: Anime with an age rating of `R18` requires a valid `Authorization` header and mature content enabled in the users' settings 288 | - name: Manga 289 | description: Manga with an age rating of `R18` requires a valid `Authorization` header and mature content enabled in the users' settings 290 | 291 | paths: 292 | #- activity 293 | # DELETE /api/edge/activities/:id activities#destroy 294 | # GET /api/edge/feeds/:group/:id feeds#show 295 | # POST /api/edge/feeds/:group/:id/_read feeds#mark_read 296 | # POST /api/edge/feeds/:group/:id/_seen feeds#mark_seen 297 | # DELETE /api/edge/feeds/:group/:id/activities/:uuid feeds#destroy_activity 298 | 299 | /algolia-keys: 300 | $ref: ./paths/search/algolia-keys.yml 301 | /algolia-keys/{index}: 302 | $ref: ./paths/search/algolia-keys_index.yml 303 | 304 | /anime: 305 | $ref: ./paths/media/anime.yml 306 | /anime/{id}: 307 | $ref: ./paths/media/anime_id.yml 308 | 309 | #- blocks 310 | # GET /api/edge/blocks blocks#index 311 | # POST /api/edge/blocks blocks#create 312 | 313 | #- block 314 | # GET /api/edge/blocks/:id blocks#show 315 | # PATCH /api/edge/blocks/:id blocks#update 316 | # PUT /api/edge/blocks/:id blocks#update 317 | # DELETE /api/edge/blocks/:id blocks#destroy 318 | 319 | #- categories 320 | # GET /api/edge/categories categories#index 321 | # POST /api/edge/categories categories#create 322 | 323 | #- category 324 | # GET /api/edge/categories/:id categories#show 325 | # PATCH /api/edge/categories/:id categories#update 326 | # PUT /api/edge/categories/:id categories#update 327 | # DELETE /api/edge/categories/:id categories#destroy 328 | 329 | #- category_favorites 330 | # GET /api/edge/category-favorites category_favorites#index 331 | # POST /api/edge/category-favorites category_favorites#create 332 | 333 | #- category_favorite 334 | # GET /api/edge/category-favorites/:id category_favorites#show 335 | # PATCH /api/edge/category-favorites/:id category_favorites#update 336 | # PUT /api/edge/category-favorites/:id category_favorites#update 337 | # DELETE /api/edge/category-favorites/:id category_favorites#destroy 338 | 339 | #- chapters 340 | # GET /api/edge/chapters chapters#index 341 | # POST /api/edge/chapters chapters#create 342 | 343 | #- chapter 344 | # GET /api/edge/chapters/:id chapters#show 345 | # PATCH /api/edge/chapters/:id chapters#update 346 | # PUT /api/edge/chapters/:id chapters#update 347 | # DELETE /api/edge/chapters/:id chapters#destroy 348 | 349 | #- characters 350 | # GET /api/edge/characters characters#index 351 | # POST /api/edge/characters characters#create 352 | 353 | #- character 354 | # GET /api/edge/characters/:id characters#show 355 | # PATCH /api/edge/characters/:id characters#update 356 | # PUT /api/edge/characters/:id characters#update 357 | # DELETE /api/edge/characters/:id characters#destroy 358 | 359 | #- comments 360 | # GET /api/edge/comments comments#index 361 | # POST /api/edge/comments comments#create 362 | 363 | #- comment 364 | # GET /api/edge/comments/:id comments#show 365 | # PATCH /api/edge/comments/:id comments#update 366 | # PUT /api/edge/comments/:id comments#update 367 | # DELETE /api/edge/comments/:id comments#destroy 368 | # GET /api/edge/comment-likes comment_likes#index 369 | # POST /api/edge/comment-likes comment_likes#create 370 | 371 | #- comment_like 372 | # GET /api/edge/comment-likes/:id comment_likes#show 373 | # PATCH /api/edge/comment-likes/:id comment_likes#update 374 | # PUT /api/edge/comment-likes/:id comment_likes#update 375 | # DELETE /api/edge/comment-likes/:id comment_likes#destroy 376 | 377 | #- embeds 378 | # POST /api/edge/embeds embeds#create 379 | 380 | /episodes: 381 | $ref: ./paths/media/episodes.yml 382 | /episodes/{id}: 383 | $ref: ./paths/media/episodes_id.yml 384 | 385 | #- favorites 386 | # GET /api/edge/favorites favorites#index 387 | # POST /api/edge/favorites favorites#create 388 | 389 | #- favorite 390 | # GET /api/edge/favorites/:id favorites#show 391 | # PATCH /api/edge/favorites/:id favorites#update 392 | # PUT /api/edge/favorites/:id favorites#update 393 | # DELETE /api/edge/favorites/:id favorites#destroy 394 | 395 | #- follows 396 | # GET /api/edge/follows follows#index 397 | # POST /api/edge/follows follows#create 398 | 399 | #- follow 400 | # GET /api/edge/follows/:id follows#show 401 | # PATCH /api/edge/follows/:id follows#update 402 | # PUT /api/edge/follows/:id follows#update 403 | # DELETE /api/edge/follows/:id follows#destroy 404 | 405 | #- groups 406 | # GET /api/edge/groups groups#index 407 | # POST /api/edge/groups groups#create 408 | 409 | #- group 410 | # GET /api/edge/groups/:id groups#show 411 | # PATCH /api/edge/groups/:id groups#update 412 | # PUT /api/edge/groups/:id groups#update 413 | # DELETE /api/edge/groups/:id groups#destroy 414 | 415 | #- group_member 416 | # GET /api/edge/group-members group_members#index 417 | # POST /api/edge/group-members group_members#create 418 | # GET /api/edge/group-members/:id group_members#show 419 | # PATCH /api/edge/group-members/:id group_members#update 420 | # PUT /api/edge/group-members/:id group_members#update 421 | # DELETE /api/edge/group-members/:id group_members#destroy 422 | 423 | #- group_permissions 424 | # GET /api/edge/group-permissions group_permissions#index 425 | # POST /api/edge/group-permissions group_permissions#create 426 | 427 | #- group_permission 428 | # GET /api/edge/group-permissions/:id group_permissions#show 429 | # PATCH /api/edge/group-permissions/:id group_permissions#update 430 | # PUT /api/edge/group-permissions/:id group_permissions#update 431 | # DELETE /api/edge/group-permissions/:id group_permissions#destroy 432 | 433 | #- group_neighbor 434 | # GET /api/edge/group-neighbors group_neighbors#index 435 | # POST /api/edge/group-neighbors group_neighbors#create 436 | # GET /api/edge/group-neighbors/:id group_neighbors#show 437 | # PATCH /api/edge/group-neighbors/:id group_neighbors#update 438 | # PUT /api/edge/group-neighbors/:id group_neighbors#update 439 | # DELETE /api/edge/group-neighbors/:id group_neighbors#destroy 440 | 441 | #- group_categories 442 | # GET /api/edge/group-categories group_categories#index 443 | # POST /api/edge/group-categories group_categories#create 444 | # GET /api/edge/group-categories/:id group_categories#show 445 | # PATCH /api/edge/group-categories/:id group_categories#update 446 | # PUT /api/edge/group-categories/:id group_categories#update 447 | # DELETE /api/edge/group-categories/:id group_categories#destroy 448 | 449 | #- group_ticket 450 | # GET /api/edge/group-tickets group_tickets#index 451 | # POST /api/edge/group-tickets group_tickets#create 452 | # GET /api/edge/group-tickets/:id group_tickets#show 453 | # PATCH /api/edge/group-tickets/:id group_tickets#update 454 | # PUT /api/edge/group-tickets/:id group_tickets#update 455 | # DELETE /api/edge/group-tickets/:id group_tickets#destroy 456 | # GET /api/edge/group-ticket-messages group_ticket_messages#index 457 | # POST /api/edge/group-ticket-messages group_ticket_messages#create 458 | 459 | #- group_ticket_message 460 | # GET /api/edge/group-ticket-messages/:id group_ticket_messages#show 461 | # PATCH /api/edge/group-ticket-messages/:id group_ticket_messages#update 462 | # PUT /api/edge/group-ticket-messages/:id group_ticket_messages#update 463 | # DELETE /api/edge/group-ticket-messages/:id group_ticket_messages#destroy 464 | 465 | #- group_report 466 | # GET /api/edge/group-reports group_reports#index 467 | # POST /api/edge/group-reports group_reports#create 468 | # GET /api/edge/group-reports/:id group_reports#show 469 | # PATCH /api/edge/group-reports/:id group_reports#update 470 | # PUT /api/edge/group-reports/:id group_reports#update 471 | # DELETE /api/edge/group-reports/:id group_reports#destroy 472 | 473 | #- group_bans 474 | # GET /api/edge/group-bans group_bans#index 475 | # POST /api/edge/group-bans group_bans#create 476 | 477 | #- group_ban 478 | # GET /api/edge/group-bans/:id group_bans#show 479 | # PATCH /api/edge/group-bans/:id group_bans#update 480 | # PUT /api/edge/group-bans/:id group_bans#update 481 | # DELETE /api/edge/group-bans/:id group_bans#destroy 482 | 483 | #- group_member_note 484 | # GET /api/edge/group-member-notes group_member_notes#index 485 | # POST /api/edge/group-member-notes group_member_notes#create 486 | # GET /api/edge/group-member-notes/:id group_member_notes#show 487 | # PATCH /api/edge/group-member-notes/:id group_member_notes#update 488 | # PUT /api/edge/group-member-notes/:id group_member_notes#update 489 | # DELETE /api/edge/group-member-notes/:id group_member_notes#destroy 490 | 491 | #- group_action_log 492 | # GET /api/edge/group-action-logs group_action_logs#index 493 | # POST /api/edge/group-action-logs group_action_logs#create 494 | # GET /api/edge/group-action-logs/:id group_action_logs#show 495 | # PATCH /api/edge/group-action-logs/:id group_action_logs#update 496 | # PUT /api/edge/group-action-logs/:id group_action_logs#update 497 | # DELETE /api/edge/group-action-logs/:id group_action_logs#destroy 498 | 499 | #- group_invite 500 | # GET /api/edge/group-invites group_invites#index 501 | # POST /api/edge/group-invites group_invites#create 502 | # GET /api/edge/group-invites/:id group_invites#show 503 | # PATCH /api/edge/group-invites/:id group_invites#update 504 | # PUT /api/edge/group-invites/:id group_invites#update 505 | # DELETE /api/edge/group-invites/:id group_invites#destroy 506 | # POST /api/edge/group-invites/:id/_accept group_invites#accept 507 | # POST /api/edge/group-invites/:id/_decline group_invites#decline 508 | # POST /api/edge/group-invites/:id/_revoke group_invites#revoke 509 | # GET /api/edge/groups/:id/_stats groups#stats 510 | # POST /api/edge/groups/:id/_read groups#read 511 | 512 | #- leader_chat_messages 513 | # GET /api/edge/leader-chat-messages leader_chat_messages#index 514 | # POST /api/edge/leader-chat-messages leader_chat_messages#create 515 | 516 | #- leader_chat_message 517 | # GET /api/edge/leader-chat-messages/:id leader_chat_messages#show 518 | # PATCH /api/edge/leader-chat-messages/:id leader_chat_messages#update 519 | # PUT /api/edge/leader-chat-messages/:id leader_chat_messages#update 520 | # DELETE /api/edge/leader-chat-messages/:id leader_chat_messages#destroy 521 | 522 | #- library_entries 523 | # GET /api/edge/library-entries library_entries#index 524 | # POST /api/edge/library-entries library_entries#create 525 | 526 | #- library_entry 527 | # GET /api/edge/library-entries/:id library_entries#show 528 | # PATCH /api/edge/library-entries/:id library_entries#update 529 | # PUT /api/edge/library-entries/:id library_entries#update 530 | # DELETE /api/edge/library-entries/:id library_entries#destroy 531 | 532 | #- library_entries__bulk 533 | # DELETE /api/edge/library-entries/_bulk library_entries#bulk_delete 534 | # PATCH /api/edge/library-entries/_bulk library_entries#bulk_update 535 | # PUT /api/edge/library-entries/_bulk library_entries#bulk_update 536 | 537 | #- library_entries__issues 538 | # GET /api/edge/library-entries/_issues library_entries#issues 539 | 540 | #- library_entry_logs 541 | # GET /api/edge/library-entry-logs library_entry_logs#index 542 | 543 | #- library_entry_log 544 | # GET /api/edge/library-entry-logs/:id library_entry_logs#show 545 | 546 | #- linked_accounts 547 | # GET /api/edge/linked-accounts linked_accounts#index 548 | # POST /api/edge/linked-accounts linked_accounts#create 549 | 550 | #- linked_account 551 | # GET /api/edge/linked-accounts/:id linked_accounts#show 552 | # PATCH /api/edge/linked-accounts/:id linked_accounts#update 553 | # PUT /api/edge/linked-accounts/:id linked_accounts#update 554 | # DELETE /api/edge/linked-accounts/:id linked_accounts#destroy 555 | 556 | #- list_imports 557 | # GET /api/edge/list-imports list_imports#index 558 | # POST /api/edge/list-imports list_imports#create 559 | 560 | #- list_import 561 | # GET /api/edge/list-imports/:id list_imports#show 562 | # PATCH /api/edge/list-imports/:id list_imports#update 563 | # PUT /api/edge/list-imports/:id list_imports#update 564 | # DELETE /api/edge/list-imports/:id list_imports#destroy 565 | 566 | #- manga_index 567 | # GET /api/edge/manga manga#index 568 | # POST /api/edge/manga manga#create 569 | 570 | /manga: 571 | $ref: ./paths/media/manga.yml 572 | /manga/{id}: 573 | $ref: ./paths/media/manga_id.yml 574 | 575 | #- manga 576 | # GET /api/edge/manga/:id manga#show 577 | # PATCH /api/edge/manga/:id manga#update 578 | # PUT /api/edge/manga/:id manga#update 579 | # DELETE /api/edge/manga/:id manga#destroy 580 | 581 | #- mappings 582 | # GET /api/edge/mappings mappings#index 583 | # POST /api/edge/mappings mappings#create 584 | 585 | #- mapping 586 | # GET /api/edge/mappings/:id mappings#show 587 | # PATCH /api/edge/mappings/:id mappings#update 588 | # PUT /api/edge/mappings/:id mappings#update 589 | # DELETE /api/edge/mappings/:id mappings#destroy 590 | 591 | #- media_ignores 592 | # GET /api/edge/media-ignores media_ignores#index 593 | # POST /api/edge/media-ignores media_ignores#create 594 | 595 | #- media_ignore 596 | # GET /api/edge/media-ignores/:id media_ignores#show 597 | # PATCH /api/edge/media-ignores/:id media_ignores#update 598 | # PUT /api/edge/media-ignores/:id media_ignores#update 599 | # DELETE /api/edge/media-ignores/:id media_ignores#destroy 600 | 601 | #- media_reactions 602 | # GET /api/edge/media-reactions media_reactions#index 603 | # POST /api/edge/media-reactions media_reactions#create 604 | 605 | #- media_reaction 606 | # GET /api/edge/media-reactions/:id media_reactions#show 607 | # PATCH /api/edge/media-reactions/:id media_reactions#update 608 | # PUT /api/edge/media-reactions/:id media_reactions#update 609 | # DELETE /api/edge/media-reactions/:id media_reactions#destroy 610 | 611 | #- media_reaction_votes 612 | # GET /api/edge/media-reaction-votes media_reaction_votes#index 613 | # POST /api/edge/media-reaction-votes media_reaction_votes#create 614 | 615 | #- media_reaction_vote 616 | # GET /api/edge/media-reaction-votes/:id media_reaction_votes#show 617 | # PATCH /api/edge/media-reaction-votes/:id media_reaction_votes#update 618 | # PUT /api/edge/media-reaction-votes/:id media_reaction_votes#update 619 | # DELETE /api/edge/media-reaction-votes/:id media_reaction_votes#destroy 620 | 621 | #- notification_settings 622 | # GET /api/edge/notification-settings notification_settings#index 623 | # POST /api/edge/notification-settings notification_settings#create 624 | 625 | #- notification_setting 626 | # GET /api/edge/notification-settings/:id notification_settings#show 627 | # PATCH /api/edge/notification-settings/:id notification_settings#update 628 | # PUT /api/edge/notification-settings/:id notification_settings#update 629 | # DELETE /api/edge/notification-settings/:id notification_settings#destroy 630 | 631 | #- one_signal_players 632 | # GET /api/edge/one-signal-players one_signal_players#index 633 | # POST /api/edge/one-signal-players one_signal_players#create 634 | 635 | #- one_signal_player 636 | # GET /api/edge/one-signal-players/:id one_signal_players#show 637 | # PATCH /api/edge/one-signal-players/:id one_signal_players#update 638 | # PUT /api/edge/one-signal-players/:id one_signal_players#update 639 | # DELETE /api/edge/one-signal-players/:id one_signal_players#destroy 640 | 641 | #- people 642 | # GET /api/edge/people people#index 643 | # POST /api/edge/people people#create 644 | 645 | #- person 646 | # GET /api/edge/people/:id people#show 647 | # PATCH /api/edge/people/:id people#update 648 | # PUT /api/edge/people/:id people#update 649 | # DELETE /api/edge/people/:id people#destroy 650 | 651 | #- posts 652 | # GET /api/edge/posts posts#index 653 | # POST /api/edge/posts posts#create 654 | 655 | #- post 656 | # GET /api/edge/posts/:id posts#show 657 | # PATCH /api/edge/posts/:id posts#update 658 | # PUT /api/edge/posts/:id posts#update 659 | # DELETE /api/edge/posts/:id posts#destroy 660 | 661 | #- post_follows 662 | # GET /api/edge/post-follows post_follows#index 663 | # POST /api/edge/post-follows post_follows#create 664 | 665 | #- post_follow 666 | # GET /api/edge/post-follows/:id post_follows#show 667 | # PATCH /api/edge/post-follows/:id post_follows#update 668 | # PUT /api/edge/post-follows/:id post_follows#update 669 | # DELETE /api/edge/post-follows/:id post_follows#destroy 670 | 671 | #- post_likes 672 | # GET /api/edge/post-likes post_likes#index 673 | # POST /api/edge/post-likes post_likes#create 674 | 675 | #- post_like 676 | # GET /api/edge/post-likes/:id post_likes#show 677 | # PATCH /api/edge/post-likes/:id post_likes#update 678 | # PUT /api/edge/post-likes/:id post_likes#update 679 | # DELETE /api/edge/post-likes/:id post_likes#destroy 680 | 681 | #- producers 682 | # GET /api/edge/producers producers#index 683 | # POST /api/edge/producers producers#create 684 | 685 | #- producer 686 | # GET /api/edge/producers/:id producers#show 687 | # PATCH /api/edge/producers/:id producers#update 688 | # PUT /api/edge/producers/:id producers#update 689 | # DELETE /api/edge/producers/:id producers#destroy 690 | 691 | #- profile_links 692 | # GET /api/edge/profile-links profile_links#index 693 | # POST /api/edge/profile-links profile_links#create 694 | 695 | #- profile_link 696 | # GET /api/edge/profile-links/:id profile_links#show 697 | # PATCH /api/edge/profile-links/:id profile_links#update 698 | # PUT /api/edge/profile-links/:id profile_links#update 699 | # DELETE /api/edge/profile-links/:id profile_links#destroy 700 | 701 | #- profile_link_sites 702 | # GET /api/edge/profile-link-sites profile_link_sites#index 703 | 704 | #- profile_link_site 705 | # GET /api/edge/profile-link-sites/:id profile_link_sites#show 706 | 707 | #- reports 708 | # GET /api/edge/reports reports#index 709 | # POST /api/edge/reports reports#create 710 | 711 | #- report 712 | # GET /api/edge/reports/:id reports#show 713 | # PATCH /api/edge/reports/:id reports#update 714 | # PUT /api/edge/reports/:id reports#update 715 | # DELETE /api/edge/reports/:id reports#destroy 716 | 717 | #- roles 718 | # GET /api/edge/roles roles#index 719 | # POST /api/edge/roles roles#create 720 | 721 | #- role 722 | # GET /api/edge/roles/:id roles#show 723 | # PATCH /api/edge/roles/:id roles#update 724 | # PUT /api/edge/roles/:id roles#update 725 | # DELETE /api/edge/roles/:id roles#destroy 726 | 727 | #- site_announcements 728 | # GET /api/edge/site-announcements site_announcements#index 729 | # POST /api/edge/site-announcements site_announcements#create 730 | 731 | #- site_announcement 732 | # GET /api/edge/site-announcements/:id site_announcements#show 733 | # PATCH /api/edge/site-announcements/:id site_announcements#update 734 | # PUT /api/edge/site-announcements/:id site_announcements#update 735 | # DELETE /api/edge/site-announcements/:id site_announcements#destroy 736 | 737 | #- stats 738 | # GET /api/edge/stats stats#index 739 | 740 | #- stat 741 | # GET /api/edge/stats/:id stats#show 742 | 743 | #- streamers 744 | # GET /api/edge/streamers streamers#index 745 | # POST /api/edge/streamers streamers#create 746 | 747 | #- streamer 748 | # GET /api/edge/streamers/:id streamers#show 749 | # PATCH /api/edge/streamers/:id streamers#update 750 | # PUT /api/edge/streamers/:id streamers#update 751 | # DELETE /api/edge/streamers/:id streamers#destroy 752 | 753 | #- streaming_links 754 | # GET /api/edge/streaming-links streaming_links#index 755 | # POST /api/edge/streaming-links streaming_links#create 756 | 757 | #- streaming_link 758 | # GET /api/edge/streaming-links/:id streaming_links#show 759 | # PATCH /api/edge/streaming-links/:id streaming_links#update 760 | # PUT /api/edge/streaming-links/:id streaming_links#update 761 | # DELETE /api/edge/streaming-links/:id streaming_links#destroy 762 | 763 | #- trending 764 | # GET /api/edge/trending/:namespace trending#index 765 | 766 | #- uploads 767 | # GET /api/edge/uploads uploads#index 768 | # POST /api/edge/uploads uploads#create 769 | 770 | #- upload 771 | # GET /api/edge/uploads/:id uploads#show 772 | # PATCH /api/edge/uploads/:id uploads#update 773 | # PUT /api/edge/uploads/:id uploads#update 774 | # DELETE /api/edge/uploads/:id uploads#destroy 775 | 776 | #- uploads__bulk 777 | # POST /api/edge/uploads/_bulk uploads#bulk_create 778 | 779 | #- users 780 | # GET /api/edge/users users#index 781 | # POST /api/edge/users users#create 782 | 783 | #- user 784 | # GET /api/edge/users/:id users#show 785 | # PATCH /api/edge/users/:id users#update 786 | # PUT /api/edge/users/:id users#update 787 | # DELETE /api/edge/users/:id users#destroy 788 | #- user_roles 789 | # GET /api/edge/user-roles user_roles#index 790 | # POST /api/edge/user-roles user_roles#create 791 | 792 | #- user_role 793 | # GET /api/edge/user-roles/:id user_roles#show 794 | # PATCH /api/edge/user-roles/:id user_roles#update 795 | # PUT /api/edge/user-roles/:id user_roles#update 796 | # DELETE /api/edge/user-roles/:id user_roles#destroy 797 | 798 | components: 799 | # https://swagger.io/docs/specification/authentication/oauth2/ 800 | securitySchemes: 801 | OAuth2: 802 | type: oauth2 803 | flows: 804 | password: 805 | tokenUrl: https://kitsu.io/api/oauth/token 806 | scopes: 807 | read: Not yet implemented 808 | write: Not yet implemented 809 | admin: Not yet implemented 810 | 811 | parameters: 812 | Fields: 813 | $ref: ./parameters/fields.yml 814 | Filter: 815 | $ref: ./parameters/filter.yml 816 | Page: 817 | $ref: ./parameters/page.yml 818 | Sort: 819 | $ref: ./parameters/sort.yml 820 | 821 | # https://github.com/hummingbird-me/kitsu-server/tree/the-future/app/resources 822 | # https://github.com/hummingbird-me/kitsu-server/tree/the-future/app/models 823 | # https://github.com/hummingbird-me/kitsu-server/tree/the-future/app/policies 824 | schemas: 825 | IDType: 826 | $ref: ./schemas/id_type.yml 827 | 828 | EnumAlgoliaIndex: 829 | $ref: ./schemas/enums/algoliaIndex.yml 830 | EnumSubTypeAnime: 831 | $ref: ./schemas/enums/subtype_anime.yml 832 | 833 | ResourceFiltersAnime: 834 | $ref: ./schemas/filters/resourceFilters/anime.yml 835 | ResourceFiltersManga: 836 | $ref: ./schemas/filters/resourceFilters/manga.yml 837 | ResourceFiltersMedia: 838 | $ref: ./schemas/filters/resourceFilters/media.yml 839 | 840 | LinksPagination: 841 | $ref: ./schemas/links/pagination.yml 842 | LinksSelf: 843 | $ref: ./schemas/links/self.yml 844 | LinksSelfRelated: 845 | $ref: ./schemas/links/self_related.yml 846 | 847 | MetaCount: 848 | $ref: ./schemas/meta/count.yml 849 | 850 | AlgoliaCharacters: 851 | $ref: ./schemas/resources/algoliaKeys/characters.yml 852 | AlgoliaGroups: 853 | $ref: ./schemas/resources/algoliaKeys/groups.yml 854 | AlgoliaMedia: 855 | $ref: ./schemas/resources/algoliaKeys/media.yml 856 | AlgoliaPosts: 857 | $ref: ./schemas/resources/algoliaKeys/posts.yml 858 | AlgoliaUsers: 859 | $ref: ./schemas/resources/algoliaKeys/users.yml 860 | #ActivityGroup: 861 | # $ref: ./schemas/resources/activityGroup.yml 862 | #Activity: 863 | # $ref: ./schemas/resources/activity.yml 864 | #Actor: 865 | # $ref: ./schemas/resources/actor.yml 866 | Anime: 867 | $ref: ./schemas/resources/anime.yml 868 | Base: # Inherited by all resources 869 | $ref: ./schemas/resources/base.yml 870 | #Block: 871 | # $ref: ./schemas/resources/block.yml 872 | #CategoryFavorite: 873 | # $ref: ./schemas/resources/category-favorite.yml 874 | #CategoryRecommendation: 875 | # $ref: ./schemas/resources/category-recommendation.yml 876 | #Category: 877 | # $ref: ./schemas/resources/category.yml 878 | #Chapter: 879 | # $ref: ./schemas/resources/chapter.yml 880 | #Character: 881 | # $ref: ./schemas/resources/character.yml 882 | #CharacterVoice: 883 | # $ref: ./schemas/resources/character-voice.yml 884 | #CommentLike: 885 | # $ref: ./schemas/resources/comment-like.yml 886 | #Comment: 887 | # $ref: ./schemas/resources/comment.yml 888 | #Destination: 889 | # $ref: ./schemas/resources/destination.yml 890 | Episode: 891 | $ref: ./schemas/resources/episode.yml 892 | #Favorite: 893 | # $ref: ./schemas/resources/favorite.yml 894 | #Feed: 895 | # $ref: ./schemas/resources/feed.yml 896 | #Follow: 897 | # $ref: ./schemas/resources/follow.yml 898 | #GroupActionLog: 899 | # $ref: ./schemas/resources/group-action-log.yml 900 | #GroupBan: 901 | # $ref: ./schemas/resources/group-ban.yml 902 | #GroupCategory: 903 | # $ref: ./schemas/resources/group-category.yml 904 | #GroupInvite: 905 | # $ref: ./schemas/resources/group-invite.yml 906 | #GroupMemberNote: 907 | # $ref: ./schemas/resources/group-member-note.yml 908 | #GroupMember: 909 | # $ref: ./schemas/resources/group-member.yml 910 | #GroupNeighbor: 911 | # $ref: ./schemas/resources/group-neighbor.yml 912 | #GroupPermission: 913 | # $ref: ./schemas/resources/group-permission.yml 914 | #GroupReport: 915 | # $ref: ./schemas/resources/group-report.yml 916 | #Group: 917 | # $ref: ./schemas/resources/group.yml 918 | #GroupTicketMessage: 919 | # $ref: ./schemas/resources/group-ticket-message.yml 920 | #GroupTicket: 921 | # $ref: ./schemas/resources/group-ticket.yml 922 | #Item: 923 | # $ref: ./schemas/resources/item.yml 924 | #LeaderChatMessage: 925 | # $ref: ./schemas/resources/leader-chat-message.yml 926 | #LibraryEntryLog: 927 | # $ref: ./schemas/resources/library-entry-log.yml 928 | #LibraryEntry: 929 | # $ref: ./schemas/resources/library-entry.yml 930 | #LibraryEvent: 931 | # $ref: ./schemas/resources/library-event.yml 932 | #LinkedAccount: 933 | # $ref: ./schemas/resources/linked-account.yml 934 | #ListImport: 935 | # $ref: ./schemas/resources/list-import.yml 936 | Manga: 937 | $ref: ./schemas/resources/manga.yml 938 | #Mapping: 939 | # $ref: ./schemas/resources/mapping.yml 940 | #MediaCharacter: 941 | # $ref: ./schemas/resources/media-character.yml 942 | #MediaIgnore: 943 | # $ref: ./schemas/resources/media-ignore.yml 944 | #MediaProduction: 945 | # $ref: ./schemas/resources/media-production.yml 946 | #MediaReaction: 947 | # $ref: ./schemas/resources/media-reaction.yml 948 | #MediaReactionVote: 949 | # $ref: ./schemas/resources/media-reaction-vote.yml 950 | #MediaRelationship: 951 | # $ref: ./schemas/resources/media-relationship.yml 952 | Media: 953 | $ref: ./schemas/resources/media.yml 954 | #MediaStaff: 955 | # $ref: ./schemas/resources/media-staff.yml 956 | #Naughty: 957 | # $ref: ./schemas/resources/naughty.yml 958 | #NextUnit: 959 | # $ref: ./schemas/resources/next-unit.yml 960 | #NotificationSetting: 961 | # $ref: ./schemas/resources/notification-setting.yml 962 | #OneSignalPlayer: 963 | # $ref: ./schemas/resources/one-signal-player.yml 964 | #Owner: 965 | # $ref: ./schemas/resources/owner.yml 966 | #Person: 967 | # $ref: ./schemas/resources/person.yml 968 | #PostFollow: 969 | # $ref: ./schemas/resources/post-follow.yml 970 | #PostLike: 971 | # $ref: ./schemas/resources/post-like.yml 972 | #Post: 973 | # $ref: ./schemas/resources/post.yml 974 | #Producer: 975 | # $ref: ./schemas/resources/producer.yml 976 | #ProfileLink: 977 | # $ref: ./schemas/resources/profile-link.yml 978 | #ProfileLinkSite: 979 | # $ref: ./schemas/resources/profile-link-site.yml 980 | #QuoteLike: 981 | # $ref: ./schemas/resources/quote-like.yml 982 | #Quote: 983 | # $ref: ./schemas/resources/quote.yml 984 | #Report: 985 | # $ref: ./schemas/resources/report.yml 986 | #Repost: 987 | # $ref: ./schemas/resources/repost.yml 988 | #Resource: 989 | # $ref: ./schemas/resources/resource.yml 990 | #Role: 991 | # $ref: ./schemas/resources/role.yml 992 | #SiteAnnouncement: 993 | # $ref: ./schemas/resources/site-announcement.yml 994 | #Source: 995 | # $ref: ./schemas/resources/source.yml 996 | #SpoiledUnit: 997 | # $ref: ./schemas/resources/spoiled-unit.yml 998 | #Stat: 999 | # $ref: ./schemas/resources/stat.yml 1000 | #Streamer: 1001 | # $ref: ./schemas/resources/streamer.yml 1002 | #StreamingLink: 1003 | # $ref: ./schemas/resources/streaming-link.yml 1004 | #Subject: 1005 | # $ref: ./schemas/resources/subject.yml 1006 | #Target: 1007 | # $ref: ./schemas/resources/target.yml 1008 | #Unit: 1009 | # $ref: ./schemas/resources/unit.yml 1010 | #Upload: 1011 | # $ref: ./schemas/resources/upload.yml 1012 | #User: 1013 | # $ref: ./schemas/resources/user.yml 1014 | #UserRole: 1015 | # $ref: ./schemas/resources/user-role.yml 1016 | #Video: 1017 | # $ref: ./schemas/resources/video.yml 1018 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.22.13": 6 | version "7.22.13" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" 8 | integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== 9 | dependencies: 10 | "@babel/highlight" "^7.22.13" 11 | chalk "^2.4.2" 12 | 13 | "@babel/generator@^7.23.0": 14 | version "7.23.0" 15 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420" 16 | integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g== 17 | dependencies: 18 | "@babel/types" "^7.23.0" 19 | "@jridgewell/gen-mapping" "^0.3.2" 20 | "@jridgewell/trace-mapping" "^0.3.17" 21 | jsesc "^2.5.1" 22 | 23 | "@babel/helper-annotate-as-pure@^7.16.0": 24 | version "7.16.7" 25 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862" 26 | integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw== 27 | dependencies: 28 | "@babel/types" "^7.16.7" 29 | 30 | "@babel/helper-environment-visitor@^7.22.20": 31 | version "7.22.20" 32 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" 33 | integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== 34 | 35 | "@babel/helper-function-name@^7.23.0": 36 | version "7.23.0" 37 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" 38 | integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== 39 | dependencies: 40 | "@babel/template" "^7.22.15" 41 | "@babel/types" "^7.23.0" 42 | 43 | "@babel/helper-hoist-variables@^7.22.5": 44 | version "7.22.5" 45 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" 46 | integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== 47 | dependencies: 48 | "@babel/types" "^7.22.5" 49 | 50 | "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.0": 51 | version "7.16.7" 52 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437" 53 | integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg== 54 | dependencies: 55 | "@babel/types" "^7.16.7" 56 | 57 | "@babel/helper-split-export-declaration@^7.22.6": 58 | version "7.22.6" 59 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" 60 | integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== 61 | dependencies: 62 | "@babel/types" "^7.22.5" 63 | 64 | "@babel/helper-string-parser@^7.22.5": 65 | version "7.22.5" 66 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" 67 | integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== 68 | 69 | "@babel/helper-validator-identifier@^7.16.7": 70 | version "7.16.7" 71 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" 72 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== 73 | 74 | "@babel/helper-validator-identifier@^7.22.20": 75 | version "7.22.20" 76 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" 77 | integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== 78 | 79 | "@babel/highlight@^7.22.13": 80 | version "7.22.20" 81 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" 82 | integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== 83 | dependencies: 84 | "@babel/helper-validator-identifier" "^7.22.20" 85 | chalk "^2.4.2" 86 | js-tokens "^4.0.0" 87 | 88 | "@babel/parser@^7.22.15", "@babel/parser@^7.23.0": 89 | version "7.23.0" 90 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719" 91 | integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== 92 | 93 | "@babel/runtime@^7.14.0": 94 | version "7.16.7" 95 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.7.tgz#03ff99f64106588c9c403c6ecb8c3bafbbdff1fa" 96 | integrity sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ== 97 | dependencies: 98 | regenerator-runtime "^0.13.4" 99 | 100 | "@babel/template@^7.22.15": 101 | version "7.22.15" 102 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" 103 | integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== 104 | dependencies: 105 | "@babel/code-frame" "^7.22.13" 106 | "@babel/parser" "^7.22.15" 107 | "@babel/types" "^7.22.15" 108 | 109 | "@babel/traverse@^7.4.5": 110 | version "7.23.2" 111 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8" 112 | integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw== 113 | dependencies: 114 | "@babel/code-frame" "^7.22.13" 115 | "@babel/generator" "^7.23.0" 116 | "@babel/helper-environment-visitor" "^7.22.20" 117 | "@babel/helper-function-name" "^7.23.0" 118 | "@babel/helper-hoist-variables" "^7.22.5" 119 | "@babel/helper-split-export-declaration" "^7.22.6" 120 | "@babel/parser" "^7.23.0" 121 | "@babel/types" "^7.23.0" 122 | debug "^4.1.0" 123 | globals "^11.1.0" 124 | 125 | "@babel/types@^7.16.7": 126 | version "7.16.8" 127 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.8.tgz#0ba5da91dd71e0a4e7781a30f22770831062e3c1" 128 | integrity sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg== 129 | dependencies: 130 | "@babel/helper-validator-identifier" "^7.16.7" 131 | to-fast-properties "^2.0.0" 132 | 133 | "@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0": 134 | version "7.23.0" 135 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" 136 | integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== 137 | dependencies: 138 | "@babel/helper-string-parser" "^7.22.5" 139 | "@babel/helper-validator-identifier" "^7.22.20" 140 | to-fast-properties "^2.0.0" 141 | 142 | "@emotion/is-prop-valid@^0.8.8": 143 | version "0.8.8" 144 | resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a" 145 | integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== 146 | dependencies: 147 | "@emotion/memoize" "0.7.4" 148 | 149 | "@emotion/memoize@0.7.4": 150 | version "0.7.4" 151 | resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb" 152 | integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== 153 | 154 | "@emotion/stylis@^0.8.4": 155 | version "0.8.5" 156 | resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" 157 | integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ== 158 | 159 | "@emotion/unitless@^0.7.4": 160 | version "0.7.5" 161 | resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" 162 | integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== 163 | 164 | "@exodus/schemasafe@^1.0.0-rc.2": 165 | version "1.0.0-rc.6" 166 | resolved "https://registry.yarnpkg.com/@exodus/schemasafe/-/schemasafe-1.0.0-rc.6.tgz#7985f681564cff4ffaebb5896eb4be20af3aae7a" 167 | integrity sha512-dDnQizD94EdBwEj/fh3zPRa/HWCS9O5au2PuHhZBbuM3xWHxuaKzPBOEWze7Nn0xW68MIpZ7Xdyn1CoCpjKCuQ== 168 | 169 | "@jridgewell/gen-mapping@^0.3.2": 170 | version "0.3.3" 171 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" 172 | integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== 173 | dependencies: 174 | "@jridgewell/set-array" "^1.0.1" 175 | "@jridgewell/sourcemap-codec" "^1.4.10" 176 | "@jridgewell/trace-mapping" "^0.3.9" 177 | 178 | "@jridgewell/resolve-uri@^3.1.0": 179 | version "3.1.1" 180 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" 181 | integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== 182 | 183 | "@jridgewell/set-array@^1.0.1": 184 | version "1.1.2" 185 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 186 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 187 | 188 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": 189 | version "1.4.15" 190 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" 191 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 192 | 193 | "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": 194 | version "0.3.19" 195 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" 196 | integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== 197 | dependencies: 198 | "@jridgewell/resolve-uri" "^3.1.0" 199 | "@jridgewell/sourcemap-codec" "^1.4.14" 200 | 201 | "@redocly/ajv@^8.6.4": 202 | version "8.6.4" 203 | resolved "https://registry.yarnpkg.com/@redocly/ajv/-/ajv-8.6.4.tgz#94053e7a9d4146d1a4feacd3813892873f229a85" 204 | integrity sha512-y9qNj0//tZtWB2jfXNK3BX18BSBp9zNR7KE7lMysVHwbZtY392OJCjm6Rb/h4UHH2r1AqjNEHFD6bRn+DqU9Mw== 205 | dependencies: 206 | fast-deep-equal "^3.1.1" 207 | json-schema-traverse "^1.0.0" 208 | require-from-string "^2.0.2" 209 | uri-js "^4.2.2" 210 | 211 | "@redocly/openapi-cli@1.0.0-beta.79": 212 | version "1.0.0-beta.79" 213 | resolved "https://registry.yarnpkg.com/@redocly/openapi-cli/-/openapi-cli-1.0.0-beta.79.tgz#b2a34cc3a9668b31a3eb711c8f9da563c85f3e3a" 214 | integrity sha512-vEH97GpGqkjVilYeWXWR1So1W9JtSerGKFWyEcvK9OgNk5s7fE+Gl2A3T/XMoHGGLA9QRAnP/j1zt46ymj6VCA== 215 | dependencies: 216 | "@redocly/openapi-core" "1.0.0-beta.79" 217 | "@types/node" "^14.11.8" 218 | assert-node-version "^1.0.3" 219 | chokidar "^3.5.1" 220 | colorette "^1.2.0" 221 | glob "^7.1.6" 222 | glob-promise "^3.4.0" 223 | handlebars "^4.7.6" 224 | portfinder "^1.0.26" 225 | simple-websocket "^9.0.0" 226 | yargs "17.0.1" 227 | 228 | "@redocly/openapi-core@1.0.0-beta.79", "@redocly/openapi-core@^1.0.0-beta.54": 229 | version "1.0.0-beta.79" 230 | resolved "https://registry.yarnpkg.com/@redocly/openapi-core/-/openapi-core-1.0.0-beta.79.tgz#7512b3507ab99dc78226f9069669c5302abb0969" 231 | integrity sha512-do79vGt3iiHsaVG9LKY8dH+d1E7TLHr+3T+CQ1lqagtWVjYOxqGaoxAT8tRD7R1W0z8BmS4e2poNON6c1sxP5g== 232 | dependencies: 233 | "@redocly/ajv" "^8.6.4" 234 | "@types/node" "^14.11.8" 235 | colorette "^1.2.0" 236 | js-levenshtein "^1.1.6" 237 | js-yaml "^4.1.0" 238 | lodash.isequal "^4.5.0" 239 | minimatch "^3.0.4" 240 | node-fetch "^2.6.1" 241 | pluralize "^8.0.0" 242 | yaml-ast-parser "0.0.43" 243 | 244 | "@redocly/react-dropdown-aria@^2.0.11": 245 | version "2.0.12" 246 | resolved "https://registry.yarnpkg.com/@redocly/react-dropdown-aria/-/react-dropdown-aria-2.0.12.tgz#2e3af2b1b8e9123487109400d6117f0d4a8445a6" 247 | integrity sha512-feQEZlyBvQsbT/fvpJ4jJ5OLGaUPpnskHYDsY8DGpPymN+HUeDQrqkBEbbKRwMKidFTI2cxk2kJNNTnvdS9jyw== 248 | 249 | "@types/glob@*": 250 | version "7.2.0" 251 | resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" 252 | integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== 253 | dependencies: 254 | "@types/minimatch" "*" 255 | "@types/node" "*" 256 | 257 | "@types/json-schema@^7.0.7": 258 | version "7.0.9" 259 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" 260 | integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== 261 | 262 | "@types/minimatch@*": 263 | version "3.0.5" 264 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" 265 | integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== 266 | 267 | "@types/node@*": 268 | version "17.0.8" 269 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.8.tgz#50d680c8a8a78fe30abe6906453b21ad8ab0ad7b" 270 | integrity sha512-YofkM6fGv4gDJq78g4j0mMuGMkZVxZDgtU0JRdx6FgiJDG+0fY0GKVolOV8WqVmEhLCXkQRjwDdKyPxJp/uucg== 271 | 272 | "@types/node@^14.11.8": 273 | version "14.18.5" 274 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.5.tgz#0dd636fe7b2c6055cbed0d4ca3b7fb540f130a96" 275 | integrity sha512-LMy+vDDcQR48EZdEx5wRX1q/sEl6NdGuHXPnfeL8ixkwCOSZ2qnIyIZmcCbdX0MeRqHhAcHmX+haCbrS8Run+A== 276 | 277 | ansi-regex@^5.0.1: 278 | version "5.0.1" 279 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 280 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 281 | 282 | ansi-styles@^3.2.1: 283 | version "3.2.1" 284 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 285 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 286 | dependencies: 287 | color-convert "^1.9.0" 288 | 289 | ansi-styles@^4.0.0: 290 | version "4.3.0" 291 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 292 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 293 | dependencies: 294 | color-convert "^2.0.1" 295 | 296 | anymatch@~3.1.2: 297 | version "3.1.2" 298 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 299 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 300 | dependencies: 301 | normalize-path "^3.0.0" 302 | picomatch "^2.0.4" 303 | 304 | argparse@^2.0.1: 305 | version "2.0.1" 306 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 307 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 308 | 309 | asn1.js@^5.2.0: 310 | version "5.4.1" 311 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" 312 | integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== 313 | dependencies: 314 | bn.js "^4.0.0" 315 | inherits "^2.0.1" 316 | minimalistic-assert "^1.0.0" 317 | safer-buffer "^2.1.0" 318 | 319 | assert-node-version@^1.0.3: 320 | version "1.0.3" 321 | resolved "https://registry.yarnpkg.com/assert-node-version/-/assert-node-version-1.0.3.tgz#caea5d1b6a58dbce59661208df1e1b9e4c580f91" 322 | integrity sha1-yupdG2pY285ZZhII3x4bnkxYD5E= 323 | dependencies: 324 | expected-node-version "^1.0.0" 325 | semver "^5.0.3" 326 | 327 | assert@^1.1.1: 328 | version "1.5.0" 329 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" 330 | integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== 331 | dependencies: 332 | object-assign "^4.1.1" 333 | util "0.10.3" 334 | 335 | async@^2.6.2: 336 | version "2.6.4" 337 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" 338 | integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== 339 | dependencies: 340 | lodash "^4.17.14" 341 | 342 | "babel-plugin-styled-components@>= 1.12.0": 343 | version "2.0.2" 344 | resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.2.tgz#0fac11402dc9db73698b55847ab1dc73f5197c54" 345 | integrity sha512-7eG5NE8rChnNTDxa6LQfynwgHTVOYYaHJbUYSlOhk8QBXIQiMBKq4gyfHBBKPrxUcVBXVJL61ihduCpCQbuNbw== 346 | dependencies: 347 | "@babel/helper-annotate-as-pure" "^7.16.0" 348 | "@babel/helper-module-imports" "^7.16.0" 349 | babel-plugin-syntax-jsx "^6.18.0" 350 | lodash "^4.17.11" 351 | 352 | babel-plugin-syntax-jsx@^6.18.0: 353 | version "6.18.0" 354 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 355 | integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= 356 | 357 | balanced-match@^1.0.0: 358 | version "1.0.2" 359 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 360 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 361 | 362 | base64-js@^1.0.2: 363 | version "1.5.1" 364 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 365 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 366 | 367 | binary-extensions@^2.0.0: 368 | version "2.2.0" 369 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 370 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 371 | 372 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: 373 | version "4.12.0" 374 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" 375 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== 376 | 377 | bn.js@^5.0.0: 378 | version "5.2.0" 379 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002" 380 | integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw== 381 | 382 | bn.js@^5.2.1: 383 | version "5.2.1" 384 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" 385 | integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== 386 | 387 | brace-expansion@^1.1.7: 388 | version "1.1.11" 389 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 390 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 391 | dependencies: 392 | balanced-match "^1.0.0" 393 | concat-map "0.0.1" 394 | 395 | braces@~3.0.2: 396 | version "3.0.2" 397 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 398 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 399 | dependencies: 400 | fill-range "^7.0.1" 401 | 402 | brorand@^1.0.1, brorand@^1.1.0: 403 | version "1.1.0" 404 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 405 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= 406 | 407 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 408 | version "1.2.0" 409 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 410 | integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== 411 | dependencies: 412 | buffer-xor "^1.0.3" 413 | cipher-base "^1.0.0" 414 | create-hash "^1.1.0" 415 | evp_bytestokey "^1.0.3" 416 | inherits "^2.0.1" 417 | safe-buffer "^5.0.1" 418 | 419 | browserify-cipher@^1.0.0: 420 | version "1.0.1" 421 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" 422 | integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== 423 | dependencies: 424 | browserify-aes "^1.0.4" 425 | browserify-des "^1.0.0" 426 | evp_bytestokey "^1.0.0" 427 | 428 | browserify-des@^1.0.0: 429 | version "1.0.2" 430 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" 431 | integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== 432 | dependencies: 433 | cipher-base "^1.0.1" 434 | des.js "^1.0.0" 435 | inherits "^2.0.1" 436 | safe-buffer "^5.1.2" 437 | 438 | browserify-rsa@^4.0.0, browserify-rsa@^4.1.0: 439 | version "4.1.0" 440 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" 441 | integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== 442 | dependencies: 443 | bn.js "^5.0.0" 444 | randombytes "^2.0.1" 445 | 446 | browserify-sign@^4.0.0: 447 | version "4.2.2" 448 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.2.tgz#e78d4b69816d6e3dd1c747e64e9947f9ad79bc7e" 449 | integrity sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg== 450 | dependencies: 451 | bn.js "^5.2.1" 452 | browserify-rsa "^4.1.0" 453 | create-hash "^1.2.0" 454 | create-hmac "^1.1.7" 455 | elliptic "^6.5.4" 456 | inherits "^2.0.4" 457 | parse-asn1 "^5.1.6" 458 | readable-stream "^3.6.2" 459 | safe-buffer "^5.2.1" 460 | 461 | browserify-zlib@^0.2.0: 462 | version "0.2.0" 463 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" 464 | integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== 465 | dependencies: 466 | pako "~1.0.5" 467 | 468 | buffer-xor@^1.0.3: 469 | version "1.0.3" 470 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 471 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= 472 | 473 | buffer@^4.3.0: 474 | version "4.9.2" 475 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" 476 | integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== 477 | dependencies: 478 | base64-js "^1.0.2" 479 | ieee754 "^1.1.4" 480 | isarray "^1.0.0" 481 | 482 | builtin-status-codes@^3.0.0: 483 | version "3.0.0" 484 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 485 | integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= 486 | 487 | call-me-maybe@^1.0.1: 488 | version "1.0.1" 489 | resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" 490 | integrity sha1-JtII6onje1y95gJQoV8DHBak1ms= 491 | 492 | camelize@^1.0.0: 493 | version "1.0.0" 494 | resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" 495 | integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= 496 | 497 | chalk@^2.4.2: 498 | version "2.4.2" 499 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 500 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 501 | dependencies: 502 | ansi-styles "^3.2.1" 503 | escape-string-regexp "^1.0.5" 504 | supports-color "^5.3.0" 505 | 506 | chokidar@^3.5.1: 507 | version "3.5.2" 508 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" 509 | integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== 510 | dependencies: 511 | anymatch "~3.1.2" 512 | braces "~3.0.2" 513 | glob-parent "~5.1.2" 514 | is-binary-path "~2.1.0" 515 | is-glob "~4.0.1" 516 | normalize-path "~3.0.0" 517 | readdirp "~3.6.0" 518 | optionalDependencies: 519 | fsevents "~2.3.2" 520 | 521 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 522 | version "1.0.4" 523 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 524 | integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== 525 | dependencies: 526 | inherits "^2.0.1" 527 | safe-buffer "^5.0.1" 528 | 529 | classnames@^2.3.1: 530 | version "2.3.1" 531 | resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" 532 | integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== 533 | 534 | cliui@^7.0.2: 535 | version "7.0.4" 536 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 537 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 538 | dependencies: 539 | string-width "^4.2.0" 540 | strip-ansi "^6.0.0" 541 | wrap-ansi "^7.0.0" 542 | 543 | clsx@^1.1.0: 544 | version "1.1.1" 545 | resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" 546 | integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== 547 | 548 | color-convert@^1.9.0: 549 | version "1.9.3" 550 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 551 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 552 | dependencies: 553 | color-name "1.1.3" 554 | 555 | color-convert@^2.0.1: 556 | version "2.0.1" 557 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 558 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 559 | dependencies: 560 | color-name "~1.1.4" 561 | 562 | color-name@1.1.3: 563 | version "1.1.3" 564 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 565 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 566 | 567 | color-name@~1.1.4: 568 | version "1.1.4" 569 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 570 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 571 | 572 | colorette@^1.2.0: 573 | version "1.4.0" 574 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" 575 | integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== 576 | 577 | concat-map@0.0.1: 578 | version "0.0.1" 579 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 580 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 581 | 582 | console-browserify@^1.1.0: 583 | version "1.2.0" 584 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" 585 | integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== 586 | 587 | constants-browserify@^1.0.0: 588 | version "1.0.0" 589 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 590 | integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= 591 | 592 | core-util-is@~1.0.0: 593 | version "1.0.3" 594 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" 595 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 596 | 597 | create-ecdh@^4.0.0: 598 | version "4.0.4" 599 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" 600 | integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== 601 | dependencies: 602 | bn.js "^4.1.0" 603 | elliptic "^6.5.3" 604 | 605 | create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: 606 | version "1.2.0" 607 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 608 | integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== 609 | dependencies: 610 | cipher-base "^1.0.1" 611 | inherits "^2.0.1" 612 | md5.js "^1.3.4" 613 | ripemd160 "^2.0.1" 614 | sha.js "^2.4.0" 615 | 616 | create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: 617 | version "1.1.7" 618 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 619 | integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== 620 | dependencies: 621 | cipher-base "^1.0.3" 622 | create-hash "^1.1.0" 623 | inherits "^2.0.1" 624 | ripemd160 "^2.0.0" 625 | safe-buffer "^5.0.1" 626 | sha.js "^2.4.8" 627 | 628 | crypto-browserify@^3.11.0: 629 | version "3.12.0" 630 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" 631 | integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== 632 | dependencies: 633 | browserify-cipher "^1.0.0" 634 | browserify-sign "^4.0.0" 635 | create-ecdh "^4.0.0" 636 | create-hash "^1.1.0" 637 | create-hmac "^1.1.0" 638 | diffie-hellman "^5.0.0" 639 | inherits "^2.0.1" 640 | pbkdf2 "^3.0.3" 641 | public-encrypt "^4.0.0" 642 | randombytes "^2.0.0" 643 | randomfill "^1.0.3" 644 | 645 | css-color-keywords@^1.0.0: 646 | version "1.0.0" 647 | resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" 648 | integrity sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU= 649 | 650 | css-to-react-native@^3.0.0: 651 | version "3.0.0" 652 | resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756" 653 | integrity sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ== 654 | dependencies: 655 | camelize "^1.0.0" 656 | css-color-keywords "^1.0.0" 657 | postcss-value-parser "^4.0.2" 658 | 659 | debug@^3.1.1: 660 | version "3.2.7" 661 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 662 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 663 | dependencies: 664 | ms "^2.1.1" 665 | 666 | debug@^4.1.0, debug@^4.3.1: 667 | version "4.3.3" 668 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" 669 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 670 | dependencies: 671 | ms "2.1.2" 672 | 673 | decko@^1.2.0: 674 | version "1.2.0" 675 | resolved "https://registry.yarnpkg.com/decko/-/decko-1.2.0.tgz#fd43c735e967b8013306884a56fbe665996b6817" 676 | integrity sha1-/UPHNelnuAEzBohKVvvmZZlraBc= 677 | 678 | des.js@^1.0.0: 679 | version "1.0.1" 680 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" 681 | integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== 682 | dependencies: 683 | inherits "^2.0.1" 684 | minimalistic-assert "^1.0.0" 685 | 686 | diffie-hellman@^5.0.0: 687 | version "5.0.3" 688 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" 689 | integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== 690 | dependencies: 691 | bn.js "^4.1.0" 692 | miller-rabin "^4.0.0" 693 | randombytes "^2.0.0" 694 | 695 | domain-browser@^1.1.1: 696 | version "1.2.0" 697 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" 698 | integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== 699 | 700 | dompurify@^2.2.8: 701 | version "2.3.4" 702 | resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.4.tgz#1cf5cf0105ccb4debdf6db162525bd41e6ddacc6" 703 | integrity sha512-6BVcgOAVFXjI0JTjEvZy901Rghm+7fDQOrNIcxB4+gdhj6Kwp6T9VBhBY/AbagKHJocRkDYGd6wvI+p4/10xtQ== 704 | 705 | elliptic@^6.5.3, elliptic@^6.5.4: 706 | version "6.5.4" 707 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" 708 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== 709 | dependencies: 710 | bn.js "^4.11.9" 711 | brorand "^1.1.0" 712 | hash.js "^1.0.0" 713 | hmac-drbg "^1.0.1" 714 | inherits "^2.0.4" 715 | minimalistic-assert "^1.0.1" 716 | minimalistic-crypto-utils "^1.0.1" 717 | 718 | emoji-regex@^8.0.0: 719 | version "8.0.0" 720 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 721 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 722 | 723 | es6-promise@^3.2.1: 724 | version "3.3.1" 725 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" 726 | integrity sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM= 727 | 728 | escalade@^3.1.1: 729 | version "3.1.1" 730 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 731 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 732 | 733 | escape-string-regexp@^1.0.5: 734 | version "1.0.5" 735 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 736 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 737 | 738 | eventemitter3@^4.0.7: 739 | version "4.0.7" 740 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" 741 | integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== 742 | 743 | events@^3.0.0: 744 | version "3.3.0" 745 | resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" 746 | integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== 747 | 748 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 749 | version "1.0.3" 750 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 751 | integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== 752 | dependencies: 753 | md5.js "^1.3.4" 754 | safe-buffer "^5.1.1" 755 | 756 | expected-node-version@^1.0.0: 757 | version "1.0.2" 758 | resolved "https://registry.yarnpkg.com/expected-node-version/-/expected-node-version-1.0.2.tgz#b8d225b9bf676a9e87e06dbd615b52fc9d1e386b" 759 | integrity sha1-uNIlub9nap6H4G29YVtS/J0eOGs= 760 | 761 | fast-deep-equal@^3.1.1: 762 | version "3.1.3" 763 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 764 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 765 | 766 | fast-safe-stringify@^2.0.7: 767 | version "2.1.1" 768 | resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" 769 | integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== 770 | 771 | fill-range@^7.0.1: 772 | version "7.0.1" 773 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 774 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 775 | dependencies: 776 | to-regex-range "^5.0.1" 777 | 778 | foreach@^2.0.4: 779 | version "2.0.6" 780 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.6.tgz#87bcc8a1a0e74000ff2bf9802110708cfb02eb6e" 781 | integrity sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg== 782 | 783 | fs.realpath@^1.0.0: 784 | version "1.0.0" 785 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 786 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 787 | 788 | fsevents@~2.3.2: 789 | version "2.3.2" 790 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 791 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 792 | 793 | get-caller-file@^2.0.5: 794 | version "2.0.5" 795 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 796 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 797 | 798 | glob-parent@~5.1.2: 799 | version "5.1.2" 800 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 801 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 802 | dependencies: 803 | is-glob "^4.0.1" 804 | 805 | glob-promise@^3.4.0: 806 | version "3.4.0" 807 | resolved "https://registry.yarnpkg.com/glob-promise/-/glob-promise-3.4.0.tgz#b6b8f084504216f702dc2ce8c9bc9ac8866fdb20" 808 | integrity sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw== 809 | dependencies: 810 | "@types/glob" "*" 811 | 812 | glob@^7.1.6: 813 | version "7.2.0" 814 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 815 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 816 | dependencies: 817 | fs.realpath "^1.0.0" 818 | inflight "^1.0.4" 819 | inherits "2" 820 | minimatch "^3.0.4" 821 | once "^1.3.0" 822 | path-is-absolute "^1.0.0" 823 | 824 | globals@^11.1.0: 825 | version "11.12.0" 826 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 827 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 828 | 829 | handlebars@^4.7.6, handlebars@^4.7.7: 830 | version "4.7.7" 831 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" 832 | integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== 833 | dependencies: 834 | minimist "^1.2.5" 835 | neo-async "^2.6.0" 836 | source-map "^0.6.1" 837 | wordwrap "^1.0.0" 838 | optionalDependencies: 839 | uglify-js "^3.1.4" 840 | 841 | has-flag@^3.0.0: 842 | version "3.0.0" 843 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 844 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 845 | 846 | hash-base@^3.0.0: 847 | version "3.1.0" 848 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" 849 | integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== 850 | dependencies: 851 | inherits "^2.0.4" 852 | readable-stream "^3.6.0" 853 | safe-buffer "^5.2.0" 854 | 855 | hash.js@^1.0.0, hash.js@^1.0.3: 856 | version "1.1.7" 857 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 858 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 859 | dependencies: 860 | inherits "^2.0.3" 861 | minimalistic-assert "^1.0.1" 862 | 863 | hmac-drbg@^1.0.1: 864 | version "1.0.1" 865 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 866 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= 867 | dependencies: 868 | hash.js "^1.0.3" 869 | minimalistic-assert "^1.0.0" 870 | minimalistic-crypto-utils "^1.0.1" 871 | 872 | hoist-non-react-statics@^3.0.0: 873 | version "3.3.2" 874 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" 875 | integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== 876 | dependencies: 877 | react-is "^16.7.0" 878 | 879 | http2-client@^1.2.5: 880 | version "1.3.5" 881 | resolved "https://registry.yarnpkg.com/http2-client/-/http2-client-1.3.5.tgz#20c9dc909e3cc98284dd20af2432c524086df181" 882 | integrity sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA== 883 | 884 | https-browserify@^1.0.0: 885 | version "1.0.0" 886 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 887 | integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= 888 | 889 | ieee754@^1.1.4: 890 | version "1.2.1" 891 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 892 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 893 | 894 | inflight@^1.0.4: 895 | version "1.0.6" 896 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 897 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 898 | dependencies: 899 | once "^1.3.0" 900 | wrappy "1" 901 | 902 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: 903 | version "2.0.4" 904 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 905 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 906 | 907 | inherits@2.0.1: 908 | version "2.0.1" 909 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 910 | integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= 911 | 912 | inherits@2.0.3: 913 | version "2.0.3" 914 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 915 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 916 | 917 | is-binary-path@~2.1.0: 918 | version "2.1.0" 919 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 920 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 921 | dependencies: 922 | binary-extensions "^2.0.0" 923 | 924 | is-extglob@^2.1.1: 925 | version "2.1.1" 926 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 927 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 928 | 929 | is-fullwidth-code-point@^3.0.0: 930 | version "3.0.0" 931 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 932 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 933 | 934 | is-glob@^4.0.1, is-glob@~4.0.1: 935 | version "4.0.3" 936 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 937 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 938 | dependencies: 939 | is-extglob "^2.1.1" 940 | 941 | is-number@^7.0.0: 942 | version "7.0.0" 943 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 944 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 945 | 946 | isarray@^1.0.0, isarray@~1.0.0: 947 | version "1.0.0" 948 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 949 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 950 | 951 | isarray@^2.0.5: 952 | version "2.0.5" 953 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" 954 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== 955 | 956 | js-levenshtein@^1.1.6: 957 | version "1.1.6" 958 | resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" 959 | integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== 960 | 961 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 962 | version "4.0.0" 963 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 964 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 965 | 966 | js-yaml@^4.1.0: 967 | version "4.1.0" 968 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 969 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 970 | dependencies: 971 | argparse "^2.0.1" 972 | 973 | jsesc@^2.5.1: 974 | version "2.5.2" 975 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 976 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 977 | 978 | json-pointer@^0.6.1: 979 | version "0.6.2" 980 | resolved "https://registry.yarnpkg.com/json-pointer/-/json-pointer-0.6.2.tgz#f97bd7550be5e9ea901f8c9264c9d436a22a93cd" 981 | integrity sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw== 982 | dependencies: 983 | foreach "^2.0.4" 984 | 985 | json-schema-traverse@^1.0.0: 986 | version "1.0.0" 987 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" 988 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== 989 | 990 | lodash.isequal@^4.5.0: 991 | version "4.5.0" 992 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 993 | integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= 994 | 995 | lodash@^4.17.11, lodash@^4.17.14: 996 | version "4.17.21" 997 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 998 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 999 | 1000 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1001 | version "1.4.0" 1002 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1003 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1004 | dependencies: 1005 | js-tokens "^3.0.0 || ^4.0.0" 1006 | 1007 | lunr@^2.3.9: 1008 | version "2.3.9" 1009 | resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" 1010 | integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== 1011 | 1012 | mark.js@^8.11.1: 1013 | version "8.11.1" 1014 | resolved "https://registry.yarnpkg.com/mark.js/-/mark.js-8.11.1.tgz#180f1f9ebef8b0e638e4166ad52db879beb2ffc5" 1015 | integrity sha1-GA8fnr74sOY45BZq1S24eb6y/8U= 1016 | 1017 | marked@^0.7.0: 1018 | version "0.7.0" 1019 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.7.0.tgz#b64201f051d271b1edc10a04d1ae9b74bb8e5c0e" 1020 | integrity sha512-c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg== 1021 | 1022 | md5.js@^1.3.4: 1023 | version "1.3.5" 1024 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" 1025 | integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== 1026 | dependencies: 1027 | hash-base "^3.0.0" 1028 | inherits "^2.0.1" 1029 | safe-buffer "^5.1.2" 1030 | 1031 | miller-rabin@^4.0.0: 1032 | version "4.0.1" 1033 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 1034 | integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== 1035 | dependencies: 1036 | bn.js "^4.0.0" 1037 | brorand "^1.0.1" 1038 | 1039 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 1040 | version "1.0.1" 1041 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 1042 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 1043 | 1044 | minimalistic-crypto-utils@^1.0.1: 1045 | version "1.0.1" 1046 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1047 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 1048 | 1049 | minimatch@^3.0.4: 1050 | version "3.1.2" 1051 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1052 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1053 | dependencies: 1054 | brace-expansion "^1.1.7" 1055 | 1056 | minimist@^1.2.5: 1057 | version "1.2.6" 1058 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1059 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1060 | 1061 | mkdirp@^0.5.5: 1062 | version "0.5.5" 1063 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 1064 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1065 | dependencies: 1066 | minimist "^1.2.5" 1067 | 1068 | mkdirp@^1.0.4: 1069 | version "1.0.4" 1070 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 1071 | integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 1072 | 1073 | mobx-react-lite@^3.2.0: 1074 | version "3.2.3" 1075 | resolved "https://registry.yarnpkg.com/mobx-react-lite/-/mobx-react-lite-3.2.3.tgz#83d2b32ebf4383cd0dc0d397acbf53a8e9c66765" 1076 | integrity sha512-7exWp1FV0M9dP08H9PIeHlJqDw4IdkQVRMfLYaZFMmlbzSS6ZU6p/kx392KN+rVf81hH3IQYewvRGQ70oiwmbw== 1077 | 1078 | mobx-react@^7.2.0: 1079 | version "7.2.1" 1080 | resolved "https://registry.yarnpkg.com/mobx-react/-/mobx-react-7.2.1.tgz#e9d4c04dc63d05e1139ce773f5fee7a5b4cb7c78" 1081 | integrity sha512-LZS99KFLn75VWDXPdRJhILzVQ7qLcRjQbzkK+wVs0Qg4kWw5hOI2USp7tmu+9zP9KYsVBmKyx2k/8cTTBfsymw== 1082 | dependencies: 1083 | mobx-react-lite "^3.2.0" 1084 | 1085 | mobx@^6.3.2: 1086 | version "6.3.12" 1087 | resolved "https://registry.yarnpkg.com/mobx/-/mobx-6.3.12.tgz#2ceb4f632081a8bf8757ba7e5e01b5810800022f" 1088 | integrity sha512-5Hx2IjhBtySVQlSFe+sHczKgOQ+cCyi8hN2wEvWzpJEEMRflQoDzDwJJ+m7SBWBQhfrWMWb1RGZNk4X1XtxJkQ== 1089 | 1090 | ms@2.1.2: 1091 | version "2.1.2" 1092 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1093 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1094 | 1095 | ms@^2.1.1: 1096 | version "2.1.3" 1097 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1098 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1099 | 1100 | neo-async@^2.6.0: 1101 | version "2.6.2" 1102 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 1103 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 1104 | 1105 | node-fetch-h2@^2.3.0: 1106 | version "2.3.0" 1107 | resolved "https://registry.yarnpkg.com/node-fetch-h2/-/node-fetch-h2-2.3.0.tgz#c6188325f9bd3d834020bf0f2d6dc17ced2241ac" 1108 | integrity sha512-ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg== 1109 | dependencies: 1110 | http2-client "^1.2.5" 1111 | 1112 | node-fetch@^2.6.1: 1113 | version "2.6.7" 1114 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 1115 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 1116 | dependencies: 1117 | whatwg-url "^5.0.0" 1118 | 1119 | node-libs-browser@^2.2.1: 1120 | version "2.2.1" 1121 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" 1122 | integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== 1123 | dependencies: 1124 | assert "^1.1.1" 1125 | browserify-zlib "^0.2.0" 1126 | buffer "^4.3.0" 1127 | console-browserify "^1.1.0" 1128 | constants-browserify "^1.0.0" 1129 | crypto-browserify "^3.11.0" 1130 | domain-browser "^1.1.1" 1131 | events "^3.0.0" 1132 | https-browserify "^1.0.0" 1133 | os-browserify "^0.3.0" 1134 | path-browserify "0.0.1" 1135 | process "^0.11.10" 1136 | punycode "^1.2.4" 1137 | querystring-es3 "^0.2.0" 1138 | readable-stream "^2.3.3" 1139 | stream-browserify "^2.0.1" 1140 | stream-http "^2.7.2" 1141 | string_decoder "^1.0.0" 1142 | timers-browserify "^2.0.4" 1143 | tty-browserify "0.0.0" 1144 | url "^0.11.0" 1145 | util "^0.11.0" 1146 | vm-browserify "^1.0.1" 1147 | 1148 | node-readfiles@^0.2.0: 1149 | version "0.2.0" 1150 | resolved "https://registry.yarnpkg.com/node-readfiles/-/node-readfiles-0.2.0.tgz#dbbd4af12134e2e635c245ef93ffcf6f60673a5d" 1151 | integrity sha1-271K8SE04uY1wkXvk//Pb2BnOl0= 1152 | dependencies: 1153 | es6-promise "^3.2.1" 1154 | 1155 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1156 | version "3.0.0" 1157 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1158 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1159 | 1160 | oas-kit-common@^1.0.8: 1161 | version "1.0.8" 1162 | resolved "https://registry.yarnpkg.com/oas-kit-common/-/oas-kit-common-1.0.8.tgz#6d8cacf6e9097967a4c7ea8bcbcbd77018e1f535" 1163 | integrity sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ== 1164 | dependencies: 1165 | fast-safe-stringify "^2.0.7" 1166 | 1167 | oas-linter@^3.2.2: 1168 | version "3.2.2" 1169 | resolved "https://registry.yarnpkg.com/oas-linter/-/oas-linter-3.2.2.tgz#ab6a33736313490659035ca6802dc4b35d48aa1e" 1170 | integrity sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ== 1171 | dependencies: 1172 | "@exodus/schemasafe" "^1.0.0-rc.2" 1173 | should "^13.2.1" 1174 | yaml "^1.10.0" 1175 | 1176 | oas-resolver@^2.5.6: 1177 | version "2.5.6" 1178 | resolved "https://registry.yarnpkg.com/oas-resolver/-/oas-resolver-2.5.6.tgz#10430569cb7daca56115c915e611ebc5515c561b" 1179 | integrity sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ== 1180 | dependencies: 1181 | node-fetch-h2 "^2.3.0" 1182 | oas-kit-common "^1.0.8" 1183 | reftools "^1.1.9" 1184 | yaml "^1.10.0" 1185 | yargs "^17.0.1" 1186 | 1187 | oas-schema-walker@^1.1.5: 1188 | version "1.1.5" 1189 | resolved "https://registry.yarnpkg.com/oas-schema-walker/-/oas-schema-walker-1.1.5.tgz#74c3cd47b70ff8e0b19adada14455b5d3ac38a22" 1190 | integrity sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ== 1191 | 1192 | oas-validator@^5.0.8: 1193 | version "5.0.8" 1194 | resolved "https://registry.yarnpkg.com/oas-validator/-/oas-validator-5.0.8.tgz#387e90df7cafa2d3ffc83b5fb976052b87e73c28" 1195 | integrity sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw== 1196 | dependencies: 1197 | call-me-maybe "^1.0.1" 1198 | oas-kit-common "^1.0.8" 1199 | oas-linter "^3.2.2" 1200 | oas-resolver "^2.5.6" 1201 | oas-schema-walker "^1.1.5" 1202 | reftools "^1.1.9" 1203 | should "^13.2.1" 1204 | yaml "^1.10.0" 1205 | 1206 | object-assign@^4.1.1: 1207 | version "4.1.1" 1208 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1209 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1210 | 1211 | once@^1.3.0: 1212 | version "1.4.0" 1213 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1214 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1215 | dependencies: 1216 | wrappy "1" 1217 | 1218 | openapi-sampler@^1.0.1: 1219 | version "1.1.1" 1220 | resolved "https://registry.yarnpkg.com/openapi-sampler/-/openapi-sampler-1.1.1.tgz#7bba7000a03cd8a4630bfbe5b3ef258990c78400" 1221 | integrity sha512-WAFsl5SPYuhQwaMTDFOcKhnEY1G1rmamrMiPmJdqwfl1lr81g63/befcsN9BNi0w5/R0L+hfcUj13PANEBeLgg== 1222 | dependencies: 1223 | "@types/json-schema" "^7.0.7" 1224 | json-pointer "^0.6.1" 1225 | 1226 | os-browserify@^0.3.0: 1227 | version "0.3.0" 1228 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" 1229 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= 1230 | 1231 | pako@~1.0.5: 1232 | version "1.0.11" 1233 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" 1234 | integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== 1235 | 1236 | parse-asn1@^5.0.0, parse-asn1@^5.1.6: 1237 | version "5.1.6" 1238 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" 1239 | integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== 1240 | dependencies: 1241 | asn1.js "^5.2.0" 1242 | browserify-aes "^1.0.0" 1243 | evp_bytestokey "^1.0.0" 1244 | pbkdf2 "^3.0.3" 1245 | safe-buffer "^5.1.1" 1246 | 1247 | path-browserify@0.0.1: 1248 | version "0.0.1" 1249 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" 1250 | integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== 1251 | 1252 | path-browserify@^1.0.1: 1253 | version "1.0.1" 1254 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" 1255 | integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== 1256 | 1257 | path-is-absolute@^1.0.0: 1258 | version "1.0.1" 1259 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1260 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1261 | 1262 | pbkdf2@^3.0.3: 1263 | version "3.1.2" 1264 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" 1265 | integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== 1266 | dependencies: 1267 | create-hash "^1.1.2" 1268 | create-hmac "^1.1.4" 1269 | ripemd160 "^2.0.1" 1270 | safe-buffer "^5.0.1" 1271 | sha.js "^2.4.8" 1272 | 1273 | perfect-scrollbar@^1.5.1: 1274 | version "1.5.5" 1275 | resolved "https://registry.yarnpkg.com/perfect-scrollbar/-/perfect-scrollbar-1.5.5.tgz#41a211a2fb52a7191eff301432134ea47052b27f" 1276 | integrity sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g== 1277 | 1278 | picomatch@^2.0.4, picomatch@^2.2.1: 1279 | version "2.3.1" 1280 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1281 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1282 | 1283 | pluralize@^8.0.0: 1284 | version "8.0.0" 1285 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" 1286 | integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== 1287 | 1288 | polished@^4.1.3: 1289 | version "4.1.3" 1290 | resolved "https://registry.yarnpkg.com/polished/-/polished-4.1.3.tgz#7a3abf2972364e7d97770b827eec9a9e64002cfc" 1291 | integrity sha512-ocPAcVBUOryJEKe0z2KLd1l9EBa1r5mSwlKpExmrLzsnIzJo4axsoU9O2BjOTkDGDT4mZ0WFE5XKTlR3nLnZOA== 1292 | dependencies: 1293 | "@babel/runtime" "^7.14.0" 1294 | 1295 | portfinder@^1.0.26: 1296 | version "1.0.28" 1297 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" 1298 | integrity sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA== 1299 | dependencies: 1300 | async "^2.6.2" 1301 | debug "^3.1.1" 1302 | mkdirp "^0.5.5" 1303 | 1304 | postcss-value-parser@^4.0.2: 1305 | version "4.2.0" 1306 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" 1307 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 1308 | 1309 | prismjs@^1.24.1: 1310 | version "1.27.0" 1311 | resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057" 1312 | integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA== 1313 | 1314 | process-nextick-args@~2.0.0: 1315 | version "2.0.1" 1316 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1317 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1318 | 1319 | process@^0.11.10: 1320 | version "0.11.10" 1321 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 1322 | integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= 1323 | 1324 | prop-types@^15.5.0, prop-types@^15.7.2: 1325 | version "15.8.1" 1326 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1327 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1328 | dependencies: 1329 | loose-envify "^1.4.0" 1330 | object-assign "^4.1.1" 1331 | react-is "^16.13.1" 1332 | 1333 | public-encrypt@^4.0.0: 1334 | version "4.0.3" 1335 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" 1336 | integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== 1337 | dependencies: 1338 | bn.js "^4.1.0" 1339 | browserify-rsa "^4.0.0" 1340 | create-hash "^1.1.0" 1341 | parse-asn1 "^5.0.0" 1342 | randombytes "^2.0.1" 1343 | safe-buffer "^5.1.2" 1344 | 1345 | punycode@1.3.2: 1346 | version "1.3.2" 1347 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 1348 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= 1349 | 1350 | punycode@^1.2.4: 1351 | version "1.4.1" 1352 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1353 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 1354 | 1355 | punycode@^2.1.0: 1356 | version "2.1.1" 1357 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1358 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1359 | 1360 | querystring-es3@^0.2.0: 1361 | version "0.2.1" 1362 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 1363 | integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= 1364 | 1365 | querystring@0.2.0: 1366 | version "0.2.0" 1367 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 1368 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= 1369 | 1370 | queue-microtask@^1.2.2: 1371 | version "1.2.3" 1372 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1373 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1374 | 1375 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: 1376 | version "2.1.0" 1377 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 1378 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 1379 | dependencies: 1380 | safe-buffer "^5.1.0" 1381 | 1382 | randomfill@^1.0.3: 1383 | version "1.0.4" 1384 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" 1385 | integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== 1386 | dependencies: 1387 | randombytes "^2.0.5" 1388 | safe-buffer "^5.1.0" 1389 | 1390 | react-dom@^17.0.1: 1391 | version "17.0.2" 1392 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" 1393 | integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== 1394 | dependencies: 1395 | loose-envify "^1.1.0" 1396 | object-assign "^4.1.1" 1397 | scheduler "^0.20.2" 1398 | 1399 | react-is@^16.13.1, react-is@^16.7.0: 1400 | version "16.13.1" 1401 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1402 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1403 | 1404 | react-tabs@^3.2.2: 1405 | version "3.2.3" 1406 | resolved "https://registry.yarnpkg.com/react-tabs/-/react-tabs-3.2.3.tgz#ccbb3e1241ad3f601047305c75db661239977f2f" 1407 | integrity sha512-jx325RhRVnS9DdFbeF511z0T0WEqEoMl1uCE3LoZ6VaZZm7ytatxbum0B8bCTmaiV0KsU+4TtLGTGevCic7SWg== 1408 | dependencies: 1409 | clsx "^1.1.0" 1410 | prop-types "^15.5.0" 1411 | 1412 | react@^17.0.1: 1413 | version "17.0.2" 1414 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" 1415 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== 1416 | dependencies: 1417 | loose-envify "^1.1.0" 1418 | object-assign "^4.1.1" 1419 | 1420 | readable-stream@^2.0.2, readable-stream@^2.3.3, readable-stream@^2.3.6: 1421 | version "2.3.7" 1422 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 1423 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 1424 | dependencies: 1425 | core-util-is "~1.0.0" 1426 | inherits "~2.0.3" 1427 | isarray "~1.0.0" 1428 | process-nextick-args "~2.0.0" 1429 | safe-buffer "~5.1.1" 1430 | string_decoder "~1.1.1" 1431 | util-deprecate "~1.0.1" 1432 | 1433 | readable-stream@^3.6.0: 1434 | version "3.6.0" 1435 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1436 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1437 | dependencies: 1438 | inherits "^2.0.3" 1439 | string_decoder "^1.1.1" 1440 | util-deprecate "^1.0.1" 1441 | 1442 | readable-stream@^3.6.2: 1443 | version "3.6.2" 1444 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" 1445 | integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== 1446 | dependencies: 1447 | inherits "^2.0.3" 1448 | string_decoder "^1.1.1" 1449 | util-deprecate "^1.0.1" 1450 | 1451 | readdirp@~3.6.0: 1452 | version "3.6.0" 1453 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1454 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1455 | dependencies: 1456 | picomatch "^2.2.1" 1457 | 1458 | redoc-cli@0.13.2: 1459 | version "0.13.2" 1460 | resolved "https://registry.yarnpkg.com/redoc-cli/-/redoc-cli-0.13.2.tgz#2ef5e1003d4fb797d3b98c87b2590f58e15686f2" 1461 | integrity sha512-eRGRmAKPvm8ozCb8TxaBlHF0BjeFOXYUKDTx7RD3ABkPKsDamle776GwMrrf1ojgl5i+RSSJfP62k1gTP7Owaw== 1462 | dependencies: 1463 | chokidar "^3.5.1" 1464 | handlebars "^4.7.7" 1465 | isarray "^2.0.5" 1466 | mkdirp "^1.0.4" 1467 | mobx "^6.3.2" 1468 | node-libs-browser "^2.2.1" 1469 | react "^17.0.1" 1470 | react-dom "^17.0.1" 1471 | redoc "2.0.0-rc.59" 1472 | styled-components "^5.3.0" 1473 | yargs "^17.0.1" 1474 | 1475 | redoc@2.0.0-rc.59: 1476 | version "2.0.0-rc.59" 1477 | resolved "https://registry.yarnpkg.com/redoc/-/redoc-2.0.0-rc.59.tgz#4a5075574e153eb8b8b6f657230ce47918ffb1bf" 1478 | integrity sha512-1Wkj/HSCv5CdtwF7FSZc5L0EeBgI0N7YpAIsatMtfiMHEon0WhuArAkc5rMQ6mQXUPRrqq5Fs6QPc4GpNp6DuA== 1479 | dependencies: 1480 | "@babel/runtime" "^7.14.0" 1481 | "@redocly/openapi-core" "^1.0.0-beta.54" 1482 | "@redocly/react-dropdown-aria" "^2.0.11" 1483 | classnames "^2.3.1" 1484 | decko "^1.2.0" 1485 | dompurify "^2.2.8" 1486 | eventemitter3 "^4.0.7" 1487 | json-pointer "^0.6.1" 1488 | lunr "^2.3.9" 1489 | mark.js "^8.11.1" 1490 | marked "^0.7.0" 1491 | mobx-react "^7.2.0" 1492 | openapi-sampler "^1.0.1" 1493 | path-browserify "^1.0.1" 1494 | perfect-scrollbar "^1.5.1" 1495 | polished "^4.1.3" 1496 | prismjs "^1.24.1" 1497 | prop-types "^15.7.2" 1498 | react-tabs "^3.2.2" 1499 | slugify "~1.4.7" 1500 | stickyfill "^1.1.1" 1501 | swagger2openapi "^7.0.6" 1502 | url-template "^2.0.8" 1503 | 1504 | reftools@^1.1.9: 1505 | version "1.1.9" 1506 | resolved "https://registry.yarnpkg.com/reftools/-/reftools-1.1.9.tgz#e16e19f662ccd4648605312c06d34e5da3a2b77e" 1507 | integrity sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w== 1508 | 1509 | regenerator-runtime@^0.13.4: 1510 | version "0.13.9" 1511 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 1512 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 1513 | 1514 | require-directory@^2.1.1: 1515 | version "2.1.1" 1516 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1517 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 1518 | 1519 | require-from-string@^2.0.2: 1520 | version "2.0.2" 1521 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 1522 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== 1523 | 1524 | ripemd160@^2.0.0, ripemd160@^2.0.1: 1525 | version "2.0.2" 1526 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" 1527 | integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== 1528 | dependencies: 1529 | hash-base "^3.0.0" 1530 | inherits "^2.0.1" 1531 | 1532 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: 1533 | version "5.2.1" 1534 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1535 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1536 | 1537 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1538 | version "5.1.2" 1539 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1540 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1541 | 1542 | safer-buffer@^2.1.0: 1543 | version "2.1.2" 1544 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1545 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1546 | 1547 | scheduler@^0.20.2: 1548 | version "0.20.2" 1549 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" 1550 | integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== 1551 | dependencies: 1552 | loose-envify "^1.1.0" 1553 | object-assign "^4.1.1" 1554 | 1555 | semver@^5.0.3: 1556 | version "5.7.2" 1557 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" 1558 | integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== 1559 | 1560 | setimmediate@^1.0.4: 1561 | version "1.0.5" 1562 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 1563 | integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= 1564 | 1565 | sha.js@^2.4.0, sha.js@^2.4.8: 1566 | version "2.4.11" 1567 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 1568 | integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== 1569 | dependencies: 1570 | inherits "^2.0.1" 1571 | safe-buffer "^5.0.1" 1572 | 1573 | shallowequal@^1.1.0: 1574 | version "1.1.0" 1575 | resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" 1576 | integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== 1577 | 1578 | should-equal@^2.0.0: 1579 | version "2.0.0" 1580 | resolved "https://registry.yarnpkg.com/should-equal/-/should-equal-2.0.0.tgz#6072cf83047360867e68e98b09d71143d04ee0c3" 1581 | integrity sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA== 1582 | dependencies: 1583 | should-type "^1.4.0" 1584 | 1585 | should-format@^3.0.3: 1586 | version "3.0.3" 1587 | resolved "https://registry.yarnpkg.com/should-format/-/should-format-3.0.3.tgz#9bfc8f74fa39205c53d38c34d717303e277124f1" 1588 | integrity sha1-m/yPdPo5IFxT04w01xcwPidxJPE= 1589 | dependencies: 1590 | should-type "^1.3.0" 1591 | should-type-adaptors "^1.0.1" 1592 | 1593 | should-type-adaptors@^1.0.1: 1594 | version "1.1.0" 1595 | resolved "https://registry.yarnpkg.com/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz#401e7f33b5533033944d5cd8bf2b65027792e27a" 1596 | integrity sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA== 1597 | dependencies: 1598 | should-type "^1.3.0" 1599 | should-util "^1.0.0" 1600 | 1601 | should-type@^1.3.0, should-type@^1.4.0: 1602 | version "1.4.0" 1603 | resolved "https://registry.yarnpkg.com/should-type/-/should-type-1.4.0.tgz#0756d8ce846dfd09843a6947719dfa0d4cff5cf3" 1604 | integrity sha1-B1bYzoRt/QmEOmlHcZ36DUz/XPM= 1605 | 1606 | should-util@^1.0.0: 1607 | version "1.0.1" 1608 | resolved "https://registry.yarnpkg.com/should-util/-/should-util-1.0.1.tgz#fb0d71338f532a3a149213639e2d32cbea8bcb28" 1609 | integrity sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g== 1610 | 1611 | should@^13.2.1: 1612 | version "13.2.3" 1613 | resolved "https://registry.yarnpkg.com/should/-/should-13.2.3.tgz#96d8e5acf3e97b49d89b51feaa5ae8d07ef58f10" 1614 | integrity sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ== 1615 | dependencies: 1616 | should-equal "^2.0.0" 1617 | should-format "^3.0.3" 1618 | should-type "^1.4.0" 1619 | should-type-adaptors "^1.0.1" 1620 | should-util "^1.0.0" 1621 | 1622 | simple-websocket@^9.0.0: 1623 | version "9.1.0" 1624 | resolved "https://registry.yarnpkg.com/simple-websocket/-/simple-websocket-9.1.0.tgz#91cbb39eafefbe7e66979da6c639109352786a7f" 1625 | integrity sha512-8MJPnjRN6A8UCp1I+H/dSFyjwJhp6wta4hsVRhjf8w9qBHRzxYt14RaOcjvQnhD1N4yKOddEjflwMnQM4VtXjQ== 1626 | dependencies: 1627 | debug "^4.3.1" 1628 | queue-microtask "^1.2.2" 1629 | randombytes "^2.1.0" 1630 | readable-stream "^3.6.0" 1631 | ws "^7.4.2" 1632 | 1633 | slugify@~1.4.7: 1634 | version "1.4.7" 1635 | resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.4.7.tgz#e42359d505afd84a44513280868e31202a79a628" 1636 | integrity sha512-tf+h5W1IrjNm/9rKKj0JU2MDMruiopx0jjVA5zCdBtcGjfp0+c5rHw/zADLC3IeKlGHtVbHtpfzvYA0OYT+HKg== 1637 | 1638 | source-map@^0.6.1: 1639 | version "0.6.1" 1640 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1641 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1642 | 1643 | stickyfill@^1.1.1: 1644 | version "1.1.1" 1645 | resolved "https://registry.yarnpkg.com/stickyfill/-/stickyfill-1.1.1.tgz#39413fee9d025c74a7e59ceecb23784cc0f17f02" 1646 | integrity sha1-OUE/7p0CXHSn5ZzuyyN4TMDxfwI= 1647 | 1648 | stream-browserify@^2.0.1: 1649 | version "2.0.2" 1650 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" 1651 | integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== 1652 | dependencies: 1653 | inherits "~2.0.1" 1654 | readable-stream "^2.0.2" 1655 | 1656 | stream-http@^2.7.2: 1657 | version "2.8.3" 1658 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" 1659 | integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== 1660 | dependencies: 1661 | builtin-status-codes "^3.0.0" 1662 | inherits "^2.0.1" 1663 | readable-stream "^2.3.6" 1664 | to-arraybuffer "^1.0.0" 1665 | xtend "^4.0.0" 1666 | 1667 | string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 1668 | version "4.2.3" 1669 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 1670 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 1671 | dependencies: 1672 | emoji-regex "^8.0.0" 1673 | is-fullwidth-code-point "^3.0.0" 1674 | strip-ansi "^6.0.1" 1675 | 1676 | string_decoder@^1.0.0, string_decoder@^1.1.1: 1677 | version "1.3.0" 1678 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 1679 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 1680 | dependencies: 1681 | safe-buffer "~5.2.0" 1682 | 1683 | string_decoder@~1.1.1: 1684 | version "1.1.1" 1685 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1686 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1687 | dependencies: 1688 | safe-buffer "~5.1.0" 1689 | 1690 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 1691 | version "6.0.1" 1692 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1693 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1694 | dependencies: 1695 | ansi-regex "^5.0.1" 1696 | 1697 | styled-components@^5.3.0: 1698 | version "5.3.3" 1699 | resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.3.tgz#312a3d9a549f4708f0fb0edc829eb34bde032743" 1700 | integrity sha512-++4iHwBM7ZN+x6DtPPWkCI4vdtwumQ+inA/DdAsqYd4SVgUKJie5vXyzotA00ttcFdQkCng7zc6grwlfIfw+lw== 1701 | dependencies: 1702 | "@babel/helper-module-imports" "^7.0.0" 1703 | "@babel/traverse" "^7.4.5" 1704 | "@emotion/is-prop-valid" "^0.8.8" 1705 | "@emotion/stylis" "^0.8.4" 1706 | "@emotion/unitless" "^0.7.4" 1707 | babel-plugin-styled-components ">= 1.12.0" 1708 | css-to-react-native "^3.0.0" 1709 | hoist-non-react-statics "^3.0.0" 1710 | shallowequal "^1.1.0" 1711 | supports-color "^5.5.0" 1712 | 1713 | supports-color@^5.3.0, supports-color@^5.5.0: 1714 | version "5.5.0" 1715 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1716 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1717 | dependencies: 1718 | has-flag "^3.0.0" 1719 | 1720 | swagger2openapi@^7.0.6: 1721 | version "7.0.8" 1722 | resolved "https://registry.yarnpkg.com/swagger2openapi/-/swagger2openapi-7.0.8.tgz#12c88d5de776cb1cbba758994930f40ad0afac59" 1723 | integrity sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g== 1724 | dependencies: 1725 | call-me-maybe "^1.0.1" 1726 | node-fetch "^2.6.1" 1727 | node-fetch-h2 "^2.3.0" 1728 | node-readfiles "^0.2.0" 1729 | oas-kit-common "^1.0.8" 1730 | oas-resolver "^2.5.6" 1731 | oas-schema-walker "^1.1.5" 1732 | oas-validator "^5.0.8" 1733 | reftools "^1.1.9" 1734 | yaml "^1.10.0" 1735 | yargs "^17.0.1" 1736 | 1737 | timers-browserify@^2.0.4: 1738 | version "2.0.12" 1739 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" 1740 | integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== 1741 | dependencies: 1742 | setimmediate "^1.0.4" 1743 | 1744 | to-arraybuffer@^1.0.0: 1745 | version "1.0.1" 1746 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 1747 | integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= 1748 | 1749 | to-fast-properties@^2.0.0: 1750 | version "2.0.0" 1751 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1752 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 1753 | 1754 | to-regex-range@^5.0.1: 1755 | version "5.0.1" 1756 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1757 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1758 | dependencies: 1759 | is-number "^7.0.0" 1760 | 1761 | tr46@~0.0.3: 1762 | version "0.0.3" 1763 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1764 | integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= 1765 | 1766 | tty-browserify@0.0.0: 1767 | version "0.0.0" 1768 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 1769 | integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= 1770 | 1771 | uglify-js@^3.1.4: 1772 | version "3.14.5" 1773 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.14.5.tgz#cdabb7d4954231d80cb4a927654c4655e51f4859" 1774 | integrity sha512-qZukoSxOG0urUTvjc2ERMTcAy+BiFh3weWAkeurLwjrCba73poHmG3E36XEjd/JGukMzwTL7uCxZiAexj8ppvQ== 1775 | 1776 | uri-js@^4.2.2: 1777 | version "4.4.1" 1778 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1779 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1780 | dependencies: 1781 | punycode "^2.1.0" 1782 | 1783 | url-template@^2.0.8: 1784 | version "2.0.8" 1785 | resolved "https://registry.yarnpkg.com/url-template/-/url-template-2.0.8.tgz#fc565a3cccbff7730c775f5641f9555791439f21" 1786 | integrity sha1-/FZaPMy/93MMd19WQflVV5FDnyE= 1787 | 1788 | url@^0.11.0: 1789 | version "0.11.0" 1790 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 1791 | integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= 1792 | dependencies: 1793 | punycode "1.3.2" 1794 | querystring "0.2.0" 1795 | 1796 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 1797 | version "1.0.2" 1798 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1799 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1800 | 1801 | util@0.10.3: 1802 | version "0.10.3" 1803 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 1804 | integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= 1805 | dependencies: 1806 | inherits "2.0.1" 1807 | 1808 | util@^0.11.0: 1809 | version "0.11.1" 1810 | resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" 1811 | integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== 1812 | dependencies: 1813 | inherits "2.0.3" 1814 | 1815 | vm-browserify@^1.0.1: 1816 | version "1.1.2" 1817 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" 1818 | integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== 1819 | 1820 | webidl-conversions@^3.0.0: 1821 | version "3.0.1" 1822 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 1823 | integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= 1824 | 1825 | whatwg-url@^5.0.0: 1826 | version "5.0.0" 1827 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 1828 | integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= 1829 | dependencies: 1830 | tr46 "~0.0.3" 1831 | webidl-conversions "^3.0.0" 1832 | 1833 | wordwrap@^1.0.0: 1834 | version "1.0.0" 1835 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1836 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 1837 | 1838 | wrap-ansi@^7.0.0: 1839 | version "7.0.0" 1840 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 1841 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 1842 | dependencies: 1843 | ansi-styles "^4.0.0" 1844 | string-width "^4.1.0" 1845 | strip-ansi "^6.0.0" 1846 | 1847 | wrappy@1: 1848 | version "1.0.2" 1849 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1850 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1851 | 1852 | ws@^7.4.2: 1853 | version "7.5.6" 1854 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.6.tgz#e59fc509fb15ddfb65487ee9765c5a51dec5fe7b" 1855 | integrity sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA== 1856 | 1857 | xtend@^4.0.0: 1858 | version "4.0.2" 1859 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 1860 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 1861 | 1862 | y18n@^5.0.5: 1863 | version "5.0.8" 1864 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 1865 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 1866 | 1867 | yaml-ast-parser@0.0.43: 1868 | version "0.0.43" 1869 | resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb" 1870 | integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A== 1871 | 1872 | yaml@^1.10.0: 1873 | version "1.10.2" 1874 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" 1875 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 1876 | 1877 | yargs-parser@^20.2.2: 1878 | version "20.2.9" 1879 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 1880 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 1881 | 1882 | yargs-parser@^21.0.0: 1883 | version "21.0.0" 1884 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.0.tgz#a485d3966be4317426dd56bdb6a30131b281dc55" 1885 | integrity sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA== 1886 | 1887 | yargs@17.0.1: 1888 | version "17.0.1" 1889 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.0.1.tgz#6a1ced4ed5ee0b388010ba9fd67af83b9362e0bb" 1890 | integrity sha512-xBBulfCc8Y6gLFcrPvtqKz9hz8SO0l1Ni8GgDekvBX2ro0HRQImDGnikfc33cgzcYUSncapnNcZDjVFIH3f6KQ== 1891 | dependencies: 1892 | cliui "^7.0.2" 1893 | escalade "^3.1.1" 1894 | get-caller-file "^2.0.5" 1895 | require-directory "^2.1.1" 1896 | string-width "^4.2.0" 1897 | y18n "^5.0.5" 1898 | yargs-parser "^20.2.2" 1899 | 1900 | yargs@^17.0.1: 1901 | version "17.3.1" 1902 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.3.1.tgz#da56b28f32e2fd45aefb402ed9c26f42be4c07b9" 1903 | integrity sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA== 1904 | dependencies: 1905 | cliui "^7.0.2" 1906 | escalade "^3.1.1" 1907 | get-caller-file "^2.0.5" 1908 | require-directory "^2.1.1" 1909 | string-width "^4.2.3" 1910 | y18n "^5.0.5" 1911 | yargs-parser "^21.0.0" 1912 | --------------------------------------------------------------------------------