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.
Files changed (1337) hide show
  1. package/.gitattributes +27 -0
  2. package/.husky/pre-commit +4 -0
  3. package/.prettierignore +2 -0
  4. package/.prettierrc.json +4 -0
  5. package/.projenrc.ts +76 -0
  6. package/.releaserc.json +17 -0
  7. package/CHANGELOG.md +83 -0
  8. package/CODE_OF_CONDUCT.md +128 -0
  9. package/LICENSE +1 -3
  10. package/jest.setup.js +2 -0
  11. package/lib/cjs/comic-vine.d.ts +42 -0
  12. package/lib/cjs/comic-vine.js +92 -0
  13. package/lib/cjs/errors/base-error.js +18 -0
  14. package/lib/cjs/errors/custom-error.d.ts +2 -0
  15. package/lib/cjs/errors/custom-error.js +12 -0
  16. package/lib/cjs/errors/filter-error.d.ts +4 -0
  17. package/lib/cjs/errors/filter-error.js +14 -0
  18. package/lib/cjs/errors/generic-error.d.ts +4 -0
  19. package/lib/cjs/errors/generic-error.js +14 -0
  20. package/lib/cjs/errors/generic-request-error.d.ts +10 -0
  21. package/lib/cjs/errors/generic-request-error.js +23 -0
  22. package/lib/cjs/errors/index.d.ts +10 -0
  23. package/lib/cjs/errors/index.js +27 -0
  24. package/lib/cjs/errors/jsonp-callback-missing-error.d.ts +4 -0
  25. package/lib/cjs/errors/jsonp-callback-missing-error.js +14 -0
  26. package/lib/cjs/errors/object-not-found-error.d.ts +4 -0
  27. package/lib/cjs/errors/object-not-found-error.js +14 -0
  28. package/lib/cjs/errors/options-validation-error.d.ts +4 -0
  29. package/lib/cjs/errors/options-validation-error.js +14 -0
  30. package/lib/cjs/errors/subscriber-only-error.d.ts +4 -0
  31. package/lib/cjs/errors/subscriber-only-error.js +14 -0
  32. package/lib/cjs/errors/unauthorized-error.d.ts +4 -0
  33. package/lib/cjs/errors/unauthorized-error.js +14 -0
  34. package/lib/cjs/errors/url-format-error.d.ts +4 -0
  35. package/lib/cjs/errors/url-format-error.js +14 -0
  36. package/lib/cjs/http-client/http-client-factory.d.ts +6 -0
  37. package/lib/cjs/http-client/http-client-factory.js +15 -0
  38. package/lib/cjs/http-client/http-client.d.ts +8 -0
  39. package/lib/cjs/http-client/http-client.js +69 -0
  40. package/lib/cjs/http-client/index.d.ts +1 -0
  41. package/lib/cjs/http-client/index.js +18 -0
  42. package/lib/cjs/http-client/status-code.js +14 -0
  43. package/lib/cjs/http-client/url-builder.d.ts +29 -0
  44. package/lib/cjs/http-client/url-builder.js +107 -0
  45. package/lib/cjs/index.d.ts +3 -0
  46. package/lib/cjs/index.js +5 -0
  47. package/lib/cjs/options/index.d.ts +22 -0
  48. package/lib/cjs/options/index.js +32 -0
  49. package/lib/cjs/package.json +3 -0
  50. package/lib/cjs/resources/base-resource.d.ts +19 -0
  51. package/lib/cjs/resources/base-resource.js +86 -0
  52. package/lib/cjs/resources/character/character.d.ts +6 -0
  53. package/lib/cjs/resources/character/character.js +13 -0
  54. package/lib/cjs/resources/character/index.d.ts +1 -0
  55. package/lib/cjs/resources/character/index.js +18 -0
  56. package/lib/cjs/resources/character/types/character-details.d.ts +110 -0
  57. package/lib/cjs/resources/character/types/character-details.js +3 -0
  58. package/lib/cjs/resources/character/types/character-list-item.d.ts +71 -0
  59. package/lib/cjs/resources/character/types/character-list-item.js +3 -0
  60. package/lib/cjs/resources/character/types/index.d.ts +2 -0
  61. package/lib/cjs/resources/character/types/index.js +19 -0
  62. package/lib/cjs/resources/common-types.js +3 -0
  63. package/lib/cjs/resources/concept/concept.d.ts +6 -0
  64. package/lib/cjs/resources/concept/concept.js +13 -0
  65. package/lib/cjs/resources/concept/index.d.ts +1 -0
  66. package/lib/cjs/resources/concept/index.js +18 -0
  67. package/lib/cjs/resources/concept/types/concept-details.d.ts +58 -0
  68. package/lib/cjs/resources/concept/types/concept-details.js +3 -0
  69. package/lib/cjs/resources/concept/types/concept-list-item.d.ts +52 -0
  70. package/lib/cjs/resources/concept/types/concept-list-item.js +3 -0
  71. package/lib/cjs/resources/concept/types/index.d.ts +2 -0
  72. package/lib/cjs/resources/concept/types/index.js +19 -0
  73. package/lib/cjs/resources/episode/episode.d.ts +6 -0
  74. package/lib/cjs/resources/episode/episode.js +13 -0
  75. package/lib/cjs/resources/episode/index.d.ts +1 -0
  76. package/lib/cjs/resources/episode/index.js +18 -0
  77. package/lib/cjs/resources/episode/types/episode-details.d.ts +87 -0
  78. package/lib/cjs/resources/episode/types/episode-details.js +3 -0
  79. package/lib/cjs/resources/episode/types/episode-list-item.d.ts +53 -0
  80. package/lib/cjs/resources/episode/types/episode-list-item.js +3 -0
  81. package/lib/cjs/resources/episode/types/index.d.ts +2 -0
  82. package/lib/cjs/resources/episode/types/index.js +19 -0
  83. package/lib/cjs/resources/index.d.ts +3 -0
  84. package/lib/cjs/resources/index.js +20 -0
  85. package/lib/cjs/resources/issue/index.d.ts +1 -0
  86. package/lib/cjs/resources/issue/index.js +18 -0
  87. package/lib/cjs/resources/issue/issue.d.ts +6 -0
  88. package/lib/cjs/resources/issue/issue.js +13 -0
  89. package/lib/cjs/resources/issue/types/index.d.ts +2 -0
  90. package/lib/cjs/resources/issue/types/index.js +19 -0
  91. package/lib/cjs/resources/issue/types/issue-details.d.ts +94 -0
  92. package/lib/cjs/resources/issue/types/issue-details.js +3 -0
  93. package/lib/cjs/resources/issue/types/issue-list-item.d.ts +61 -0
  94. package/lib/cjs/resources/issue/types/issue-list-item.js +3 -0
  95. package/lib/cjs/resources/location/index.d.ts +1 -0
  96. package/lib/cjs/resources/location/index.js +18 -0
  97. package/lib/cjs/resources/location/location.d.ts +6 -0
  98. package/lib/cjs/resources/location/location.js +13 -0
  99. package/lib/cjs/resources/location/types/index.d.ts +2 -0
  100. package/lib/cjs/resources/location/types/index.js +19 -0
  101. package/lib/cjs/resources/location/types/location-details.d.ts +62 -0
  102. package/lib/cjs/resources/location/types/location-details.js +3 -0
  103. package/lib/cjs/resources/location/types/location-list-item.d.ts +55 -0
  104. package/lib/cjs/resources/location/types/location-list-item.js +3 -0
  105. package/lib/cjs/resources/movie/index.d.ts +1 -0
  106. package/lib/cjs/resources/movie/index.js +18 -0
  107. package/lib/cjs/resources/movie/movie.d.ts +6 -0
  108. package/lib/cjs/resources/movie/movie.js +13 -0
  109. package/lib/cjs/resources/movie/types/index.d.ts +2 -0
  110. package/lib/cjs/resources/movie/types/index.js +19 -0
  111. package/lib/cjs/resources/movie/types/movie-details.d.ts +91 -0
  112. package/lib/cjs/resources/movie/types/movie-details.js +3 -0
  113. package/lib/cjs/resources/movie/types/movie-list-item.d.ts +74 -0
  114. package/lib/cjs/resources/movie/types/movie-list-item.js +3 -0
  115. package/lib/cjs/resources/origin/index.d.ts +1 -0
  116. package/lib/cjs/resources/origin/index.js +18 -0
  117. package/lib/cjs/resources/origin/origin.d.ts +6 -0
  118. package/lib/cjs/resources/origin/origin.js +13 -0
  119. package/lib/cjs/resources/origin/types/index.d.ts +2 -0
  120. package/lib/cjs/resources/origin/types/index.js +19 -0
  121. package/lib/cjs/resources/origin/types/origin-details.d.ts +22 -0
  122. package/lib/cjs/resources/origin/types/origin-details.js +3 -0
  123. package/lib/cjs/resources/origin/types/origin-list-item.d.ts +18 -0
  124. package/lib/cjs/resources/origin/types/origin-list-item.js +3 -0
  125. package/lib/cjs/resources/person/index.d.ts +1 -0
  126. package/lib/cjs/resources/person/index.js +18 -0
  127. package/lib/cjs/resources/person/person.d.ts +6 -0
  128. package/lib/cjs/resources/person/person.js +13 -0
  129. package/lib/cjs/resources/person/types/index.d.ts +2 -0
  130. package/lib/cjs/resources/person/types/index.js +19 -0
  131. package/lib/cjs/resources/person/types/person-details.d.ts +82 -0
  132. package/lib/cjs/resources/person/types/person-details.js +3 -0
  133. package/lib/cjs/resources/person/types/person-list-item.d.ts +77 -0
  134. package/lib/cjs/resources/person/types/person-list-item.js +8 -0
  135. package/lib/cjs/resources/power/index.d.ts +1 -0
  136. package/lib/cjs/resources/power/index.js +18 -0
  137. package/lib/cjs/resources/power/power.d.ts +6 -0
  138. package/lib/cjs/resources/power/power.js +13 -0
  139. package/lib/cjs/resources/power/types/index.d.ts +2 -0
  140. package/lib/cjs/resources/power/types/index.js +19 -0
  141. package/lib/cjs/resources/power/types/power-details.d.ts +39 -0
  142. package/lib/cjs/resources/power/types/power-details.js +3 -0
  143. package/lib/cjs/resources/power/types/power-list-item.d.ts +34 -0
  144. package/lib/cjs/resources/power/types/power-list-item.js +3 -0
  145. package/lib/cjs/resources/promo/index.d.ts +1 -0
  146. package/lib/cjs/resources/promo/index.js +18 -0
  147. package/lib/cjs/resources/promo/promo.d.ts +6 -0
  148. package/lib/cjs/resources/promo/promo.js +13 -0
  149. package/lib/cjs/resources/promo/types/index.d.ts +2 -0
  150. package/lib/cjs/resources/promo/types/index.js +19 -0
  151. package/lib/cjs/resources/promo/types/promo-details.d.ts +40 -0
  152. package/lib/cjs/resources/promo/types/promo-details.js +3 -0
  153. package/lib/cjs/resources/promo/types/promo-list-item.d.ts +40 -0
  154. package/lib/cjs/resources/promo/types/promo-list-item.js +3 -0
  155. package/lib/cjs/resources/publisher/index.d.ts +1 -0
  156. package/lib/cjs/resources/publisher/index.js +18 -0
  157. package/lib/cjs/resources/publisher/publisher.d.ts +6 -0
  158. package/lib/cjs/resources/publisher/publisher.js +13 -0
  159. package/lib/cjs/resources/publisher/types/index.d.ts +2 -0
  160. package/lib/cjs/resources/publisher/types/index.js +19 -0
  161. package/lib/cjs/resources/publisher/types/publisher-details.d.ts +71 -0
  162. package/lib/cjs/resources/publisher/types/publisher-details.js +3 -0
  163. package/lib/cjs/resources/publisher/types/publisher-list-item.d.ts +61 -0
  164. package/lib/cjs/resources/publisher/types/publisher-list-item.js +11 -0
  165. package/lib/cjs/resources/resource-factory.d.ts +8 -0
  166. package/lib/cjs/resources/resource-factory.js +42 -0
  167. package/lib/cjs/resources/resource-list.d.ts +19 -0
  168. package/lib/cjs/resources/resource-list.js +36 -0
  169. package/lib/cjs/resources/resource-map.d.ts +7 -0
  170. package/lib/cjs/resources/resource-map.js +40 -0
  171. package/lib/cjs/resources/resource-type.js +26 -0
  172. package/lib/cjs/resources/series/index.d.ts +1 -0
  173. package/lib/cjs/resources/series/index.js +18 -0
  174. package/lib/cjs/resources/series/series.d.ts +6 -0
  175. package/lib/cjs/resources/series/series.js +13 -0
  176. package/lib/cjs/resources/series/types/index.d.ts +2 -0
  177. package/lib/cjs/resources/series/types/index.js +19 -0
  178. package/lib/cjs/resources/series/types/series-details.d.ts +68 -0
  179. package/lib/cjs/resources/series/types/series-details.js +3 -0
  180. package/lib/cjs/resources/series/types/series-list-item.d.ts +18 -0
  181. package/lib/cjs/resources/series/types/series-list-item.js +3 -0
  182. package/lib/cjs/resources/story-arc/index.d.ts +1 -0
  183. package/lib/cjs/resources/story-arc/index.js +18 -0
  184. package/lib/cjs/resources/story-arc/story-arc.d.ts +6 -0
  185. package/lib/cjs/resources/story-arc/story-arc.js +13 -0
  186. package/lib/cjs/resources/story-arc/types/index.d.ts +2 -0
  187. package/lib/cjs/resources/story-arc/types/index.js +19 -0
  188. package/lib/cjs/resources/story-arc/types/story-arc-details.d.ts +62 -0
  189. package/lib/cjs/resources/story-arc/types/story-arc-details.js +3 -0
  190. package/lib/cjs/resources/story-arc/types/story-arc-list-item.d.ts +53 -0
  191. package/lib/cjs/resources/story-arc/types/story-arc-list-item.js +3 -0
  192. package/lib/cjs/resources/team/index.d.ts +1 -0
  193. package/lib/cjs/resources/team/index.js +18 -0
  194. package/lib/cjs/resources/team/team.d.ts +6 -0
  195. package/lib/cjs/resources/team/team.js +13 -0
  196. package/lib/cjs/resources/team/types/index.d.ts +2 -0
  197. package/lib/cjs/resources/team/types/index.js +19 -0
  198. package/lib/cjs/resources/team/types/team-details.d.ts +80 -0
  199. package/lib/cjs/resources/team/types/team-details.js +3 -0
  200. package/lib/cjs/resources/team/types/team-list-item.d.ts +56 -0
  201. package/lib/cjs/resources/team/types/team-list-item.js +3 -0
  202. package/lib/cjs/resources/thing/index.d.ts +1 -0
  203. package/lib/cjs/resources/thing/index.js +18 -0
  204. package/lib/cjs/resources/thing/thing.d.ts +6 -0
  205. package/lib/cjs/resources/thing/thing.js +13 -0
  206. package/lib/cjs/resources/thing/types/index.d.ts +2 -0
  207. package/lib/cjs/resources/thing/types/index.js +19 -0
  208. package/lib/cjs/resources/thing/types/thing-details.d.ts +62 -0
  209. package/lib/cjs/resources/thing/types/thing-details.js +3 -0
  210. package/lib/cjs/resources/thing/types/thing-list-item.d.ts +55 -0
  211. package/lib/cjs/resources/thing/types/thing-list-item.js +3 -0
  212. package/lib/cjs/resources/video/index.d.ts +1 -0
  213. package/lib/cjs/resources/video/index.js +18 -0
  214. package/lib/cjs/resources/video/types/index.d.ts +2 -0
  215. package/lib/cjs/resources/video/types/index.js +19 -0
  216. package/lib/cjs/resources/video/types/video-details.d.ts +63 -0
  217. package/lib/cjs/resources/video/types/video-details.js +3 -0
  218. package/lib/cjs/resources/video/types/video-list-item.d.ts +85 -0
  219. package/lib/cjs/resources/video/types/video-list-item.js +28 -0
  220. package/lib/cjs/resources/video/video.d.ts +6 -0
  221. package/lib/cjs/resources/video/video.js +13 -0
  222. package/lib/cjs/resources/video-category/index.d.ts +1 -0
  223. package/lib/cjs/resources/video-category/index.js +18 -0
  224. package/lib/cjs/resources/video-category/types/index.d.ts +2 -0
  225. package/lib/cjs/resources/video-category/types/index.js +19 -0
  226. package/lib/cjs/resources/video-category/types/video-category-details.d.ts +24 -0
  227. package/lib/cjs/resources/video-category/types/video-category-details.js +3 -0
  228. package/lib/cjs/resources/video-category/types/video-category-list-item.d.ts +24 -0
  229. package/lib/cjs/resources/video-category/types/video-category-list-item.js +3 -0
  230. package/lib/cjs/resources/video-category/video-category.d.ts +6 -0
  231. package/lib/cjs/resources/video-category/video-category.js +13 -0
  232. package/lib/cjs/resources/video-type/index.d.ts +1 -0
  233. package/lib/cjs/resources/video-type/index.js +18 -0
  234. package/lib/cjs/resources/video-type/types/index.d.ts +2 -0
  235. package/lib/cjs/resources/video-type/types/index.js +19 -0
  236. package/lib/cjs/resources/video-type/types/video-type-details.d.ts +22 -0
  237. package/lib/cjs/resources/video-type/types/video-type-details.js +3 -0
  238. package/lib/cjs/resources/video-type/types/video-type-list-item.d.ts +22 -0
  239. package/lib/cjs/resources/video-type/types/video-type-list-item.js +3 -0
  240. package/lib/cjs/resources/video-type/video-type.d.ts +6 -0
  241. package/lib/cjs/resources/video-type/video-type.js +13 -0
  242. package/lib/cjs/resources/volume/index.d.ts +1 -0
  243. package/lib/cjs/resources/volume/index.js +18 -0
  244. package/lib/cjs/resources/volume/types/index.d.ts +2 -0
  245. package/lib/cjs/resources/volume/types/index.js +19 -0
  246. package/lib/cjs/resources/volume/types/volume-details.d.ts +77 -0
  247. package/lib/cjs/resources/volume/types/volume-details.js +3 -0
  248. package/lib/cjs/resources/volume/types/volume-list-item.d.ts +63 -0
  249. package/lib/cjs/resources/volume/types/volume-list-item.js +3 -0
  250. package/lib/cjs/resources/volume/volume.d.ts +6 -0
  251. package/lib/cjs/resources/volume/volume.js +13 -0
  252. package/lib/cjs/types/apply-override.js +3 -0
  253. package/lib/cjs/types/http-client.d.ts +4 -0
  254. package/lib/cjs/types/http-client.js +3 -0
  255. package/lib/cjs/types/index.d.ts +7 -0
  256. package/lib/cjs/types/index.js +24 -0
  257. package/lib/cjs/types/iso-date.js +3 -0
  258. package/lib/cjs/types/pick-filters.js +3 -0
  259. package/lib/cjs/types/request.d.ts +31 -0
  260. package/lib/cjs/types/request.js +3 -0
  261. package/lib/cjs/types/response.d.ts +10 -0
  262. package/lib/cjs/types/response.js +3 -0
  263. package/lib/cjs/types/url-builder.d.ts +6 -0
  264. package/lib/cjs/types/url-builder.js +3 -0
  265. package/lib/cjs/types/valueof.js +3 -0
  266. package/lib/cjs/utils/case-converter.js +34 -0
  267. package/lib/cjs/utils/index.d.ts +2 -0
  268. package/lib/cjs/utils/index.js +19 -0
  269. package/lib/cjs/utils/is-object.js +8 -0
  270. package/lib/esm/comic-vine.d.ts +42 -0
  271. package/lib/esm/comic-vine.js +88 -0
  272. package/lib/esm/errors/base-error.js +14 -0
  273. package/lib/esm/errors/custom-error.d.ts +2 -0
  274. package/lib/esm/errors/custom-error.js +8 -0
  275. package/lib/esm/errors/filter-error.d.ts +4 -0
  276. package/lib/esm/errors/filter-error.js +10 -0
  277. package/lib/esm/errors/generic-error.d.ts +4 -0
  278. package/lib/esm/errors/generic-error.js +10 -0
  279. package/lib/esm/errors/generic-request-error.d.ts +10 -0
  280. package/lib/esm/errors/generic-request-error.js +18 -0
  281. package/lib/esm/errors/index.d.ts +10 -0
  282. package/lib/esm/errors/index.js +11 -0
  283. package/lib/esm/errors/jsonp-callback-missing-error.d.ts +4 -0
  284. package/lib/esm/errors/jsonp-callback-missing-error.js +10 -0
  285. package/lib/esm/errors/object-not-found-error.d.ts +4 -0
  286. package/lib/esm/errors/object-not-found-error.js +10 -0
  287. package/lib/esm/errors/options-validation-error.d.ts +4 -0
  288. package/lib/esm/errors/options-validation-error.js +10 -0
  289. package/lib/esm/errors/subscriber-only-error.d.ts +4 -0
  290. package/lib/esm/errors/subscriber-only-error.js +10 -0
  291. package/lib/esm/errors/unauthorized-error.d.ts +4 -0
  292. package/lib/esm/errors/unauthorized-error.js +10 -0
  293. package/lib/esm/errors/url-format-error.d.ts +4 -0
  294. package/lib/esm/errors/url-format-error.js +10 -0
  295. package/lib/esm/http-client/http-client-factory.d.ts +6 -0
  296. package/lib/esm/http-client/http-client-factory.js +11 -0
  297. package/lib/esm/http-client/http-client.d.ts +8 -0
  298. package/lib/esm/http-client/http-client.js +50 -0
  299. package/lib/esm/http-client/index.d.ts +1 -0
  300. package/lib/esm/http-client/index.js +2 -0
  301. package/lib/esm/http-client/status-code.js +11 -0
  302. package/lib/esm/http-client/url-builder.d.ts +29 -0
  303. package/lib/esm/http-client/url-builder.js +103 -0
  304. package/lib/esm/index.d.ts +3 -0
  305. package/lib/esm/index.js +3 -0
  306. package/lib/esm/options/index.d.ts +22 -0
  307. package/lib/esm/options/index.js +28 -0
  308. package/lib/esm/package.json +3 -0
  309. package/lib/esm/resources/base-resource.d.ts +19 -0
  310. package/lib/esm/resources/base-resource.js +54 -0
  311. package/lib/esm/resources/character/character.d.ts +6 -0
  312. package/lib/esm/resources/character/character.js +9 -0
  313. package/lib/esm/resources/character/index.d.ts +1 -0
  314. package/lib/esm/resources/character/index.js +2 -0
  315. package/lib/esm/resources/character/types/character-details.d.ts +110 -0
  316. package/lib/esm/resources/character/types/character-details.js +2 -0
  317. package/lib/esm/resources/character/types/character-list-item.d.ts +71 -0
  318. package/lib/esm/resources/character/types/character-list-item.js +2 -0
  319. package/lib/esm/resources/character/types/index.d.ts +2 -0
  320. package/lib/esm/resources/character/types/index.js +3 -0
  321. package/lib/esm/resources/common-types.js +2 -0
  322. package/lib/esm/resources/concept/concept.d.ts +6 -0
  323. package/lib/esm/resources/concept/concept.js +9 -0
  324. package/lib/esm/resources/concept/index.d.ts +1 -0
  325. package/lib/esm/resources/concept/index.js +2 -0
  326. package/lib/esm/resources/concept/types/concept-details.d.ts +58 -0
  327. package/lib/esm/resources/concept/types/concept-details.js +2 -0
  328. package/lib/esm/resources/concept/types/concept-list-item.d.ts +52 -0
  329. package/lib/esm/resources/concept/types/concept-list-item.js +2 -0
  330. package/lib/esm/resources/concept/types/index.d.ts +2 -0
  331. package/lib/esm/resources/concept/types/index.js +3 -0
  332. package/lib/esm/resources/episode/episode.d.ts +6 -0
  333. package/lib/esm/resources/episode/episode.js +9 -0
  334. package/lib/esm/resources/episode/index.d.ts +1 -0
  335. package/lib/esm/resources/episode/index.js +2 -0
  336. package/lib/esm/resources/episode/types/episode-details.d.ts +87 -0
  337. package/lib/esm/resources/episode/types/episode-details.js +2 -0
  338. package/lib/esm/resources/episode/types/episode-list-item.d.ts +53 -0
  339. package/lib/esm/resources/episode/types/episode-list-item.js +2 -0
  340. package/lib/esm/resources/episode/types/index.d.ts +2 -0
  341. package/lib/esm/resources/episode/types/index.js +3 -0
  342. package/lib/esm/resources/index.d.ts +3 -0
  343. package/lib/esm/resources/index.js +4 -0
  344. package/lib/esm/resources/issue/index.d.ts +1 -0
  345. package/lib/esm/resources/issue/index.js +2 -0
  346. package/lib/esm/resources/issue/issue.d.ts +6 -0
  347. package/lib/esm/resources/issue/issue.js +9 -0
  348. package/lib/esm/resources/issue/types/index.d.ts +2 -0
  349. package/lib/esm/resources/issue/types/index.js +3 -0
  350. package/lib/esm/resources/issue/types/issue-details.d.ts +94 -0
  351. package/lib/esm/resources/issue/types/issue-details.js +2 -0
  352. package/lib/esm/resources/issue/types/issue-list-item.d.ts +61 -0
  353. package/lib/esm/resources/issue/types/issue-list-item.js +2 -0
  354. package/lib/esm/resources/location/index.d.ts +1 -0
  355. package/lib/esm/resources/location/index.js +2 -0
  356. package/lib/esm/resources/location/location.d.ts +6 -0
  357. package/lib/esm/resources/location/location.js +9 -0
  358. package/lib/esm/resources/location/types/index.d.ts +2 -0
  359. package/lib/esm/resources/location/types/index.js +3 -0
  360. package/lib/esm/resources/location/types/location-details.d.ts +62 -0
  361. package/lib/esm/resources/location/types/location-details.js +2 -0
  362. package/lib/esm/resources/location/types/location-list-item.d.ts +55 -0
  363. package/lib/esm/resources/location/types/location-list-item.js +2 -0
  364. package/lib/esm/resources/movie/index.d.ts +1 -0
  365. package/lib/esm/resources/movie/index.js +2 -0
  366. package/lib/esm/resources/movie/movie.d.ts +6 -0
  367. package/lib/esm/resources/movie/movie.js +9 -0
  368. package/lib/esm/resources/movie/types/index.d.ts +2 -0
  369. package/lib/esm/resources/movie/types/index.js +3 -0
  370. package/lib/esm/resources/movie/types/movie-details.d.ts +91 -0
  371. package/lib/esm/resources/movie/types/movie-details.js +2 -0
  372. package/lib/esm/resources/movie/types/movie-list-item.d.ts +74 -0
  373. package/lib/esm/resources/movie/types/movie-list-item.js +2 -0
  374. package/lib/esm/resources/origin/index.d.ts +1 -0
  375. package/lib/esm/resources/origin/index.js +2 -0
  376. package/lib/esm/resources/origin/origin.d.ts +6 -0
  377. package/lib/esm/resources/origin/origin.js +9 -0
  378. package/lib/esm/resources/origin/types/index.d.ts +2 -0
  379. package/lib/esm/resources/origin/types/index.js +3 -0
  380. package/lib/esm/resources/origin/types/origin-details.d.ts +22 -0
  381. package/lib/esm/resources/origin/types/origin-details.js +2 -0
  382. package/lib/esm/resources/origin/types/origin-list-item.d.ts +18 -0
  383. package/lib/esm/resources/origin/types/origin-list-item.js +2 -0
  384. package/lib/esm/resources/person/index.d.ts +1 -0
  385. package/lib/esm/resources/person/index.js +2 -0
  386. package/lib/esm/resources/person/person.d.ts +6 -0
  387. package/lib/esm/resources/person/person.js +9 -0
  388. package/lib/esm/resources/person/types/index.d.ts +2 -0
  389. package/lib/esm/resources/person/types/index.js +3 -0
  390. package/lib/esm/resources/person/types/person-details.d.ts +82 -0
  391. package/lib/esm/resources/person/types/person-details.js +2 -0
  392. package/lib/esm/resources/person/types/person-list-item.d.ts +77 -0
  393. package/lib/esm/resources/person/types/person-list-item.js +5 -0
  394. package/lib/esm/resources/power/index.d.ts +1 -0
  395. package/lib/esm/resources/power/index.js +2 -0
  396. package/lib/esm/resources/power/power.d.ts +6 -0
  397. package/lib/esm/resources/power/power.js +9 -0
  398. package/lib/esm/resources/power/types/index.d.ts +2 -0
  399. package/lib/esm/resources/power/types/index.js +3 -0
  400. package/lib/esm/resources/power/types/power-details.d.ts +39 -0
  401. package/lib/esm/resources/power/types/power-details.js +2 -0
  402. package/lib/esm/resources/power/types/power-list-item.d.ts +34 -0
  403. package/lib/esm/resources/power/types/power-list-item.js +2 -0
  404. package/lib/esm/resources/promo/index.d.ts +1 -0
  405. package/lib/esm/resources/promo/index.js +2 -0
  406. package/lib/esm/resources/promo/promo.d.ts +6 -0
  407. package/lib/esm/resources/promo/promo.js +9 -0
  408. package/lib/esm/resources/promo/types/index.d.ts +2 -0
  409. package/lib/esm/resources/promo/types/index.js +3 -0
  410. package/lib/esm/resources/promo/types/promo-details.d.ts +40 -0
  411. package/lib/esm/resources/promo/types/promo-details.js +2 -0
  412. package/lib/esm/resources/promo/types/promo-list-item.d.ts +40 -0
  413. package/lib/esm/resources/promo/types/promo-list-item.js +2 -0
  414. package/lib/esm/resources/publisher/index.d.ts +1 -0
  415. package/lib/esm/resources/publisher/index.js +2 -0
  416. package/lib/esm/resources/publisher/publisher.d.ts +6 -0
  417. package/lib/esm/resources/publisher/publisher.js +9 -0
  418. package/lib/esm/resources/publisher/types/index.d.ts +2 -0
  419. package/lib/esm/resources/publisher/types/index.js +3 -0
  420. package/lib/esm/resources/publisher/types/publisher-details.d.ts +71 -0
  421. package/lib/esm/resources/publisher/types/publisher-details.js +2 -0
  422. package/lib/esm/resources/publisher/types/publisher-list-item.d.ts +61 -0
  423. package/lib/esm/resources/publisher/types/publisher-list-item.js +8 -0
  424. package/lib/esm/resources/resource-factory.d.ts +8 -0
  425. package/lib/esm/resources/resource-factory.js +15 -0
  426. package/lib/esm/resources/resource-list.d.ts +19 -0
  427. package/lib/esm/resources/resource-list.js +20 -0
  428. package/lib/esm/resources/resource-map.d.ts +7 -0
  429. package/lib/esm/resources/resource-map.js +36 -0
  430. package/lib/esm/resources/resource-type.js +23 -0
  431. package/lib/esm/resources/series/index.d.ts +1 -0
  432. package/lib/esm/resources/series/index.js +2 -0
  433. package/lib/esm/resources/series/series.d.ts +6 -0
  434. package/lib/esm/resources/series/series.js +9 -0
  435. package/lib/esm/resources/series/types/index.d.ts +2 -0
  436. package/lib/esm/resources/series/types/index.js +3 -0
  437. package/lib/esm/resources/series/types/series-details.d.ts +68 -0
  438. package/lib/esm/resources/series/types/series-details.js +2 -0
  439. package/lib/esm/resources/series/types/series-list-item.d.ts +18 -0
  440. package/lib/esm/resources/series/types/series-list-item.js +2 -0
  441. package/lib/esm/resources/story-arc/index.d.ts +1 -0
  442. package/lib/esm/resources/story-arc/index.js +2 -0
  443. package/lib/esm/resources/story-arc/story-arc.d.ts +6 -0
  444. package/lib/esm/resources/story-arc/story-arc.js +9 -0
  445. package/lib/esm/resources/story-arc/types/index.d.ts +2 -0
  446. package/lib/esm/resources/story-arc/types/index.js +3 -0
  447. package/lib/esm/resources/story-arc/types/story-arc-details.d.ts +62 -0
  448. package/lib/esm/resources/story-arc/types/story-arc-details.js +2 -0
  449. package/lib/esm/resources/story-arc/types/story-arc-list-item.d.ts +53 -0
  450. package/lib/esm/resources/story-arc/types/story-arc-list-item.js +2 -0
  451. package/lib/esm/resources/team/index.d.ts +1 -0
  452. package/lib/esm/resources/team/index.js +2 -0
  453. package/lib/esm/resources/team/team.d.ts +6 -0
  454. package/lib/esm/resources/team/team.js +9 -0
  455. package/lib/esm/resources/team/types/index.d.ts +2 -0
  456. package/lib/esm/resources/team/types/index.js +3 -0
  457. package/lib/esm/resources/team/types/team-details.d.ts +80 -0
  458. package/lib/esm/resources/team/types/team-details.js +2 -0
  459. package/lib/esm/resources/team/types/team-list-item.d.ts +56 -0
  460. package/lib/esm/resources/team/types/team-list-item.js +2 -0
  461. package/lib/esm/resources/thing/index.d.ts +1 -0
  462. package/lib/esm/resources/thing/index.js +2 -0
  463. package/lib/esm/resources/thing/thing.d.ts +6 -0
  464. package/lib/esm/resources/thing/thing.js +9 -0
  465. package/lib/esm/resources/thing/types/index.d.ts +2 -0
  466. package/lib/esm/resources/thing/types/index.js +3 -0
  467. package/lib/esm/resources/thing/types/thing-details.d.ts +62 -0
  468. package/lib/esm/resources/thing/types/thing-details.js +2 -0
  469. package/lib/esm/resources/thing/types/thing-list-item.d.ts +55 -0
  470. package/lib/esm/resources/thing/types/thing-list-item.js +2 -0
  471. package/lib/esm/resources/video/index.d.ts +1 -0
  472. package/lib/esm/resources/video/index.js +2 -0
  473. package/lib/esm/resources/video/types/index.d.ts +2 -0
  474. package/lib/esm/resources/video/types/index.js +3 -0
  475. package/lib/esm/resources/video/types/video-details.d.ts +63 -0
  476. package/lib/esm/resources/video/types/video-details.js +2 -0
  477. package/lib/esm/resources/video/types/video-list-item.d.ts +85 -0
  478. package/lib/esm/resources/video/types/video-list-item.js +25 -0
  479. package/lib/esm/resources/video/video.d.ts +6 -0
  480. package/lib/esm/resources/video/video.js +9 -0
  481. package/lib/esm/resources/video-category/index.d.ts +1 -0
  482. package/lib/esm/resources/video-category/index.js +2 -0
  483. package/lib/esm/resources/video-category/types/index.d.ts +2 -0
  484. package/lib/esm/resources/video-category/types/index.js +3 -0
  485. package/lib/esm/resources/video-category/types/video-category-details.d.ts +24 -0
  486. package/lib/esm/resources/video-category/types/video-category-details.js +2 -0
  487. package/lib/esm/resources/video-category/types/video-category-list-item.d.ts +24 -0
  488. package/lib/esm/resources/video-category/types/video-category-list-item.js +2 -0
  489. package/lib/esm/resources/video-category/video-category.d.ts +6 -0
  490. package/lib/esm/resources/video-category/video-category.js +9 -0
  491. package/lib/esm/resources/video-type/index.d.ts +1 -0
  492. package/lib/esm/resources/video-type/index.js +2 -0
  493. package/lib/esm/resources/video-type/types/index.d.ts +2 -0
  494. package/lib/esm/resources/video-type/types/index.js +3 -0
  495. package/lib/esm/resources/video-type/types/video-type-details.d.ts +22 -0
  496. package/lib/esm/resources/video-type/types/video-type-details.js +2 -0
  497. package/lib/esm/resources/video-type/types/video-type-list-item.d.ts +22 -0
  498. package/lib/esm/resources/video-type/types/video-type-list-item.js +2 -0
  499. package/lib/esm/resources/video-type/video-type.d.ts +6 -0
  500. package/lib/esm/resources/video-type/video-type.js +9 -0
  501. package/lib/esm/resources/volume/index.d.ts +1 -0
  502. package/lib/esm/resources/volume/index.js +2 -0
  503. package/lib/esm/resources/volume/types/index.d.ts +2 -0
  504. package/lib/esm/resources/volume/types/index.js +3 -0
  505. package/lib/esm/resources/volume/types/volume-details.d.ts +77 -0
  506. package/lib/esm/resources/volume/types/volume-details.js +2 -0
  507. package/lib/esm/resources/volume/types/volume-list-item.d.ts +63 -0
  508. package/lib/esm/resources/volume/types/volume-list-item.js +2 -0
  509. package/lib/esm/resources/volume/volume.d.ts +6 -0
  510. package/lib/esm/resources/volume/volume.js +9 -0
  511. package/lib/esm/types/apply-override.js +2 -0
  512. package/lib/esm/types/http-client.d.ts +4 -0
  513. package/lib/esm/types/http-client.js +2 -0
  514. package/lib/esm/types/index.d.ts +7 -0
  515. package/lib/esm/types/index.js +8 -0
  516. package/lib/esm/types/iso-date.js +2 -0
  517. package/lib/esm/types/pick-filters.js +2 -0
  518. package/lib/esm/types/request.d.ts +31 -0
  519. package/lib/esm/types/request.js +2 -0
  520. package/lib/esm/types/response.d.ts +10 -0
  521. package/lib/esm/types/response.js +2 -0
  522. package/lib/esm/types/url-builder.d.ts +6 -0
  523. package/lib/esm/types/url-builder.js +2 -0
  524. package/lib/esm/types/valueof.js +2 -0
  525. package/lib/esm/utils/case-converter.js +27 -0
  526. package/lib/esm/utils/index.d.ts +2 -0
  527. package/lib/esm/utils/index.js +3 -0
  528. package/lib/esm/utils/is-object.js +4 -0
  529. package/package.json +86 -73
  530. package/scripts/create-package-json.ts +30 -0
  531. package/vitest.config.ts +8 -0
  532. package/dist/cjs/comic-vine.d.ts +0 -42
  533. package/dist/cjs/comic-vine.js +0 -92
  534. package/dist/cjs/comic-vine.js.map +0 -1
  535. package/dist/cjs/errors/base-error.js +0 -15
  536. package/dist/cjs/errors/base-error.js.map +0 -1
  537. package/dist/cjs/errors/custom-error.d.ts +0 -2
  538. package/dist/cjs/errors/custom-error.js +0 -12
  539. package/dist/cjs/errors/custom-error.js.map +0 -1
  540. package/dist/cjs/errors/filter-error.d.ts +0 -4
  541. package/dist/cjs/errors/filter-error.js +0 -14
  542. package/dist/cjs/errors/filter-error.js.map +0 -1
  543. package/dist/cjs/errors/generic-error.d.ts +0 -4
  544. package/dist/cjs/errors/generic-error.js +0 -14
  545. package/dist/cjs/errors/generic-error.js.map +0 -1
  546. package/dist/cjs/errors/generic-request-error.d.ts +0 -7
  547. package/dist/cjs/errors/generic-request-error.js +0 -20
  548. package/dist/cjs/errors/generic-request-error.js.map +0 -1
  549. package/dist/cjs/errors/index.d.ts +0 -10
  550. package/dist/cjs/errors/index.js +0 -27
  551. package/dist/cjs/errors/index.js.map +0 -1
  552. package/dist/cjs/errors/jsonp-callback-missing-error.d.ts +0 -4
  553. package/dist/cjs/errors/jsonp-callback-missing-error.js +0 -14
  554. package/dist/cjs/errors/jsonp-callback-missing-error.js.map +0 -1
  555. package/dist/cjs/errors/object-not-found-error.d.ts +0 -4
  556. package/dist/cjs/errors/object-not-found-error.js +0 -14
  557. package/dist/cjs/errors/object-not-found-error.js.map +0 -1
  558. package/dist/cjs/errors/options-validation-error.d.ts +0 -4
  559. package/dist/cjs/errors/options-validation-error.js +0 -14
  560. package/dist/cjs/errors/options-validation-error.js.map +0 -1
  561. package/dist/cjs/errors/subscriber-only-error.d.ts +0 -4
  562. package/dist/cjs/errors/subscriber-only-error.js +0 -14
  563. package/dist/cjs/errors/subscriber-only-error.js.map +0 -1
  564. package/dist/cjs/errors/unauthorized-error.d.ts +0 -4
  565. package/dist/cjs/errors/unauthorized-error.js +0 -14
  566. package/dist/cjs/errors/unauthorized-error.js.map +0 -1
  567. package/dist/cjs/errors/url-format-error.d.ts +0 -4
  568. package/dist/cjs/errors/url-format-error.js +0 -14
  569. package/dist/cjs/errors/url-format-error.js.map +0 -1
  570. package/dist/cjs/http-client/http-client-factory.d.ts +0 -6
  571. package/dist/cjs/http-client/http-client-factory.js +0 -15
  572. package/dist/cjs/http-client/http-client-factory.js.map +0 -1
  573. package/dist/cjs/http-client/http-client.d.ts +0 -8
  574. package/dist/cjs/http-client/http-client.js +0 -69
  575. package/dist/cjs/http-client/http-client.js.map +0 -1
  576. package/dist/cjs/http-client/index.d.ts +0 -1
  577. package/dist/cjs/http-client/index.js +0 -18
  578. package/dist/cjs/http-client/index.js.map +0 -1
  579. package/dist/cjs/http-client/status-code.js +0 -14
  580. package/dist/cjs/http-client/status-code.js.map +0 -1
  581. package/dist/cjs/http-client/url-builder.d.ts +0 -18
  582. package/dist/cjs/http-client/url-builder.js +0 -90
  583. package/dist/cjs/http-client/url-builder.js.map +0 -1
  584. package/dist/cjs/index.cjs.d.ts +0 -2
  585. package/dist/cjs/index.cjs.js +0 -4
  586. package/dist/cjs/index.cjs.js.map +0 -1
  587. package/dist/cjs/options/index.d.ts +0 -16
  588. package/dist/cjs/options/index.js +0 -26
  589. package/dist/cjs/options/index.js.map +0 -1
  590. package/dist/cjs/package.json +0 -3
  591. package/dist/cjs/resources/base-resource.d.ts +0 -19
  592. package/dist/cjs/resources/base-resource.js +0 -85
  593. package/dist/cjs/resources/base-resource.js.map +0 -1
  594. package/dist/cjs/resources/character/character.d.ts +0 -6
  595. package/dist/cjs/resources/character/character.js +0 -13
  596. package/dist/cjs/resources/character/character.js.map +0 -1
  597. package/dist/cjs/resources/character/index.d.ts +0 -1
  598. package/dist/cjs/resources/character/index.js +0 -18
  599. package/dist/cjs/resources/character/index.js.map +0 -1
  600. package/dist/cjs/resources/character/types/character-details.d.ts +0 -32
  601. package/dist/cjs/resources/character/types/character-details.js +0 -3
  602. package/dist/cjs/resources/character/types/character-details.js.map +0 -1
  603. package/dist/cjs/resources/character/types/character-list-item.d.ts +0 -20
  604. package/dist/cjs/resources/character/types/character-list-item.js +0 -3
  605. package/dist/cjs/resources/character/types/character-list-item.js.map +0 -1
  606. package/dist/cjs/resources/character/types/index.d.ts +0 -2
  607. package/dist/cjs/resources/character/types/index.js +0 -19
  608. package/dist/cjs/resources/character/types/index.js.map +0 -1
  609. package/dist/cjs/resources/common-types.js +0 -3
  610. package/dist/cjs/resources/common-types.js.map +0 -1
  611. package/dist/cjs/resources/concept/concept.d.ts +0 -6
  612. package/dist/cjs/resources/concept/concept.js +0 -13
  613. package/dist/cjs/resources/concept/concept.js.map +0 -1
  614. package/dist/cjs/resources/concept/index.d.ts +0 -1
  615. package/dist/cjs/resources/concept/index.js +0 -18
  616. package/dist/cjs/resources/concept/index.js.map +0 -1
  617. package/dist/cjs/resources/concept/types/concept-details.d.ts +0 -19
  618. package/dist/cjs/resources/concept/types/concept-details.js +0 -3
  619. package/dist/cjs/resources/concept/types/concept-details.js.map +0 -1
  620. package/dist/cjs/resources/concept/types/concept-list-item.d.ts +0 -16
  621. package/dist/cjs/resources/concept/types/concept-list-item.js +0 -3
  622. package/dist/cjs/resources/concept/types/concept-list-item.js.map +0 -1
  623. package/dist/cjs/resources/concept/types/index.d.ts +0 -2
  624. package/dist/cjs/resources/concept/types/index.js +0 -19
  625. package/dist/cjs/resources/concept/types/index.js.map +0 -1
  626. package/dist/cjs/resources/episode/episode.d.ts +0 -6
  627. package/dist/cjs/resources/episode/episode.js +0 -13
  628. package/dist/cjs/resources/episode/episode.js.map +0 -1
  629. package/dist/cjs/resources/episode/index.d.ts +0 -1
  630. package/dist/cjs/resources/episode/index.js +0 -18
  631. package/dist/cjs/resources/episode/index.js.map +0 -1
  632. package/dist/cjs/resources/episode/types/episode-details.d.ts +0 -30
  633. package/dist/cjs/resources/episode/types/episode-details.js +0 -3
  634. package/dist/cjs/resources/episode/types/episode-details.js.map +0 -1
  635. package/dist/cjs/resources/episode/types/episode-list-item.d.ts +0 -17
  636. package/dist/cjs/resources/episode/types/episode-list-item.js +0 -3
  637. package/dist/cjs/resources/episode/types/episode-list-item.js.map +0 -1
  638. package/dist/cjs/resources/episode/types/index.d.ts +0 -2
  639. package/dist/cjs/resources/episode/types/index.js +0 -19
  640. package/dist/cjs/resources/episode/types/index.js.map +0 -1
  641. package/dist/cjs/resources/index.d.ts +0 -3
  642. package/dist/cjs/resources/index.js +0 -20
  643. package/dist/cjs/resources/index.js.map +0 -1
  644. package/dist/cjs/resources/issue/index.d.ts +0 -1
  645. package/dist/cjs/resources/issue/index.js +0 -18
  646. package/dist/cjs/resources/issue/index.js.map +0 -1
  647. package/dist/cjs/resources/issue/issue.d.ts +0 -6
  648. package/dist/cjs/resources/issue/issue.js +0 -13
  649. package/dist/cjs/resources/issue/issue.js.map +0 -1
  650. package/dist/cjs/resources/issue/types/index.d.ts +0 -2
  651. package/dist/cjs/resources/issue/types/index.js +0 -19
  652. package/dist/cjs/resources/issue/types/index.js.map +0 -1
  653. package/dist/cjs/resources/issue/types/issue-details.d.ts +0 -34
  654. package/dist/cjs/resources/issue/types/issue-details.js +0 -3
  655. package/dist/cjs/resources/issue/types/issue-details.js.map +0 -1
  656. package/dist/cjs/resources/issue/types/issue-list-item.d.ts +0 -19
  657. package/dist/cjs/resources/issue/types/issue-list-item.js +0 -3
  658. package/dist/cjs/resources/issue/types/issue-list-item.js.map +0 -1
  659. package/dist/cjs/resources/location/index.d.ts +0 -1
  660. package/dist/cjs/resources/location/index.js +0 -18
  661. package/dist/cjs/resources/location/index.js.map +0 -1
  662. package/dist/cjs/resources/location/location.d.ts +0 -6
  663. package/dist/cjs/resources/location/location.js +0 -13
  664. package/dist/cjs/resources/location/location.js.map +0 -1
  665. package/dist/cjs/resources/location/types/index.d.ts +0 -2
  666. package/dist/cjs/resources/location/types/index.js +0 -19
  667. package/dist/cjs/resources/location/types/index.js.map +0 -1
  668. package/dist/cjs/resources/location/types/location-details.d.ts +0 -20
  669. package/dist/cjs/resources/location/types/location-details.js +0 -3
  670. package/dist/cjs/resources/location/types/location-details.js.map +0 -1
  671. package/dist/cjs/resources/location/types/location-list-item.d.ts +0 -16
  672. package/dist/cjs/resources/location/types/location-list-item.js +0 -3
  673. package/dist/cjs/resources/location/types/location-list-item.js.map +0 -1
  674. package/dist/cjs/resources/movie/index.d.ts +0 -1
  675. package/dist/cjs/resources/movie/index.js +0 -18
  676. package/dist/cjs/resources/movie/index.js.map +0 -1
  677. package/dist/cjs/resources/movie/movie.d.ts +0 -6
  678. package/dist/cjs/resources/movie/movie.js +0 -13
  679. package/dist/cjs/resources/movie/movie.js.map +0 -1
  680. package/dist/cjs/resources/movie/types/index.d.ts +0 -2
  681. package/dist/cjs/resources/movie/types/index.js +0 -19
  682. package/dist/cjs/resources/movie/types/index.js.map +0 -1
  683. package/dist/cjs/resources/movie/types/movie-details.d.ts +0 -28
  684. package/dist/cjs/resources/movie/types/movie-details.js +0 -3
  685. package/dist/cjs/resources/movie/types/movie-details.js.map +0 -1
  686. package/dist/cjs/resources/movie/types/movie-list-item.d.ts +0 -23
  687. package/dist/cjs/resources/movie/types/movie-list-item.js +0 -3
  688. package/dist/cjs/resources/movie/types/movie-list-item.js.map +0 -1
  689. package/dist/cjs/resources/origin/index.d.ts +0 -1
  690. package/dist/cjs/resources/origin/index.js +0 -18
  691. package/dist/cjs/resources/origin/index.js.map +0 -1
  692. package/dist/cjs/resources/origin/origin.d.ts +0 -6
  693. package/dist/cjs/resources/origin/origin.js +0 -13
  694. package/dist/cjs/resources/origin/origin.js.map +0 -1
  695. package/dist/cjs/resources/origin/types/index.d.ts +0 -2
  696. package/dist/cjs/resources/origin/types/index.js +0 -19
  697. package/dist/cjs/resources/origin/types/index.js.map +0 -1
  698. package/dist/cjs/resources/origin/types/origin-details.d.ts +0 -10
  699. package/dist/cjs/resources/origin/types/origin-details.js +0 -3
  700. package/dist/cjs/resources/origin/types/origin-details.js.map +0 -1
  701. package/dist/cjs/resources/origin/types/origin-list-item.d.ts +0 -6
  702. package/dist/cjs/resources/origin/types/origin-list-item.js +0 -3
  703. package/dist/cjs/resources/origin/types/origin-list-item.js.map +0 -1
  704. package/dist/cjs/resources/person/index.d.ts +0 -1
  705. package/dist/cjs/resources/person/index.js +0 -18
  706. package/dist/cjs/resources/person/index.js.map +0 -1
  707. package/dist/cjs/resources/person/person.d.ts +0 -6
  708. package/dist/cjs/resources/person/person.js +0 -13
  709. package/dist/cjs/resources/person/person.js.map +0 -1
  710. package/dist/cjs/resources/person/types/index.d.ts +0 -2
  711. package/dist/cjs/resources/person/types/index.js +0 -19
  712. package/dist/cjs/resources/person/types/index.js.map +0 -1
  713. package/dist/cjs/resources/person/types/person-details.d.ts +0 -25
  714. package/dist/cjs/resources/person/types/person-details.js +0 -3
  715. package/dist/cjs/resources/person/types/person-details.js.map +0 -1
  716. package/dist/cjs/resources/person/types/person-list-item.d.ts +0 -26
  717. package/dist/cjs/resources/person/types/person-list-item.js +0 -8
  718. package/dist/cjs/resources/person/types/person-list-item.js.map +0 -1
  719. package/dist/cjs/resources/power/index.d.ts +0 -1
  720. package/dist/cjs/resources/power/index.js +0 -18
  721. package/dist/cjs/resources/power/index.js.map +0 -1
  722. package/dist/cjs/resources/power/power.d.ts +0 -6
  723. package/dist/cjs/resources/power/power.js +0 -13
  724. package/dist/cjs/resources/power/power.js.map +0 -1
  725. package/dist/cjs/resources/power/types/index.d.ts +0 -2
  726. package/dist/cjs/resources/power/types/index.js +0 -19
  727. package/dist/cjs/resources/power/types/index.js.map +0 -1
  728. package/dist/cjs/resources/power/types/power-details.d.ts +0 -12
  729. package/dist/cjs/resources/power/types/power-details.js +0 -3
  730. package/dist/cjs/resources/power/types/power-details.js.map +0 -1
  731. package/dist/cjs/resources/power/types/power-list-item.d.ts +0 -10
  732. package/dist/cjs/resources/power/types/power-list-item.js +0 -3
  733. package/dist/cjs/resources/power/types/power-list-item.js.map +0 -1
  734. package/dist/cjs/resources/promo/index.d.ts +0 -1
  735. package/dist/cjs/resources/promo/index.js +0 -18
  736. package/dist/cjs/resources/promo/index.js.map +0 -1
  737. package/dist/cjs/resources/promo/promo.d.ts +0 -6
  738. package/dist/cjs/resources/promo/promo.js +0 -13
  739. package/dist/cjs/resources/promo/promo.js.map +0 -1
  740. package/dist/cjs/resources/promo/types/index.d.ts +0 -2
  741. package/dist/cjs/resources/promo/types/index.js +0 -19
  742. package/dist/cjs/resources/promo/types/index.js.map +0 -1
  743. package/dist/cjs/resources/promo/types/promo-details.d.ts +0 -13
  744. package/dist/cjs/resources/promo/types/promo-details.js +0 -3
  745. package/dist/cjs/resources/promo/types/promo-details.js.map +0 -1
  746. package/dist/cjs/resources/promo/types/promo-list-item.d.ts +0 -13
  747. package/dist/cjs/resources/promo/types/promo-list-item.js +0 -3
  748. package/dist/cjs/resources/promo/types/promo-list-item.js.map +0 -1
  749. package/dist/cjs/resources/publisher/index.d.ts +0 -1
  750. package/dist/cjs/resources/publisher/index.js +0 -18
  751. package/dist/cjs/resources/publisher/index.js.map +0 -1
  752. package/dist/cjs/resources/publisher/publisher.d.ts +0 -6
  753. package/dist/cjs/resources/publisher/publisher.js +0 -13
  754. package/dist/cjs/resources/publisher/publisher.js.map +0 -1
  755. package/dist/cjs/resources/publisher/types/index.d.ts +0 -2
  756. package/dist/cjs/resources/publisher/types/index.js +0 -19
  757. package/dist/cjs/resources/publisher/types/index.js.map +0 -1
  758. package/dist/cjs/resources/publisher/types/publisher-details.d.ts +0 -20
  759. package/dist/cjs/resources/publisher/types/publisher-details.js +0 -3
  760. package/dist/cjs/resources/publisher/types/publisher-details.js.map +0 -1
  761. package/dist/cjs/resources/publisher/types/publisher-list-item.d.ts +0 -22
  762. package/dist/cjs/resources/publisher/types/publisher-list-item.js +0 -11
  763. package/dist/cjs/resources/publisher/types/publisher-list-item.js.map +0 -1
  764. package/dist/cjs/resources/resource-factory.d.ts +0 -8
  765. package/dist/cjs/resources/resource-factory.js +0 -42
  766. package/dist/cjs/resources/resource-factory.js.map +0 -1
  767. package/dist/cjs/resources/resource-list.d.ts +0 -19
  768. package/dist/cjs/resources/resource-list.js +0 -36
  769. package/dist/cjs/resources/resource-list.js.map +0 -1
  770. package/dist/cjs/resources/resource-map.d.ts +0 -7
  771. package/dist/cjs/resources/resource-map.js +0 -40
  772. package/dist/cjs/resources/resource-map.js.map +0 -1
  773. package/dist/cjs/resources/resource-type.js +0 -26
  774. package/dist/cjs/resources/resource-type.js.map +0 -1
  775. package/dist/cjs/resources/series/index.d.ts +0 -1
  776. package/dist/cjs/resources/series/index.js +0 -18
  777. package/dist/cjs/resources/series/index.js.map +0 -1
  778. package/dist/cjs/resources/series/series.d.ts +0 -6
  779. package/dist/cjs/resources/series/series.js +0 -13
  780. package/dist/cjs/resources/series/series.js.map +0 -1
  781. package/dist/cjs/resources/series/types/index.d.ts +0 -2
  782. package/dist/cjs/resources/series/types/index.js +0 -19
  783. package/dist/cjs/resources/series/types/index.js.map +0 -1
  784. package/dist/cjs/resources/series/types/series-details.d.ts +0 -20
  785. package/dist/cjs/resources/series/types/series-details.js +0 -3
  786. package/dist/cjs/resources/series/types/series-details.js.map +0 -1
  787. package/dist/cjs/resources/series/types/series-list-item.d.ts +0 -18
  788. package/dist/cjs/resources/series/types/series-list-item.js +0 -3
  789. package/dist/cjs/resources/series/types/series-list-item.js.map +0 -1
  790. package/dist/cjs/resources/story-arc/index.d.ts +0 -1
  791. package/dist/cjs/resources/story-arc/index.js +0 -18
  792. package/dist/cjs/resources/story-arc/index.js.map +0 -1
  793. package/dist/cjs/resources/story-arc/story-arc.d.ts +0 -6
  794. package/dist/cjs/resources/story-arc/story-arc.js +0 -13
  795. package/dist/cjs/resources/story-arc/story-arc.js.map +0 -1
  796. package/dist/cjs/resources/story-arc/types/index.d.ts +0 -2
  797. package/dist/cjs/resources/story-arc/types/index.js +0 -19
  798. package/dist/cjs/resources/story-arc/types/index.js.map +0 -1
  799. package/dist/cjs/resources/story-arc/types/story-arc-details.d.ts +0 -20
  800. package/dist/cjs/resources/story-arc/types/story-arc-details.js +0 -3
  801. package/dist/cjs/resources/story-arc/types/story-arc-details.js.map +0 -1
  802. package/dist/cjs/resources/story-arc/types/story-arc-list-item.d.ts +0 -17
  803. package/dist/cjs/resources/story-arc/types/story-arc-list-item.js +0 -3
  804. package/dist/cjs/resources/story-arc/types/story-arc-list-item.js.map +0 -1
  805. package/dist/cjs/resources/team/index.d.ts +0 -1
  806. package/dist/cjs/resources/team/index.js +0 -18
  807. package/dist/cjs/resources/team/index.js.map +0 -1
  808. package/dist/cjs/resources/team/team.d.ts +0 -6
  809. package/dist/cjs/resources/team/team.js +0 -13
  810. package/dist/cjs/resources/team/team.js.map +0 -1
  811. package/dist/cjs/resources/team/types/index.d.ts +0 -2
  812. package/dist/cjs/resources/team/types/index.js +0 -19
  813. package/dist/cjs/resources/team/types/index.js.map +0 -1
  814. package/dist/cjs/resources/team/types/team-details.d.ts +0 -26
  815. package/dist/cjs/resources/team/types/team-details.js +0 -3
  816. package/dist/cjs/resources/team/types/team-details.js.map +0 -1
  817. package/dist/cjs/resources/team/types/team-list-item.d.ts +0 -17
  818. package/dist/cjs/resources/team/types/team-list-item.js +0 -3
  819. package/dist/cjs/resources/team/types/team-list-item.js.map +0 -1
  820. package/dist/cjs/resources/thing/index.d.ts +0 -1
  821. package/dist/cjs/resources/thing/index.js +0 -18
  822. package/dist/cjs/resources/thing/index.js.map +0 -1
  823. package/dist/cjs/resources/thing/thing.d.ts +0 -6
  824. package/dist/cjs/resources/thing/thing.js +0 -13
  825. package/dist/cjs/resources/thing/thing.js.map +0 -1
  826. package/dist/cjs/resources/thing/types/index.d.ts +0 -2
  827. package/dist/cjs/resources/thing/types/index.js +0 -19
  828. package/dist/cjs/resources/thing/types/index.js.map +0 -1
  829. package/dist/cjs/resources/thing/types/thing-details.d.ts +0 -20
  830. package/dist/cjs/resources/thing/types/thing-details.js +0 -3
  831. package/dist/cjs/resources/thing/types/thing-details.js.map +0 -1
  832. package/dist/cjs/resources/thing/types/thing-list-item.d.ts +0 -16
  833. package/dist/cjs/resources/thing/types/thing-list-item.js +0 -3
  834. package/dist/cjs/resources/thing/types/thing-list-item.js.map +0 -1
  835. package/dist/cjs/resources/video/index.d.ts +0 -1
  836. package/dist/cjs/resources/video/index.js +0 -18
  837. package/dist/cjs/resources/video/index.js.map +0 -1
  838. package/dist/cjs/resources/video/types/index.d.ts +0 -2
  839. package/dist/cjs/resources/video/types/index.js +0 -19
  840. package/dist/cjs/resources/video/types/index.js.map +0 -1
  841. package/dist/cjs/resources/video/types/video-details.d.ts +0 -27
  842. package/dist/cjs/resources/video/types/video-details.js +0 -3
  843. package/dist/cjs/resources/video/types/video-details.js.map +0 -1
  844. package/dist/cjs/resources/video/types/video-list-item.d.ts +0 -49
  845. package/dist/cjs/resources/video/types/video-list-item.js +0 -28
  846. package/dist/cjs/resources/video/types/video-list-item.js.map +0 -1
  847. package/dist/cjs/resources/video/video.d.ts +0 -6
  848. package/dist/cjs/resources/video/video.js +0 -13
  849. package/dist/cjs/resources/video/video.js.map +0 -1
  850. package/dist/cjs/resources/video-category/index.d.ts +0 -1
  851. package/dist/cjs/resources/video-category/index.js +0 -18
  852. package/dist/cjs/resources/video-category/index.js.map +0 -1
  853. package/dist/cjs/resources/video-category/types/index.d.ts +0 -2
  854. package/dist/cjs/resources/video-category/types/index.js +0 -19
  855. package/dist/cjs/resources/video-category/types/index.js.map +0 -1
  856. package/dist/cjs/resources/video-category/types/video-category-details.d.ts +0 -9
  857. package/dist/cjs/resources/video-category/types/video-category-details.js +0 -3
  858. package/dist/cjs/resources/video-category/types/video-category-details.js.map +0 -1
  859. package/dist/cjs/resources/video-category/types/video-category-list-item.d.ts +0 -9
  860. package/dist/cjs/resources/video-category/types/video-category-list-item.js +0 -3
  861. package/dist/cjs/resources/video-category/types/video-category-list-item.js.map +0 -1
  862. package/dist/cjs/resources/video-category/video-category.d.ts +0 -6
  863. package/dist/cjs/resources/video-category/video-category.js +0 -13
  864. package/dist/cjs/resources/video-category/video-category.js.map +0 -1
  865. package/dist/cjs/resources/video-type/index.d.ts +0 -1
  866. package/dist/cjs/resources/video-type/index.js +0 -18
  867. package/dist/cjs/resources/video-type/index.js.map +0 -1
  868. package/dist/cjs/resources/video-type/types/index.d.ts +0 -2
  869. package/dist/cjs/resources/video-type/types/index.js +0 -19
  870. package/dist/cjs/resources/video-type/types/index.js.map +0 -1
  871. package/dist/cjs/resources/video-type/types/video-type-details.d.ts +0 -7
  872. package/dist/cjs/resources/video-type/types/video-type-details.js +0 -3
  873. package/dist/cjs/resources/video-type/types/video-type-details.js.map +0 -1
  874. package/dist/cjs/resources/video-type/types/video-type-list-item.d.ts +0 -7
  875. package/dist/cjs/resources/video-type/types/video-type-list-item.js +0 -3
  876. package/dist/cjs/resources/video-type/types/video-type-list-item.js.map +0 -1
  877. package/dist/cjs/resources/video-type/video-type.d.ts +0 -6
  878. package/dist/cjs/resources/video-type/video-type.js +0 -13
  879. package/dist/cjs/resources/video-type/video-type.js.map +0 -1
  880. package/dist/cjs/resources/volume/index.d.ts +0 -1
  881. package/dist/cjs/resources/volume/index.js +0 -18
  882. package/dist/cjs/resources/volume/index.js.map +0 -1
  883. package/dist/cjs/resources/volume/types/index.d.ts +0 -2
  884. package/dist/cjs/resources/volume/types/index.js +0 -19
  885. package/dist/cjs/resources/volume/types/index.js.map +0 -1
  886. package/dist/cjs/resources/volume/types/volume-details.d.ts +0 -23
  887. package/dist/cjs/resources/volume/types/volume-details.js +0 -3
  888. package/dist/cjs/resources/volume/types/volume-details.js.map +0 -1
  889. package/dist/cjs/resources/volume/types/volume-list-item.d.ts +0 -18
  890. package/dist/cjs/resources/volume/types/volume-list-item.js +0 -3
  891. package/dist/cjs/resources/volume/types/volume-list-item.js.map +0 -1
  892. package/dist/cjs/resources/volume/volume.d.ts +0 -6
  893. package/dist/cjs/resources/volume/volume.js +0 -13
  894. package/dist/cjs/resources/volume/volume.js.map +0 -1
  895. package/dist/cjs/types/apply-override.js +0 -3
  896. package/dist/cjs/types/apply-override.js.map +0 -1
  897. package/dist/cjs/types/http-client.d.ts +0 -4
  898. package/dist/cjs/types/http-client.js +0 -3
  899. package/dist/cjs/types/http-client.js.map +0 -1
  900. package/dist/cjs/types/index.d.ts +0 -7
  901. package/dist/cjs/types/index.js +0 -24
  902. package/dist/cjs/types/index.js.map +0 -1
  903. package/dist/cjs/types/iso-date.js +0 -3
  904. package/dist/cjs/types/iso-date.js.map +0 -1
  905. package/dist/cjs/types/pick-filters.js +0 -3
  906. package/dist/cjs/types/pick-filters.js.map +0 -1
  907. package/dist/cjs/types/request.d.ts +0 -14
  908. package/dist/cjs/types/request.js +0 -3
  909. package/dist/cjs/types/request.js.map +0 -1
  910. package/dist/cjs/types/response.d.ts +0 -10
  911. package/dist/cjs/types/response.js +0 -3
  912. package/dist/cjs/types/response.js.map +0 -1
  913. package/dist/cjs/types/url-builder.d.ts +0 -6
  914. package/dist/cjs/types/url-builder.js +0 -3
  915. package/dist/cjs/types/url-builder.js.map +0 -1
  916. package/dist/cjs/types/valueof.js +0 -3
  917. package/dist/cjs/types/valueof.js.map +0 -1
  918. package/dist/cjs/utils/case-converter.js +0 -34
  919. package/dist/cjs/utils/case-converter.js.map +0 -1
  920. package/dist/cjs/utils/index.d.ts +0 -2
  921. package/dist/cjs/utils/index.js +0 -19
  922. package/dist/cjs/utils/index.js.map +0 -1
  923. package/dist/cjs/utils/is-object.js +0 -8
  924. package/dist/cjs/utils/is-object.js.map +0 -1
  925. package/dist/mjs/comic-vine.d.ts +0 -42
  926. package/dist/mjs/comic-vine.js +0 -107
  927. package/dist/mjs/comic-vine.js.map +0 -1
  928. package/dist/mjs/errors/base-error.js +0 -12
  929. package/dist/mjs/errors/base-error.js.map +0 -1
  930. package/dist/mjs/errors/custom-error.d.ts +0 -2
  931. package/dist/mjs/errors/custom-error.js +0 -8
  932. package/dist/mjs/errors/custom-error.js.map +0 -1
  933. package/dist/mjs/errors/filter-error.d.ts +0 -4
  934. package/dist/mjs/errors/filter-error.js +0 -10
  935. package/dist/mjs/errors/filter-error.js.map +0 -1
  936. package/dist/mjs/errors/generic-error.d.ts +0 -4
  937. package/dist/mjs/errors/generic-error.js +0 -10
  938. package/dist/mjs/errors/generic-error.js.map +0 -1
  939. package/dist/mjs/errors/generic-request-error.d.ts +0 -7
  940. package/dist/mjs/errors/generic-request-error.js +0 -15
  941. package/dist/mjs/errors/generic-request-error.js.map +0 -1
  942. package/dist/mjs/errors/index.d.ts +0 -10
  943. package/dist/mjs/errors/index.js +0 -11
  944. package/dist/mjs/errors/index.js.map +0 -1
  945. package/dist/mjs/errors/jsonp-callback-missing-error.d.ts +0 -4
  946. package/dist/mjs/errors/jsonp-callback-missing-error.js +0 -10
  947. package/dist/mjs/errors/jsonp-callback-missing-error.js.map +0 -1
  948. package/dist/mjs/errors/object-not-found-error.d.ts +0 -4
  949. package/dist/mjs/errors/object-not-found-error.js +0 -10
  950. package/dist/mjs/errors/object-not-found-error.js.map +0 -1
  951. package/dist/mjs/errors/options-validation-error.d.ts +0 -4
  952. package/dist/mjs/errors/options-validation-error.js +0 -10
  953. package/dist/mjs/errors/options-validation-error.js.map +0 -1
  954. package/dist/mjs/errors/subscriber-only-error.d.ts +0 -4
  955. package/dist/mjs/errors/subscriber-only-error.js +0 -10
  956. package/dist/mjs/errors/subscriber-only-error.js.map +0 -1
  957. package/dist/mjs/errors/unauthorized-error.d.ts +0 -4
  958. package/dist/mjs/errors/unauthorized-error.js +0 -10
  959. package/dist/mjs/errors/unauthorized-error.js.map +0 -1
  960. package/dist/mjs/errors/url-format-error.d.ts +0 -4
  961. package/dist/mjs/errors/url-format-error.js +0 -10
  962. package/dist/mjs/errors/url-format-error.js.map +0 -1
  963. package/dist/mjs/http-client/http-client-factory.d.ts +0 -6
  964. package/dist/mjs/http-client/http-client-factory.js +0 -11
  965. package/dist/mjs/http-client/http-client-factory.js.map +0 -1
  966. package/dist/mjs/http-client/http-client.d.ts +0 -8
  967. package/dist/mjs/http-client/http-client.js +0 -51
  968. package/dist/mjs/http-client/http-client.js.map +0 -1
  969. package/dist/mjs/http-client/index.d.ts +0 -1
  970. package/dist/mjs/http-client/index.js +0 -2
  971. package/dist/mjs/http-client/index.js.map +0 -1
  972. package/dist/mjs/http-client/status-code.js +0 -11
  973. package/dist/mjs/http-client/status-code.js.map +0 -1
  974. package/dist/mjs/http-client/url-builder.d.ts +0 -18
  975. package/dist/mjs/http-client/url-builder.js +0 -88
  976. package/dist/mjs/http-client/url-builder.js.map +0 -1
  977. package/dist/mjs/index.d.ts +0 -2
  978. package/dist/mjs/index.js +0 -3
  979. package/dist/mjs/index.js.map +0 -1
  980. package/dist/mjs/options/index.d.ts +0 -16
  981. package/dist/mjs/options/index.js +0 -22
  982. package/dist/mjs/options/index.js.map +0 -1
  983. package/dist/mjs/package.json +0 -3
  984. package/dist/mjs/resources/base-resource.d.ts +0 -19
  985. package/dist/mjs/resources/base-resource.js +0 -55
  986. package/dist/mjs/resources/base-resource.js.map +0 -1
  987. package/dist/mjs/resources/character/character.d.ts +0 -6
  988. package/dist/mjs/resources/character/character.js +0 -6
  989. package/dist/mjs/resources/character/character.js.map +0 -1
  990. package/dist/mjs/resources/character/index.d.ts +0 -1
  991. package/dist/mjs/resources/character/index.js +0 -2
  992. package/dist/mjs/resources/character/index.js.map +0 -1
  993. package/dist/mjs/resources/character/types/character-details.d.ts +0 -32
  994. package/dist/mjs/resources/character/types/character-details.js +0 -2
  995. package/dist/mjs/resources/character/types/character-details.js.map +0 -1
  996. package/dist/mjs/resources/character/types/character-list-item.d.ts +0 -20
  997. package/dist/mjs/resources/character/types/character-list-item.js +0 -2
  998. package/dist/mjs/resources/character/types/character-list-item.js.map +0 -1
  999. package/dist/mjs/resources/character/types/index.d.ts +0 -2
  1000. package/dist/mjs/resources/character/types/index.js +0 -3
  1001. package/dist/mjs/resources/character/types/index.js.map +0 -1
  1002. package/dist/mjs/resources/common-types.js +0 -2
  1003. package/dist/mjs/resources/common-types.js.map +0 -1
  1004. package/dist/mjs/resources/concept/concept.d.ts +0 -6
  1005. package/dist/mjs/resources/concept/concept.js +0 -6
  1006. package/dist/mjs/resources/concept/concept.js.map +0 -1
  1007. package/dist/mjs/resources/concept/index.d.ts +0 -1
  1008. package/dist/mjs/resources/concept/index.js +0 -2
  1009. package/dist/mjs/resources/concept/index.js.map +0 -1
  1010. package/dist/mjs/resources/concept/types/concept-details.d.ts +0 -19
  1011. package/dist/mjs/resources/concept/types/concept-details.js +0 -2
  1012. package/dist/mjs/resources/concept/types/concept-details.js.map +0 -1
  1013. package/dist/mjs/resources/concept/types/concept-list-item.d.ts +0 -16
  1014. package/dist/mjs/resources/concept/types/concept-list-item.js +0 -2
  1015. package/dist/mjs/resources/concept/types/concept-list-item.js.map +0 -1
  1016. package/dist/mjs/resources/concept/types/index.d.ts +0 -2
  1017. package/dist/mjs/resources/concept/types/index.js +0 -3
  1018. package/dist/mjs/resources/concept/types/index.js.map +0 -1
  1019. package/dist/mjs/resources/episode/episode.d.ts +0 -6
  1020. package/dist/mjs/resources/episode/episode.js +0 -6
  1021. package/dist/mjs/resources/episode/episode.js.map +0 -1
  1022. package/dist/mjs/resources/episode/index.d.ts +0 -1
  1023. package/dist/mjs/resources/episode/index.js +0 -2
  1024. package/dist/mjs/resources/episode/index.js.map +0 -1
  1025. package/dist/mjs/resources/episode/types/episode-details.d.ts +0 -30
  1026. package/dist/mjs/resources/episode/types/episode-details.js +0 -2
  1027. package/dist/mjs/resources/episode/types/episode-details.js.map +0 -1
  1028. package/dist/mjs/resources/episode/types/episode-list-item.d.ts +0 -17
  1029. package/dist/mjs/resources/episode/types/episode-list-item.js +0 -2
  1030. package/dist/mjs/resources/episode/types/episode-list-item.js.map +0 -1
  1031. package/dist/mjs/resources/episode/types/index.d.ts +0 -2
  1032. package/dist/mjs/resources/episode/types/index.js +0 -3
  1033. package/dist/mjs/resources/episode/types/index.js.map +0 -1
  1034. package/dist/mjs/resources/index.d.ts +0 -3
  1035. package/dist/mjs/resources/index.js +0 -4
  1036. package/dist/mjs/resources/index.js.map +0 -1
  1037. package/dist/mjs/resources/issue/index.d.ts +0 -1
  1038. package/dist/mjs/resources/issue/index.js +0 -2
  1039. package/dist/mjs/resources/issue/index.js.map +0 -1
  1040. package/dist/mjs/resources/issue/issue.d.ts +0 -6
  1041. package/dist/mjs/resources/issue/issue.js +0 -6
  1042. package/dist/mjs/resources/issue/issue.js.map +0 -1
  1043. package/dist/mjs/resources/issue/types/index.d.ts +0 -2
  1044. package/dist/mjs/resources/issue/types/index.js +0 -3
  1045. package/dist/mjs/resources/issue/types/index.js.map +0 -1
  1046. package/dist/mjs/resources/issue/types/issue-details.d.ts +0 -34
  1047. package/dist/mjs/resources/issue/types/issue-details.js +0 -2
  1048. package/dist/mjs/resources/issue/types/issue-details.js.map +0 -1
  1049. package/dist/mjs/resources/issue/types/issue-list-item.d.ts +0 -19
  1050. package/dist/mjs/resources/issue/types/issue-list-item.js +0 -2
  1051. package/dist/mjs/resources/issue/types/issue-list-item.js.map +0 -1
  1052. package/dist/mjs/resources/location/index.d.ts +0 -1
  1053. package/dist/mjs/resources/location/index.js +0 -2
  1054. package/dist/mjs/resources/location/index.js.map +0 -1
  1055. package/dist/mjs/resources/location/location.d.ts +0 -6
  1056. package/dist/mjs/resources/location/location.js +0 -6
  1057. package/dist/mjs/resources/location/location.js.map +0 -1
  1058. package/dist/mjs/resources/location/types/index.d.ts +0 -2
  1059. package/dist/mjs/resources/location/types/index.js +0 -3
  1060. package/dist/mjs/resources/location/types/index.js.map +0 -1
  1061. package/dist/mjs/resources/location/types/location-details.d.ts +0 -20
  1062. package/dist/mjs/resources/location/types/location-details.js +0 -2
  1063. package/dist/mjs/resources/location/types/location-details.js.map +0 -1
  1064. package/dist/mjs/resources/location/types/location-list-item.d.ts +0 -16
  1065. package/dist/mjs/resources/location/types/location-list-item.js +0 -2
  1066. package/dist/mjs/resources/location/types/location-list-item.js.map +0 -1
  1067. package/dist/mjs/resources/movie/index.d.ts +0 -1
  1068. package/dist/mjs/resources/movie/index.js +0 -2
  1069. package/dist/mjs/resources/movie/index.js.map +0 -1
  1070. package/dist/mjs/resources/movie/movie.d.ts +0 -6
  1071. package/dist/mjs/resources/movie/movie.js +0 -6
  1072. package/dist/mjs/resources/movie/movie.js.map +0 -1
  1073. package/dist/mjs/resources/movie/types/index.d.ts +0 -2
  1074. package/dist/mjs/resources/movie/types/index.js +0 -3
  1075. package/dist/mjs/resources/movie/types/index.js.map +0 -1
  1076. package/dist/mjs/resources/movie/types/movie-details.d.ts +0 -28
  1077. package/dist/mjs/resources/movie/types/movie-details.js +0 -2
  1078. package/dist/mjs/resources/movie/types/movie-details.js.map +0 -1
  1079. package/dist/mjs/resources/movie/types/movie-list-item.d.ts +0 -23
  1080. package/dist/mjs/resources/movie/types/movie-list-item.js +0 -2
  1081. package/dist/mjs/resources/movie/types/movie-list-item.js.map +0 -1
  1082. package/dist/mjs/resources/origin/index.d.ts +0 -1
  1083. package/dist/mjs/resources/origin/index.js +0 -2
  1084. package/dist/mjs/resources/origin/index.js.map +0 -1
  1085. package/dist/mjs/resources/origin/origin.d.ts +0 -6
  1086. package/dist/mjs/resources/origin/origin.js +0 -6
  1087. package/dist/mjs/resources/origin/origin.js.map +0 -1
  1088. package/dist/mjs/resources/origin/types/index.d.ts +0 -2
  1089. package/dist/mjs/resources/origin/types/index.js +0 -3
  1090. package/dist/mjs/resources/origin/types/index.js.map +0 -1
  1091. package/dist/mjs/resources/origin/types/origin-details.d.ts +0 -10
  1092. package/dist/mjs/resources/origin/types/origin-details.js +0 -2
  1093. package/dist/mjs/resources/origin/types/origin-details.js.map +0 -1
  1094. package/dist/mjs/resources/origin/types/origin-list-item.d.ts +0 -6
  1095. package/dist/mjs/resources/origin/types/origin-list-item.js +0 -2
  1096. package/dist/mjs/resources/origin/types/origin-list-item.js.map +0 -1
  1097. package/dist/mjs/resources/person/index.d.ts +0 -1
  1098. package/dist/mjs/resources/person/index.js +0 -2
  1099. package/dist/mjs/resources/person/index.js.map +0 -1
  1100. package/dist/mjs/resources/person/person.d.ts +0 -6
  1101. package/dist/mjs/resources/person/person.js +0 -6
  1102. package/dist/mjs/resources/person/person.js.map +0 -1
  1103. package/dist/mjs/resources/person/types/index.d.ts +0 -2
  1104. package/dist/mjs/resources/person/types/index.js +0 -3
  1105. package/dist/mjs/resources/person/types/index.js.map +0 -1
  1106. package/dist/mjs/resources/person/types/person-details.d.ts +0 -25
  1107. package/dist/mjs/resources/person/types/person-details.js +0 -2
  1108. package/dist/mjs/resources/person/types/person-details.js.map +0 -1
  1109. package/dist/mjs/resources/person/types/person-list-item.d.ts +0 -26
  1110. package/dist/mjs/resources/person/types/person-list-item.js +0 -5
  1111. package/dist/mjs/resources/person/types/person-list-item.js.map +0 -1
  1112. package/dist/mjs/resources/power/index.d.ts +0 -1
  1113. package/dist/mjs/resources/power/index.js +0 -2
  1114. package/dist/mjs/resources/power/index.js.map +0 -1
  1115. package/dist/mjs/resources/power/power.d.ts +0 -6
  1116. package/dist/mjs/resources/power/power.js +0 -6
  1117. package/dist/mjs/resources/power/power.js.map +0 -1
  1118. package/dist/mjs/resources/power/types/index.d.ts +0 -2
  1119. package/dist/mjs/resources/power/types/index.js +0 -3
  1120. package/dist/mjs/resources/power/types/index.js.map +0 -1
  1121. package/dist/mjs/resources/power/types/power-details.d.ts +0 -12
  1122. package/dist/mjs/resources/power/types/power-details.js +0 -2
  1123. package/dist/mjs/resources/power/types/power-details.js.map +0 -1
  1124. package/dist/mjs/resources/power/types/power-list-item.d.ts +0 -10
  1125. package/dist/mjs/resources/power/types/power-list-item.js +0 -2
  1126. package/dist/mjs/resources/power/types/power-list-item.js.map +0 -1
  1127. package/dist/mjs/resources/promo/index.d.ts +0 -1
  1128. package/dist/mjs/resources/promo/index.js +0 -2
  1129. package/dist/mjs/resources/promo/index.js.map +0 -1
  1130. package/dist/mjs/resources/promo/promo.d.ts +0 -6
  1131. package/dist/mjs/resources/promo/promo.js +0 -6
  1132. package/dist/mjs/resources/promo/promo.js.map +0 -1
  1133. package/dist/mjs/resources/promo/types/index.d.ts +0 -2
  1134. package/dist/mjs/resources/promo/types/index.js +0 -3
  1135. package/dist/mjs/resources/promo/types/index.js.map +0 -1
  1136. package/dist/mjs/resources/promo/types/promo-details.d.ts +0 -13
  1137. package/dist/mjs/resources/promo/types/promo-details.js +0 -2
  1138. package/dist/mjs/resources/promo/types/promo-details.js.map +0 -1
  1139. package/dist/mjs/resources/promo/types/promo-list-item.d.ts +0 -13
  1140. package/dist/mjs/resources/promo/types/promo-list-item.js +0 -2
  1141. package/dist/mjs/resources/promo/types/promo-list-item.js.map +0 -1
  1142. package/dist/mjs/resources/publisher/index.d.ts +0 -1
  1143. package/dist/mjs/resources/publisher/index.js +0 -2
  1144. package/dist/mjs/resources/publisher/index.js.map +0 -1
  1145. package/dist/mjs/resources/publisher/publisher.d.ts +0 -6
  1146. package/dist/mjs/resources/publisher/publisher.js +0 -6
  1147. package/dist/mjs/resources/publisher/publisher.js.map +0 -1
  1148. package/dist/mjs/resources/publisher/types/index.d.ts +0 -2
  1149. package/dist/mjs/resources/publisher/types/index.js +0 -3
  1150. package/dist/mjs/resources/publisher/types/index.js.map +0 -1
  1151. package/dist/mjs/resources/publisher/types/publisher-details.d.ts +0 -20
  1152. package/dist/mjs/resources/publisher/types/publisher-details.js +0 -2
  1153. package/dist/mjs/resources/publisher/types/publisher-details.js.map +0 -1
  1154. package/dist/mjs/resources/publisher/types/publisher-list-item.d.ts +0 -22
  1155. package/dist/mjs/resources/publisher/types/publisher-list-item.js +0 -8
  1156. package/dist/mjs/resources/publisher/types/publisher-list-item.js.map +0 -1
  1157. package/dist/mjs/resources/resource-factory.d.ts +0 -8
  1158. package/dist/mjs/resources/resource-factory.js +0 -17
  1159. package/dist/mjs/resources/resource-factory.js.map +0 -1
  1160. package/dist/mjs/resources/resource-list.d.ts +0 -19
  1161. package/dist/mjs/resources/resource-list.js +0 -20
  1162. package/dist/mjs/resources/resource-list.js.map +0 -1
  1163. package/dist/mjs/resources/resource-map.d.ts +0 -7
  1164. package/dist/mjs/resources/resource-map.js +0 -36
  1165. package/dist/mjs/resources/resource-map.js.map +0 -1
  1166. package/dist/mjs/resources/resource-type.js +0 -23
  1167. package/dist/mjs/resources/resource-type.js.map +0 -1
  1168. package/dist/mjs/resources/series/index.d.ts +0 -1
  1169. package/dist/mjs/resources/series/index.js +0 -2
  1170. package/dist/mjs/resources/series/index.js.map +0 -1
  1171. package/dist/mjs/resources/series/series.d.ts +0 -6
  1172. package/dist/mjs/resources/series/series.js +0 -6
  1173. package/dist/mjs/resources/series/series.js.map +0 -1
  1174. package/dist/mjs/resources/series/types/index.d.ts +0 -2
  1175. package/dist/mjs/resources/series/types/index.js +0 -3
  1176. package/dist/mjs/resources/series/types/index.js.map +0 -1
  1177. package/dist/mjs/resources/series/types/series-details.d.ts +0 -20
  1178. package/dist/mjs/resources/series/types/series-details.js +0 -2
  1179. package/dist/mjs/resources/series/types/series-details.js.map +0 -1
  1180. package/dist/mjs/resources/series/types/series-list-item.d.ts +0 -18
  1181. package/dist/mjs/resources/series/types/series-list-item.js +0 -2
  1182. package/dist/mjs/resources/series/types/series-list-item.js.map +0 -1
  1183. package/dist/mjs/resources/story-arc/index.d.ts +0 -1
  1184. package/dist/mjs/resources/story-arc/index.js +0 -2
  1185. package/dist/mjs/resources/story-arc/index.js.map +0 -1
  1186. package/dist/mjs/resources/story-arc/story-arc.d.ts +0 -6
  1187. package/dist/mjs/resources/story-arc/story-arc.js +0 -6
  1188. package/dist/mjs/resources/story-arc/story-arc.js.map +0 -1
  1189. package/dist/mjs/resources/story-arc/types/index.d.ts +0 -2
  1190. package/dist/mjs/resources/story-arc/types/index.js +0 -3
  1191. package/dist/mjs/resources/story-arc/types/index.js.map +0 -1
  1192. package/dist/mjs/resources/story-arc/types/story-arc-details.d.ts +0 -20
  1193. package/dist/mjs/resources/story-arc/types/story-arc-details.js +0 -2
  1194. package/dist/mjs/resources/story-arc/types/story-arc-details.js.map +0 -1
  1195. package/dist/mjs/resources/story-arc/types/story-arc-list-item.d.ts +0 -17
  1196. package/dist/mjs/resources/story-arc/types/story-arc-list-item.js +0 -2
  1197. package/dist/mjs/resources/story-arc/types/story-arc-list-item.js.map +0 -1
  1198. package/dist/mjs/resources/team/index.d.ts +0 -1
  1199. package/dist/mjs/resources/team/index.js +0 -2
  1200. package/dist/mjs/resources/team/index.js.map +0 -1
  1201. package/dist/mjs/resources/team/team.d.ts +0 -6
  1202. package/dist/mjs/resources/team/team.js +0 -6
  1203. package/dist/mjs/resources/team/team.js.map +0 -1
  1204. package/dist/mjs/resources/team/types/index.d.ts +0 -2
  1205. package/dist/mjs/resources/team/types/index.js +0 -3
  1206. package/dist/mjs/resources/team/types/index.js.map +0 -1
  1207. package/dist/mjs/resources/team/types/team-details.d.ts +0 -26
  1208. package/dist/mjs/resources/team/types/team-details.js +0 -2
  1209. package/dist/mjs/resources/team/types/team-details.js.map +0 -1
  1210. package/dist/mjs/resources/team/types/team-list-item.d.ts +0 -17
  1211. package/dist/mjs/resources/team/types/team-list-item.js +0 -2
  1212. package/dist/mjs/resources/team/types/team-list-item.js.map +0 -1
  1213. package/dist/mjs/resources/thing/index.d.ts +0 -1
  1214. package/dist/mjs/resources/thing/index.js +0 -2
  1215. package/dist/mjs/resources/thing/index.js.map +0 -1
  1216. package/dist/mjs/resources/thing/thing.d.ts +0 -6
  1217. package/dist/mjs/resources/thing/thing.js +0 -6
  1218. package/dist/mjs/resources/thing/thing.js.map +0 -1
  1219. package/dist/mjs/resources/thing/types/index.d.ts +0 -2
  1220. package/dist/mjs/resources/thing/types/index.js +0 -3
  1221. package/dist/mjs/resources/thing/types/index.js.map +0 -1
  1222. package/dist/mjs/resources/thing/types/thing-details.d.ts +0 -20
  1223. package/dist/mjs/resources/thing/types/thing-details.js +0 -2
  1224. package/dist/mjs/resources/thing/types/thing-details.js.map +0 -1
  1225. package/dist/mjs/resources/thing/types/thing-list-item.d.ts +0 -16
  1226. package/dist/mjs/resources/thing/types/thing-list-item.js +0 -2
  1227. package/dist/mjs/resources/thing/types/thing-list-item.js.map +0 -1
  1228. package/dist/mjs/resources/video/index.d.ts +0 -1
  1229. package/dist/mjs/resources/video/index.js +0 -2
  1230. package/dist/mjs/resources/video/index.js.map +0 -1
  1231. package/dist/mjs/resources/video/types/index.d.ts +0 -2
  1232. package/dist/mjs/resources/video/types/index.js +0 -3
  1233. package/dist/mjs/resources/video/types/index.js.map +0 -1
  1234. package/dist/mjs/resources/video/types/video-details.d.ts +0 -27
  1235. package/dist/mjs/resources/video/types/video-details.js +0 -2
  1236. package/dist/mjs/resources/video/types/video-details.js.map +0 -1
  1237. package/dist/mjs/resources/video/types/video-list-item.d.ts +0 -49
  1238. package/dist/mjs/resources/video/types/video-list-item.js +0 -25
  1239. package/dist/mjs/resources/video/types/video-list-item.js.map +0 -1
  1240. package/dist/mjs/resources/video/video.d.ts +0 -6
  1241. package/dist/mjs/resources/video/video.js +0 -6
  1242. package/dist/mjs/resources/video/video.js.map +0 -1
  1243. package/dist/mjs/resources/video-category/index.d.ts +0 -1
  1244. package/dist/mjs/resources/video-category/index.js +0 -2
  1245. package/dist/mjs/resources/video-category/index.js.map +0 -1
  1246. package/dist/mjs/resources/video-category/types/index.d.ts +0 -2
  1247. package/dist/mjs/resources/video-category/types/index.js +0 -3
  1248. package/dist/mjs/resources/video-category/types/index.js.map +0 -1
  1249. package/dist/mjs/resources/video-category/types/video-category-details.d.ts +0 -9
  1250. package/dist/mjs/resources/video-category/types/video-category-details.js +0 -2
  1251. package/dist/mjs/resources/video-category/types/video-category-details.js.map +0 -1
  1252. package/dist/mjs/resources/video-category/types/video-category-list-item.d.ts +0 -9
  1253. package/dist/mjs/resources/video-category/types/video-category-list-item.js +0 -2
  1254. package/dist/mjs/resources/video-category/types/video-category-list-item.js.map +0 -1
  1255. package/dist/mjs/resources/video-category/video-category.d.ts +0 -6
  1256. package/dist/mjs/resources/video-category/video-category.js +0 -6
  1257. package/dist/mjs/resources/video-category/video-category.js.map +0 -1
  1258. package/dist/mjs/resources/video-type/index.d.ts +0 -1
  1259. package/dist/mjs/resources/video-type/index.js +0 -2
  1260. package/dist/mjs/resources/video-type/index.js.map +0 -1
  1261. package/dist/mjs/resources/video-type/types/index.d.ts +0 -2
  1262. package/dist/mjs/resources/video-type/types/index.js +0 -3
  1263. package/dist/mjs/resources/video-type/types/index.js.map +0 -1
  1264. package/dist/mjs/resources/video-type/types/video-type-details.d.ts +0 -7
  1265. package/dist/mjs/resources/video-type/types/video-type-details.js +0 -2
  1266. package/dist/mjs/resources/video-type/types/video-type-details.js.map +0 -1
  1267. package/dist/mjs/resources/video-type/types/video-type-list-item.d.ts +0 -7
  1268. package/dist/mjs/resources/video-type/types/video-type-list-item.js +0 -2
  1269. package/dist/mjs/resources/video-type/types/video-type-list-item.js.map +0 -1
  1270. package/dist/mjs/resources/video-type/video-type.d.ts +0 -6
  1271. package/dist/mjs/resources/video-type/video-type.js +0 -6
  1272. package/dist/mjs/resources/video-type/video-type.js.map +0 -1
  1273. package/dist/mjs/resources/volume/index.d.ts +0 -1
  1274. package/dist/mjs/resources/volume/index.js +0 -2
  1275. package/dist/mjs/resources/volume/index.js.map +0 -1
  1276. package/dist/mjs/resources/volume/types/index.d.ts +0 -2
  1277. package/dist/mjs/resources/volume/types/index.js +0 -3
  1278. package/dist/mjs/resources/volume/types/index.js.map +0 -1
  1279. package/dist/mjs/resources/volume/types/volume-details.d.ts +0 -23
  1280. package/dist/mjs/resources/volume/types/volume-details.js +0 -2
  1281. package/dist/mjs/resources/volume/types/volume-details.js.map +0 -1
  1282. package/dist/mjs/resources/volume/types/volume-list-item.d.ts +0 -18
  1283. package/dist/mjs/resources/volume/types/volume-list-item.js +0 -2
  1284. package/dist/mjs/resources/volume/types/volume-list-item.js.map +0 -1
  1285. package/dist/mjs/resources/volume/volume.d.ts +0 -6
  1286. package/dist/mjs/resources/volume/volume.js +0 -6
  1287. package/dist/mjs/resources/volume/volume.js.map +0 -1
  1288. package/dist/mjs/types/apply-override.js +0 -2
  1289. package/dist/mjs/types/apply-override.js.map +0 -1
  1290. package/dist/mjs/types/http-client.d.ts +0 -4
  1291. package/dist/mjs/types/http-client.js +0 -2
  1292. package/dist/mjs/types/http-client.js.map +0 -1
  1293. package/dist/mjs/types/index.d.ts +0 -7
  1294. package/dist/mjs/types/index.js +0 -8
  1295. package/dist/mjs/types/index.js.map +0 -1
  1296. package/dist/mjs/types/iso-date.js +0 -2
  1297. package/dist/mjs/types/iso-date.js.map +0 -1
  1298. package/dist/mjs/types/pick-filters.js +0 -2
  1299. package/dist/mjs/types/pick-filters.js.map +0 -1
  1300. package/dist/mjs/types/request.d.ts +0 -14
  1301. package/dist/mjs/types/request.js +0 -2
  1302. package/dist/mjs/types/request.js.map +0 -1
  1303. package/dist/mjs/types/response.d.ts +0 -10
  1304. package/dist/mjs/types/response.js +0 -2
  1305. package/dist/mjs/types/response.js.map +0 -1
  1306. package/dist/mjs/types/url-builder.d.ts +0 -6
  1307. package/dist/mjs/types/url-builder.js +0 -2
  1308. package/dist/mjs/types/url-builder.js.map +0 -1
  1309. package/dist/mjs/types/valueof.js +0 -2
  1310. package/dist/mjs/types/valueof.js.map +0 -1
  1311. package/dist/mjs/utils/case-converter.js +0 -27
  1312. package/dist/mjs/utils/case-converter.js.map +0 -1
  1313. package/dist/mjs/utils/index.d.ts +0 -2
  1314. package/dist/mjs/utils/index.js +0 -3
  1315. package/dist/mjs/utils/index.js.map +0 -1
  1316. package/dist/mjs/utils/is-object.js +0 -4
  1317. package/dist/mjs/utils/is-object.js.map +0 -1
  1318. /package/{dist → lib}/cjs/errors/base-error.d.ts +0 -0
  1319. /package/{dist → lib}/cjs/http-client/status-code.d.ts +0 -0
  1320. /package/{dist → lib}/cjs/resources/common-types.d.ts +0 -0
  1321. /package/{dist → lib}/cjs/resources/resource-type.d.ts +0 -0
  1322. /package/{dist → lib}/cjs/types/apply-override.d.ts +0 -0
  1323. /package/{dist → lib}/cjs/types/iso-date.d.ts +0 -0
  1324. /package/{dist → lib}/cjs/types/pick-filters.d.ts +0 -0
  1325. /package/{dist → lib}/cjs/types/valueof.d.ts +0 -0
  1326. /package/{dist → lib}/cjs/utils/case-converter.d.ts +0 -0
  1327. /package/{dist → lib}/cjs/utils/is-object.d.ts +0 -0
  1328. /package/{dist/mjs → lib/esm}/errors/base-error.d.ts +0 -0
  1329. /package/{dist/mjs → lib/esm}/http-client/status-code.d.ts +0 -0
  1330. /package/{dist/mjs → lib/esm}/resources/common-types.d.ts +0 -0
  1331. /package/{dist/mjs → lib/esm}/resources/resource-type.d.ts +0 -0
  1332. /package/{dist/mjs → lib/esm}/types/apply-override.d.ts +0 -0
  1333. /package/{dist/mjs → lib/esm}/types/iso-date.d.ts +0 -0
  1334. /package/{dist/mjs → lib/esm}/types/pick-filters.d.ts +0 -0
  1335. /package/{dist/mjs → lib/esm}/types/valueof.d.ts +0 -0
  1336. /package/{dist/mjs → lib/esm}/utils/case-converter.d.ts +0 -0
  1337. /package/{dist/mjs → lib/esm}/utils/is-object.d.ts +0 -0
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9jYXRpb24tbGlzdC1pdGVtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3Jlc291cmNlcy9sb2NhdGlvbi90eXBlcy9sb2NhdGlvbi1saXN0LWl0ZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IElzc3VlQXBpUmVzb3VyY2UsIEltYWdlIH0gZnJvbSAnLi4vLi4vY29tbW9uLXR5cGVzLmpzJztcblxuZXhwb3J0IGludGVyZmFjZSBMb2NhdGlvbkxpc3RJdGVtIHtcbiAgLyoqXG4gICAqIExpc3Qgb2YgYWxpYXNlcyB0aGUgbG9jYXRpb24gaXMga25vd24gYnkuIEEgXFxuIChuZXdsaW5lKSBzZXBlcmF0ZXMgZWFjaCBhbGlhcy5cbiAgICovXG4gIGFsaWFzZXM6IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBVUkwgcG9pbnRpbmcgdG8gdGhlIGxvY2F0aW9uIGRldGFpbCByZXNvdXJjZS5cbiAgICovXG4gIGFwaURldGFpbFVybDogc3RyaW5nO1xuICAvKipcbiAgICogTnVtYmVyIG9mIGlzc3VlcyB0aGlzIGxvY2F0aW9uIGFwcGVhcnMgaW4uXG4gICAqL1xuICBjb3VudE9mSXNzdWVBcHBlYXJhbmNlczogbnVtYmVyO1xuICAvKipcbiAgICogRGF0ZSB0aGUgbG9jYXRpb24gd2FzIGFkZGVkIHRvIENvbWljIFZpbmUuXG4gICAqL1xuICBkYXRlQWRkZWQ6IERhdGU7XG4gIC8qKlxuICAgKiBEYXRlIHRoZSBsb2NhdGlvbiB3YXMgbGFzdCB1cGRhdGVkIG9uIENvbWljIFZpbmUuXG4gICAqL1xuICBkYXRlTGFzdFVwZGF0ZWQ6IERhdGU7XG4gIC8qKlxuICAgKiBCcmllZiBzdW1tYXJ5IG9mIHRoZSBsb2NhdGlvbi5cbiAgICovXG4gIGRlY2s6IHN0cmluZztcbiAgLyoqXG4gICAqIERlc2NyaXB0aW9uIG9mIHRoZSBsb2NhdGlvbi5cbiAgICovXG4gIGRlc2NyaXB0aW9uOiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogSXNzdWUgd2hlcmUgdGhlIGxvY2F0aW9uIG1hZGUgaXRzIGZpcnN0IGFwcGVhcmFuY2UuXG4gICAqL1xuICBmaXJzdEFwcGVhcmVkSW5Jc3N1ZTogSXNzdWVBcGlSZXNvdXJjZTtcbiAgLyoqXG4gICAqIFVuaXF1ZSBJRCBvZiB0aGUgbG9jYXRpb24uXG4gICAqL1xuICBpZDogbnVtYmVyO1xuICAvKipcbiAgICogTWFpbiBpbWFnZSBvZiB0aGUgbG9jYXRpb24uXG4gICAqL1xuICBpbWFnZTogSW1hZ2U7XG4gIC8qKlxuICAgKiBOYW1lIG9mIHRoZSBsb2NhdGlvbi5cbiAgICovXG4gIG5hbWU6IHN0cmluZztcbiAgLyoqXG4gICAqIFVSTCBwb2ludGluZyB0byB0aGUgbG9jYXRpb24gb24gR2lhbnQgQm9tYi5cbiAgICovXG4gIHNpdGVEZXRhaWxVcmw6IHN0cmluZztcbiAgLyoqXG4gICAqIFRoZSBmaXJzdCB5ZWFyIHRoaXMgbG9jYXRpb24gYXBwZWFyZWQgaW4gY29taWNzLlxuICAgKi9cbiAgc3RhcnRZZWFyOiBudWxsIHwgc3RyaW5nO1xufVxuIl19
@@ -0,0 +1 @@
1
+ export * from './movie.js';
@@ -0,0 +1,2 @@
1
+ export * from './movie.js';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL21vdmllL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsWUFBWSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9tb3ZpZS5qcyc7XG4iXX0=
@@ -0,0 +1,6 @@
1
+ import { MovieDetails, MovieListItem } from './types/index.js';
2
+ import { BaseResource } from '../base-resource.js';
3
+ import { ResourceType } from '../resource-type.js';
4
+ export declare class Movie extends BaseResource<MovieDetails, MovieListItem> {
5
+ protected resourceType: ResourceType;
6
+ }
@@ -0,0 +1,9 @@
1
+ import { BaseResource } from '../base-resource.js';
2
+ import { ResourceType } from '../resource-type.js';
3
+ export class Movie extends BaseResource {
4
+ constructor() {
5
+ super(...arguments);
6
+ this.resourceType = ResourceType.Movie;
7
+ }
8
+ }
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW92aWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL21vdmllL21vdmllLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFFbkQsTUFBTSxPQUFPLEtBQU0sU0FBUSxZQUF5QztJQUFwRTs7UUFDWSxpQkFBWSxHQUFpQixZQUFZLENBQUMsS0FBSyxDQUFDO0lBQzVELENBQUM7Q0FBQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE1vdmllRGV0YWlscywgTW92aWVMaXN0SXRlbSB9IGZyb20gJy4vdHlwZXMvaW5kZXguanMnO1xuaW1wb3J0IHsgQmFzZVJlc291cmNlIH0gZnJvbSAnLi4vYmFzZS1yZXNvdXJjZS5qcyc7XG5pbXBvcnQgeyBSZXNvdXJjZVR5cGUgfSBmcm9tICcuLi9yZXNvdXJjZS10eXBlLmpzJztcblxuZXhwb3J0IGNsYXNzIE1vdmllIGV4dGVuZHMgQmFzZVJlc291cmNlPE1vdmllRGV0YWlscywgTW92aWVMaXN0SXRlbT4ge1xuICBwcm90ZWN0ZWQgcmVzb3VyY2VUeXBlOiBSZXNvdXJjZVR5cGUgPSBSZXNvdXJjZVR5cGUuTW92aWU7XG59XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './movie-details.js';
2
+ export * from './movie-list-item.js';
@@ -0,0 +1,3 @@
1
+ export * from './movie-details.js';
2
+ export * from './movie-list-item.js';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL21vdmllL3R5cGVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbW92aWUtZGV0YWlscy5qcyc7XG5leHBvcnQgKiBmcm9tICcuL21vdmllLWxpc3QtaXRlbS5qcyc7XG4iXX0=
@@ -0,0 +1,91 @@
1
+ import { SiteResource, Image } from '../../common-types.js';
2
+ export interface MovieDetails {
3
+ /**
4
+ * URL pointing to the movie detail resource.
5
+ */
6
+ apiDetailUrl: string;
7
+ /**
8
+ * The total revenue made in the box offices for this movie.
9
+ */
10
+ boxOfficeRevenue: null | string;
11
+ /**
12
+ * The cost of making this movie.
13
+ */
14
+ budget: string;
15
+ /**
16
+ * Characters related to the movie.
17
+ */
18
+ characters: Array<SiteResource>;
19
+ /**
20
+ * Concepts related to the movie.
21
+ */
22
+ concepts: Array<SiteResource>;
23
+ /**
24
+ * Date the movie was added to Comic Vine.
25
+ */
26
+ dateAdded: Date;
27
+ /**
28
+ * Date the movie was last updated on Comic Vine.
29
+ */
30
+ dateLastUpdated: Date;
31
+ /**
32
+ * Brief summary of the movie.
33
+ */
34
+ deck: string;
35
+ /**
36
+ * Description of the movie.
37
+ */
38
+ description: null | string;
39
+ distributor: null;
40
+ hasStaffReview: null | false | SiteResource;
41
+ /**
42
+ * Unique ID of the movie.
43
+ */
44
+ id: number;
45
+ /**
46
+ * Main image of the movie.
47
+ */
48
+ image: Image;
49
+ /**
50
+ * Locations related to the movie.
51
+ */
52
+ locations: Array<SiteResource>;
53
+ /**
54
+ * Name of the movie.
55
+ */
56
+ name: string;
57
+ objects: Array<SiteResource>;
58
+ /**
59
+ * The producers of this movie.
60
+ */
61
+ producers: Array<SiteResource>;
62
+ /**
63
+ * The rating of this movie.
64
+ */
65
+ rating: string;
66
+ /**
67
+ * Date of the movie.
68
+ */
69
+ releaseDate: Date;
70
+ /**
71
+ * The length of this movie.
72
+ */
73
+ runtime: string;
74
+ /**
75
+ * URL pointing to the movie on Giant Bomb.
76
+ */
77
+ siteDetailUrl: string;
78
+ studios: Array<SiteResource>;
79
+ /**
80
+ * List of teams this movie is a member of.
81
+ */
82
+ teams: Array<SiteResource>;
83
+ /**
84
+ * Total revenue generated by this movie.
85
+ */
86
+ totalRevenue: string;
87
+ /**
88
+ * Writers for this movie.
89
+ */
90
+ writers: Array<SiteResource>;
91
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW92aWUtZGV0YWlscy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9yZXNvdXJjZXMvbW92aWUvdHlwZXMvbW92aWUtZGV0YWlscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2l0ZVJlc291cmNlLCBJbWFnZSB9IGZyb20gJy4uLy4uL2NvbW1vbi10eXBlcy5qcyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgTW92aWVEZXRhaWxzIHtcbiAgLyoqXG4gICAqIFVSTCBwb2ludGluZyB0byB0aGUgbW92aWUgZGV0YWlsIHJlc291cmNlLlxuICAgKi9cbiAgYXBpRGV0YWlsVXJsOiBzdHJpbmc7XG4gIC8qKlxuICAgKiBUaGUgdG90YWwgcmV2ZW51ZSBtYWRlIGluIHRoZSBib3ggb2ZmaWNlcyBmb3IgdGhpcyBtb3ZpZS5cbiAgICovXG4gIGJveE9mZmljZVJldmVudWU6IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBUaGUgY29zdCBvZiBtYWtpbmcgdGhpcyBtb3ZpZS5cbiAgICovXG4gIGJ1ZGdldDogc3RyaW5nO1xuICAvKipcbiAgICogQ2hhcmFjdGVycyByZWxhdGVkIHRvIHRoZSBtb3ZpZS5cbiAgICovXG4gIGNoYXJhY3RlcnM6IEFycmF5PFNpdGVSZXNvdXJjZT47XG4gIC8qKlxuICAgKiBDb25jZXB0cyByZWxhdGVkIHRvIHRoZSBtb3ZpZS5cbiAgICovXG4gIGNvbmNlcHRzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogRGF0ZSB0aGUgbW92aWUgd2FzIGFkZGVkIHRvIENvbWljIFZpbmUuXG4gICAqL1xuICBkYXRlQWRkZWQ6IERhdGU7XG4gIC8qKlxuICAgKiBEYXRlIHRoZSBtb3ZpZSB3YXMgbGFzdCB1cGRhdGVkIG9uIENvbWljIFZpbmUuXG4gICAqL1xuICBkYXRlTGFzdFVwZGF0ZWQ6IERhdGU7XG4gIC8qKlxuICAgKiBCcmllZiBzdW1tYXJ5IG9mIHRoZSBtb3ZpZS5cbiAgICovXG4gIGRlY2s6IHN0cmluZztcbiAgLyoqXG4gICAqIERlc2NyaXB0aW9uIG9mIHRoZSBtb3ZpZS5cbiAgICovXG4gIGRlc2NyaXB0aW9uOiBudWxsIHwgc3RyaW5nO1xuICBkaXN0cmlidXRvcjogbnVsbDtcbiAgaGFzU3RhZmZSZXZpZXc6IG51bGwgfCBmYWxzZSB8IFNpdGVSZXNvdXJjZTtcbiAgLyoqXG4gICAqIFVuaXF1ZSBJRCBvZiB0aGUgbW92aWUuXG4gICAqL1xuICBpZDogbnVtYmVyO1xuICAvKipcbiAgICogTWFpbiBpbWFnZSBvZiB0aGUgbW92aWUuXG4gICAqL1xuICBpbWFnZTogSW1hZ2U7XG4gIC8qKlxuICAgKiBMb2NhdGlvbnMgcmVsYXRlZCB0byB0aGUgbW92aWUuXG4gICAqL1xuICBsb2NhdGlvbnM6IEFycmF5PFNpdGVSZXNvdXJjZT47XG4gIC8qKlxuICAgKiBOYW1lIG9mIHRoZSBtb3ZpZS5cbiAgICovXG4gIG5hbWU6IHN0cmluZztcbiAgb2JqZWN0czogQXJyYXk8U2l0ZVJlc291cmNlPjtcbiAgLyoqXG4gICAqIFRoZSBwcm9kdWNlcnMgb2YgdGhpcyBtb3ZpZS5cbiAgICovXG4gIHByb2R1Y2VyczogQXJyYXk8U2l0ZVJlc291cmNlPjtcbiAgLyoqXG4gICAqIFRoZSByYXRpbmcgb2YgdGhpcyBtb3ZpZS5cbiAgICovXG4gIHJhdGluZzogc3RyaW5nO1xuICAvKipcbiAgICogRGF0ZSBvZiB0aGUgbW92aWUuXG4gICAqL1xuICByZWxlYXNlRGF0ZTogRGF0ZTtcbiAgLyoqXG4gICAqIFRoZSBsZW5ndGggb2YgdGhpcyBtb3ZpZS5cbiAgICovXG4gIHJ1bnRpbWU6IHN0cmluZztcbiAgLyoqXG4gICAqIFVSTCBwb2ludGluZyB0byB0aGUgbW92aWUgb24gR2lhbnQgQm9tYi5cbiAgICovXG4gIHNpdGVEZXRhaWxVcmw6IHN0cmluZztcbiAgc3R1ZGlvczogQXJyYXk8U2l0ZVJlc291cmNlPjtcbiAgLyoqXG4gICAqIExpc3Qgb2YgdGVhbXMgdGhpcyBtb3ZpZSBpcyBhIG1lbWJlciBvZi5cbiAgICovXG4gIHRlYW1zOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogVG90YWwgcmV2ZW51ZSBnZW5lcmF0ZWQgYnkgdGhpcyBtb3ZpZS5cbiAgICovXG4gIHRvdGFsUmV2ZW51ZTogc3RyaW5nO1xuICAvKipcbiAgICogV3JpdGVycyBmb3IgdGhpcyBtb3ZpZS5cbiAgICovXG4gIHdyaXRlcnM6IEFycmF5PFNpdGVSZXNvdXJjZT47XG59XG4iXX0=
@@ -0,0 +1,74 @@
1
+ import { SiteResource, Image } from '../../common-types.js';
2
+ export interface MovieListItem {
3
+ /**
4
+ * URL pointing to the movie detail resource.
5
+ */
6
+ apiDetailUrl: string;
7
+ /**
8
+ * The total revenue made in the box offices for this movie.
9
+ */
10
+ boxOfficeRevenue: null | string;
11
+ /**
12
+ * The cost of making this movie.
13
+ */
14
+ budget: null | string;
15
+ /**
16
+ * Date the movie was added to Comic Vine.
17
+ */
18
+ dateAdded: Date;
19
+ /**
20
+ * Date the movie was last updated on Comic Vine.
21
+ */
22
+ dateLastUpdated: Date;
23
+ /**
24
+ * Brief summary of the movie.
25
+ */
26
+ deck: null | string;
27
+ /**
28
+ * Description of the movie.
29
+ */
30
+ description: null | string;
31
+ distributor: null;
32
+ hasStaffReview: null | false | SiteResource;
33
+ /**
34
+ * Unique ID of the movie.
35
+ */
36
+ id: number;
37
+ /**
38
+ * Main image of the movie.
39
+ */
40
+ image: Image;
41
+ /**
42
+ * Name of the movie.
43
+ */
44
+ name: string;
45
+ /**
46
+ * The producers of this movie.
47
+ */
48
+ producers: Array<SiteResource>;
49
+ /**
50
+ * The rating of this movie.
51
+ */
52
+ rating: null | string;
53
+ /**
54
+ * Date of the movie.
55
+ */
56
+ releaseDate: Date;
57
+ /**
58
+ * The length of this movie.
59
+ */
60
+ runtime: string;
61
+ /**
62
+ * URL pointing to the movie on Giant Bomb.
63
+ */
64
+ siteDetailUrl: string;
65
+ studios: Array<SiteResource>;
66
+ /**
67
+ * Total revenue generated by this movie.
68
+ */
69
+ totalRevenue: null | string;
70
+ /**
71
+ * Writers for this movie.
72
+ */
73
+ writers: Array<SiteResource>;
74
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW92aWUtbGlzdC1pdGVtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3Jlc291cmNlcy9tb3ZpZS90eXBlcy9tb3ZpZS1saXN0LWl0ZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNpdGVSZXNvdXJjZSwgSW1hZ2UgfSBmcm9tICcuLi8uLi9jb21tb24tdHlwZXMuanMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIE1vdmllTGlzdEl0ZW0ge1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBtb3ZpZSBkZXRhaWwgcmVzb3VyY2UuXG4gICAqL1xuICBhcGlEZXRhaWxVcmw6IHN0cmluZztcbiAgLyoqXG4gICAqIFRoZSB0b3RhbCByZXZlbnVlIG1hZGUgaW4gdGhlIGJveCBvZmZpY2VzIGZvciB0aGlzIG1vdmllLlxuICAgKi9cbiAgYm94T2ZmaWNlUmV2ZW51ZTogbnVsbCB8IHN0cmluZztcbiAgLyoqXG4gICAqIFRoZSBjb3N0IG9mIG1ha2luZyB0aGlzIG1vdmllLlxuICAgKi9cbiAgYnVkZ2V0OiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogRGF0ZSB0aGUgbW92aWUgd2FzIGFkZGVkIHRvIENvbWljIFZpbmUuXG4gICAqL1xuICBkYXRlQWRkZWQ6IERhdGU7XG4gIC8qKlxuICAgKiBEYXRlIHRoZSBtb3ZpZSB3YXMgbGFzdCB1cGRhdGVkIG9uIENvbWljIFZpbmUuXG4gICAqL1xuICBkYXRlTGFzdFVwZGF0ZWQ6IERhdGU7XG4gIC8qKlxuICAgKiBCcmllZiBzdW1tYXJ5IG9mIHRoZSBtb3ZpZS5cbiAgICovXG4gIGRlY2s6IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBEZXNjcmlwdGlvbiBvZiB0aGUgbW92aWUuXG4gICAqL1xuICBkZXNjcmlwdGlvbjogbnVsbCB8IHN0cmluZztcbiAgZGlzdHJpYnV0b3I6IG51bGw7XG4gIGhhc1N0YWZmUmV2aWV3OiBudWxsIHwgZmFsc2UgfCBTaXRlUmVzb3VyY2U7XG4gIC8qKlxuICAgKiBVbmlxdWUgSUQgb2YgdGhlIG1vdmllLlxuICAgKi9cbiAgaWQ6IG51bWJlcjtcbiAgLyoqXG4gICAqIE1haW4gaW1hZ2Ugb2YgdGhlIG1vdmllLlxuICAgKi9cbiAgaW1hZ2U6IEltYWdlO1xuICAvKipcbiAgICogTmFtZSBvZiB0aGUgbW92aWUuXG4gICAqL1xuICBuYW1lOiBzdHJpbmc7XG4gIC8qKlxuICAgKiBUaGUgcHJvZHVjZXJzIG9mIHRoaXMgbW92aWUuXG4gICAqL1xuICBwcm9kdWNlcnM6IEFycmF5PFNpdGVSZXNvdXJjZT47XG4gIC8qKlxuICAgKiBUaGUgcmF0aW5nIG9mIHRoaXMgbW92aWUuXG4gICAqL1xuICByYXRpbmc6IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBEYXRlIG9mIHRoZSBtb3ZpZS5cbiAgICovXG4gIHJlbGVhc2VEYXRlOiBEYXRlO1xuICAvKipcbiAgICogVGhlIGxlbmd0aCBvZiB0aGlzIG1vdmllLlxuICAgKi9cbiAgcnVudGltZTogc3RyaW5nO1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBtb3ZpZSBvbiBHaWFudCBCb21iLlxuICAgKi9cbiAgc2l0ZURldGFpbFVybDogc3RyaW5nO1xuICBzdHVkaW9zOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogVG90YWwgcmV2ZW51ZSBnZW5lcmF0ZWQgYnkgdGhpcyBtb3ZpZS5cbiAgICovXG4gIHRvdGFsUmV2ZW51ZTogbnVsbCB8IHN0cmluZztcbiAgLyoqXG4gICAqIFdyaXRlcnMgZm9yIHRoaXMgbW92aWUuXG4gICAqL1xuICB3cml0ZXJzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xufVxuIl19
@@ -0,0 +1 @@
1
+ export * from './origin.js';
@@ -0,0 +1,2 @@
1
+ export * from './origin.js';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL29yaWdpbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGFBQWEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vb3JpZ2luLmpzJztcbiJdfQ==
@@ -0,0 +1,6 @@
1
+ import { OriginDetails, OriginListItem } from './types/index.js';
2
+ import { BaseResource } from '../base-resource.js';
3
+ import { ResourceType } from '../resource-type.js';
4
+ export declare class Origin extends BaseResource<OriginDetails, OriginListItem> {
5
+ protected resourceType: ResourceType;
6
+ }
@@ -0,0 +1,9 @@
1
+ import { BaseResource } from '../base-resource.js';
2
+ import { ResourceType } from '../resource-type.js';
3
+ export class Origin extends BaseResource {
4
+ constructor() {
5
+ super(...arguments);
6
+ this.resourceType = ResourceType.Origin;
7
+ }
8
+ }
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3JpZ2luLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3Jlc291cmNlcy9vcmlnaW4vb3JpZ2luLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFFbkQsTUFBTSxPQUFPLE1BQU8sU0FBUSxZQUEyQztJQUF2RTs7UUFDWSxpQkFBWSxHQUFpQixZQUFZLENBQUMsTUFBTSxDQUFDO0lBQzdELENBQUM7Q0FBQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9yaWdpbkRldGFpbHMsIE9yaWdpbkxpc3RJdGVtIH0gZnJvbSAnLi90eXBlcy9pbmRleC5qcyc7XG5pbXBvcnQgeyBCYXNlUmVzb3VyY2UgfSBmcm9tICcuLi9iYXNlLXJlc291cmNlLmpzJztcbmltcG9ydCB7IFJlc291cmNlVHlwZSB9IGZyb20gJy4uL3Jlc291cmNlLXR5cGUuanMnO1xuXG5leHBvcnQgY2xhc3MgT3JpZ2luIGV4dGVuZHMgQmFzZVJlc291cmNlPE9yaWdpbkRldGFpbHMsIE9yaWdpbkxpc3RJdGVtPiB7XG4gIHByb3RlY3RlZCByZXNvdXJjZVR5cGU6IFJlc291cmNlVHlwZSA9IFJlc291cmNlVHlwZS5PcmlnaW47XG59XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './origin-details.js';
2
+ export * from './origin-list-item.js';
@@ -0,0 +1,3 @@
1
+ export * from './origin-details.js';
2
+ export * from './origin-list-item.js';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL29yaWdpbi90eXBlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsdUJBQXVCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL29yaWdpbi1kZXRhaWxzLmpzJztcbmV4cG9ydCAqIGZyb20gJy4vb3JpZ2luLWxpc3QtaXRlbS5qcyc7XG4iXX0=
@@ -0,0 +1,22 @@
1
+ import { ApiResource } from '../../common-types.js';
2
+ export interface OriginDetails {
3
+ /**
4
+ * URL pointing to the origin detail resource.
5
+ */
6
+ apiDetailUrl: string;
7
+ characters: Array<ApiResource>;
8
+ characterSet: null | unknown;
9
+ /**
10
+ * Unique ID of the origin.
11
+ */
12
+ id: number;
13
+ /**
14
+ * Name of the origin.
15
+ */
16
+ name: string;
17
+ profiles: Array<unknown>;
18
+ /**
19
+ * URL pointing to the origin on Giant Bomb.
20
+ */
21
+ siteDetailUrl: string;
22
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3JpZ2luLWRldGFpbHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL29yaWdpbi90eXBlcy9vcmlnaW4tZGV0YWlscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXBpUmVzb3VyY2UgfSBmcm9tICcuLi8uLi9jb21tb24tdHlwZXMuanMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIE9yaWdpbkRldGFpbHMge1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBvcmlnaW4gZGV0YWlsIHJlc291cmNlLlxuICAgKi9cbiAgYXBpRGV0YWlsVXJsOiBzdHJpbmc7XG4gIGNoYXJhY3RlcnM6IEFycmF5PEFwaVJlc291cmNlPjtcbiAgY2hhcmFjdGVyU2V0OiBudWxsIHwgdW5rbm93bjtcbiAgLyoqXG4gICAqIFVuaXF1ZSBJRCBvZiB0aGUgb3JpZ2luLlxuICAgKi9cbiAgaWQ6IG51bWJlcjtcbiAgLyoqXG4gICAqIE5hbWUgb2YgdGhlIG9yaWdpbi5cbiAgICovXG4gIG5hbWU6IHN0cmluZztcbiAgcHJvZmlsZXM6IEFycmF5PHVua25vd24+O1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBvcmlnaW4gb24gR2lhbnQgQm9tYi5cbiAgICovXG4gIHNpdGVEZXRhaWxVcmw6IHN0cmluZztcbn1cbiJdfQ==
@@ -0,0 +1,18 @@
1
+ export interface OriginListItem {
2
+ /**
3
+ * URL pointing to the origin detail resource.
4
+ */
5
+ apiDetailUrl: string;
6
+ /**
7
+ * Unique ID of the origin.
8
+ */
9
+ id: number;
10
+ /**
11
+ * Name of the origin.
12
+ */
13
+ name: string;
14
+ /**
15
+ * URL pointing to the origin on Giant Bomb.
16
+ */
17
+ siteDetailUrl: string;
18
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3JpZ2luLWxpc3QtaXRlbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9yZXNvdXJjZXMvb3JpZ2luL3R5cGVzL29yaWdpbi1saXN0LWl0ZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7fSBmcm9tICcuLi8uLi9jb21tb24tdHlwZXMuanMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIE9yaWdpbkxpc3RJdGVtIHtcbiAgLyoqXG4gICAqIFVSTCBwb2ludGluZyB0byB0aGUgb3JpZ2luIGRldGFpbCByZXNvdXJjZS5cbiAgICovXG4gIGFwaURldGFpbFVybDogc3RyaW5nO1xuICAvKipcbiAgICogVW5pcXVlIElEIG9mIHRoZSBvcmlnaW4uXG4gICAqL1xuICBpZDogbnVtYmVyO1xuICAvKipcbiAgICogTmFtZSBvZiB0aGUgb3JpZ2luLlxuICAgKi9cbiAgbmFtZTogc3RyaW5nO1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBvcmlnaW4gb24gR2lhbnQgQm9tYi5cbiAgICovXG4gIHNpdGVEZXRhaWxVcmw6IHN0cmluZztcbn1cbiJdfQ==
@@ -0,0 +1 @@
1
+ export * from './person.js';
@@ -0,0 +1,2 @@
1
+ export * from './person.js';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL3BlcnNvbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGFBQWEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcGVyc29uLmpzJztcbiJdfQ==
@@ -0,0 +1,6 @@
1
+ import { PersonDetails, PersonListItem } from './types/index.js';
2
+ import { BaseResource } from '../base-resource.js';
3
+ import { ResourceType } from '../resource-type.js';
4
+ export declare class Person extends BaseResource<PersonDetails, PersonListItem> {
5
+ protected resourceType: ResourceType;
6
+ }
@@ -0,0 +1,9 @@
1
+ import { BaseResource } from '../base-resource.js';
2
+ import { ResourceType } from '../resource-type.js';
3
+ export class Person extends BaseResource {
4
+ constructor() {
5
+ super(...arguments);
6
+ this.resourceType = ResourceType.Person;
7
+ }
8
+ }
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVyc29uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3Jlc291cmNlcy9wZXJzb24vcGVyc29uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFFbkQsTUFBTSxPQUFPLE1BQU8sU0FBUSxZQUEyQztJQUF2RTs7UUFDWSxpQkFBWSxHQUFpQixZQUFZLENBQUMsTUFBTSxDQUFDO0lBQzdELENBQUM7Q0FBQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFBlcnNvbkRldGFpbHMsIFBlcnNvbkxpc3RJdGVtIH0gZnJvbSAnLi90eXBlcy9pbmRleC5qcyc7XG5pbXBvcnQgeyBCYXNlUmVzb3VyY2UgfSBmcm9tICcuLi9iYXNlLXJlc291cmNlLmpzJztcbmltcG9ydCB7IFJlc291cmNlVHlwZSB9IGZyb20gJy4uL3Jlc291cmNlLXR5cGUuanMnO1xuXG5leHBvcnQgY2xhc3MgUGVyc29uIGV4dGVuZHMgQmFzZVJlc291cmNlPFBlcnNvbkRldGFpbHMsIFBlcnNvbkxpc3RJdGVtPiB7XG4gIHByb3RlY3RlZCByZXNvdXJjZVR5cGU6IFJlc291cmNlVHlwZSA9IFJlc291cmNlVHlwZS5QZXJzb247XG59XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './person-details.js';
2
+ export * from './person-list-item.js';
@@ -0,0 +1,3 @@
1
+ export * from './person-details.js';
2
+ export * from './person-list-item.js';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL3BlcnNvbi90eXBlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsdUJBQXVCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3BlcnNvbi1kZXRhaWxzLmpzJztcbmV4cG9ydCAqIGZyb20gJy4vcGVyc29uLWxpc3QtaXRlbS5qcyc7XG4iXX0=
@@ -0,0 +1,82 @@
1
+ import { SiteResource, Image } from '../../common-types.js';
2
+ export interface PersonDetails {
3
+ /**
4
+ * List of aliases the person is known by. A \n (newline) seperates each alias.
5
+ */
6
+ aliases: null | string;
7
+ /**
8
+ * URL pointing to the person detail resource.
9
+ */
10
+ apiDetailUrl: string;
11
+ /**
12
+ * A date, if one exists, that the person was born on. Not an origin date.
13
+ */
14
+ birth: Date | null;
15
+ countOfIsssueAppearances: null | unknown;
16
+ /**
17
+ * Country the person resides in.
18
+ */
19
+ country: null | string;
20
+ /**
21
+ * Comic characters this person created.
22
+ */
23
+ createdCharacters: Array<SiteResource>;
24
+ /**
25
+ * Date the person was added to Comic Vine.
26
+ */
27
+ dateAdded: Date;
28
+ /**
29
+ * Date the person was last updated on Comic Vine.
30
+ */
31
+ dateLastUpdated: Date;
32
+ /**
33
+ * Date this person died on.
34
+ */
35
+ death: null | unknown;
36
+ /**
37
+ * Brief summary of the person.
38
+ */
39
+ deck: null | string;
40
+ /**
41
+ * Description of the person.
42
+ */
43
+ description: null | string;
44
+ /**
45
+ * The email of this person.
46
+ */
47
+ email: null | unknown;
48
+ /**
49
+ * Gender of the person. Available options are: Male, Female, Other
50
+ */
51
+ gender: number;
52
+ /**
53
+ * City or town the person resides in.
54
+ */
55
+ hometown: null | unknown;
56
+ /**
57
+ * Unique ID of the person.
58
+ */
59
+ id: number;
60
+ /**
61
+ * Main image of the person.
62
+ */
63
+ image: Image;
64
+ /**
65
+ * List of issues this person appears in.
66
+ */
67
+ issues: Array<SiteResource>;
68
+ /**
69
+ * Name of the person.
70
+ */
71
+ name: string;
72
+ /**
73
+ * URL pointing to the person on Giant Bomb.
74
+ */
75
+ siteDetailUrl: string;
76
+ storyArcCredits: Array<SiteResource>;
77
+ volumeCredits: Array<SiteResource>;
78
+ /**
79
+ * URL to the person website.
80
+ */
81
+ website: null | string;
82
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVyc29uLWRldGFpbHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL3BlcnNvbi90eXBlcy9wZXJzb24tZGV0YWlscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2l0ZVJlc291cmNlLCBJbWFnZSB9IGZyb20gJy4uLy4uL2NvbW1vbi10eXBlcy5qcyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgUGVyc29uRGV0YWlscyB7XG4gIC8qKlxuICAgKiBMaXN0IG9mIGFsaWFzZXMgdGhlIHBlcnNvbiBpcyBrbm93biBieS4gQSBcXG4gKG5ld2xpbmUpIHNlcGVyYXRlcyBlYWNoIGFsaWFzLlxuICAgKi9cbiAgYWxpYXNlczogbnVsbCB8IHN0cmluZztcbiAgLyoqXG4gICAqIFVSTCBwb2ludGluZyB0byB0aGUgcGVyc29uIGRldGFpbCByZXNvdXJjZS5cbiAgICovXG4gIGFwaURldGFpbFVybDogc3RyaW5nO1xuICAvKipcbiAgICogQSBkYXRlLCBpZiBvbmUgZXhpc3RzLCB0aGF0IHRoZSBwZXJzb24gd2FzIGJvcm4gb24uIE5vdCBhbiBvcmlnaW4gZGF0ZS5cbiAgICovXG4gIGJpcnRoOiBEYXRlIHwgbnVsbDtcbiAgY291bnRPZklzc3N1ZUFwcGVhcmFuY2VzOiBudWxsIHwgdW5rbm93bjtcbiAgLyoqXG4gICAqIENvdW50cnkgdGhlIHBlcnNvbiByZXNpZGVzIGluLlxuICAgKi9cbiAgY291bnRyeTogbnVsbCB8IHN0cmluZztcbiAgLyoqXG4gICAqIENvbWljIGNoYXJhY3RlcnMgdGhpcyBwZXJzb24gY3JlYXRlZC5cbiAgICovXG4gIGNyZWF0ZWRDaGFyYWN0ZXJzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogRGF0ZSB0aGUgcGVyc29uIHdhcyBhZGRlZCB0byBDb21pYyBWaW5lLlxuICAgKi9cbiAgZGF0ZUFkZGVkOiBEYXRlO1xuICAvKipcbiAgICogRGF0ZSB0aGUgcGVyc29uIHdhcyBsYXN0IHVwZGF0ZWQgb24gQ29taWMgVmluZS5cbiAgICovXG4gIGRhdGVMYXN0VXBkYXRlZDogRGF0ZTtcbiAgLyoqXG4gICAqIERhdGUgdGhpcyBwZXJzb24gZGllZCBvbi5cbiAgICovXG4gIGRlYXRoOiBudWxsIHwgdW5rbm93bjtcbiAgLyoqXG4gICAqIEJyaWVmIHN1bW1hcnkgb2YgdGhlIHBlcnNvbi5cbiAgICovXG4gIGRlY2s6IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBEZXNjcmlwdGlvbiBvZiB0aGUgcGVyc29uLlxuICAgKi9cbiAgZGVzY3JpcHRpb246IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBUaGUgZW1haWwgb2YgdGhpcyBwZXJzb24uXG4gICAqL1xuICBlbWFpbDogbnVsbCB8IHVua25vd247XG4gIC8qKlxuICAgKiBHZW5kZXIgb2YgdGhlIHBlcnNvbi4gQXZhaWxhYmxlIG9wdGlvbnMgYXJlOiBNYWxlLCBGZW1hbGUsIE90aGVyXG4gICAqL1xuICBnZW5kZXI6IG51bWJlcjtcbiAgLyoqXG4gICAqIENpdHkgb3IgdG93biB0aGUgcGVyc29uIHJlc2lkZXMgaW4uXG4gICAqL1xuICBob21ldG93bjogbnVsbCB8IHVua25vd247XG4gIC8qKlxuICAgKiBVbmlxdWUgSUQgb2YgdGhlIHBlcnNvbi5cbiAgICovXG4gIGlkOiBudW1iZXI7XG4gIC8qKlxuICAgKiBNYWluIGltYWdlIG9mIHRoZSBwZXJzb24uXG4gICAqL1xuICBpbWFnZTogSW1hZ2U7XG4gIC8qKlxuICAgKiBMaXN0IG9mIGlzc3VlcyB0aGlzIHBlcnNvbiBhcHBlYXJzIGluLlxuICAgKi9cbiAgaXNzdWVzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogTmFtZSBvZiB0aGUgcGVyc29uLlxuICAgKi9cbiAgbmFtZTogc3RyaW5nO1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBwZXJzb24gb24gR2lhbnQgQm9tYi5cbiAgICovXG4gIHNpdGVEZXRhaWxVcmw6IHN0cmluZztcbiAgc3RvcnlBcmNDcmVkaXRzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICB2b2x1bWVDcmVkaXRzOiBBcnJheTxTaXRlUmVzb3VyY2U+O1xuICAvKipcbiAgICogVVJMIHRvIHRoZSBwZXJzb24gd2Vic2l0ZS5cbiAgICovXG4gIHdlYnNpdGU6IG51bGwgfCBzdHJpbmc7XG59XG4iXX0=
@@ -0,0 +1,77 @@
1
+ import { Death } from '../../common-types.js';
2
+ export interface PersonListItem {
3
+ /**
4
+ * List of aliases the person is known by. A \n (newline) seperates each alias.
5
+ */
6
+ aliases: null | string;
7
+ /**
8
+ * URL pointing to the person detail resource.
9
+ */
10
+ apiDetailUrl: string;
11
+ /**
12
+ * A date, if one exists, that the person was born on. Not an origin date.
13
+ */
14
+ birth: Date | null;
15
+ countOfIsssueAppearances: null | unknown;
16
+ /**
17
+ * Country the person resides in.
18
+ */
19
+ country: null | string;
20
+ /**
21
+ * Date the person was added to Comic Vine.
22
+ */
23
+ dateAdded: Date;
24
+ /**
25
+ * Date the person was last updated on Comic Vine.
26
+ */
27
+ dateLastUpdated: Date;
28
+ /**
29
+ * Date this person died on.
30
+ */
31
+ death: Death | null;
32
+ /**
33
+ * Brief summary of the person.
34
+ */
35
+ deck: null | string;
36
+ /**
37
+ * Description of the person.
38
+ */
39
+ description: null | string;
40
+ /**
41
+ * The email of this person.
42
+ */
43
+ email: null | string;
44
+ /**
45
+ * Gender of the person. Available options are: Male, Female, Other
46
+ */
47
+ gender: number;
48
+ /**
49
+ * City or town the person resides in.
50
+ */
51
+ hometown: null | string;
52
+ /**
53
+ * Unique ID of the person.
54
+ */
55
+ id: number;
56
+ /**
57
+ * Main image of the person.
58
+ */
59
+ image: {
60
+ [key: string]: null | string;
61
+ };
62
+ /**
63
+ * Name of the person.
64
+ */
65
+ name: string;
66
+ /**
67
+ * URL pointing to the person on Giant Bomb.
68
+ */
69
+ siteDetailUrl: string;
70
+ /**
71
+ * URL to the person website.
72
+ */
73
+ website: null | string;
74
+ }
75
+ export declare enum Timezone {
76
+ AmericaLosAngeles = "America/Los_Angeles"
77
+ }
@@ -0,0 +1,5 @@
1
+ export var Timezone;
2
+ (function (Timezone) {
3
+ Timezone["AmericaLosAngeles"] = "America/Los_Angeles";
4
+ })(Timezone || (Timezone = {}));
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVyc29uLWxpc3QtaXRlbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9yZXNvdXJjZXMvcGVyc29uL3R5cGVzL3BlcnNvbi1saXN0LWl0ZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBMEVBLE1BQU0sQ0FBTixJQUFZLFFBRVg7QUFGRCxXQUFZLFFBQVE7SUFDbEIscURBQXlDLENBQUE7QUFDM0MsQ0FBQyxFQUZXLFFBQVEsS0FBUixRQUFRLFFBRW5CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGVhdGggfSBmcm9tICcuLi8uLi9jb21tb24tdHlwZXMuanMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIFBlcnNvbkxpc3RJdGVtIHtcbiAgLyoqXG4gICAqIExpc3Qgb2YgYWxpYXNlcyB0aGUgcGVyc29uIGlzIGtub3duIGJ5LiBBIFxcbiAobmV3bGluZSkgc2VwZXJhdGVzIGVhY2ggYWxpYXMuXG4gICAqL1xuICBhbGlhc2VzOiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBwZXJzb24gZGV0YWlsIHJlc291cmNlLlxuICAgKi9cbiAgYXBpRGV0YWlsVXJsOiBzdHJpbmc7XG4gIC8qKlxuICAgKiBBIGRhdGUsIGlmIG9uZSBleGlzdHMsIHRoYXQgdGhlIHBlcnNvbiB3YXMgYm9ybiBvbi4gTm90IGFuIG9yaWdpbiBkYXRlLlxuICAgKi9cbiAgYmlydGg6IERhdGUgfCBudWxsO1xuICBjb3VudE9mSXNzc3VlQXBwZWFyYW5jZXM6IG51bGwgfCB1bmtub3duO1xuICAvKipcbiAgICogQ291bnRyeSB0aGUgcGVyc29uIHJlc2lkZXMgaW4uXG4gICAqL1xuICBjb3VudHJ5OiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogRGF0ZSB0aGUgcGVyc29uIHdhcyBhZGRlZCB0byBDb21pYyBWaW5lLlxuICAgKi9cbiAgZGF0ZUFkZGVkOiBEYXRlO1xuICAvKipcbiAgICogRGF0ZSB0aGUgcGVyc29uIHdhcyBsYXN0IHVwZGF0ZWQgb24gQ29taWMgVmluZS5cbiAgICovXG4gIGRhdGVMYXN0VXBkYXRlZDogRGF0ZTtcbiAgLyoqXG4gICAqIERhdGUgdGhpcyBwZXJzb24gZGllZCBvbi5cbiAgICovXG4gIGRlYXRoOiBEZWF0aCB8IG51bGw7XG4gIC8qKlxuICAgKiBCcmllZiBzdW1tYXJ5IG9mIHRoZSBwZXJzb24uXG4gICAqL1xuICBkZWNrOiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogRGVzY3JpcHRpb24gb2YgdGhlIHBlcnNvbi5cbiAgICovXG4gIGRlc2NyaXB0aW9uOiBudWxsIHwgc3RyaW5nO1xuICAvKipcbiAgICogVGhlIGVtYWlsIG9mIHRoaXMgcGVyc29uLlxuICAgKi9cbiAgZW1haWw6IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBHZW5kZXIgb2YgdGhlIHBlcnNvbi4gQXZhaWxhYmxlIG9wdGlvbnMgYXJlOiBNYWxlLCBGZW1hbGUsIE90aGVyXG4gICAqL1xuICBnZW5kZXI6IG51bWJlcjtcbiAgLyoqXG4gICAqIENpdHkgb3IgdG93biB0aGUgcGVyc29uIHJlc2lkZXMgaW4uXG4gICAqL1xuICBob21ldG93bjogbnVsbCB8IHN0cmluZztcbiAgLyoqXG4gICAqIFVuaXF1ZSBJRCBvZiB0aGUgcGVyc29uLlxuICAgKi9cbiAgaWQ6IG51bWJlcjtcbiAgLyoqXG4gICAqIE1haW4gaW1hZ2Ugb2YgdGhlIHBlcnNvbi5cbiAgICovXG4gIGltYWdlOiB7IFtrZXk6IHN0cmluZ106IG51bGwgfCBzdHJpbmcgfTtcbiAgLyoqXG4gICAqIE5hbWUgb2YgdGhlIHBlcnNvbi5cbiAgICovXG4gIG5hbWU6IHN0cmluZztcbiAgLyoqXG4gICAqIFVSTCBwb2ludGluZyB0byB0aGUgcGVyc29uIG9uIEdpYW50IEJvbWIuXG4gICAqL1xuICBzaXRlRGV0YWlsVXJsOiBzdHJpbmc7XG4gIC8qKlxuICAgKiBVUkwgdG8gdGhlIHBlcnNvbiB3ZWJzaXRlLlxuICAgKi9cbiAgd2Vic2l0ZTogbnVsbCB8IHN0cmluZztcbn1cblxuZXhwb3J0IGVudW0gVGltZXpvbmUge1xuICBBbWVyaWNhTG9zQW5nZWxlcyA9ICdBbWVyaWNhL0xvc19BbmdlbGVzJyxcbn1cbiJdfQ==
@@ -0,0 +1 @@
1
+ export * from './power.js';
@@ -0,0 +1,2 @@
1
+ export * from './power.js';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL3Bvd2VyL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsWUFBWSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wb3dlci5qcyc7XG4iXX0=
@@ -0,0 +1,6 @@
1
+ import { PowerDetails, PowerListItem } from './types/index.js';
2
+ import { BaseResource } from '../base-resource.js';
3
+ import { ResourceType } from '../resource-type.js';
4
+ export declare class Power extends BaseResource<PowerDetails, PowerListItem> {
5
+ protected resourceType: ResourceType;
6
+ }
@@ -0,0 +1,9 @@
1
+ import { BaseResource } from '../base-resource.js';
2
+ import { ResourceType } from '../resource-type.js';
3
+ export class Power extends BaseResource {
4
+ constructor() {
5
+ super(...arguments);
6
+ this.resourceType = ResourceType.Power;
7
+ }
8
+ }
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG93ZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL3Bvd2VyL3Bvd2VyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFFbkQsTUFBTSxPQUFPLEtBQU0sU0FBUSxZQUF5QztJQUFwRTs7UUFDWSxpQkFBWSxHQUFpQixZQUFZLENBQUMsS0FBSyxDQUFDO0lBQzVELENBQUM7Q0FBQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFBvd2VyRGV0YWlscywgUG93ZXJMaXN0SXRlbSB9IGZyb20gJy4vdHlwZXMvaW5kZXguanMnO1xuaW1wb3J0IHsgQmFzZVJlc291cmNlIH0gZnJvbSAnLi4vYmFzZS1yZXNvdXJjZS5qcyc7XG5pbXBvcnQgeyBSZXNvdXJjZVR5cGUgfSBmcm9tICcuLi9yZXNvdXJjZS10eXBlLmpzJztcblxuZXhwb3J0IGNsYXNzIFBvd2VyIGV4dGVuZHMgQmFzZVJlc291cmNlPFBvd2VyRGV0YWlscywgUG93ZXJMaXN0SXRlbT4ge1xuICBwcm90ZWN0ZWQgcmVzb3VyY2VUeXBlOiBSZXNvdXJjZVR5cGUgPSBSZXNvdXJjZVR5cGUuUG93ZXI7XG59XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './power-details.js';
2
+ export * from './power-list-item.js';
@@ -0,0 +1,3 @@
1
+ export * from './power-details.js';
2
+ export * from './power-list-item.js';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcmVzb3VyY2VzL3Bvd2VyL3R5cGVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcG93ZXItZGV0YWlscy5qcyc7XG5leHBvcnQgKiBmcm9tICcuL3Bvd2VyLWxpc3QtaXRlbS5qcyc7XG4iXX0=
@@ -0,0 +1,39 @@
1
+ import { SiteResource } from '../../common-types.js';
2
+ export interface PowerDetails {
3
+ /**
4
+ * List of aliases the power is known by. A \n (newline) seperates each alias.
5
+ */
6
+ aliases: null | string;
7
+ /**
8
+ * URL pointing to the power detail resource.
9
+ */
10
+ apiDetailUrl: string;
11
+ /**
12
+ * Characters related to the power.
13
+ */
14
+ characters: Array<SiteResource>;
15
+ /**
16
+ * Date the power was added to Comic Vine.
17
+ */
18
+ dateAdded: Date;
19
+ /**
20
+ * Date the power was last updated on Comic Vine.
21
+ */
22
+ dateLastUpdated: Date;
23
+ /**
24
+ * Description of the power.
25
+ */
26
+ description: null | string;
27
+ /**
28
+ * Unique ID of the power.
29
+ */
30
+ id: number;
31
+ /**
32
+ * Name of the power.
33
+ */
34
+ name: string;
35
+ /**
36
+ * URL pointing to the power on Giant Bomb.
37
+ */
38
+ siteDetailUrl: string;
39
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicG93ZXItZGV0YWlscy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9yZXNvdXJjZXMvcG93ZXIvdHlwZXMvcG93ZXItZGV0YWlscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU2l0ZVJlc291cmNlIH0gZnJvbSAnLi4vLi4vY29tbW9uLXR5cGVzLmpzJztcblxuZXhwb3J0IGludGVyZmFjZSBQb3dlckRldGFpbHMge1xuICAvKipcbiAgICogTGlzdCBvZiBhbGlhc2VzIHRoZSBwb3dlciBpcyBrbm93biBieS4gQSBcXG4gKG5ld2xpbmUpIHNlcGVyYXRlcyBlYWNoIGFsaWFzLlxuICAgKi9cbiAgYWxpYXNlczogbnVsbCB8IHN0cmluZztcbiAgLyoqXG4gICAqIFVSTCBwb2ludGluZyB0byB0aGUgcG93ZXIgZGV0YWlsIHJlc291cmNlLlxuICAgKi9cbiAgYXBpRGV0YWlsVXJsOiBzdHJpbmc7XG4gIC8qKlxuICAgKiBDaGFyYWN0ZXJzIHJlbGF0ZWQgdG8gdGhlIHBvd2VyLlxuICAgKi9cbiAgY2hhcmFjdGVyczogQXJyYXk8U2l0ZVJlc291cmNlPjtcbiAgLyoqXG4gICAqIERhdGUgdGhlIHBvd2VyIHdhcyBhZGRlZCB0byBDb21pYyBWaW5lLlxuICAgKi9cbiAgZGF0ZUFkZGVkOiBEYXRlO1xuICAvKipcbiAgICogRGF0ZSB0aGUgcG93ZXIgd2FzIGxhc3QgdXBkYXRlZCBvbiBDb21pYyBWaW5lLlxuICAgKi9cbiAgZGF0ZUxhc3RVcGRhdGVkOiBEYXRlO1xuICAvKipcbiAgICogRGVzY3JpcHRpb24gb2YgdGhlIHBvd2VyLlxuICAgKi9cbiAgZGVzY3JpcHRpb246IG51bGwgfCBzdHJpbmc7XG4gIC8qKlxuICAgKiBVbmlxdWUgSUQgb2YgdGhlIHBvd2VyLlxuICAgKi9cbiAgaWQ6IG51bWJlcjtcbiAgLyoqXG4gICAqIE5hbWUgb2YgdGhlIHBvd2VyLlxuICAgKi9cbiAgbmFtZTogc3RyaW5nO1xuICAvKipcbiAgICogVVJMIHBvaW50aW5nIHRvIHRoZSBwb3dlciBvbiBHaWFudCBCb21iLlxuICAgKi9cbiAgc2l0ZURldGFpbFVybDogc3RyaW5nO1xufVxuIl19