comic-vine-sdk 1.2.5 → 1.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +27 -0
- package/.husky/pre-commit +4 -0
- package/.prettierignore +2 -0
- package/.prettierrc.json +4 -0
- package/.projenrc.ts +76 -0
- package/.releaserc.json +17 -0
- package/CHANGELOG.md +83 -0
- package/CODE_OF_CONDUCT.md +128 -0
- package/LICENSE +1 -3
- package/jest.setup.js +2 -0
- package/lib/cjs/comic-vine.d.ts +42 -0
- package/lib/cjs/comic-vine.js +92 -0
- package/lib/cjs/errors/base-error.js +18 -0
- package/lib/cjs/errors/custom-error.d.ts +2 -0
- package/lib/cjs/errors/custom-error.js +12 -0
- package/lib/cjs/errors/filter-error.d.ts +4 -0
- package/lib/cjs/errors/filter-error.js +14 -0
- package/lib/cjs/errors/generic-error.d.ts +4 -0
- package/lib/cjs/errors/generic-error.js +14 -0
- package/lib/cjs/errors/generic-request-error.d.ts +10 -0
- package/lib/cjs/errors/generic-request-error.js +23 -0
- package/lib/cjs/errors/index.d.ts +10 -0
- package/lib/cjs/errors/index.js +27 -0
- package/lib/cjs/errors/jsonp-callback-missing-error.d.ts +4 -0
- package/lib/cjs/errors/jsonp-callback-missing-error.js +14 -0
- package/lib/cjs/errors/object-not-found-error.d.ts +4 -0
- package/lib/cjs/errors/object-not-found-error.js +14 -0
- package/lib/cjs/errors/options-validation-error.d.ts +4 -0
- package/lib/cjs/errors/options-validation-error.js +14 -0
- package/lib/cjs/errors/subscriber-only-error.d.ts +4 -0
- package/lib/cjs/errors/subscriber-only-error.js +14 -0
- package/lib/cjs/errors/unauthorized-error.d.ts +4 -0
- package/lib/cjs/errors/unauthorized-error.js +14 -0
- package/lib/cjs/errors/url-format-error.d.ts +4 -0
- package/lib/cjs/errors/url-format-error.js +14 -0
- package/lib/cjs/http-client/http-client-factory.d.ts +6 -0
- package/lib/cjs/http-client/http-client-factory.js +15 -0
- package/lib/cjs/http-client/http-client.d.ts +8 -0
- package/lib/cjs/http-client/http-client.js +69 -0
- package/lib/cjs/http-client/index.d.ts +1 -0
- package/lib/cjs/http-client/index.js +18 -0
- package/lib/cjs/http-client/status-code.js +14 -0
- package/lib/cjs/http-client/url-builder.d.ts +29 -0
- package/lib/cjs/http-client/url-builder.js +107 -0
- package/lib/cjs/index.d.ts +3 -0
- package/lib/cjs/index.js +5 -0
- package/lib/cjs/options/index.d.ts +22 -0
- package/lib/cjs/options/index.js +32 -0
- package/lib/cjs/package.json +3 -0
- package/lib/cjs/resources/base-resource.d.ts +19 -0
- package/lib/cjs/resources/base-resource.js +86 -0
- package/lib/cjs/resources/character/character.d.ts +6 -0
- package/lib/cjs/resources/character/character.js +13 -0
- package/lib/cjs/resources/character/index.d.ts +1 -0
- package/lib/cjs/resources/character/index.js +18 -0
- package/lib/cjs/resources/character/types/character-details.d.ts +110 -0
- package/lib/cjs/resources/character/types/character-details.js +3 -0
- package/lib/cjs/resources/character/types/character-list-item.d.ts +71 -0
- package/lib/cjs/resources/character/types/character-list-item.js +3 -0
- package/lib/cjs/resources/character/types/index.d.ts +2 -0
- package/lib/cjs/resources/character/types/index.js +19 -0
- package/lib/cjs/resources/common-types.js +3 -0
- package/lib/cjs/resources/concept/concept.d.ts +6 -0
- package/lib/cjs/resources/concept/concept.js +13 -0
- package/lib/cjs/resources/concept/index.d.ts +1 -0
- package/lib/cjs/resources/concept/index.js +18 -0
- package/lib/cjs/resources/concept/types/concept-details.d.ts +58 -0
- package/lib/cjs/resources/concept/types/concept-details.js +3 -0
- package/lib/cjs/resources/concept/types/concept-list-item.d.ts +52 -0
- package/lib/cjs/resources/concept/types/concept-list-item.js +3 -0
- package/lib/cjs/resources/concept/types/index.d.ts +2 -0
- package/lib/cjs/resources/concept/types/index.js +19 -0
- package/lib/cjs/resources/episode/episode.d.ts +6 -0
- package/lib/cjs/resources/episode/episode.js +13 -0
- package/lib/cjs/resources/episode/index.d.ts +1 -0
- package/lib/cjs/resources/episode/index.js +18 -0
- package/lib/cjs/resources/episode/types/episode-details.d.ts +87 -0
- package/lib/cjs/resources/episode/types/episode-details.js +3 -0
- package/lib/cjs/resources/episode/types/episode-list-item.d.ts +53 -0
- package/lib/cjs/resources/episode/types/episode-list-item.js +3 -0
- package/lib/cjs/resources/episode/types/index.d.ts +2 -0
- package/lib/cjs/resources/episode/types/index.js +19 -0
- package/lib/cjs/resources/index.d.ts +3 -0
- package/lib/cjs/resources/index.js +20 -0
- package/lib/cjs/resources/issue/index.d.ts +1 -0
- package/lib/cjs/resources/issue/index.js +18 -0
- package/lib/cjs/resources/issue/issue.d.ts +6 -0
- package/lib/cjs/resources/issue/issue.js +13 -0
- package/lib/cjs/resources/issue/types/index.d.ts +2 -0
- package/lib/cjs/resources/issue/types/index.js +19 -0
- package/lib/cjs/resources/issue/types/issue-details.d.ts +94 -0
- package/lib/cjs/resources/issue/types/issue-details.js +3 -0
- package/lib/cjs/resources/issue/types/issue-list-item.d.ts +61 -0
- package/lib/cjs/resources/issue/types/issue-list-item.js +3 -0
- package/lib/cjs/resources/location/index.d.ts +1 -0
- package/lib/cjs/resources/location/index.js +18 -0
- package/lib/cjs/resources/location/location.d.ts +6 -0
- package/lib/cjs/resources/location/location.js +13 -0
- package/lib/cjs/resources/location/types/index.d.ts +2 -0
- package/lib/cjs/resources/location/types/index.js +19 -0
- package/lib/cjs/resources/location/types/location-details.d.ts +62 -0
- package/lib/cjs/resources/location/types/location-details.js +3 -0
- package/lib/cjs/resources/location/types/location-list-item.d.ts +55 -0
- package/lib/cjs/resources/location/types/location-list-item.js +3 -0
- package/lib/cjs/resources/movie/index.d.ts +1 -0
- package/lib/cjs/resources/movie/index.js +18 -0
- package/lib/cjs/resources/movie/movie.d.ts +6 -0
- package/lib/cjs/resources/movie/movie.js +13 -0
- package/lib/cjs/resources/movie/types/index.d.ts +2 -0
- package/lib/cjs/resources/movie/types/index.js +19 -0
- package/lib/cjs/resources/movie/types/movie-details.d.ts +91 -0
- package/lib/cjs/resources/movie/types/movie-details.js +3 -0
- package/lib/cjs/resources/movie/types/movie-list-item.d.ts +74 -0
- package/lib/cjs/resources/movie/types/movie-list-item.js +3 -0
- package/lib/cjs/resources/origin/index.d.ts +1 -0
- package/lib/cjs/resources/origin/index.js +18 -0
- package/lib/cjs/resources/origin/origin.d.ts +6 -0
- package/lib/cjs/resources/origin/origin.js +13 -0
- package/lib/cjs/resources/origin/types/index.d.ts +2 -0
- package/lib/cjs/resources/origin/types/index.js +19 -0
- package/lib/cjs/resources/origin/types/origin-details.d.ts +22 -0
- package/lib/cjs/resources/origin/types/origin-details.js +3 -0
- package/lib/cjs/resources/origin/types/origin-list-item.d.ts +18 -0
- package/lib/cjs/resources/origin/types/origin-list-item.js +3 -0
- package/lib/cjs/resources/person/index.d.ts +1 -0
- package/lib/cjs/resources/person/index.js +18 -0
- package/lib/cjs/resources/person/person.d.ts +6 -0
- package/lib/cjs/resources/person/person.js +13 -0
- package/lib/cjs/resources/person/types/index.d.ts +2 -0
- package/lib/cjs/resources/person/types/index.js +19 -0
- package/lib/cjs/resources/person/types/person-details.d.ts +82 -0
- package/lib/cjs/resources/person/types/person-details.js +3 -0
- package/lib/cjs/resources/person/types/person-list-item.d.ts +77 -0
- package/lib/cjs/resources/person/types/person-list-item.js +8 -0
- package/lib/cjs/resources/power/index.d.ts +1 -0
- package/lib/cjs/resources/power/index.js +18 -0
- package/lib/cjs/resources/power/power.d.ts +6 -0
- package/lib/cjs/resources/power/power.js +13 -0
- package/lib/cjs/resources/power/types/index.d.ts +2 -0
- package/lib/cjs/resources/power/types/index.js +19 -0
- package/lib/cjs/resources/power/types/power-details.d.ts +39 -0
- package/lib/cjs/resources/power/types/power-details.js +3 -0
- package/lib/cjs/resources/power/types/power-list-item.d.ts +34 -0
- package/lib/cjs/resources/power/types/power-list-item.js +3 -0
- package/lib/cjs/resources/promo/index.d.ts +1 -0
- package/lib/cjs/resources/promo/index.js +18 -0
- package/lib/cjs/resources/promo/promo.d.ts +6 -0
- package/lib/cjs/resources/promo/promo.js +13 -0
- package/lib/cjs/resources/promo/types/index.d.ts +2 -0
- package/lib/cjs/resources/promo/types/index.js +19 -0
- package/lib/cjs/resources/promo/types/promo-details.d.ts +40 -0
- package/lib/cjs/resources/promo/types/promo-details.js +3 -0
- package/lib/cjs/resources/promo/types/promo-list-item.d.ts +40 -0
- package/lib/cjs/resources/promo/types/promo-list-item.js +3 -0
- package/lib/cjs/resources/publisher/index.d.ts +1 -0
- package/lib/cjs/resources/publisher/index.js +18 -0
- package/lib/cjs/resources/publisher/publisher.d.ts +6 -0
- package/lib/cjs/resources/publisher/publisher.js +13 -0
- package/lib/cjs/resources/publisher/types/index.d.ts +2 -0
- package/lib/cjs/resources/publisher/types/index.js +19 -0
- package/lib/cjs/resources/publisher/types/publisher-details.d.ts +71 -0
- package/lib/cjs/resources/publisher/types/publisher-details.js +3 -0
- package/lib/cjs/resources/publisher/types/publisher-list-item.d.ts +61 -0
- package/lib/cjs/resources/publisher/types/publisher-list-item.js +11 -0
- package/lib/cjs/resources/resource-factory.d.ts +8 -0
- package/lib/cjs/resources/resource-factory.js +42 -0
- package/lib/cjs/resources/resource-list.d.ts +19 -0
- package/lib/cjs/resources/resource-list.js +36 -0
- package/lib/cjs/resources/resource-map.d.ts +7 -0
- package/lib/cjs/resources/resource-map.js +40 -0
- package/lib/cjs/resources/resource-type.js +26 -0
- package/lib/cjs/resources/series/index.d.ts +1 -0
- package/lib/cjs/resources/series/index.js +18 -0
- package/lib/cjs/resources/series/series.d.ts +6 -0
- package/lib/cjs/resources/series/series.js +13 -0
- package/lib/cjs/resources/series/types/index.d.ts +2 -0
- package/lib/cjs/resources/series/types/index.js +19 -0
- package/lib/cjs/resources/series/types/series-details.d.ts +68 -0
- package/lib/cjs/resources/series/types/series-details.js +3 -0
- package/lib/cjs/resources/series/types/series-list-item.d.ts +18 -0
- package/lib/cjs/resources/series/types/series-list-item.js +3 -0
- package/lib/cjs/resources/story-arc/index.d.ts +1 -0
- package/lib/cjs/resources/story-arc/index.js +18 -0
- package/lib/cjs/resources/story-arc/story-arc.d.ts +6 -0
- package/lib/cjs/resources/story-arc/story-arc.js +13 -0
- package/lib/cjs/resources/story-arc/types/index.d.ts +2 -0
- package/lib/cjs/resources/story-arc/types/index.js +19 -0
- package/lib/cjs/resources/story-arc/types/story-arc-details.d.ts +62 -0
- package/lib/cjs/resources/story-arc/types/story-arc-details.js +3 -0
- package/lib/cjs/resources/story-arc/types/story-arc-list-item.d.ts +53 -0
- package/lib/cjs/resources/story-arc/types/story-arc-list-item.js +3 -0
- package/lib/cjs/resources/team/index.d.ts +1 -0
- package/lib/cjs/resources/team/index.js +18 -0
- package/lib/cjs/resources/team/team.d.ts +6 -0
- package/lib/cjs/resources/team/team.js +13 -0
- package/lib/cjs/resources/team/types/index.d.ts +2 -0
- package/lib/cjs/resources/team/types/index.js +19 -0
- package/lib/cjs/resources/team/types/team-details.d.ts +80 -0
- package/lib/cjs/resources/team/types/team-details.js +3 -0
- package/lib/cjs/resources/team/types/team-list-item.d.ts +56 -0
- package/lib/cjs/resources/team/types/team-list-item.js +3 -0
- package/lib/cjs/resources/thing/index.d.ts +1 -0
- package/lib/cjs/resources/thing/index.js +18 -0
- package/lib/cjs/resources/thing/thing.d.ts +6 -0
- package/lib/cjs/resources/thing/thing.js +13 -0
- package/lib/cjs/resources/thing/types/index.d.ts +2 -0
- package/lib/cjs/resources/thing/types/index.js +19 -0
- package/lib/cjs/resources/thing/types/thing-details.d.ts +62 -0
- package/lib/cjs/resources/thing/types/thing-details.js +3 -0
- package/lib/cjs/resources/thing/types/thing-list-item.d.ts +55 -0
- package/lib/cjs/resources/thing/types/thing-list-item.js +3 -0
- package/lib/cjs/resources/video/index.d.ts +1 -0
- package/lib/cjs/resources/video/index.js +18 -0
- package/lib/cjs/resources/video/types/index.d.ts +2 -0
- package/lib/cjs/resources/video/types/index.js +19 -0
- package/lib/cjs/resources/video/types/video-details.d.ts +63 -0
- package/lib/cjs/resources/video/types/video-details.js +3 -0
- package/lib/cjs/resources/video/types/video-list-item.d.ts +85 -0
- package/lib/cjs/resources/video/types/video-list-item.js +28 -0
- package/lib/cjs/resources/video/video.d.ts +6 -0
- package/lib/cjs/resources/video/video.js +13 -0
- package/lib/cjs/resources/video-category/index.d.ts +1 -0
- package/lib/cjs/resources/video-category/index.js +18 -0
- package/lib/cjs/resources/video-category/types/index.d.ts +2 -0
- package/lib/cjs/resources/video-category/types/index.js +19 -0
- package/lib/cjs/resources/video-category/types/video-category-details.d.ts +24 -0
- package/lib/cjs/resources/video-category/types/video-category-details.js +3 -0
- package/lib/cjs/resources/video-category/types/video-category-list-item.d.ts +24 -0
- package/lib/cjs/resources/video-category/types/video-category-list-item.js +3 -0
- package/lib/cjs/resources/video-category/video-category.d.ts +6 -0
- package/lib/cjs/resources/video-category/video-category.js +13 -0
- package/lib/cjs/resources/video-type/index.d.ts +1 -0
- package/lib/cjs/resources/video-type/index.js +18 -0
- package/lib/cjs/resources/video-type/types/index.d.ts +2 -0
- package/lib/cjs/resources/video-type/types/index.js +19 -0
- package/lib/cjs/resources/video-type/types/video-type-details.d.ts +22 -0
- package/lib/cjs/resources/video-type/types/video-type-details.js +3 -0
- package/lib/cjs/resources/video-type/types/video-type-list-item.d.ts +22 -0
- package/lib/cjs/resources/video-type/types/video-type-list-item.js +3 -0
- package/lib/cjs/resources/video-type/video-type.d.ts +6 -0
- package/lib/cjs/resources/video-type/video-type.js +13 -0
- package/lib/cjs/resources/volume/index.d.ts +1 -0
- package/lib/cjs/resources/volume/index.js +18 -0
- package/lib/cjs/resources/volume/types/index.d.ts +2 -0
- package/lib/cjs/resources/volume/types/index.js +19 -0
- package/lib/cjs/resources/volume/types/volume-details.d.ts +77 -0
- package/lib/cjs/resources/volume/types/volume-details.js +3 -0
- package/lib/cjs/resources/volume/types/volume-list-item.d.ts +63 -0
- package/lib/cjs/resources/volume/types/volume-list-item.js +3 -0
- package/lib/cjs/resources/volume/volume.d.ts +6 -0
- package/lib/cjs/resources/volume/volume.js +13 -0
- package/lib/cjs/types/apply-override.js +3 -0
- package/lib/cjs/types/http-client.d.ts +4 -0
- package/lib/cjs/types/http-client.js +3 -0
- package/lib/cjs/types/index.d.ts +7 -0
- package/lib/cjs/types/index.js +24 -0
- package/lib/cjs/types/iso-date.js +3 -0
- package/lib/cjs/types/pick-filters.js +3 -0
- package/lib/cjs/types/request.d.ts +31 -0
- package/lib/cjs/types/request.js +3 -0
- package/lib/cjs/types/response.d.ts +10 -0
- package/lib/cjs/types/response.js +3 -0
- package/lib/cjs/types/url-builder.d.ts +6 -0
- package/lib/cjs/types/url-builder.js +3 -0
- package/lib/cjs/types/valueof.js +3 -0
- package/lib/cjs/utils/case-converter.js +34 -0
- package/lib/cjs/utils/index.d.ts +2 -0
- package/lib/cjs/utils/index.js +19 -0
- package/lib/cjs/utils/is-object.js +8 -0
- package/lib/esm/comic-vine.d.ts +42 -0
- package/lib/esm/comic-vine.js +88 -0
- package/lib/esm/errors/base-error.js +14 -0
- package/lib/esm/errors/custom-error.d.ts +2 -0
- package/lib/esm/errors/custom-error.js +8 -0
- package/lib/esm/errors/filter-error.d.ts +4 -0
- package/lib/esm/errors/filter-error.js +10 -0
- package/lib/esm/errors/generic-error.d.ts +4 -0
- package/lib/esm/errors/generic-error.js +10 -0
- package/lib/esm/errors/generic-request-error.d.ts +10 -0
- package/lib/esm/errors/generic-request-error.js +18 -0
- package/lib/esm/errors/index.d.ts +10 -0
- package/lib/esm/errors/index.js +11 -0
- package/lib/esm/errors/jsonp-callback-missing-error.d.ts +4 -0
- package/lib/esm/errors/jsonp-callback-missing-error.js +10 -0
- package/lib/esm/errors/object-not-found-error.d.ts +4 -0
- package/lib/esm/errors/object-not-found-error.js +10 -0
- package/lib/esm/errors/options-validation-error.d.ts +4 -0
- package/lib/esm/errors/options-validation-error.js +10 -0
- package/lib/esm/errors/subscriber-only-error.d.ts +4 -0
- package/lib/esm/errors/subscriber-only-error.js +10 -0
- package/lib/esm/errors/unauthorized-error.d.ts +4 -0
- package/lib/esm/errors/unauthorized-error.js +10 -0
- package/lib/esm/errors/url-format-error.d.ts +4 -0
- package/lib/esm/errors/url-format-error.js +10 -0
- package/lib/esm/http-client/http-client-factory.d.ts +6 -0
- package/lib/esm/http-client/http-client-factory.js +11 -0
- package/lib/esm/http-client/http-client.d.ts +8 -0
- package/lib/esm/http-client/http-client.js +50 -0
- package/lib/esm/http-client/index.d.ts +1 -0
- package/lib/esm/http-client/index.js +2 -0
- package/lib/esm/http-client/status-code.js +11 -0
- package/lib/esm/http-client/url-builder.d.ts +29 -0
- package/lib/esm/http-client/url-builder.js +103 -0
- package/lib/esm/index.d.ts +3 -0
- package/lib/esm/index.js +3 -0
- package/lib/esm/options/index.d.ts +22 -0
- package/lib/esm/options/index.js +28 -0
- package/lib/esm/package.json +3 -0
- package/lib/esm/resources/base-resource.d.ts +19 -0
- package/lib/esm/resources/base-resource.js +54 -0
- package/lib/esm/resources/character/character.d.ts +6 -0
- package/lib/esm/resources/character/character.js +9 -0
- package/lib/esm/resources/character/index.d.ts +1 -0
- package/lib/esm/resources/character/index.js +2 -0
- package/lib/esm/resources/character/types/character-details.d.ts +110 -0
- package/lib/esm/resources/character/types/character-details.js +2 -0
- package/lib/esm/resources/character/types/character-list-item.d.ts +71 -0
- package/lib/esm/resources/character/types/character-list-item.js +2 -0
- package/lib/esm/resources/character/types/index.d.ts +2 -0
- package/lib/esm/resources/character/types/index.js +3 -0
- package/lib/esm/resources/common-types.js +2 -0
- package/lib/esm/resources/concept/concept.d.ts +6 -0
- package/lib/esm/resources/concept/concept.js +9 -0
- package/lib/esm/resources/concept/index.d.ts +1 -0
- package/lib/esm/resources/concept/index.js +2 -0
- package/lib/esm/resources/concept/types/concept-details.d.ts +58 -0
- package/lib/esm/resources/concept/types/concept-details.js +2 -0
- package/lib/esm/resources/concept/types/concept-list-item.d.ts +52 -0
- package/lib/esm/resources/concept/types/concept-list-item.js +2 -0
- package/lib/esm/resources/concept/types/index.d.ts +2 -0
- package/lib/esm/resources/concept/types/index.js +3 -0
- package/lib/esm/resources/episode/episode.d.ts +6 -0
- package/lib/esm/resources/episode/episode.js +9 -0
- package/lib/esm/resources/episode/index.d.ts +1 -0
- package/lib/esm/resources/episode/index.js +2 -0
- package/lib/esm/resources/episode/types/episode-details.d.ts +87 -0
- package/lib/esm/resources/episode/types/episode-details.js +2 -0
- package/lib/esm/resources/episode/types/episode-list-item.d.ts +53 -0
- package/lib/esm/resources/episode/types/episode-list-item.js +2 -0
- package/lib/esm/resources/episode/types/index.d.ts +2 -0
- package/lib/esm/resources/episode/types/index.js +3 -0
- package/lib/esm/resources/index.d.ts +3 -0
- package/lib/esm/resources/index.js +4 -0
- package/lib/esm/resources/issue/index.d.ts +1 -0
- package/lib/esm/resources/issue/index.js +2 -0
- package/lib/esm/resources/issue/issue.d.ts +6 -0
- package/lib/esm/resources/issue/issue.js +9 -0
- package/lib/esm/resources/issue/types/index.d.ts +2 -0
- package/lib/esm/resources/issue/types/index.js +3 -0
- package/lib/esm/resources/issue/types/issue-details.d.ts +94 -0
- package/lib/esm/resources/issue/types/issue-details.js +2 -0
- package/lib/esm/resources/issue/types/issue-list-item.d.ts +61 -0
- package/lib/esm/resources/issue/types/issue-list-item.js +2 -0
- package/lib/esm/resources/location/index.d.ts +1 -0
- package/lib/esm/resources/location/index.js +2 -0
- package/lib/esm/resources/location/location.d.ts +6 -0
- package/lib/esm/resources/location/location.js +9 -0
- package/lib/esm/resources/location/types/index.d.ts +2 -0
- package/lib/esm/resources/location/types/index.js +3 -0
- package/lib/esm/resources/location/types/location-details.d.ts +62 -0
- package/lib/esm/resources/location/types/location-details.js +2 -0
- package/lib/esm/resources/location/types/location-list-item.d.ts +55 -0
- package/lib/esm/resources/location/types/location-list-item.js +2 -0
- package/lib/esm/resources/movie/index.d.ts +1 -0
- package/lib/esm/resources/movie/index.js +2 -0
- package/lib/esm/resources/movie/movie.d.ts +6 -0
- package/lib/esm/resources/movie/movie.js +9 -0
- package/lib/esm/resources/movie/types/index.d.ts +2 -0
- package/lib/esm/resources/movie/types/index.js +3 -0
- package/lib/esm/resources/movie/types/movie-details.d.ts +91 -0
- package/lib/esm/resources/movie/types/movie-details.js +2 -0
- package/lib/esm/resources/movie/types/movie-list-item.d.ts +74 -0
- package/lib/esm/resources/movie/types/movie-list-item.js +2 -0
- package/lib/esm/resources/origin/index.d.ts +1 -0
- package/lib/esm/resources/origin/index.js +2 -0
- package/lib/esm/resources/origin/origin.d.ts +6 -0
- package/lib/esm/resources/origin/origin.js +9 -0
- package/lib/esm/resources/origin/types/index.d.ts +2 -0
- package/lib/esm/resources/origin/types/index.js +3 -0
- package/lib/esm/resources/origin/types/origin-details.d.ts +22 -0
- package/lib/esm/resources/origin/types/origin-details.js +2 -0
- package/lib/esm/resources/origin/types/origin-list-item.d.ts +18 -0
- package/lib/esm/resources/origin/types/origin-list-item.js +2 -0
- package/lib/esm/resources/person/index.d.ts +1 -0
- package/lib/esm/resources/person/index.js +2 -0
- package/lib/esm/resources/person/person.d.ts +6 -0
- package/lib/esm/resources/person/person.js +9 -0
- package/lib/esm/resources/person/types/index.d.ts +2 -0
- package/lib/esm/resources/person/types/index.js +3 -0
- package/lib/esm/resources/person/types/person-details.d.ts +82 -0
- package/lib/esm/resources/person/types/person-details.js +2 -0
- package/lib/esm/resources/person/types/person-list-item.d.ts +77 -0
- package/lib/esm/resources/person/types/person-list-item.js +5 -0
- package/lib/esm/resources/power/index.d.ts +1 -0
- package/lib/esm/resources/power/index.js +2 -0
- package/lib/esm/resources/power/power.d.ts +6 -0
- package/lib/esm/resources/power/power.js +9 -0
- package/lib/esm/resources/power/types/index.d.ts +2 -0
- package/lib/esm/resources/power/types/index.js +3 -0
- package/lib/esm/resources/power/types/power-details.d.ts +39 -0
- package/lib/esm/resources/power/types/power-details.js +2 -0
- package/lib/esm/resources/power/types/power-list-item.d.ts +34 -0
- package/lib/esm/resources/power/types/power-list-item.js +2 -0
- package/lib/esm/resources/promo/index.d.ts +1 -0
- package/lib/esm/resources/promo/index.js +2 -0
- package/lib/esm/resources/promo/promo.d.ts +6 -0
- package/lib/esm/resources/promo/promo.js +9 -0
- package/lib/esm/resources/promo/types/index.d.ts +2 -0
- package/lib/esm/resources/promo/types/index.js +3 -0
- package/lib/esm/resources/promo/types/promo-details.d.ts +40 -0
- package/lib/esm/resources/promo/types/promo-details.js +2 -0
- package/lib/esm/resources/promo/types/promo-list-item.d.ts +40 -0
- package/lib/esm/resources/promo/types/promo-list-item.js +2 -0
- package/lib/esm/resources/publisher/index.d.ts +1 -0
- package/lib/esm/resources/publisher/index.js +2 -0
- package/lib/esm/resources/publisher/publisher.d.ts +6 -0
- package/lib/esm/resources/publisher/publisher.js +9 -0
- package/lib/esm/resources/publisher/types/index.d.ts +2 -0
- package/lib/esm/resources/publisher/types/index.js +3 -0
- package/lib/esm/resources/publisher/types/publisher-details.d.ts +71 -0
- package/lib/esm/resources/publisher/types/publisher-details.js +2 -0
- package/lib/esm/resources/publisher/types/publisher-list-item.d.ts +61 -0
- package/lib/esm/resources/publisher/types/publisher-list-item.js +8 -0
- package/lib/esm/resources/resource-factory.d.ts +8 -0
- package/lib/esm/resources/resource-factory.js +15 -0
- package/lib/esm/resources/resource-list.d.ts +19 -0
- package/lib/esm/resources/resource-list.js +20 -0
- package/lib/esm/resources/resource-map.d.ts +7 -0
- package/lib/esm/resources/resource-map.js +36 -0
- package/lib/esm/resources/resource-type.js +23 -0
- package/lib/esm/resources/series/index.d.ts +1 -0
- package/lib/esm/resources/series/index.js +2 -0
- package/lib/esm/resources/series/series.d.ts +6 -0
- package/lib/esm/resources/series/series.js +9 -0
- package/lib/esm/resources/series/types/index.d.ts +2 -0
- package/lib/esm/resources/series/types/index.js +3 -0
- package/lib/esm/resources/series/types/series-details.d.ts +68 -0
- package/lib/esm/resources/series/types/series-details.js +2 -0
- package/lib/esm/resources/series/types/series-list-item.d.ts +18 -0
- package/lib/esm/resources/series/types/series-list-item.js +2 -0
- package/lib/esm/resources/story-arc/index.d.ts +1 -0
- package/lib/esm/resources/story-arc/index.js +2 -0
- package/lib/esm/resources/story-arc/story-arc.d.ts +6 -0
- package/lib/esm/resources/story-arc/story-arc.js +9 -0
- package/lib/esm/resources/story-arc/types/index.d.ts +2 -0
- package/lib/esm/resources/story-arc/types/index.js +3 -0
- package/lib/esm/resources/story-arc/types/story-arc-details.d.ts +62 -0
- package/lib/esm/resources/story-arc/types/story-arc-details.js +2 -0
- package/lib/esm/resources/story-arc/types/story-arc-list-item.d.ts +53 -0
- package/lib/esm/resources/story-arc/types/story-arc-list-item.js +2 -0
- package/lib/esm/resources/team/index.d.ts +1 -0
- package/lib/esm/resources/team/index.js +2 -0
- package/lib/esm/resources/team/team.d.ts +6 -0
- package/lib/esm/resources/team/team.js +9 -0
- package/lib/esm/resources/team/types/index.d.ts +2 -0
- package/lib/esm/resources/team/types/index.js +3 -0
- package/lib/esm/resources/team/types/team-details.d.ts +80 -0
- package/lib/esm/resources/team/types/team-details.js +2 -0
- package/lib/esm/resources/team/types/team-list-item.d.ts +56 -0
- package/lib/esm/resources/team/types/team-list-item.js +2 -0
- package/lib/esm/resources/thing/index.d.ts +1 -0
- package/lib/esm/resources/thing/index.js +2 -0
- package/lib/esm/resources/thing/thing.d.ts +6 -0
- package/lib/esm/resources/thing/thing.js +9 -0
- package/lib/esm/resources/thing/types/index.d.ts +2 -0
- package/lib/esm/resources/thing/types/index.js +3 -0
- package/lib/esm/resources/thing/types/thing-details.d.ts +62 -0
- package/lib/esm/resources/thing/types/thing-details.js +2 -0
- package/lib/esm/resources/thing/types/thing-list-item.d.ts +55 -0
- package/lib/esm/resources/thing/types/thing-list-item.js +2 -0
- package/lib/esm/resources/video/index.d.ts +1 -0
- package/lib/esm/resources/video/index.js +2 -0
- package/lib/esm/resources/video/types/index.d.ts +2 -0
- package/lib/esm/resources/video/types/index.js +3 -0
- package/lib/esm/resources/video/types/video-details.d.ts +63 -0
- package/lib/esm/resources/video/types/video-details.js +2 -0
- package/lib/esm/resources/video/types/video-list-item.d.ts +85 -0
- package/lib/esm/resources/video/types/video-list-item.js +25 -0
- package/lib/esm/resources/video/video.d.ts +6 -0
- package/lib/esm/resources/video/video.js +9 -0
- package/lib/esm/resources/video-category/index.d.ts +1 -0
- package/lib/esm/resources/video-category/index.js +2 -0
- package/lib/esm/resources/video-category/types/index.d.ts +2 -0
- package/lib/esm/resources/video-category/types/index.js +3 -0
- package/lib/esm/resources/video-category/types/video-category-details.d.ts +24 -0
- package/lib/esm/resources/video-category/types/video-category-details.js +2 -0
- package/lib/esm/resources/video-category/types/video-category-list-item.d.ts +24 -0
- package/lib/esm/resources/video-category/types/video-category-list-item.js +2 -0
- package/lib/esm/resources/video-category/video-category.d.ts +6 -0
- package/lib/esm/resources/video-category/video-category.js +9 -0
- package/lib/esm/resources/video-type/index.d.ts +1 -0
- package/lib/esm/resources/video-type/index.js +2 -0
- package/lib/esm/resources/video-type/types/index.d.ts +2 -0
- package/lib/esm/resources/video-type/types/index.js +3 -0
- package/lib/esm/resources/video-type/types/video-type-details.d.ts +22 -0
- package/lib/esm/resources/video-type/types/video-type-details.js +2 -0
- package/lib/esm/resources/video-type/types/video-type-list-item.d.ts +22 -0
- package/lib/esm/resources/video-type/types/video-type-list-item.js +2 -0
- package/lib/esm/resources/video-type/video-type.d.ts +6 -0
- package/lib/esm/resources/video-type/video-type.js +9 -0
- package/lib/esm/resources/volume/index.d.ts +1 -0
- package/lib/esm/resources/volume/index.js +2 -0
- package/lib/esm/resources/volume/types/index.d.ts +2 -0
- package/lib/esm/resources/volume/types/index.js +3 -0
- package/lib/esm/resources/volume/types/volume-details.d.ts +77 -0
- package/lib/esm/resources/volume/types/volume-details.js +2 -0
- package/lib/esm/resources/volume/types/volume-list-item.d.ts +63 -0
- package/lib/esm/resources/volume/types/volume-list-item.js +2 -0
- package/lib/esm/resources/volume/volume.d.ts +6 -0
- package/lib/esm/resources/volume/volume.js +9 -0
- package/lib/esm/types/apply-override.js +2 -0
- package/lib/esm/types/http-client.d.ts +4 -0
- package/lib/esm/types/http-client.js +2 -0
- package/lib/esm/types/index.d.ts +7 -0
- package/lib/esm/types/index.js +8 -0
- package/lib/esm/types/iso-date.js +2 -0
- package/lib/esm/types/pick-filters.js +2 -0
- package/lib/esm/types/request.d.ts +31 -0
- package/lib/esm/types/request.js +2 -0
- package/lib/esm/types/response.d.ts +10 -0
- package/lib/esm/types/response.js +2 -0
- package/lib/esm/types/url-builder.d.ts +6 -0
- package/lib/esm/types/url-builder.js +2 -0
- package/lib/esm/types/valueof.js +2 -0
- package/lib/esm/utils/case-converter.js +27 -0
- package/lib/esm/utils/index.d.ts +2 -0
- package/lib/esm/utils/index.js +3 -0
- package/lib/esm/utils/is-object.js +4 -0
- package/package.json +86 -73
- package/scripts/create-package-json.ts +30 -0
- package/vitest.config.ts +8 -0
- package/dist/cjs/comic-vine.d.ts +0 -42
- package/dist/cjs/comic-vine.js +0 -92
- package/dist/cjs/comic-vine.js.map +0 -1
- package/dist/cjs/errors/base-error.js +0 -15
- package/dist/cjs/errors/base-error.js.map +0 -1
- package/dist/cjs/errors/custom-error.d.ts +0 -2
- package/dist/cjs/errors/custom-error.js +0 -12
- package/dist/cjs/errors/custom-error.js.map +0 -1
- package/dist/cjs/errors/filter-error.d.ts +0 -4
- package/dist/cjs/errors/filter-error.js +0 -14
- package/dist/cjs/errors/filter-error.js.map +0 -1
- package/dist/cjs/errors/generic-error.d.ts +0 -4
- package/dist/cjs/errors/generic-error.js +0 -14
- package/dist/cjs/errors/generic-error.js.map +0 -1
- package/dist/cjs/errors/generic-request-error.d.ts +0 -7
- package/dist/cjs/errors/generic-request-error.js +0 -20
- package/dist/cjs/errors/generic-request-error.js.map +0 -1
- package/dist/cjs/errors/index.d.ts +0 -10
- package/dist/cjs/errors/index.js +0 -27
- package/dist/cjs/errors/index.js.map +0 -1
- package/dist/cjs/errors/jsonp-callback-missing-error.d.ts +0 -4
- package/dist/cjs/errors/jsonp-callback-missing-error.js +0 -14
- package/dist/cjs/errors/jsonp-callback-missing-error.js.map +0 -1
- package/dist/cjs/errors/object-not-found-error.d.ts +0 -4
- package/dist/cjs/errors/object-not-found-error.js +0 -14
- package/dist/cjs/errors/object-not-found-error.js.map +0 -1
- package/dist/cjs/errors/options-validation-error.d.ts +0 -4
- package/dist/cjs/errors/options-validation-error.js +0 -14
- package/dist/cjs/errors/options-validation-error.js.map +0 -1
- package/dist/cjs/errors/subscriber-only-error.d.ts +0 -4
- package/dist/cjs/errors/subscriber-only-error.js +0 -14
- package/dist/cjs/errors/subscriber-only-error.js.map +0 -1
- package/dist/cjs/errors/unauthorized-error.d.ts +0 -4
- package/dist/cjs/errors/unauthorized-error.js +0 -14
- package/dist/cjs/errors/unauthorized-error.js.map +0 -1
- package/dist/cjs/errors/url-format-error.d.ts +0 -4
- package/dist/cjs/errors/url-format-error.js +0 -14
- package/dist/cjs/errors/url-format-error.js.map +0 -1
- package/dist/cjs/http-client/http-client-factory.d.ts +0 -6
- package/dist/cjs/http-client/http-client-factory.js +0 -15
- package/dist/cjs/http-client/http-client-factory.js.map +0 -1
- package/dist/cjs/http-client/http-client.d.ts +0 -8
- package/dist/cjs/http-client/http-client.js +0 -69
- package/dist/cjs/http-client/http-client.js.map +0 -1
- package/dist/cjs/http-client/index.d.ts +0 -1
- package/dist/cjs/http-client/index.js +0 -18
- package/dist/cjs/http-client/index.js.map +0 -1
- package/dist/cjs/http-client/status-code.js +0 -14
- package/dist/cjs/http-client/status-code.js.map +0 -1
- package/dist/cjs/http-client/url-builder.d.ts +0 -18
- package/dist/cjs/http-client/url-builder.js +0 -90
- package/dist/cjs/http-client/url-builder.js.map +0 -1
- package/dist/cjs/index.cjs.d.ts +0 -2
- package/dist/cjs/index.cjs.js +0 -4
- package/dist/cjs/index.cjs.js.map +0 -1
- package/dist/cjs/options/index.d.ts +0 -16
- package/dist/cjs/options/index.js +0 -26
- package/dist/cjs/options/index.js.map +0 -1
- package/dist/cjs/package.json +0 -3
- package/dist/cjs/resources/base-resource.d.ts +0 -19
- package/dist/cjs/resources/base-resource.js +0 -85
- package/dist/cjs/resources/base-resource.js.map +0 -1
- package/dist/cjs/resources/character/character.d.ts +0 -6
- package/dist/cjs/resources/character/character.js +0 -13
- package/dist/cjs/resources/character/character.js.map +0 -1
- package/dist/cjs/resources/character/index.d.ts +0 -1
- package/dist/cjs/resources/character/index.js +0 -18
- package/dist/cjs/resources/character/index.js.map +0 -1
- package/dist/cjs/resources/character/types/character-details.d.ts +0 -32
- package/dist/cjs/resources/character/types/character-details.js +0 -3
- package/dist/cjs/resources/character/types/character-details.js.map +0 -1
- package/dist/cjs/resources/character/types/character-list-item.d.ts +0 -20
- package/dist/cjs/resources/character/types/character-list-item.js +0 -3
- package/dist/cjs/resources/character/types/character-list-item.js.map +0 -1
- package/dist/cjs/resources/character/types/index.d.ts +0 -2
- package/dist/cjs/resources/character/types/index.js +0 -19
- package/dist/cjs/resources/character/types/index.js.map +0 -1
- package/dist/cjs/resources/common-types.js +0 -3
- package/dist/cjs/resources/common-types.js.map +0 -1
- package/dist/cjs/resources/concept/concept.d.ts +0 -6
- package/dist/cjs/resources/concept/concept.js +0 -13
- package/dist/cjs/resources/concept/concept.js.map +0 -1
- package/dist/cjs/resources/concept/index.d.ts +0 -1
- package/dist/cjs/resources/concept/index.js +0 -18
- package/dist/cjs/resources/concept/index.js.map +0 -1
- package/dist/cjs/resources/concept/types/concept-details.d.ts +0 -19
- package/dist/cjs/resources/concept/types/concept-details.js +0 -3
- package/dist/cjs/resources/concept/types/concept-details.js.map +0 -1
- package/dist/cjs/resources/concept/types/concept-list-item.d.ts +0 -16
- package/dist/cjs/resources/concept/types/concept-list-item.js +0 -3
- package/dist/cjs/resources/concept/types/concept-list-item.js.map +0 -1
- package/dist/cjs/resources/concept/types/index.d.ts +0 -2
- package/dist/cjs/resources/concept/types/index.js +0 -19
- package/dist/cjs/resources/concept/types/index.js.map +0 -1
- package/dist/cjs/resources/episode/episode.d.ts +0 -6
- package/dist/cjs/resources/episode/episode.js +0 -13
- package/dist/cjs/resources/episode/episode.js.map +0 -1
- package/dist/cjs/resources/episode/index.d.ts +0 -1
- package/dist/cjs/resources/episode/index.js +0 -18
- package/dist/cjs/resources/episode/index.js.map +0 -1
- package/dist/cjs/resources/episode/types/episode-details.d.ts +0 -30
- package/dist/cjs/resources/episode/types/episode-details.js +0 -3
- package/dist/cjs/resources/episode/types/episode-details.js.map +0 -1
- package/dist/cjs/resources/episode/types/episode-list-item.d.ts +0 -17
- package/dist/cjs/resources/episode/types/episode-list-item.js +0 -3
- package/dist/cjs/resources/episode/types/episode-list-item.js.map +0 -1
- package/dist/cjs/resources/episode/types/index.d.ts +0 -2
- package/dist/cjs/resources/episode/types/index.js +0 -19
- package/dist/cjs/resources/episode/types/index.js.map +0 -1
- package/dist/cjs/resources/index.d.ts +0 -3
- package/dist/cjs/resources/index.js +0 -20
- package/dist/cjs/resources/index.js.map +0 -1
- package/dist/cjs/resources/issue/index.d.ts +0 -1
- package/dist/cjs/resources/issue/index.js +0 -18
- package/dist/cjs/resources/issue/index.js.map +0 -1
- package/dist/cjs/resources/issue/issue.d.ts +0 -6
- package/dist/cjs/resources/issue/issue.js +0 -13
- package/dist/cjs/resources/issue/issue.js.map +0 -1
- package/dist/cjs/resources/issue/types/index.d.ts +0 -2
- package/dist/cjs/resources/issue/types/index.js +0 -19
- package/dist/cjs/resources/issue/types/index.js.map +0 -1
- package/dist/cjs/resources/issue/types/issue-details.d.ts +0 -34
- package/dist/cjs/resources/issue/types/issue-details.js +0 -3
- package/dist/cjs/resources/issue/types/issue-details.js.map +0 -1
- package/dist/cjs/resources/issue/types/issue-list-item.d.ts +0 -19
- package/dist/cjs/resources/issue/types/issue-list-item.js +0 -3
- package/dist/cjs/resources/issue/types/issue-list-item.js.map +0 -1
- package/dist/cjs/resources/location/index.d.ts +0 -1
- package/dist/cjs/resources/location/index.js +0 -18
- package/dist/cjs/resources/location/index.js.map +0 -1
- package/dist/cjs/resources/location/location.d.ts +0 -6
- package/dist/cjs/resources/location/location.js +0 -13
- package/dist/cjs/resources/location/location.js.map +0 -1
- package/dist/cjs/resources/location/types/index.d.ts +0 -2
- package/dist/cjs/resources/location/types/index.js +0 -19
- package/dist/cjs/resources/location/types/index.js.map +0 -1
- package/dist/cjs/resources/location/types/location-details.d.ts +0 -20
- package/dist/cjs/resources/location/types/location-details.js +0 -3
- package/dist/cjs/resources/location/types/location-details.js.map +0 -1
- package/dist/cjs/resources/location/types/location-list-item.d.ts +0 -16
- package/dist/cjs/resources/location/types/location-list-item.js +0 -3
- package/dist/cjs/resources/location/types/location-list-item.js.map +0 -1
- package/dist/cjs/resources/movie/index.d.ts +0 -1
- package/dist/cjs/resources/movie/index.js +0 -18
- package/dist/cjs/resources/movie/index.js.map +0 -1
- package/dist/cjs/resources/movie/movie.d.ts +0 -6
- package/dist/cjs/resources/movie/movie.js +0 -13
- package/dist/cjs/resources/movie/movie.js.map +0 -1
- package/dist/cjs/resources/movie/types/index.d.ts +0 -2
- package/dist/cjs/resources/movie/types/index.js +0 -19
- package/dist/cjs/resources/movie/types/index.js.map +0 -1
- package/dist/cjs/resources/movie/types/movie-details.d.ts +0 -28
- package/dist/cjs/resources/movie/types/movie-details.js +0 -3
- package/dist/cjs/resources/movie/types/movie-details.js.map +0 -1
- package/dist/cjs/resources/movie/types/movie-list-item.d.ts +0 -23
- package/dist/cjs/resources/movie/types/movie-list-item.js +0 -3
- package/dist/cjs/resources/movie/types/movie-list-item.js.map +0 -1
- package/dist/cjs/resources/origin/index.d.ts +0 -1
- package/dist/cjs/resources/origin/index.js +0 -18
- package/dist/cjs/resources/origin/index.js.map +0 -1
- package/dist/cjs/resources/origin/origin.d.ts +0 -6
- package/dist/cjs/resources/origin/origin.js +0 -13
- package/dist/cjs/resources/origin/origin.js.map +0 -1
- package/dist/cjs/resources/origin/types/index.d.ts +0 -2
- package/dist/cjs/resources/origin/types/index.js +0 -19
- package/dist/cjs/resources/origin/types/index.js.map +0 -1
- package/dist/cjs/resources/origin/types/origin-details.d.ts +0 -10
- package/dist/cjs/resources/origin/types/origin-details.js +0 -3
- package/dist/cjs/resources/origin/types/origin-details.js.map +0 -1
- package/dist/cjs/resources/origin/types/origin-list-item.d.ts +0 -6
- package/dist/cjs/resources/origin/types/origin-list-item.js +0 -3
- package/dist/cjs/resources/origin/types/origin-list-item.js.map +0 -1
- package/dist/cjs/resources/person/index.d.ts +0 -1
- package/dist/cjs/resources/person/index.js +0 -18
- package/dist/cjs/resources/person/index.js.map +0 -1
- package/dist/cjs/resources/person/person.d.ts +0 -6
- package/dist/cjs/resources/person/person.js +0 -13
- package/dist/cjs/resources/person/person.js.map +0 -1
- package/dist/cjs/resources/person/types/index.d.ts +0 -2
- package/dist/cjs/resources/person/types/index.js +0 -19
- package/dist/cjs/resources/person/types/index.js.map +0 -1
- package/dist/cjs/resources/person/types/person-details.d.ts +0 -25
- package/dist/cjs/resources/person/types/person-details.js +0 -3
- package/dist/cjs/resources/person/types/person-details.js.map +0 -1
- package/dist/cjs/resources/person/types/person-list-item.d.ts +0 -26
- package/dist/cjs/resources/person/types/person-list-item.js +0 -8
- package/dist/cjs/resources/person/types/person-list-item.js.map +0 -1
- package/dist/cjs/resources/power/index.d.ts +0 -1
- package/dist/cjs/resources/power/index.js +0 -18
- package/dist/cjs/resources/power/index.js.map +0 -1
- package/dist/cjs/resources/power/power.d.ts +0 -6
- package/dist/cjs/resources/power/power.js +0 -13
- package/dist/cjs/resources/power/power.js.map +0 -1
- package/dist/cjs/resources/power/types/index.d.ts +0 -2
- package/dist/cjs/resources/power/types/index.js +0 -19
- package/dist/cjs/resources/power/types/index.js.map +0 -1
- package/dist/cjs/resources/power/types/power-details.d.ts +0 -12
- package/dist/cjs/resources/power/types/power-details.js +0 -3
- package/dist/cjs/resources/power/types/power-details.js.map +0 -1
- package/dist/cjs/resources/power/types/power-list-item.d.ts +0 -10
- package/dist/cjs/resources/power/types/power-list-item.js +0 -3
- package/dist/cjs/resources/power/types/power-list-item.js.map +0 -1
- package/dist/cjs/resources/promo/index.d.ts +0 -1
- package/dist/cjs/resources/promo/index.js +0 -18
- package/dist/cjs/resources/promo/index.js.map +0 -1
- package/dist/cjs/resources/promo/promo.d.ts +0 -6
- package/dist/cjs/resources/promo/promo.js +0 -13
- package/dist/cjs/resources/promo/promo.js.map +0 -1
- package/dist/cjs/resources/promo/types/index.d.ts +0 -2
- package/dist/cjs/resources/promo/types/index.js +0 -19
- package/dist/cjs/resources/promo/types/index.js.map +0 -1
- package/dist/cjs/resources/promo/types/promo-details.d.ts +0 -13
- package/dist/cjs/resources/promo/types/promo-details.js +0 -3
- package/dist/cjs/resources/promo/types/promo-details.js.map +0 -1
- package/dist/cjs/resources/promo/types/promo-list-item.d.ts +0 -13
- package/dist/cjs/resources/promo/types/promo-list-item.js +0 -3
- package/dist/cjs/resources/promo/types/promo-list-item.js.map +0 -1
- package/dist/cjs/resources/publisher/index.d.ts +0 -1
- package/dist/cjs/resources/publisher/index.js +0 -18
- package/dist/cjs/resources/publisher/index.js.map +0 -1
- package/dist/cjs/resources/publisher/publisher.d.ts +0 -6
- package/dist/cjs/resources/publisher/publisher.js +0 -13
- package/dist/cjs/resources/publisher/publisher.js.map +0 -1
- package/dist/cjs/resources/publisher/types/index.d.ts +0 -2
- package/dist/cjs/resources/publisher/types/index.js +0 -19
- package/dist/cjs/resources/publisher/types/index.js.map +0 -1
- package/dist/cjs/resources/publisher/types/publisher-details.d.ts +0 -20
- package/dist/cjs/resources/publisher/types/publisher-details.js +0 -3
- package/dist/cjs/resources/publisher/types/publisher-details.js.map +0 -1
- package/dist/cjs/resources/publisher/types/publisher-list-item.d.ts +0 -22
- package/dist/cjs/resources/publisher/types/publisher-list-item.js +0 -11
- package/dist/cjs/resources/publisher/types/publisher-list-item.js.map +0 -1
- package/dist/cjs/resources/resource-factory.d.ts +0 -8
- package/dist/cjs/resources/resource-factory.js +0 -42
- package/dist/cjs/resources/resource-factory.js.map +0 -1
- package/dist/cjs/resources/resource-list.d.ts +0 -19
- package/dist/cjs/resources/resource-list.js +0 -36
- package/dist/cjs/resources/resource-list.js.map +0 -1
- package/dist/cjs/resources/resource-map.d.ts +0 -7
- package/dist/cjs/resources/resource-map.js +0 -40
- package/dist/cjs/resources/resource-map.js.map +0 -1
- package/dist/cjs/resources/resource-type.js +0 -26
- package/dist/cjs/resources/resource-type.js.map +0 -1
- package/dist/cjs/resources/series/index.d.ts +0 -1
- package/dist/cjs/resources/series/index.js +0 -18
- package/dist/cjs/resources/series/index.js.map +0 -1
- package/dist/cjs/resources/series/series.d.ts +0 -6
- package/dist/cjs/resources/series/series.js +0 -13
- package/dist/cjs/resources/series/series.js.map +0 -1
- package/dist/cjs/resources/series/types/index.d.ts +0 -2
- package/dist/cjs/resources/series/types/index.js +0 -19
- package/dist/cjs/resources/series/types/index.js.map +0 -1
- package/dist/cjs/resources/series/types/series-details.d.ts +0 -20
- package/dist/cjs/resources/series/types/series-details.js +0 -3
- package/dist/cjs/resources/series/types/series-details.js.map +0 -1
- package/dist/cjs/resources/series/types/series-list-item.d.ts +0 -18
- package/dist/cjs/resources/series/types/series-list-item.js +0 -3
- package/dist/cjs/resources/series/types/series-list-item.js.map +0 -1
- package/dist/cjs/resources/story-arc/index.d.ts +0 -1
- package/dist/cjs/resources/story-arc/index.js +0 -18
- package/dist/cjs/resources/story-arc/index.js.map +0 -1
- package/dist/cjs/resources/story-arc/story-arc.d.ts +0 -6
- package/dist/cjs/resources/story-arc/story-arc.js +0 -13
- package/dist/cjs/resources/story-arc/story-arc.js.map +0 -1
- package/dist/cjs/resources/story-arc/types/index.d.ts +0 -2
- package/dist/cjs/resources/story-arc/types/index.js +0 -19
- package/dist/cjs/resources/story-arc/types/index.js.map +0 -1
- package/dist/cjs/resources/story-arc/types/story-arc-details.d.ts +0 -20
- package/dist/cjs/resources/story-arc/types/story-arc-details.js +0 -3
- package/dist/cjs/resources/story-arc/types/story-arc-details.js.map +0 -1
- package/dist/cjs/resources/story-arc/types/story-arc-list-item.d.ts +0 -17
- package/dist/cjs/resources/story-arc/types/story-arc-list-item.js +0 -3
- package/dist/cjs/resources/story-arc/types/story-arc-list-item.js.map +0 -1
- package/dist/cjs/resources/team/index.d.ts +0 -1
- package/dist/cjs/resources/team/index.js +0 -18
- package/dist/cjs/resources/team/index.js.map +0 -1
- package/dist/cjs/resources/team/team.d.ts +0 -6
- package/dist/cjs/resources/team/team.js +0 -13
- package/dist/cjs/resources/team/team.js.map +0 -1
- package/dist/cjs/resources/team/types/index.d.ts +0 -2
- package/dist/cjs/resources/team/types/index.js +0 -19
- package/dist/cjs/resources/team/types/index.js.map +0 -1
- package/dist/cjs/resources/team/types/team-details.d.ts +0 -26
- package/dist/cjs/resources/team/types/team-details.js +0 -3
- package/dist/cjs/resources/team/types/team-details.js.map +0 -1
- package/dist/cjs/resources/team/types/team-list-item.d.ts +0 -17
- package/dist/cjs/resources/team/types/team-list-item.js +0 -3
- package/dist/cjs/resources/team/types/team-list-item.js.map +0 -1
- package/dist/cjs/resources/thing/index.d.ts +0 -1
- package/dist/cjs/resources/thing/index.js +0 -18
- package/dist/cjs/resources/thing/index.js.map +0 -1
- package/dist/cjs/resources/thing/thing.d.ts +0 -6
- package/dist/cjs/resources/thing/thing.js +0 -13
- package/dist/cjs/resources/thing/thing.js.map +0 -1
- package/dist/cjs/resources/thing/types/index.d.ts +0 -2
- package/dist/cjs/resources/thing/types/index.js +0 -19
- package/dist/cjs/resources/thing/types/index.js.map +0 -1
- package/dist/cjs/resources/thing/types/thing-details.d.ts +0 -20
- package/dist/cjs/resources/thing/types/thing-details.js +0 -3
- package/dist/cjs/resources/thing/types/thing-details.js.map +0 -1
- package/dist/cjs/resources/thing/types/thing-list-item.d.ts +0 -16
- package/dist/cjs/resources/thing/types/thing-list-item.js +0 -3
- package/dist/cjs/resources/thing/types/thing-list-item.js.map +0 -1
- package/dist/cjs/resources/video/index.d.ts +0 -1
- package/dist/cjs/resources/video/index.js +0 -18
- package/dist/cjs/resources/video/index.js.map +0 -1
- package/dist/cjs/resources/video/types/index.d.ts +0 -2
- package/dist/cjs/resources/video/types/index.js +0 -19
- package/dist/cjs/resources/video/types/index.js.map +0 -1
- package/dist/cjs/resources/video/types/video-details.d.ts +0 -27
- package/dist/cjs/resources/video/types/video-details.js +0 -3
- package/dist/cjs/resources/video/types/video-details.js.map +0 -1
- package/dist/cjs/resources/video/types/video-list-item.d.ts +0 -49
- package/dist/cjs/resources/video/types/video-list-item.js +0 -28
- package/dist/cjs/resources/video/types/video-list-item.js.map +0 -1
- package/dist/cjs/resources/video/video.d.ts +0 -6
- package/dist/cjs/resources/video/video.js +0 -13
- package/dist/cjs/resources/video/video.js.map +0 -1
- package/dist/cjs/resources/video-category/index.d.ts +0 -1
- package/dist/cjs/resources/video-category/index.js +0 -18
- package/dist/cjs/resources/video-category/index.js.map +0 -1
- package/dist/cjs/resources/video-category/types/index.d.ts +0 -2
- package/dist/cjs/resources/video-category/types/index.js +0 -19
- package/dist/cjs/resources/video-category/types/index.js.map +0 -1
- package/dist/cjs/resources/video-category/types/video-category-details.d.ts +0 -9
- package/dist/cjs/resources/video-category/types/video-category-details.js +0 -3
- package/dist/cjs/resources/video-category/types/video-category-details.js.map +0 -1
- package/dist/cjs/resources/video-category/types/video-category-list-item.d.ts +0 -9
- package/dist/cjs/resources/video-category/types/video-category-list-item.js +0 -3
- package/dist/cjs/resources/video-category/types/video-category-list-item.js.map +0 -1
- package/dist/cjs/resources/video-category/video-category.d.ts +0 -6
- package/dist/cjs/resources/video-category/video-category.js +0 -13
- package/dist/cjs/resources/video-category/video-category.js.map +0 -1
- package/dist/cjs/resources/video-type/index.d.ts +0 -1
- package/dist/cjs/resources/video-type/index.js +0 -18
- package/dist/cjs/resources/video-type/index.js.map +0 -1
- package/dist/cjs/resources/video-type/types/index.d.ts +0 -2
- package/dist/cjs/resources/video-type/types/index.js +0 -19
- package/dist/cjs/resources/video-type/types/index.js.map +0 -1
- package/dist/cjs/resources/video-type/types/video-type-details.d.ts +0 -7
- package/dist/cjs/resources/video-type/types/video-type-details.js +0 -3
- package/dist/cjs/resources/video-type/types/video-type-details.js.map +0 -1
- package/dist/cjs/resources/video-type/types/video-type-list-item.d.ts +0 -7
- package/dist/cjs/resources/video-type/types/video-type-list-item.js +0 -3
- package/dist/cjs/resources/video-type/types/video-type-list-item.js.map +0 -1
- package/dist/cjs/resources/video-type/video-type.d.ts +0 -6
- package/dist/cjs/resources/video-type/video-type.js +0 -13
- package/dist/cjs/resources/video-type/video-type.js.map +0 -1
- package/dist/cjs/resources/volume/index.d.ts +0 -1
- package/dist/cjs/resources/volume/index.js +0 -18
- package/dist/cjs/resources/volume/index.js.map +0 -1
- package/dist/cjs/resources/volume/types/index.d.ts +0 -2
- package/dist/cjs/resources/volume/types/index.js +0 -19
- package/dist/cjs/resources/volume/types/index.js.map +0 -1
- package/dist/cjs/resources/volume/types/volume-details.d.ts +0 -23
- package/dist/cjs/resources/volume/types/volume-details.js +0 -3
- package/dist/cjs/resources/volume/types/volume-details.js.map +0 -1
- package/dist/cjs/resources/volume/types/volume-list-item.d.ts +0 -18
- package/dist/cjs/resources/volume/types/volume-list-item.js +0 -3
- package/dist/cjs/resources/volume/types/volume-list-item.js.map +0 -1
- package/dist/cjs/resources/volume/volume.d.ts +0 -6
- package/dist/cjs/resources/volume/volume.js +0 -13
- package/dist/cjs/resources/volume/volume.js.map +0 -1
- package/dist/cjs/types/apply-override.js +0 -3
- package/dist/cjs/types/apply-override.js.map +0 -1
- package/dist/cjs/types/http-client.d.ts +0 -4
- package/dist/cjs/types/http-client.js +0 -3
- package/dist/cjs/types/http-client.js.map +0 -1
- package/dist/cjs/types/index.d.ts +0 -7
- package/dist/cjs/types/index.js +0 -24
- package/dist/cjs/types/index.js.map +0 -1
- package/dist/cjs/types/iso-date.js +0 -3
- package/dist/cjs/types/iso-date.js.map +0 -1
- package/dist/cjs/types/pick-filters.js +0 -3
- package/dist/cjs/types/pick-filters.js.map +0 -1
- package/dist/cjs/types/request.d.ts +0 -14
- package/dist/cjs/types/request.js +0 -3
- package/dist/cjs/types/request.js.map +0 -1
- package/dist/cjs/types/response.d.ts +0 -10
- package/dist/cjs/types/response.js +0 -3
- package/dist/cjs/types/response.js.map +0 -1
- package/dist/cjs/types/url-builder.d.ts +0 -6
- package/dist/cjs/types/url-builder.js +0 -3
- package/dist/cjs/types/url-builder.js.map +0 -1
- package/dist/cjs/types/valueof.js +0 -3
- package/dist/cjs/types/valueof.js.map +0 -1
- package/dist/cjs/utils/case-converter.js +0 -34
- package/dist/cjs/utils/case-converter.js.map +0 -1
- package/dist/cjs/utils/index.d.ts +0 -2
- package/dist/cjs/utils/index.js +0 -19
- package/dist/cjs/utils/index.js.map +0 -1
- package/dist/cjs/utils/is-object.js +0 -8
- package/dist/cjs/utils/is-object.js.map +0 -1
- package/dist/mjs/comic-vine.d.ts +0 -42
- package/dist/mjs/comic-vine.js +0 -107
- package/dist/mjs/comic-vine.js.map +0 -1
- package/dist/mjs/errors/base-error.js +0 -12
- package/dist/mjs/errors/base-error.js.map +0 -1
- package/dist/mjs/errors/custom-error.d.ts +0 -2
- package/dist/mjs/errors/custom-error.js +0 -8
- package/dist/mjs/errors/custom-error.js.map +0 -1
- package/dist/mjs/errors/filter-error.d.ts +0 -4
- package/dist/mjs/errors/filter-error.js +0 -10
- package/dist/mjs/errors/filter-error.js.map +0 -1
- package/dist/mjs/errors/generic-error.d.ts +0 -4
- package/dist/mjs/errors/generic-error.js +0 -10
- package/dist/mjs/errors/generic-error.js.map +0 -1
- package/dist/mjs/errors/generic-request-error.d.ts +0 -7
- package/dist/mjs/errors/generic-request-error.js +0 -15
- package/dist/mjs/errors/generic-request-error.js.map +0 -1
- package/dist/mjs/errors/index.d.ts +0 -10
- package/dist/mjs/errors/index.js +0 -11
- package/dist/mjs/errors/index.js.map +0 -1
- package/dist/mjs/errors/jsonp-callback-missing-error.d.ts +0 -4
- package/dist/mjs/errors/jsonp-callback-missing-error.js +0 -10
- package/dist/mjs/errors/jsonp-callback-missing-error.js.map +0 -1
- package/dist/mjs/errors/object-not-found-error.d.ts +0 -4
- package/dist/mjs/errors/object-not-found-error.js +0 -10
- package/dist/mjs/errors/object-not-found-error.js.map +0 -1
- package/dist/mjs/errors/options-validation-error.d.ts +0 -4
- package/dist/mjs/errors/options-validation-error.js +0 -10
- package/dist/mjs/errors/options-validation-error.js.map +0 -1
- package/dist/mjs/errors/subscriber-only-error.d.ts +0 -4
- package/dist/mjs/errors/subscriber-only-error.js +0 -10
- package/dist/mjs/errors/subscriber-only-error.js.map +0 -1
- package/dist/mjs/errors/unauthorized-error.d.ts +0 -4
- package/dist/mjs/errors/unauthorized-error.js +0 -10
- package/dist/mjs/errors/unauthorized-error.js.map +0 -1
- package/dist/mjs/errors/url-format-error.d.ts +0 -4
- package/dist/mjs/errors/url-format-error.js +0 -10
- package/dist/mjs/errors/url-format-error.js.map +0 -1
- package/dist/mjs/http-client/http-client-factory.d.ts +0 -6
- package/dist/mjs/http-client/http-client-factory.js +0 -11
- package/dist/mjs/http-client/http-client-factory.js.map +0 -1
- package/dist/mjs/http-client/http-client.d.ts +0 -8
- package/dist/mjs/http-client/http-client.js +0 -51
- package/dist/mjs/http-client/http-client.js.map +0 -1
- package/dist/mjs/http-client/index.d.ts +0 -1
- package/dist/mjs/http-client/index.js +0 -2
- package/dist/mjs/http-client/index.js.map +0 -1
- package/dist/mjs/http-client/status-code.js +0 -11
- package/dist/mjs/http-client/status-code.js.map +0 -1
- package/dist/mjs/http-client/url-builder.d.ts +0 -18
- package/dist/mjs/http-client/url-builder.js +0 -88
- package/dist/mjs/http-client/url-builder.js.map +0 -1
- package/dist/mjs/index.d.ts +0 -2
- package/dist/mjs/index.js +0 -3
- package/dist/mjs/index.js.map +0 -1
- package/dist/mjs/options/index.d.ts +0 -16
- package/dist/mjs/options/index.js +0 -22
- package/dist/mjs/options/index.js.map +0 -1
- package/dist/mjs/package.json +0 -3
- package/dist/mjs/resources/base-resource.d.ts +0 -19
- package/dist/mjs/resources/base-resource.js +0 -55
- package/dist/mjs/resources/base-resource.js.map +0 -1
- package/dist/mjs/resources/character/character.d.ts +0 -6
- package/dist/mjs/resources/character/character.js +0 -6
- package/dist/mjs/resources/character/character.js.map +0 -1
- package/dist/mjs/resources/character/index.d.ts +0 -1
- package/dist/mjs/resources/character/index.js +0 -2
- package/dist/mjs/resources/character/index.js.map +0 -1
- package/dist/mjs/resources/character/types/character-details.d.ts +0 -32
- package/dist/mjs/resources/character/types/character-details.js +0 -2
- package/dist/mjs/resources/character/types/character-details.js.map +0 -1
- package/dist/mjs/resources/character/types/character-list-item.d.ts +0 -20
- package/dist/mjs/resources/character/types/character-list-item.js +0 -2
- package/dist/mjs/resources/character/types/character-list-item.js.map +0 -1
- package/dist/mjs/resources/character/types/index.d.ts +0 -2
- package/dist/mjs/resources/character/types/index.js +0 -3
- package/dist/mjs/resources/character/types/index.js.map +0 -1
- package/dist/mjs/resources/common-types.js +0 -2
- package/dist/mjs/resources/common-types.js.map +0 -1
- package/dist/mjs/resources/concept/concept.d.ts +0 -6
- package/dist/mjs/resources/concept/concept.js +0 -6
- package/dist/mjs/resources/concept/concept.js.map +0 -1
- package/dist/mjs/resources/concept/index.d.ts +0 -1
- package/dist/mjs/resources/concept/index.js +0 -2
- package/dist/mjs/resources/concept/index.js.map +0 -1
- package/dist/mjs/resources/concept/types/concept-details.d.ts +0 -19
- package/dist/mjs/resources/concept/types/concept-details.js +0 -2
- package/dist/mjs/resources/concept/types/concept-details.js.map +0 -1
- package/dist/mjs/resources/concept/types/concept-list-item.d.ts +0 -16
- package/dist/mjs/resources/concept/types/concept-list-item.js +0 -2
- package/dist/mjs/resources/concept/types/concept-list-item.js.map +0 -1
- package/dist/mjs/resources/concept/types/index.d.ts +0 -2
- package/dist/mjs/resources/concept/types/index.js +0 -3
- package/dist/mjs/resources/concept/types/index.js.map +0 -1
- package/dist/mjs/resources/episode/episode.d.ts +0 -6
- package/dist/mjs/resources/episode/episode.js +0 -6
- package/dist/mjs/resources/episode/episode.js.map +0 -1
- package/dist/mjs/resources/episode/index.d.ts +0 -1
- package/dist/mjs/resources/episode/index.js +0 -2
- package/dist/mjs/resources/episode/index.js.map +0 -1
- package/dist/mjs/resources/episode/types/episode-details.d.ts +0 -30
- package/dist/mjs/resources/episode/types/episode-details.js +0 -2
- package/dist/mjs/resources/episode/types/episode-details.js.map +0 -1
- package/dist/mjs/resources/episode/types/episode-list-item.d.ts +0 -17
- package/dist/mjs/resources/episode/types/episode-list-item.js +0 -2
- package/dist/mjs/resources/episode/types/episode-list-item.js.map +0 -1
- package/dist/mjs/resources/episode/types/index.d.ts +0 -2
- package/dist/mjs/resources/episode/types/index.js +0 -3
- package/dist/mjs/resources/episode/types/index.js.map +0 -1
- package/dist/mjs/resources/index.d.ts +0 -3
- package/dist/mjs/resources/index.js +0 -4
- package/dist/mjs/resources/index.js.map +0 -1
- package/dist/mjs/resources/issue/index.d.ts +0 -1
- package/dist/mjs/resources/issue/index.js +0 -2
- package/dist/mjs/resources/issue/index.js.map +0 -1
- package/dist/mjs/resources/issue/issue.d.ts +0 -6
- package/dist/mjs/resources/issue/issue.js +0 -6
- package/dist/mjs/resources/issue/issue.js.map +0 -1
- package/dist/mjs/resources/issue/types/index.d.ts +0 -2
- package/dist/mjs/resources/issue/types/index.js +0 -3
- package/dist/mjs/resources/issue/types/index.js.map +0 -1
- package/dist/mjs/resources/issue/types/issue-details.d.ts +0 -34
- package/dist/mjs/resources/issue/types/issue-details.js +0 -2
- package/dist/mjs/resources/issue/types/issue-details.js.map +0 -1
- package/dist/mjs/resources/issue/types/issue-list-item.d.ts +0 -19
- package/dist/mjs/resources/issue/types/issue-list-item.js +0 -2
- package/dist/mjs/resources/issue/types/issue-list-item.js.map +0 -1
- package/dist/mjs/resources/location/index.d.ts +0 -1
- package/dist/mjs/resources/location/index.js +0 -2
- package/dist/mjs/resources/location/index.js.map +0 -1
- package/dist/mjs/resources/location/location.d.ts +0 -6
- package/dist/mjs/resources/location/location.js +0 -6
- package/dist/mjs/resources/location/location.js.map +0 -1
- package/dist/mjs/resources/location/types/index.d.ts +0 -2
- package/dist/mjs/resources/location/types/index.js +0 -3
- package/dist/mjs/resources/location/types/index.js.map +0 -1
- package/dist/mjs/resources/location/types/location-details.d.ts +0 -20
- package/dist/mjs/resources/location/types/location-details.js +0 -2
- package/dist/mjs/resources/location/types/location-details.js.map +0 -1
- package/dist/mjs/resources/location/types/location-list-item.d.ts +0 -16
- package/dist/mjs/resources/location/types/location-list-item.js +0 -2
- package/dist/mjs/resources/location/types/location-list-item.js.map +0 -1
- package/dist/mjs/resources/movie/index.d.ts +0 -1
- package/dist/mjs/resources/movie/index.js +0 -2
- package/dist/mjs/resources/movie/index.js.map +0 -1
- package/dist/mjs/resources/movie/movie.d.ts +0 -6
- package/dist/mjs/resources/movie/movie.js +0 -6
- package/dist/mjs/resources/movie/movie.js.map +0 -1
- package/dist/mjs/resources/movie/types/index.d.ts +0 -2
- package/dist/mjs/resources/movie/types/index.js +0 -3
- package/dist/mjs/resources/movie/types/index.js.map +0 -1
- package/dist/mjs/resources/movie/types/movie-details.d.ts +0 -28
- package/dist/mjs/resources/movie/types/movie-details.js +0 -2
- package/dist/mjs/resources/movie/types/movie-details.js.map +0 -1
- package/dist/mjs/resources/movie/types/movie-list-item.d.ts +0 -23
- package/dist/mjs/resources/movie/types/movie-list-item.js +0 -2
- package/dist/mjs/resources/movie/types/movie-list-item.js.map +0 -1
- package/dist/mjs/resources/origin/index.d.ts +0 -1
- package/dist/mjs/resources/origin/index.js +0 -2
- package/dist/mjs/resources/origin/index.js.map +0 -1
- package/dist/mjs/resources/origin/origin.d.ts +0 -6
- package/dist/mjs/resources/origin/origin.js +0 -6
- package/dist/mjs/resources/origin/origin.js.map +0 -1
- package/dist/mjs/resources/origin/types/index.d.ts +0 -2
- package/dist/mjs/resources/origin/types/index.js +0 -3
- package/dist/mjs/resources/origin/types/index.js.map +0 -1
- package/dist/mjs/resources/origin/types/origin-details.d.ts +0 -10
- package/dist/mjs/resources/origin/types/origin-details.js +0 -2
- package/dist/mjs/resources/origin/types/origin-details.js.map +0 -1
- package/dist/mjs/resources/origin/types/origin-list-item.d.ts +0 -6
- package/dist/mjs/resources/origin/types/origin-list-item.js +0 -2
- package/dist/mjs/resources/origin/types/origin-list-item.js.map +0 -1
- package/dist/mjs/resources/person/index.d.ts +0 -1
- package/dist/mjs/resources/person/index.js +0 -2
- package/dist/mjs/resources/person/index.js.map +0 -1
- package/dist/mjs/resources/person/person.d.ts +0 -6
- package/dist/mjs/resources/person/person.js +0 -6
- package/dist/mjs/resources/person/person.js.map +0 -1
- package/dist/mjs/resources/person/types/index.d.ts +0 -2
- package/dist/mjs/resources/person/types/index.js +0 -3
- package/dist/mjs/resources/person/types/index.js.map +0 -1
- package/dist/mjs/resources/person/types/person-details.d.ts +0 -25
- package/dist/mjs/resources/person/types/person-details.js +0 -2
- package/dist/mjs/resources/person/types/person-details.js.map +0 -1
- package/dist/mjs/resources/person/types/person-list-item.d.ts +0 -26
- package/dist/mjs/resources/person/types/person-list-item.js +0 -5
- package/dist/mjs/resources/person/types/person-list-item.js.map +0 -1
- package/dist/mjs/resources/power/index.d.ts +0 -1
- package/dist/mjs/resources/power/index.js +0 -2
- package/dist/mjs/resources/power/index.js.map +0 -1
- package/dist/mjs/resources/power/power.d.ts +0 -6
- package/dist/mjs/resources/power/power.js +0 -6
- package/dist/mjs/resources/power/power.js.map +0 -1
- package/dist/mjs/resources/power/types/index.d.ts +0 -2
- package/dist/mjs/resources/power/types/index.js +0 -3
- package/dist/mjs/resources/power/types/index.js.map +0 -1
- package/dist/mjs/resources/power/types/power-details.d.ts +0 -12
- package/dist/mjs/resources/power/types/power-details.js +0 -2
- package/dist/mjs/resources/power/types/power-details.js.map +0 -1
- package/dist/mjs/resources/power/types/power-list-item.d.ts +0 -10
- package/dist/mjs/resources/power/types/power-list-item.js +0 -2
- package/dist/mjs/resources/power/types/power-list-item.js.map +0 -1
- package/dist/mjs/resources/promo/index.d.ts +0 -1
- package/dist/mjs/resources/promo/index.js +0 -2
- package/dist/mjs/resources/promo/index.js.map +0 -1
- package/dist/mjs/resources/promo/promo.d.ts +0 -6
- package/dist/mjs/resources/promo/promo.js +0 -6
- package/dist/mjs/resources/promo/promo.js.map +0 -1
- package/dist/mjs/resources/promo/types/index.d.ts +0 -2
- package/dist/mjs/resources/promo/types/index.js +0 -3
- package/dist/mjs/resources/promo/types/index.js.map +0 -1
- package/dist/mjs/resources/promo/types/promo-details.d.ts +0 -13
- package/dist/mjs/resources/promo/types/promo-details.js +0 -2
- package/dist/mjs/resources/promo/types/promo-details.js.map +0 -1
- package/dist/mjs/resources/promo/types/promo-list-item.d.ts +0 -13
- package/dist/mjs/resources/promo/types/promo-list-item.js +0 -2
- package/dist/mjs/resources/promo/types/promo-list-item.js.map +0 -1
- package/dist/mjs/resources/publisher/index.d.ts +0 -1
- package/dist/mjs/resources/publisher/index.js +0 -2
- package/dist/mjs/resources/publisher/index.js.map +0 -1
- package/dist/mjs/resources/publisher/publisher.d.ts +0 -6
- package/dist/mjs/resources/publisher/publisher.js +0 -6
- package/dist/mjs/resources/publisher/publisher.js.map +0 -1
- package/dist/mjs/resources/publisher/types/index.d.ts +0 -2
- package/dist/mjs/resources/publisher/types/index.js +0 -3
- package/dist/mjs/resources/publisher/types/index.js.map +0 -1
- package/dist/mjs/resources/publisher/types/publisher-details.d.ts +0 -20
- package/dist/mjs/resources/publisher/types/publisher-details.js +0 -2
- package/dist/mjs/resources/publisher/types/publisher-details.js.map +0 -1
- package/dist/mjs/resources/publisher/types/publisher-list-item.d.ts +0 -22
- package/dist/mjs/resources/publisher/types/publisher-list-item.js +0 -8
- package/dist/mjs/resources/publisher/types/publisher-list-item.js.map +0 -1
- package/dist/mjs/resources/resource-factory.d.ts +0 -8
- package/dist/mjs/resources/resource-factory.js +0 -17
- package/dist/mjs/resources/resource-factory.js.map +0 -1
- package/dist/mjs/resources/resource-list.d.ts +0 -19
- package/dist/mjs/resources/resource-list.js +0 -20
- package/dist/mjs/resources/resource-list.js.map +0 -1
- package/dist/mjs/resources/resource-map.d.ts +0 -7
- package/dist/mjs/resources/resource-map.js +0 -36
- package/dist/mjs/resources/resource-map.js.map +0 -1
- package/dist/mjs/resources/resource-type.js +0 -23
- package/dist/mjs/resources/resource-type.js.map +0 -1
- package/dist/mjs/resources/series/index.d.ts +0 -1
- package/dist/mjs/resources/series/index.js +0 -2
- package/dist/mjs/resources/series/index.js.map +0 -1
- package/dist/mjs/resources/series/series.d.ts +0 -6
- package/dist/mjs/resources/series/series.js +0 -6
- package/dist/mjs/resources/series/series.js.map +0 -1
- package/dist/mjs/resources/series/types/index.d.ts +0 -2
- package/dist/mjs/resources/series/types/index.js +0 -3
- package/dist/mjs/resources/series/types/index.js.map +0 -1
- package/dist/mjs/resources/series/types/series-details.d.ts +0 -20
- package/dist/mjs/resources/series/types/series-details.js +0 -2
- package/dist/mjs/resources/series/types/series-details.js.map +0 -1
- package/dist/mjs/resources/series/types/series-list-item.d.ts +0 -18
- package/dist/mjs/resources/series/types/series-list-item.js +0 -2
- package/dist/mjs/resources/series/types/series-list-item.js.map +0 -1
- package/dist/mjs/resources/story-arc/index.d.ts +0 -1
- package/dist/mjs/resources/story-arc/index.js +0 -2
- package/dist/mjs/resources/story-arc/index.js.map +0 -1
- package/dist/mjs/resources/story-arc/story-arc.d.ts +0 -6
- package/dist/mjs/resources/story-arc/story-arc.js +0 -6
- package/dist/mjs/resources/story-arc/story-arc.js.map +0 -1
- package/dist/mjs/resources/story-arc/types/index.d.ts +0 -2
- package/dist/mjs/resources/story-arc/types/index.js +0 -3
- package/dist/mjs/resources/story-arc/types/index.js.map +0 -1
- package/dist/mjs/resources/story-arc/types/story-arc-details.d.ts +0 -20
- package/dist/mjs/resources/story-arc/types/story-arc-details.js +0 -2
- package/dist/mjs/resources/story-arc/types/story-arc-details.js.map +0 -1
- package/dist/mjs/resources/story-arc/types/story-arc-list-item.d.ts +0 -17
- package/dist/mjs/resources/story-arc/types/story-arc-list-item.js +0 -2
- package/dist/mjs/resources/story-arc/types/story-arc-list-item.js.map +0 -1
- package/dist/mjs/resources/team/index.d.ts +0 -1
- package/dist/mjs/resources/team/index.js +0 -2
- package/dist/mjs/resources/team/index.js.map +0 -1
- package/dist/mjs/resources/team/team.d.ts +0 -6
- package/dist/mjs/resources/team/team.js +0 -6
- package/dist/mjs/resources/team/team.js.map +0 -1
- package/dist/mjs/resources/team/types/index.d.ts +0 -2
- package/dist/mjs/resources/team/types/index.js +0 -3
- package/dist/mjs/resources/team/types/index.js.map +0 -1
- package/dist/mjs/resources/team/types/team-details.d.ts +0 -26
- package/dist/mjs/resources/team/types/team-details.js +0 -2
- package/dist/mjs/resources/team/types/team-details.js.map +0 -1
- package/dist/mjs/resources/team/types/team-list-item.d.ts +0 -17
- package/dist/mjs/resources/team/types/team-list-item.js +0 -2
- package/dist/mjs/resources/team/types/team-list-item.js.map +0 -1
- package/dist/mjs/resources/thing/index.d.ts +0 -1
- package/dist/mjs/resources/thing/index.js +0 -2
- package/dist/mjs/resources/thing/index.js.map +0 -1
- package/dist/mjs/resources/thing/thing.d.ts +0 -6
- package/dist/mjs/resources/thing/thing.js +0 -6
- package/dist/mjs/resources/thing/thing.js.map +0 -1
- package/dist/mjs/resources/thing/types/index.d.ts +0 -2
- package/dist/mjs/resources/thing/types/index.js +0 -3
- package/dist/mjs/resources/thing/types/index.js.map +0 -1
- package/dist/mjs/resources/thing/types/thing-details.d.ts +0 -20
- package/dist/mjs/resources/thing/types/thing-details.js +0 -2
- package/dist/mjs/resources/thing/types/thing-details.js.map +0 -1
- package/dist/mjs/resources/thing/types/thing-list-item.d.ts +0 -16
- package/dist/mjs/resources/thing/types/thing-list-item.js +0 -2
- package/dist/mjs/resources/thing/types/thing-list-item.js.map +0 -1
- package/dist/mjs/resources/video/index.d.ts +0 -1
- package/dist/mjs/resources/video/index.js +0 -2
- package/dist/mjs/resources/video/index.js.map +0 -1
- package/dist/mjs/resources/video/types/index.d.ts +0 -2
- package/dist/mjs/resources/video/types/index.js +0 -3
- package/dist/mjs/resources/video/types/index.js.map +0 -1
- package/dist/mjs/resources/video/types/video-details.d.ts +0 -27
- package/dist/mjs/resources/video/types/video-details.js +0 -2
- package/dist/mjs/resources/video/types/video-details.js.map +0 -1
- package/dist/mjs/resources/video/types/video-list-item.d.ts +0 -49
- package/dist/mjs/resources/video/types/video-list-item.js +0 -25
- package/dist/mjs/resources/video/types/video-list-item.js.map +0 -1
- package/dist/mjs/resources/video/video.d.ts +0 -6
- package/dist/mjs/resources/video/video.js +0 -6
- package/dist/mjs/resources/video/video.js.map +0 -1
- package/dist/mjs/resources/video-category/index.d.ts +0 -1
- package/dist/mjs/resources/video-category/index.js +0 -2
- package/dist/mjs/resources/video-category/index.js.map +0 -1
- package/dist/mjs/resources/video-category/types/index.d.ts +0 -2
- package/dist/mjs/resources/video-category/types/index.js +0 -3
- package/dist/mjs/resources/video-category/types/index.js.map +0 -1
- package/dist/mjs/resources/video-category/types/video-category-details.d.ts +0 -9
- package/dist/mjs/resources/video-category/types/video-category-details.js +0 -2
- package/dist/mjs/resources/video-category/types/video-category-details.js.map +0 -1
- package/dist/mjs/resources/video-category/types/video-category-list-item.d.ts +0 -9
- package/dist/mjs/resources/video-category/types/video-category-list-item.js +0 -2
- package/dist/mjs/resources/video-category/types/video-category-list-item.js.map +0 -1
- package/dist/mjs/resources/video-category/video-category.d.ts +0 -6
- package/dist/mjs/resources/video-category/video-category.js +0 -6
- package/dist/mjs/resources/video-category/video-category.js.map +0 -1
- package/dist/mjs/resources/video-type/index.d.ts +0 -1
- package/dist/mjs/resources/video-type/index.js +0 -2
- package/dist/mjs/resources/video-type/index.js.map +0 -1
- package/dist/mjs/resources/video-type/types/index.d.ts +0 -2
- package/dist/mjs/resources/video-type/types/index.js +0 -3
- package/dist/mjs/resources/video-type/types/index.js.map +0 -1
- package/dist/mjs/resources/video-type/types/video-type-details.d.ts +0 -7
- package/dist/mjs/resources/video-type/types/video-type-details.js +0 -2
- package/dist/mjs/resources/video-type/types/video-type-details.js.map +0 -1
- package/dist/mjs/resources/video-type/types/video-type-list-item.d.ts +0 -7
- package/dist/mjs/resources/video-type/types/video-type-list-item.js +0 -2
- package/dist/mjs/resources/video-type/types/video-type-list-item.js.map +0 -1
- package/dist/mjs/resources/video-type/video-type.d.ts +0 -6
- package/dist/mjs/resources/video-type/video-type.js +0 -6
- package/dist/mjs/resources/video-type/video-type.js.map +0 -1
- package/dist/mjs/resources/volume/index.d.ts +0 -1
- package/dist/mjs/resources/volume/index.js +0 -2
- package/dist/mjs/resources/volume/index.js.map +0 -1
- package/dist/mjs/resources/volume/types/index.d.ts +0 -2
- package/dist/mjs/resources/volume/types/index.js +0 -3
- package/dist/mjs/resources/volume/types/index.js.map +0 -1
- package/dist/mjs/resources/volume/types/volume-details.d.ts +0 -23
- package/dist/mjs/resources/volume/types/volume-details.js +0 -2
- package/dist/mjs/resources/volume/types/volume-details.js.map +0 -1
- package/dist/mjs/resources/volume/types/volume-list-item.d.ts +0 -18
- package/dist/mjs/resources/volume/types/volume-list-item.js +0 -2
- package/dist/mjs/resources/volume/types/volume-list-item.js.map +0 -1
- package/dist/mjs/resources/volume/volume.d.ts +0 -6
- package/dist/mjs/resources/volume/volume.js +0 -6
- package/dist/mjs/resources/volume/volume.js.map +0 -1
- package/dist/mjs/types/apply-override.js +0 -2
- package/dist/mjs/types/apply-override.js.map +0 -1
- package/dist/mjs/types/http-client.d.ts +0 -4
- package/dist/mjs/types/http-client.js +0 -2
- package/dist/mjs/types/http-client.js.map +0 -1
- package/dist/mjs/types/index.d.ts +0 -7
- package/dist/mjs/types/index.js +0 -8
- package/dist/mjs/types/index.js.map +0 -1
- package/dist/mjs/types/iso-date.js +0 -2
- package/dist/mjs/types/iso-date.js.map +0 -1
- package/dist/mjs/types/pick-filters.js +0 -2
- package/dist/mjs/types/pick-filters.js.map +0 -1
- package/dist/mjs/types/request.d.ts +0 -14
- package/dist/mjs/types/request.js +0 -2
- package/dist/mjs/types/request.js.map +0 -1
- package/dist/mjs/types/response.d.ts +0 -10
- package/dist/mjs/types/response.js +0 -2
- package/dist/mjs/types/response.js.map +0 -1
- package/dist/mjs/types/url-builder.d.ts +0 -6
- package/dist/mjs/types/url-builder.js +0 -2
- package/dist/mjs/types/url-builder.js.map +0 -1
- package/dist/mjs/types/valueof.js +0 -2
- package/dist/mjs/types/valueof.js.map +0 -1
- package/dist/mjs/utils/case-converter.js +0 -27
- package/dist/mjs/utils/case-converter.js.map +0 -1
- package/dist/mjs/utils/index.d.ts +0 -2
- package/dist/mjs/utils/index.js +0 -3
- package/dist/mjs/utils/index.js.map +0 -1
- package/dist/mjs/utils/is-object.js +0 -4
- package/dist/mjs/utils/is-object.js.map +0 -1
- /package/{dist → lib}/cjs/errors/base-error.d.ts +0 -0
- /package/{dist → lib}/cjs/http-client/status-code.d.ts +0 -0
- /package/{dist → lib}/cjs/resources/common-types.d.ts +0 -0
- /package/{dist → lib}/cjs/resources/resource-type.d.ts +0 -0
- /package/{dist → lib}/cjs/types/apply-override.d.ts +0 -0
- /package/{dist → lib}/cjs/types/iso-date.d.ts +0 -0
- /package/{dist → lib}/cjs/types/pick-filters.d.ts +0 -0
- /package/{dist → lib}/cjs/types/valueof.d.ts +0 -0
- /package/{dist → lib}/cjs/utils/case-converter.d.ts +0 -0
- /package/{dist → lib}/cjs/utils/is-object.d.ts +0 -0
- /package/{dist/mjs → lib/esm}/errors/base-error.d.ts +0 -0
- /package/{dist/mjs → lib/esm}/http-client/status-code.d.ts +0 -0
- /package/{dist/mjs → lib/esm}/resources/common-types.d.ts +0 -0
- /package/{dist/mjs → lib/esm}/resources/resource-type.d.ts +0 -0
- /package/{dist/mjs → lib/esm}/types/apply-override.d.ts +0 -0
- /package/{dist/mjs → lib/esm}/types/iso-date.d.ts +0 -0
- /package/{dist/mjs → lib/esm}/types/pick-filters.d.ts +0 -0
- /package/{dist/mjs → lib/esm}/types/valueof.d.ts +0 -0
- /package/{dist/mjs → lib/esm}/utils/case-converter.d.ts +0 -0
- /package/{dist/mjs → lib/esm}/utils/is-object.d.ts +0 -0
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { SiteResource, Image } from '../../common-types.js';
|
|
2
|
+
export interface EpisodeDetails {
|
|
3
|
+
/**
|
|
4
|
+
* The air date of the episode.
|
|
5
|
+
*/
|
|
6
|
+
airDate: Date | null;
|
|
7
|
+
/**
|
|
8
|
+
* List of aliases the episode is known by. A \n (newline) seperates each alias.
|
|
9
|
+
*/
|
|
10
|
+
aliases: null | string;
|
|
11
|
+
/**
|
|
12
|
+
* URL pointing to the episode detail resource.
|
|
13
|
+
*/
|
|
14
|
+
apiDetailUrl: string;
|
|
15
|
+
characterCredits: Array<SiteResource>;
|
|
16
|
+
characterDiedIn: Array<unknown>;
|
|
17
|
+
conceptCredits: Array<SiteResource>;
|
|
18
|
+
/**
|
|
19
|
+
* Date the episode was added to Comic Vine.
|
|
20
|
+
*/
|
|
21
|
+
dateAdded: Date;
|
|
22
|
+
/**
|
|
23
|
+
* Date the episode was last updated on Comic Vine.
|
|
24
|
+
*/
|
|
25
|
+
dateLastUpdated: Date;
|
|
26
|
+
/**
|
|
27
|
+
* Brief summary of the episode.
|
|
28
|
+
*/
|
|
29
|
+
deck: null | string;
|
|
30
|
+
/**
|
|
31
|
+
* Description of the episode.
|
|
32
|
+
*/
|
|
33
|
+
description: null | string;
|
|
34
|
+
/**
|
|
35
|
+
* The number assigned to the episode within a series.
|
|
36
|
+
*/
|
|
37
|
+
episodeNumber: string;
|
|
38
|
+
/**
|
|
39
|
+
* A list of characters in which this episode is the first appearance of the character.
|
|
40
|
+
*/
|
|
41
|
+
firstAppearanceCharacters: null | unknown;
|
|
42
|
+
/**
|
|
43
|
+
* A list of concepts in which this episode is the first appearance of the concept.
|
|
44
|
+
*/
|
|
45
|
+
firstAppearanceConcepts: null | unknown;
|
|
46
|
+
/**
|
|
47
|
+
* A list of locations in which this episode is the first appearance of the location.
|
|
48
|
+
*/
|
|
49
|
+
firstAppearanceLocations: null | unknown;
|
|
50
|
+
/**
|
|
51
|
+
* A list of things in which this episode is the first appearance of the object.
|
|
52
|
+
*/
|
|
53
|
+
firstAppearanceObjects: null | unknown;
|
|
54
|
+
/**
|
|
55
|
+
* A list of storyarcs in which this episode is the first appearance of the story arc.
|
|
56
|
+
*/
|
|
57
|
+
firstAppearanceStoryarcs: null | unknown;
|
|
58
|
+
/**
|
|
59
|
+
* A list of teams in which this episode is the first appearance of the team.
|
|
60
|
+
*/
|
|
61
|
+
firstAppearanceTeams: null | unknown;
|
|
62
|
+
hasStaffReview: null | false | SiteResource;
|
|
63
|
+
/**
|
|
64
|
+
* Unique ID of the episode.
|
|
65
|
+
*/
|
|
66
|
+
id: number;
|
|
67
|
+
/**
|
|
68
|
+
* Main image of the episode.
|
|
69
|
+
*/
|
|
70
|
+
image: Image;
|
|
71
|
+
locationCredits: Array<SiteResource>;
|
|
72
|
+
/**
|
|
73
|
+
* Name of the episode.
|
|
74
|
+
*/
|
|
75
|
+
name: string;
|
|
76
|
+
objectCredits: Array<SiteResource>;
|
|
77
|
+
/**
|
|
78
|
+
* The series the episode belongs to.
|
|
79
|
+
*/
|
|
80
|
+
series: SiteResource;
|
|
81
|
+
/**
|
|
82
|
+
* URL pointing to the episode on Giant Bomb.
|
|
83
|
+
*/
|
|
84
|
+
siteDetailUrl: string;
|
|
85
|
+
storyArcCredits: Array<SiteResource>;
|
|
86
|
+
teamCredits: Array<SiteResource>;
|
|
87
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXBpc29kZS1kZXRhaWxzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3Jlc291cmNlcy9lcGlzb2RlL3R5cGVzL2VwaXNvZGUtZGV0YWlscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2l0ZVJlc291cmNlLCBJbWFnZSB9IGZyb20gJy4uLy4uL2NvbW1vbi10eXBlcy5qcyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgRXBpc29kZURldGFpbHMge1xuICAvKipcbiAgICogVGhlIGFpciBkYXRlIG9mIHRoZSBlcGlzb2RlLlxuICAgKi9cbiAgYWlyRGF0ZTogRGF0ZSB8IG51bGw7XG4gIC8qKlxuICAgKiBMaXN0IG9mIGFsaWFzZXMgdGhlIGVwaXNvZGUgaXMga25vd24gYnkuIEEgXFxuIChuZXdsaW5lKSBzZXBlcmF0ZXMgZWFjaCBhbGlhcy5cbiAgICovXG4gIGFsaWFzZXM6IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBVUkwgcG9pbnRpbmcgdG8gdGhlIGVwaXNvZGUgZGV0YWlsIHJlc291cmNlLlxuICAgKi9cbiAgYXBpRGV0YWlsVXJsOiBzdHJpbmc7XG4gIGNoYXJhY3RlckNyZWRpdHM6IEFycmF5PFNpdGVSZXNvdXJjZT47XG4gIGNoYXJhY3RlckRpZWRJbjogQXJyYXk8dW5rbm93bj47XG4gIGNvbmNlcHRDcmVkaXRzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogRGF0ZSB0aGUgZXBpc29kZSB3YXMgYWRkZWQgdG8gQ29taWMgVmluZS5cbiAgICovXG4gIGRhdGVBZGRlZDogRGF0ZTtcbiAgLyoqXG4gICAqIERhdGUgdGhlIGVwaXNvZGUgd2FzIGxhc3QgdXBkYXRlZCBvbiBDb21pYyBWaW5lLlxuICAgKi9cbiAgZGF0ZUxhc3RVcGRhdGVkOiBEYXRlO1xuICAvKipcbiAgICogQnJpZWYgc3VtbWFyeSBvZiB0aGUgZXBpc29kZS5cbiAgICovXG4gIGRlY2s6IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBEZXNjcmlwdGlvbiBvZiB0aGUgZXBpc29kZS5cbiAgICovXG4gIGRlc2NyaXB0aW9uOiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogVGhlIG51bWJlciBhc3NpZ25lZCB0byB0aGUgZXBpc29kZSB3aXRoaW4gYSBzZXJpZXMuXG4gICAqL1xuICBlcGlzb2RlTnVtYmVyOiBzdHJpbmc7XG4gIC8qKlxuICAgKiBBIGxpc3Qgb2YgY2hhcmFjdGVycyBpbiB3aGljaCB0aGlzIGVwaXNvZGUgaXMgdGhlIGZpcnN0IGFwcGVhcmFuY2Ugb2YgdGhlIGNoYXJhY3Rlci5cbiAgICovXG4gIGZpcnN0QXBwZWFyYW5jZUNoYXJhY3RlcnM6IG51bGwgfCB1bmtub3duO1xuICAvKipcbiAgICogQSBsaXN0IG9mIGNvbmNlcHRzIGluIHdoaWNoIHRoaXMgZXBpc29kZSBpcyB0aGUgZmlyc3QgYXBwZWFyYW5jZSBvZiB0aGUgY29uY2VwdC5cbiAgICovXG4gIGZpcnN0QXBwZWFyYW5jZUNvbmNlcHRzOiBudWxsIHwgdW5rbm93bjtcbiAgLyoqXG4gICAqIEEgbGlzdCBvZiBsb2NhdGlvbnMgaW4gd2hpY2ggdGhpcyBlcGlzb2RlIGlzIHRoZSBmaXJzdCBhcHBlYXJhbmNlIG9mIHRoZSBsb2NhdGlvbi5cbiAgICovXG4gIGZpcnN0QXBwZWFyYW5jZUxvY2F0aW9uczogbnVsbCB8IHVua25vd247XG4gIC8qKlxuICAgKiBBIGxpc3Qgb2YgdGhpbmdzIGluIHdoaWNoIHRoaXMgZXBpc29kZSBpcyB0aGUgZmlyc3QgYXBwZWFyYW5jZSBvZiB0aGUgb2JqZWN0LlxuICAgKi9cbiAgZmlyc3RBcHBlYXJhbmNlT2JqZWN0czogbnVsbCB8IHVua25vd247XG4gIC8qKlxuICAgKiBBIGxpc3Qgb2Ygc3RvcnlhcmNzIGluIHdoaWNoIHRoaXMgZXBpc29kZSBpcyB0aGUgZmlyc3QgYXBwZWFyYW5jZSBvZiB0aGUgc3RvcnkgYXJjLlxuICAgKi9cbiAgZmlyc3RBcHBlYXJhbmNlU3RvcnlhcmNzOiBudWxsIHwgdW5rbm93bjtcbiAgLyoqXG4gICAqIEEgbGlzdCBvZiB0ZWFtcyBpbiB3aGljaCB0aGlzIGVwaXNvZGUgaXMgdGhlIGZpcnN0IGFwcGVhcmFuY2Ugb2YgdGhlIHRlYW0uXG4gICAqL1xuICBmaXJzdEFwcGVhcmFuY2VUZWFtczogbnVsbCB8IHVua25vd247XG4gIGhhc1N0YWZmUmV2aWV3OiBudWxsIHwgZmFsc2UgfCBTaXRlUmVzb3VyY2U7XG4gIC8qKlxuICAgKiBVbmlxdWUgSUQgb2YgdGhlIGVwaXNvZGUuXG4gICAqL1xuICBpZDogbnVtYmVyO1xuICAvKipcbiAgICogTWFpbiBpbWFnZSBvZiB0aGUgZXBpc29kZS5cbiAgICovXG4gIGltYWdlOiBJbWFnZTtcbiAgbG9jYXRpb25DcmVkaXRzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogTmFtZSBvZiB0aGUgZXBpc29kZS5cbiAgICovXG4gIG5hbWU6IHN0cmluZztcbiAgb2JqZWN0Q3JlZGl0czogQXJyYXk8U2l0ZVJlc291cmNlPjtcbiAgLyoqXG4gICAqIFRoZSBzZXJpZXMgdGhlIGVwaXNvZGUgYmVsb25ncyB0by5cbiAgICovXG4gIHNlcmllczogU2l0ZVJlc291cmNlO1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBlcGlzb2RlIG9uIEdpYW50IEJvbWIuXG4gICAqL1xuICBzaXRlRGV0YWlsVXJsOiBzdHJpbmc7XG4gIHN0b3J5QXJjQ3JlZGl0czogQXJyYXk8U2l0ZVJlc291cmNlPjtcbiAgdGVhbUNyZWRpdHM6IEFycmF5PFNpdGVSZXNvdXJjZT47XG59XG4iXX0=
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { SiteResource, Image } from '../../common-types.js';
|
|
2
|
+
export interface EpisodeListItem {
|
|
3
|
+
/**
|
|
4
|
+
* The air date of the episode.
|
|
5
|
+
*/
|
|
6
|
+
airDate: Date | null;
|
|
7
|
+
/**
|
|
8
|
+
* List of aliases the episode is known by. A \n (newline) seperates each alias.
|
|
9
|
+
*/
|
|
10
|
+
aliases: null | string;
|
|
11
|
+
/**
|
|
12
|
+
* URL pointing to the episode detail resource.
|
|
13
|
+
*/
|
|
14
|
+
apiDetailUrl: string;
|
|
15
|
+
/**
|
|
16
|
+
* Date the episode was added to Comic Vine.
|
|
17
|
+
*/
|
|
18
|
+
dateAdded: Date;
|
|
19
|
+
/**
|
|
20
|
+
* Date the episode was last updated on Comic Vine.
|
|
21
|
+
*/
|
|
22
|
+
dateLastUpdated: Date;
|
|
23
|
+
/**
|
|
24
|
+
* Brief summary of the episode.
|
|
25
|
+
*/
|
|
26
|
+
deck: null | string;
|
|
27
|
+
/**
|
|
28
|
+
* Description of the episode.
|
|
29
|
+
*/
|
|
30
|
+
description: null | string;
|
|
31
|
+
episodeNumber: string;
|
|
32
|
+
hasStaffReview: null | false | SiteResource;
|
|
33
|
+
/**
|
|
34
|
+
* Unique ID of the episode.
|
|
35
|
+
*/
|
|
36
|
+
id: number;
|
|
37
|
+
/**
|
|
38
|
+
* Main image of the episode.
|
|
39
|
+
*/
|
|
40
|
+
image: Image;
|
|
41
|
+
/**
|
|
42
|
+
* Name of the episode.
|
|
43
|
+
*/
|
|
44
|
+
name: string;
|
|
45
|
+
/**
|
|
46
|
+
* The series the episode belongs to.
|
|
47
|
+
*/
|
|
48
|
+
series: SiteResource;
|
|
49
|
+
/**
|
|
50
|
+
* URL pointing to the episode on Giant Bomb.
|
|
51
|
+
*/
|
|
52
|
+
siteDetailUrl: string;
|
|
53
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXBpc29kZS1saXN0LWl0ZW0uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL2VwaXNvZGUvdHlwZXMvZXBpc29kZS1saXN0LWl0ZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNpdGVSZXNvdXJjZSwgSW1hZ2UgfSBmcm9tICcuLi8uLi9jb21tb24tdHlwZXMuanMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIEVwaXNvZGVMaXN0SXRlbSB7XG4gIC8qKlxuICAgKiBUaGUgYWlyIGRhdGUgb2YgdGhlIGVwaXNvZGUuXG4gICAqL1xuICBhaXJEYXRlOiBEYXRlIHwgbnVsbDtcbiAgLyoqXG4gICAqIExpc3Qgb2YgYWxpYXNlcyB0aGUgZXBpc29kZSBpcyBrbm93biBieS4gQSBcXG4gKG5ld2xpbmUpIHNlcGVyYXRlcyBlYWNoIGFsaWFzLlxuICAgKi9cbiAgYWxpYXNlczogbnVsbCB8IHN0cmluZztcbiAgLyoqXG4gICAqIFVSTCBwb2ludGluZyB0byB0aGUgZXBpc29kZSBkZXRhaWwgcmVzb3VyY2UuXG4gICAqL1xuICBhcGlEZXRhaWxVcmw6IHN0cmluZztcbiAgLyoqXG4gICAqIERhdGUgdGhlIGVwaXNvZGUgd2FzIGFkZGVkIHRvIENvbWljIFZpbmUuXG4gICAqL1xuICBkYXRlQWRkZWQ6IERhdGU7XG4gIC8qKlxuICAgKiBEYXRlIHRoZSBlcGlzb2RlIHdhcyBsYXN0IHVwZGF0ZWQgb24gQ29taWMgVmluZS5cbiAgICovXG4gIGRhdGVMYXN0VXBkYXRlZDogRGF0ZTtcbiAgLyoqXG4gICAqIEJyaWVmIHN1bW1hcnkgb2YgdGhlIGVwaXNvZGUuXG4gICAqL1xuICBkZWNrOiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogRGVzY3JpcHRpb24gb2YgdGhlIGVwaXNvZGUuXG4gICAqL1xuICBkZXNjcmlwdGlvbjogbnVsbCB8IHN0cmluZztcbiAgZXBpc29kZU51bWJlcjogc3RyaW5nO1xuICBoYXNTdGFmZlJldmlldzogbnVsbCB8IGZhbHNlIHwgU2l0ZVJlc291cmNlO1xuICAvKipcbiAgICogVW5pcXVlIElEIG9mIHRoZSBlcGlzb2RlLlxuICAgKi9cbiAgaWQ6IG51bWJlcjtcbiAgLyoqXG4gICAqIE1haW4gaW1hZ2Ugb2YgdGhlIGVwaXNvZGUuXG4gICAqL1xuICBpbWFnZTogSW1hZ2U7XG4gIC8qKlxuICAgKiBOYW1lIG9mIHRoZSBlcGlzb2RlLlxuICAgKi9cbiAgbmFtZTogc3RyaW5nO1xuICAvKipcbiAgICogVGhlIHNlcmllcyB0aGUgZXBpc29kZSBiZWxvbmdzIHRvLlxuICAgKi9cbiAgc2VyaWVzOiBTaXRlUmVzb3VyY2U7XG4gIC8qKlxuICAgKiBVUkwgcG9pbnRpbmcgdG8gdGhlIGVwaXNvZGUgb24gR2lhbnQgQm9tYi5cbiAgICovXG4gIHNpdGVEZXRhaWxVcmw6IHN0cmluZztcbn1cbiJdfQ==
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./episode-details.js"), exports);
|
|
18
|
+
__exportStar(require("./episode-list-item.js"), exports);
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL2VwaXNvZGUvdHlwZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLHVEQUFxQztBQUNyQyx5REFBdUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2VwaXNvZGUtZGV0YWlscy5qcyc7XG5leHBvcnQgKiBmcm9tICcuL2VwaXNvZGUtbGlzdC1pdGVtLmpzJztcbiJdfQ==
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./resource-factory.js"), exports);
|
|
18
|
+
__exportStar(require("./resource-map.js"), exports);
|
|
19
|
+
__exportStar(require("./resource-type.js"), exports);
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcmVzb3VyY2VzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSx3REFBc0M7QUFDdEMsb0RBQWtDO0FBQ2xDLHFEQUFtQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcmVzb3VyY2UtZmFjdG9yeS5qcyc7XG5leHBvcnQgKiBmcm9tICcuL3Jlc291cmNlLW1hcC5qcyc7XG5leHBvcnQgKiBmcm9tICcuL3Jlc291cmNlLXR5cGUuanMnO1xuIl19
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './issue.js';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./issue.js"), exports);
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL2lzc3VlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSw2Q0FBMkIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2lzc3VlLmpzJztcbiJdfQ==
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IssueDetails, IssueListItem } from './types/index.js';
|
|
2
|
+
import { BaseResource } from '../base-resource.js';
|
|
3
|
+
import { ResourceType } from '../resource-type.js';
|
|
4
|
+
export declare class Issue extends BaseResource<IssueDetails, IssueListItem> {
|
|
5
|
+
protected resourceType: ResourceType;
|
|
6
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Issue = void 0;
|
|
4
|
+
const base_resource_js_1 = require("../base-resource.js");
|
|
5
|
+
const resource_type_js_1 = require("../resource-type.js");
|
|
6
|
+
class Issue extends base_resource_js_1.BaseResource {
|
|
7
|
+
constructor() {
|
|
8
|
+
super(...arguments);
|
|
9
|
+
this.resourceType = resource_type_js_1.ResourceType.Issue;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.Issue = Issue;
|
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNzdWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL2lzc3VlL2lzc3VlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUNBLDBEQUFtRDtBQUNuRCwwREFBbUQ7QUFFbkQsTUFBYSxLQUFNLFNBQVEsK0JBQXlDO0lBQXBFOztRQUNZLGlCQUFZLEdBQWlCLCtCQUFZLENBQUMsS0FBSyxDQUFDO0lBQzVELENBQUM7Q0FBQTtBQUZELHNCQUVDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSXNzdWVEZXRhaWxzLCBJc3N1ZUxpc3RJdGVtIH0gZnJvbSAnLi90eXBlcy9pbmRleC5qcyc7XG5pbXBvcnQgeyBCYXNlUmVzb3VyY2UgfSBmcm9tICcuLi9iYXNlLXJlc291cmNlLmpzJztcbmltcG9ydCB7IFJlc291cmNlVHlwZSB9IGZyb20gJy4uL3Jlc291cmNlLXR5cGUuanMnO1xuXG5leHBvcnQgY2xhc3MgSXNzdWUgZXh0ZW5kcyBCYXNlUmVzb3VyY2U8SXNzdWVEZXRhaWxzLCBJc3N1ZUxpc3RJdGVtPiB7XG4gIHByb3RlY3RlZCByZXNvdXJjZVR5cGU6IFJlc291cmNlVHlwZSA9IFJlc291cmNlVHlwZS5Jc3N1ZTtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./issue-details.js"), exports);
|
|
18
|
+
__exportStar(require("./issue-list-item.js"), exports);
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL2lzc3VlL3R5cGVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxxREFBbUM7QUFDbkMsdURBQXFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9pc3N1ZS1kZXRhaWxzLmpzJztcbmV4cG9ydCAqIGZyb20gJy4vaXNzdWUtbGlzdC1pdGVtLmpzJztcbiJdfQ==
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { SiteResource, PersonCreditSiteResource, AssociatedImage, Image } from '../../common-types.js';
|
|
2
|
+
export interface IssueDetails {
|
|
3
|
+
/**
|
|
4
|
+
* List of aliases the issue is known by. A \n (newline) seperates each alias.
|
|
5
|
+
*/
|
|
6
|
+
aliases: null | string;
|
|
7
|
+
/**
|
|
8
|
+
* URL pointing to the issue detail resource.
|
|
9
|
+
*/
|
|
10
|
+
apiDetailUrl: string;
|
|
11
|
+
associatedImages: Array<AssociatedImage>;
|
|
12
|
+
characterCredits: Array<SiteResource>;
|
|
13
|
+
characterDiedIn: Array<SiteResource>;
|
|
14
|
+
conceptCredits: Array<SiteResource>;
|
|
15
|
+
/**
|
|
16
|
+
* The publish date printed on the cover of an issue.
|
|
17
|
+
*/
|
|
18
|
+
coverDate: Date;
|
|
19
|
+
/**
|
|
20
|
+
* Date the issue was added to Comic Vine.
|
|
21
|
+
*/
|
|
22
|
+
dateAdded: Date;
|
|
23
|
+
/**
|
|
24
|
+
* Date the issue was last updated on Comic Vine.
|
|
25
|
+
*/
|
|
26
|
+
dateLastUpdated: Date;
|
|
27
|
+
/**
|
|
28
|
+
* Brief summary of the issue.
|
|
29
|
+
*/
|
|
30
|
+
deck: null | string;
|
|
31
|
+
/**
|
|
32
|
+
* Description of the issue.
|
|
33
|
+
*/
|
|
34
|
+
description: null | string;
|
|
35
|
+
/**
|
|
36
|
+
* A list of characters in which this issue is the first appearance of the character.
|
|
37
|
+
*/
|
|
38
|
+
firstAppearanceCharacters: null | unknown;
|
|
39
|
+
/**
|
|
40
|
+
* A list of concepts in which this issue is the first appearance of the concept.
|
|
41
|
+
*/
|
|
42
|
+
firstAppearanceConcepts: null | unknown;
|
|
43
|
+
/**
|
|
44
|
+
* A list of locations in which this issue is the first appearance of the location.
|
|
45
|
+
*/
|
|
46
|
+
firstAppearanceLocations: null | unknown;
|
|
47
|
+
/**
|
|
48
|
+
* A list of things in which this issue is the first appearance of the object.
|
|
49
|
+
*/
|
|
50
|
+
firstAppearanceObjects: null | unknown;
|
|
51
|
+
/**
|
|
52
|
+
* A list of storyarcs in which this issue is the first appearance of the story arc.
|
|
53
|
+
*/
|
|
54
|
+
firstAppearanceStoryarcs: null | unknown;
|
|
55
|
+
/**
|
|
56
|
+
* A list of teams in which this issue is the first appearance of the team.
|
|
57
|
+
*/
|
|
58
|
+
firstAppearanceTeams: null | unknown;
|
|
59
|
+
hasStaffReview: null | false | SiteResource;
|
|
60
|
+
/**
|
|
61
|
+
* Unique ID of the issue.
|
|
62
|
+
*/
|
|
63
|
+
id: number;
|
|
64
|
+
/**
|
|
65
|
+
* Main image of the issue.
|
|
66
|
+
*/
|
|
67
|
+
image: Image;
|
|
68
|
+
/**
|
|
69
|
+
* The number assigned to the issue within the volume set.
|
|
70
|
+
*/
|
|
71
|
+
issueNumber: string;
|
|
72
|
+
locationCredits: Array<SiteResource>;
|
|
73
|
+
/**
|
|
74
|
+
* Name of the issue.
|
|
75
|
+
*/
|
|
76
|
+
name: null | string;
|
|
77
|
+
objectCredits: Array<SiteResource>;
|
|
78
|
+
personCredits: Array<PersonCreditSiteResource>;
|
|
79
|
+
/**
|
|
80
|
+
* URL pointing to the issue on Giant Bomb.
|
|
81
|
+
*/
|
|
82
|
+
siteDetailUrl: string;
|
|
83
|
+
/**
|
|
84
|
+
* The date the issue was first sold in stores.
|
|
85
|
+
*/
|
|
86
|
+
storeDate: Date | null;
|
|
87
|
+
storyArcCredits: Array<SiteResource>;
|
|
88
|
+
teamCredits: Array<SiteResource>;
|
|
89
|
+
teamDisbandedIn: Array<SiteResource>;
|
|
90
|
+
/**
|
|
91
|
+
* The volume this issue is a part of.
|
|
92
|
+
*/
|
|
93
|
+
volume: SiteResource;
|
|
94
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNzdWUtZGV0YWlscy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9yZXNvdXJjZXMvaXNzdWUvdHlwZXMvaXNzdWUtZGV0YWlscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgU2l0ZVJlc291cmNlLFxuICBQZXJzb25DcmVkaXRTaXRlUmVzb3VyY2UsXG4gIEFzc29jaWF0ZWRJbWFnZSxcbiAgSW1hZ2UsXG59IGZyb20gJy4uLy4uL2NvbW1vbi10eXBlcy5qcyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSXNzdWVEZXRhaWxzIHtcbiAgLyoqXG4gICAqIExpc3Qgb2YgYWxpYXNlcyB0aGUgaXNzdWUgaXMga25vd24gYnkuIEEgXFxuIChuZXdsaW5lKSBzZXBlcmF0ZXMgZWFjaCBhbGlhcy5cbiAgICovXG4gIGFsaWFzZXM6IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBVUkwgcG9pbnRpbmcgdG8gdGhlIGlzc3VlIGRldGFpbCByZXNvdXJjZS5cbiAgICovXG4gIGFwaURldGFpbFVybDogc3RyaW5nO1xuICBhc3NvY2lhdGVkSW1hZ2VzOiBBcnJheTxBc3NvY2lhdGVkSW1hZ2U+O1xuICBjaGFyYWN0ZXJDcmVkaXRzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICBjaGFyYWN0ZXJEaWVkSW46IEFycmF5PFNpdGVSZXNvdXJjZT47XG4gIGNvbmNlcHRDcmVkaXRzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogVGhlIHB1Ymxpc2ggZGF0ZSBwcmludGVkIG9uIHRoZSBjb3ZlciBvZiBhbiBpc3N1ZS5cbiAgICovXG4gIGNvdmVyRGF0ZTogRGF0ZTtcbiAgLyoqXG4gICAqIERhdGUgdGhlIGlzc3VlIHdhcyBhZGRlZCB0byBDb21pYyBWaW5lLlxuICAgKi9cbiAgZGF0ZUFkZGVkOiBEYXRlO1xuICAvKipcbiAgICogRGF0ZSB0aGUgaXNzdWUgd2FzIGxhc3QgdXBkYXRlZCBvbiBDb21pYyBWaW5lLlxuICAgKi9cbiAgZGF0ZUxhc3RVcGRhdGVkOiBEYXRlO1xuICAvKipcbiAgICogQnJpZWYgc3VtbWFyeSBvZiB0aGUgaXNzdWUuXG4gICAqL1xuICBkZWNrOiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogRGVzY3JpcHRpb24gb2YgdGhlIGlzc3VlLlxuICAgKi9cbiAgZGVzY3JpcHRpb246IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBBIGxpc3Qgb2YgY2hhcmFjdGVycyBpbiB3aGljaCB0aGlzIGlzc3VlIGlzIHRoZSBmaXJzdCBhcHBlYXJhbmNlIG9mIHRoZSBjaGFyYWN0ZXIuXG4gICAqL1xuICBmaXJzdEFwcGVhcmFuY2VDaGFyYWN0ZXJzOiBudWxsIHwgdW5rbm93bjtcbiAgLyoqXG4gICAqIEEgbGlzdCBvZiBjb25jZXB0cyBpbiB3aGljaCB0aGlzIGlzc3VlIGlzIHRoZSBmaXJzdCBhcHBlYXJhbmNlIG9mIHRoZSBjb25jZXB0LlxuICAgKi9cbiAgZmlyc3RBcHBlYXJhbmNlQ29uY2VwdHM6IG51bGwgfCB1bmtub3duO1xuICAvKipcbiAgICogQSBsaXN0IG9mIGxvY2F0aW9ucyBpbiB3aGljaCB0aGlzIGlzc3VlIGlzIHRoZSBmaXJzdCBhcHBlYXJhbmNlIG9mIHRoZSBsb2NhdGlvbi5cbiAgICovXG4gIGZpcnN0QXBwZWFyYW5jZUxvY2F0aW9uczogbnVsbCB8IHVua25vd247XG4gIC8qKlxuICAgKiBBIGxpc3Qgb2YgdGhpbmdzIGluIHdoaWNoIHRoaXMgaXNzdWUgaXMgdGhlIGZpcnN0IGFwcGVhcmFuY2Ugb2YgdGhlIG9iamVjdC5cbiAgICovXG4gIGZpcnN0QXBwZWFyYW5jZU9iamVjdHM6IG51bGwgfCB1bmtub3duO1xuICAvKipcbiAgICogQSBsaXN0IG9mIHN0b3J5YXJjcyBpbiB3aGljaCB0aGlzIGlzc3VlIGlzIHRoZSBmaXJzdCBhcHBlYXJhbmNlIG9mIHRoZSBzdG9yeSBhcmMuXG4gICAqL1xuICBmaXJzdEFwcGVhcmFuY2VTdG9yeWFyY3M6IG51bGwgfCB1bmtub3duO1xuICAvKipcbiAgICogQSBsaXN0IG9mIHRlYW1zIGluIHdoaWNoIHRoaXMgaXNzdWUgaXMgdGhlIGZpcnN0IGFwcGVhcmFuY2Ugb2YgdGhlIHRlYW0uXG4gICAqL1xuICBmaXJzdEFwcGVhcmFuY2VUZWFtczogbnVsbCB8IHVua25vd247XG4gIGhhc1N0YWZmUmV2aWV3OiBudWxsIHwgZmFsc2UgfCBTaXRlUmVzb3VyY2U7XG4gIC8qKlxuICAgKiBVbmlxdWUgSUQgb2YgdGhlIGlzc3VlLlxuICAgKi9cbiAgaWQ6IG51bWJlcjtcbiAgLyoqXG4gICAqIE1haW4gaW1hZ2Ugb2YgdGhlIGlzc3VlLlxuICAgKi9cbiAgaW1hZ2U6IEltYWdlO1xuICAvKipcbiAgICogVGhlIG51bWJlciBhc3NpZ25lZCB0byB0aGUgaXNzdWUgd2l0aGluIHRoZSB2b2x1bWUgc2V0LlxuICAgKi9cbiAgaXNzdWVOdW1iZXI6IHN0cmluZztcbiAgbG9jYXRpb25DcmVkaXRzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogTmFtZSBvZiB0aGUgaXNzdWUuXG4gICAqL1xuICBuYW1lOiBudWxsIHwgc3RyaW5nO1xuICBvYmplY3RDcmVkaXRzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICBwZXJzb25DcmVkaXRzOiBBcnJheTxQZXJzb25DcmVkaXRTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBpc3N1ZSBvbiBHaWFudCBCb21iLlxuICAgKi9cbiAgc2l0ZURldGFpbFVybDogc3RyaW5nO1xuICAvKipcbiAgICogVGhlIGRhdGUgdGhlIGlzc3VlIHdhcyBmaXJzdCBzb2xkIGluIHN0b3Jlcy5cbiAgICovXG4gIHN0b3JlRGF0ZTogRGF0ZSB8IG51bGw7XG4gIHN0b3J5QXJjQ3JlZGl0czogQXJyYXk8U2l0ZVJlc291cmNlPjtcbiAgdGVhbUNyZWRpdHM6IEFycmF5PFNpdGVSZXNvdXJjZT47XG4gIHRlYW1EaXNiYW5kZWRJbjogQXJyYXk8U2l0ZVJlc291cmNlPjtcbiAgLyoqXG4gICAqIFRoZSB2b2x1bWUgdGhpcyBpc3N1ZSBpcyBhIHBhcnQgb2YuXG4gICAqL1xuICB2b2x1bWU6IFNpdGVSZXNvdXJjZTtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { AssociatedImage, SiteResource, Image } from '../../common-types.js';
|
|
2
|
+
export interface IssueListItem {
|
|
3
|
+
/**
|
|
4
|
+
* List of aliases the issue is known by. A \n (newline) seperates each alias.
|
|
5
|
+
*/
|
|
6
|
+
aliases: null | string;
|
|
7
|
+
/**
|
|
8
|
+
* URL pointing to the issue detail resource.
|
|
9
|
+
*/
|
|
10
|
+
apiDetailUrl: string;
|
|
11
|
+
associatedImages: Array<AssociatedImage>;
|
|
12
|
+
/**
|
|
13
|
+
* The publish date printed on the cover of an issue.
|
|
14
|
+
*/
|
|
15
|
+
coverDate: Date;
|
|
16
|
+
/**
|
|
17
|
+
* Date the issue was added to Comic Vine.
|
|
18
|
+
*/
|
|
19
|
+
dateAdded: Date;
|
|
20
|
+
/**
|
|
21
|
+
* Date the issue was last updated on Comic Vine.
|
|
22
|
+
*/
|
|
23
|
+
dateLastUpdated: Date;
|
|
24
|
+
/**
|
|
25
|
+
* Brief summary of the issue.
|
|
26
|
+
*/
|
|
27
|
+
deck: null | unknown;
|
|
28
|
+
/**
|
|
29
|
+
* Description of the issue.
|
|
30
|
+
*/
|
|
31
|
+
description: null | string;
|
|
32
|
+
hasStaffReview: null | false | SiteResource;
|
|
33
|
+
/**
|
|
34
|
+
* Unique ID of the issue.
|
|
35
|
+
*/
|
|
36
|
+
id: number;
|
|
37
|
+
/**
|
|
38
|
+
* Main image of the issue.
|
|
39
|
+
*/
|
|
40
|
+
image: Image;
|
|
41
|
+
/**
|
|
42
|
+
* The number assigned to the issue within the volume set.
|
|
43
|
+
*/
|
|
44
|
+
issueNumber: string;
|
|
45
|
+
/**
|
|
46
|
+
* Name of the issue.
|
|
47
|
+
*/
|
|
48
|
+
name: null | string;
|
|
49
|
+
/**
|
|
50
|
+
* URL pointing to the issue on Giant Bomb.
|
|
51
|
+
*/
|
|
52
|
+
siteDetailUrl: string;
|
|
53
|
+
/**
|
|
54
|
+
* The date the issue was first sold in stores.
|
|
55
|
+
*/
|
|
56
|
+
storeDate: Date | null;
|
|
57
|
+
/**
|
|
58
|
+
* The volume this issue is a part of.
|
|
59
|
+
*/
|
|
60
|
+
volume: SiteResource;
|
|
61
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaXNzdWUtbGlzdC1pdGVtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3Jlc291cmNlcy9pc3N1ZS90eXBlcy9pc3N1ZS1saXN0LWl0ZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFzc29jaWF0ZWRJbWFnZSwgU2l0ZVJlc291cmNlLCBJbWFnZSB9IGZyb20gJy4uLy4uL2NvbW1vbi10eXBlcy5qcyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSXNzdWVMaXN0SXRlbSB7XG4gIC8qKlxuICAgKiBMaXN0IG9mIGFsaWFzZXMgdGhlIGlzc3VlIGlzIGtub3duIGJ5LiBBIFxcbiAobmV3bGluZSkgc2VwZXJhdGVzIGVhY2ggYWxpYXMuXG4gICAqL1xuICBhbGlhc2VzOiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBpc3N1ZSBkZXRhaWwgcmVzb3VyY2UuXG4gICAqL1xuICBhcGlEZXRhaWxVcmw6IHN0cmluZztcbiAgYXNzb2NpYXRlZEltYWdlczogQXJyYXk8QXNzb2NpYXRlZEltYWdlPjtcbiAgLyoqXG4gICAqIFRoZSBwdWJsaXNoIGRhdGUgcHJpbnRlZCBvbiB0aGUgY292ZXIgb2YgYW4gaXNzdWUuXG4gICAqL1xuICBjb3ZlckRhdGU6IERhdGU7XG4gIC8qKlxuICAgKiBEYXRlIHRoZSBpc3N1ZSB3YXMgYWRkZWQgdG8gQ29taWMgVmluZS5cbiAgICovXG4gIGRhdGVBZGRlZDogRGF0ZTtcbiAgLyoqXG4gICAqIERhdGUgdGhlIGlzc3VlIHdhcyBsYXN0IHVwZGF0ZWQgb24gQ29taWMgVmluZS5cbiAgICovXG4gIGRhdGVMYXN0VXBkYXRlZDogRGF0ZTtcbiAgLyoqXG4gICAqIEJyaWVmIHN1bW1hcnkgb2YgdGhlIGlzc3VlLlxuICAgKi9cbiAgZGVjazogbnVsbCB8IHVua25vd247XG4gIC8qKlxuICAgKiBEZXNjcmlwdGlvbiBvZiB0aGUgaXNzdWUuXG4gICAqL1xuICBkZXNjcmlwdGlvbjogbnVsbCB8IHN0cmluZztcbiAgaGFzU3RhZmZSZXZpZXc6IG51bGwgfCBmYWxzZSB8IFNpdGVSZXNvdXJjZTtcbiAgLyoqXG4gICAqIFVuaXF1ZSBJRCBvZiB0aGUgaXNzdWUuXG4gICAqL1xuICBpZDogbnVtYmVyO1xuICAvKipcbiAgICogTWFpbiBpbWFnZSBvZiB0aGUgaXNzdWUuXG4gICAqL1xuICBpbWFnZTogSW1hZ2U7XG4gIC8qKlxuICAgKiBUaGUgbnVtYmVyIGFzc2lnbmVkIHRvIHRoZSBpc3N1ZSB3aXRoaW4gdGhlIHZvbHVtZSBzZXQuXG4gICAqL1xuICBpc3N1ZU51bWJlcjogc3RyaW5nO1xuICAvKipcbiAgICogTmFtZSBvZiB0aGUgaXNzdWUuXG4gICAqL1xuICBuYW1lOiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBpc3N1ZSBvbiBHaWFudCBCb21iLlxuICAgKi9cbiAgc2l0ZURldGFpbFVybDogc3RyaW5nO1xuICAvKipcbiAgICogVGhlIGRhdGUgdGhlIGlzc3VlIHdhcyBmaXJzdCBzb2xkIGluIHN0b3Jlcy5cbiAgICovXG4gIHN0b3JlRGF0ZTogRGF0ZSB8IG51bGw7XG4gIC8qKlxuICAgKiBUaGUgdm9sdW1lIHRoaXMgaXNzdWUgaXMgYSBwYXJ0IG9mLlxuICAgKi9cbiAgdm9sdW1lOiBTaXRlUmVzb3VyY2U7XG59XG4iXX0=
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './location.js';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./location.js"), exports);
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL2xvY2F0aW9uL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxnREFBOEIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xvY2F0aW9uLmpzJztcbiJdfQ==
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { LocationDetails, LocationListItem } from './types/index.js';
|
|
2
|
+
import { BaseResource } from '../base-resource.js';
|
|
3
|
+
import { ResourceType } from '../resource-type.js';
|
|
4
|
+
export declare class Location extends BaseResource<LocationDetails, LocationListItem> {
|
|
5
|
+
protected resourceType: ResourceType;
|
|
6
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Location = void 0;
|
|
4
|
+
const base_resource_js_1 = require("../base-resource.js");
|
|
5
|
+
const resource_type_js_1 = require("../resource-type.js");
|
|
6
|
+
class Location extends base_resource_js_1.BaseResource {
|
|
7
|
+
constructor() {
|
|
8
|
+
super(...arguments);
|
|
9
|
+
this.resourceType = resource_type_js_1.ResourceType.Location;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.Location = Location;
|
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9jYXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL2xvY2F0aW9uL2xvY2F0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUNBLDBEQUFtRDtBQUNuRCwwREFBbUQ7QUFFbkQsTUFBYSxRQUFTLFNBQVEsK0JBQStDO0lBQTdFOztRQUNZLGlCQUFZLEdBQWlCLCtCQUFZLENBQUMsUUFBUSxDQUFDO0lBQy9ELENBQUM7Q0FBQTtBQUZELDRCQUVDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTG9jYXRpb25EZXRhaWxzLCBMb2NhdGlvbkxpc3RJdGVtIH0gZnJvbSAnLi90eXBlcy9pbmRleC5qcyc7XG5pbXBvcnQgeyBCYXNlUmVzb3VyY2UgfSBmcm9tICcuLi9iYXNlLXJlc291cmNlLmpzJztcbmltcG9ydCB7IFJlc291cmNlVHlwZSB9IGZyb20gJy4uL3Jlc291cmNlLXR5cGUuanMnO1xuXG5leHBvcnQgY2xhc3MgTG9jYXRpb24gZXh0ZW5kcyBCYXNlUmVzb3VyY2U8TG9jYXRpb25EZXRhaWxzLCBMb2NhdGlvbkxpc3RJdGVtPiB7XG4gIHByb3RlY3RlZCByZXNvdXJjZVR5cGU6IFJlc291cmNlVHlwZSA9IFJlc291cmNlVHlwZS5Mb2NhdGlvbjtcbn1cbiJdfQ==
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./location-details.js"), exports);
|
|
18
|
+
__exportStar(require("./location-list-item.js"), exports);
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL2xvY2F0aW9uL3R5cGVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSx3REFBc0M7QUFDdEMsMERBQXdDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9sb2NhdGlvbi1kZXRhaWxzLmpzJztcbmV4cG9ydCAqIGZyb20gJy4vbG9jYXRpb24tbGlzdC1pdGVtLmpzJztcbiJdfQ==
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { IssueApiResource, SiteResource, Image } from '../../common-types.js';
|
|
2
|
+
export interface LocationDetails {
|
|
3
|
+
/**
|
|
4
|
+
* List of aliases the location is known by. A \n (newline) seperates each alias.
|
|
5
|
+
*/
|
|
6
|
+
aliases: null | string;
|
|
7
|
+
/**
|
|
8
|
+
* URL pointing to the location detail resource.
|
|
9
|
+
*/
|
|
10
|
+
apiDetailUrl: string;
|
|
11
|
+
/**
|
|
12
|
+
* Number of issues this location appears in.
|
|
13
|
+
*/
|
|
14
|
+
countOfIssueAppearances: number;
|
|
15
|
+
/**
|
|
16
|
+
* Date the location was added to Comic Vine.
|
|
17
|
+
*/
|
|
18
|
+
dateAdded: Date;
|
|
19
|
+
/**
|
|
20
|
+
* Date the location was last updated on Comic Vine.
|
|
21
|
+
*/
|
|
22
|
+
dateLastUpdated: Date;
|
|
23
|
+
/**
|
|
24
|
+
* Brief summary of the location.
|
|
25
|
+
*/
|
|
26
|
+
deck: string;
|
|
27
|
+
/**
|
|
28
|
+
* Description of the location.
|
|
29
|
+
*/
|
|
30
|
+
description: string;
|
|
31
|
+
/**
|
|
32
|
+
* Issue where the location made its first appearance.
|
|
33
|
+
*/
|
|
34
|
+
firstAppearedInIssue: IssueApiResource;
|
|
35
|
+
/**
|
|
36
|
+
* Unique ID of the location.
|
|
37
|
+
*/
|
|
38
|
+
id: number;
|
|
39
|
+
/**
|
|
40
|
+
* Main image of the location.
|
|
41
|
+
*/
|
|
42
|
+
image: Image;
|
|
43
|
+
issueCredits: Array<SiteResource>;
|
|
44
|
+
/**
|
|
45
|
+
* Movies the location was in.
|
|
46
|
+
*/
|
|
47
|
+
movies: Array<SiteResource>;
|
|
48
|
+
/**
|
|
49
|
+
* Name of the location.
|
|
50
|
+
*/
|
|
51
|
+
name: string;
|
|
52
|
+
/**
|
|
53
|
+
* URL pointing to the location on Giant Bomb.
|
|
54
|
+
*/
|
|
55
|
+
siteDetailUrl: string;
|
|
56
|
+
/**
|
|
57
|
+
* The first year this location appeared in comics.
|
|
58
|
+
*/
|
|
59
|
+
startYear: string;
|
|
60
|
+
storyArcCredits: Array<unknown>;
|
|
61
|
+
volumeCredits: Array<SiteResource>;
|
|
62
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9jYXRpb24tZGV0YWlscy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9yZXNvdXJjZXMvbG9jYXRpb24vdHlwZXMvbG9jYXRpb24tZGV0YWlscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSXNzdWVBcGlSZXNvdXJjZSwgU2l0ZVJlc291cmNlLCBJbWFnZSB9IGZyb20gJy4uLy4uL2NvbW1vbi10eXBlcy5qcyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgTG9jYXRpb25EZXRhaWxzIHtcbiAgLyoqXG4gICAqIExpc3Qgb2YgYWxpYXNlcyB0aGUgbG9jYXRpb24gaXMga25vd24gYnkuIEEgXFxuIChuZXdsaW5lKSBzZXBlcmF0ZXMgZWFjaCBhbGlhcy5cbiAgICovXG4gIGFsaWFzZXM6IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBVUkwgcG9pbnRpbmcgdG8gdGhlIGxvY2F0aW9uIGRldGFpbCByZXNvdXJjZS5cbiAgICovXG4gIGFwaURldGFpbFVybDogc3RyaW5nO1xuICAvKipcbiAgICogTnVtYmVyIG9mIGlzc3VlcyB0aGlzIGxvY2F0aW9uIGFwcGVhcnMgaW4uXG4gICAqL1xuICBjb3VudE9mSXNzdWVBcHBlYXJhbmNlczogbnVtYmVyO1xuICAvKipcbiAgICogRGF0ZSB0aGUgbG9jYXRpb24gd2FzIGFkZGVkIHRvIENvbWljIFZpbmUuXG4gICAqL1xuICBkYXRlQWRkZWQ6IERhdGU7XG4gIC8qKlxuICAgKiBEYXRlIHRoZSBsb2NhdGlvbiB3YXMgbGFzdCB1cGRhdGVkIG9uIENvbWljIFZpbmUuXG4gICAqL1xuICBkYXRlTGFzdFVwZGF0ZWQ6IERhdGU7XG4gIC8qKlxuICAgKiBCcmllZiBzdW1tYXJ5IG9mIHRoZSBsb2NhdGlvbi5cbiAgICovXG4gIGRlY2s6IHN0cmluZztcbiAgLyoqXG4gICAqIERlc2NyaXB0aW9uIG9mIHRoZSBsb2NhdGlvbi5cbiAgICovXG4gIGRlc2NyaXB0aW9uOiBzdHJpbmc7XG4gIC8qKlxuICAgKiBJc3N1ZSB3aGVyZSB0aGUgbG9jYXRpb24gbWFkZSBpdHMgZmlyc3QgYXBwZWFyYW5jZS5cbiAgICovXG4gIGZpcnN0QXBwZWFyZWRJbklzc3VlOiBJc3N1ZUFwaVJlc291cmNlO1xuICAvKipcbiAgICogVW5pcXVlIElEIG9mIHRoZSBsb2NhdGlvbi5cbiAgICovXG4gIGlkOiBudW1iZXI7XG4gIC8qKlxuICAgKiBNYWluIGltYWdlIG9mIHRoZSBsb2NhdGlvbi5cbiAgICovXG4gIGltYWdlOiBJbWFnZTtcbiAgaXNzdWVDcmVkaXRzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogTW92aWVzIHRoZSBsb2NhdGlvbiB3YXMgaW4uXG4gICAqL1xuICBtb3ZpZXM6IEFycmF5PFNpdGVSZXNvdXJjZT47XG4gIC8qKlxuICAgKiBOYW1lIG9mIHRoZSBsb2NhdGlvbi5cbiAgICovXG4gIG5hbWU6IHN0cmluZztcbiAgLyoqXG4gICAqIFVSTCBwb2ludGluZyB0byB0aGUgbG9jYXRpb24gb24gR2lhbnQgQm9tYi5cbiAgICovXG4gIHNpdGVEZXRhaWxVcmw6IHN0cmluZztcbiAgLyoqXG4gICAqIFRoZSBmaXJzdCB5ZWFyIHRoaXMgbG9jYXRpb24gYXBwZWFyZWQgaW4gY29taWNzLlxuICAgKi9cbiAgc3RhcnRZZWFyOiBzdHJpbmc7XG4gIHN0b3J5QXJjQ3JlZGl0czogQXJyYXk8dW5rbm93bj47XG4gIHZvbHVtZUNyZWRpdHM6IEFycmF5PFNpdGVSZXNvdXJjZT47XG59XG4iXX0=
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { IssueApiResource, Image } from '../../common-types.js';
|
|
2
|
+
export interface LocationListItem {
|
|
3
|
+
/**
|
|
4
|
+
* List of aliases the location is known by. A \n (newline) seperates each alias.
|
|
5
|
+
*/
|
|
6
|
+
aliases: null | string;
|
|
7
|
+
/**
|
|
8
|
+
* URL pointing to the location detail resource.
|
|
9
|
+
*/
|
|
10
|
+
apiDetailUrl: string;
|
|
11
|
+
/**
|
|
12
|
+
* Number of issues this location appears in.
|
|
13
|
+
*/
|
|
14
|
+
countOfIssueAppearances: number;
|
|
15
|
+
/**
|
|
16
|
+
* Date the location was added to Comic Vine.
|
|
17
|
+
*/
|
|
18
|
+
dateAdded: Date;
|
|
19
|
+
/**
|
|
20
|
+
* Date the location was last updated on Comic Vine.
|
|
21
|
+
*/
|
|
22
|
+
dateLastUpdated: Date;
|
|
23
|
+
/**
|
|
24
|
+
* Brief summary of the location.
|
|
25
|
+
*/
|
|
26
|
+
deck: string;
|
|
27
|
+
/**
|
|
28
|
+
* Description of the location.
|
|
29
|
+
*/
|
|
30
|
+
description: null | string;
|
|
31
|
+
/**
|
|
32
|
+
* Issue where the location made its first appearance.
|
|
33
|
+
*/
|
|
34
|
+
firstAppearedInIssue: IssueApiResource;
|
|
35
|
+
/**
|
|
36
|
+
* Unique ID of the location.
|
|
37
|
+
*/
|
|
38
|
+
id: number;
|
|
39
|
+
/**
|
|
40
|
+
* Main image of the location.
|
|
41
|
+
*/
|
|
42
|
+
image: Image;
|
|
43
|
+
/**
|
|
44
|
+
* Name of the location.
|
|
45
|
+
*/
|
|
46
|
+
name: string;
|
|
47
|
+
/**
|
|
48
|
+
* URL pointing to the location on Giant Bomb.
|
|
49
|
+
*/
|
|
50
|
+
siteDetailUrl: string;
|
|
51
|
+
/**
|
|
52
|
+
* The first year this location appeared in comics.
|
|
53
|
+
*/
|
|
54
|
+
startYear: null | string;
|
|
55
|
+
}
|