@space-cow-media/spellbook-client 3.14.15

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 (296) hide show
  1. package/dist/apis/cardListFromTextApi.d.ts +33 -0
  2. package/dist/apis/cardListFromTextApi.js +135 -0
  3. package/dist/apis/cardListFromTextApi.js.map +1 -0
  4. package/dist/apis/cardListFromUrlApi.d.ts +27 -0
  5. package/dist/apis/cardListFromUrlApi.js +103 -0
  6. package/dist/apis/cardListFromUrlApi.js.map +1 -0
  7. package/dist/apis/cardsApi.d.ts +40 -0
  8. package/dist/apis/cardsApi.js +151 -0
  9. package/dist/apis/cardsApi.js.map +1 -0
  10. package/dist/apis/defaultApi.d.ts +47 -0
  11. package/dist/apis/defaultApi.js +143 -0
  12. package/dist/apis/defaultApi.js.map +1 -0
  13. package/dist/apis/featuresApi.d.ts +38 -0
  14. package/dist/apis/featuresApi.js +145 -0
  15. package/dist/apis/featuresApi.js.map +1 -0
  16. package/dist/apis/findMyCombosApi.d.ts +47 -0
  17. package/dist/apis/findMyCombosApi.js +171 -0
  18. package/dist/apis/findMyCombosApi.js.map +1 -0
  19. package/dist/apis/index.d.ts +13 -0
  20. package/dist/apis/index.js +32 -0
  21. package/dist/apis/index.js.map +1 -0
  22. package/dist/apis/propertiesApi.d.ts +37 -0
  23. package/dist/apis/propertiesApi.js +142 -0
  24. package/dist/apis/propertiesApi.js.map +1 -0
  25. package/dist/apis/templatesApi.d.ts +38 -0
  26. package/dist/apis/templatesApi.js +145 -0
  27. package/dist/apis/templatesApi.js.map +1 -0
  28. package/dist/apis/tokenApi.d.ts +51 -0
  29. package/dist/apis/tokenApi.js +153 -0
  30. package/dist/apis/tokenApi.js.map +1 -0
  31. package/dist/apis/usersApi.d.ts +66 -0
  32. package/dist/apis/usersApi.js +256 -0
  33. package/dist/apis/usersApi.js.map +1 -0
  34. package/dist/apis/variantAliasesApi.d.ts +37 -0
  35. package/dist/apis/variantAliasesApi.js +142 -0
  36. package/dist/apis/variantAliasesApi.js.map +1 -0
  37. package/dist/apis/variantSuggestionsApi.d.ts +76 -0
  38. package/dist/apis/variantSuggestionsApi.js +297 -0
  39. package/dist/apis/variantSuggestionsApi.js.map +1 -0
  40. package/dist/apis/variantsApi.d.ts +41 -0
  41. package/dist/apis/variantsApi.js +154 -0
  42. package/dist/apis/variantsApi.js.map +1 -0
  43. package/dist/index.d.ts +3 -0
  44. package/dist/index.js +22 -0
  45. package/dist/index.js.map +1 -0
  46. package/dist/models/card.d.ts +56 -0
  47. package/dist/models/card.js +66 -0
  48. package/dist/models/card.js.map +1 -0
  49. package/dist/models/cardDetail.d.ts +126 -0
  50. package/dist/models/cardDetail.js +110 -0
  51. package/dist/models/cardDetail.js.map +1 -0
  52. package/dist/models/cardInDeck.d.ts +38 -0
  53. package/dist/models/cardInDeck.js +55 -0
  54. package/dist/models/cardInDeck.js.map +1 -0
  55. package/dist/models/cardInDeckRequest.d.ts +38 -0
  56. package/dist/models/cardInDeckRequest.js +53 -0
  57. package/dist/models/cardInDeckRequest.js.map +1 -0
  58. package/dist/models/cardInVariant.d.ts +75 -0
  59. package/dist/models/cardInVariant.js +73 -0
  60. package/dist/models/cardInVariant.js.map +1 -0
  61. package/dist/models/cardLegalities.d.ts +104 -0
  62. package/dist/models/cardLegalities.js +99 -0
  63. package/dist/models/cardLegalities.js.map +1 -0
  64. package/dist/models/cardPrices.d.ts +44 -0
  65. package/dist/models/cardPrices.js +59 -0
  66. package/dist/models/cardPrices.js.map +1 -0
  67. package/dist/models/cardUsedInVariantSuggestion.d.ts +75 -0
  68. package/dist/models/cardUsedInVariantSuggestion.js +80 -0
  69. package/dist/models/cardUsedInVariantSuggestion.js.map +1 -0
  70. package/dist/models/cardUsedInVariantSuggestionRequest.d.ts +75 -0
  71. package/dist/models/cardUsedInVariantSuggestionRequest.js +68 -0
  72. package/dist/models/cardUsedInVariantSuggestionRequest.js.map +1 -0
  73. package/dist/models/combo.d.ts +32 -0
  74. package/dist/models/combo.js +49 -0
  75. package/dist/models/combo.js.map +1 -0
  76. package/dist/models/deck.d.ts +39 -0
  77. package/dist/models/deck.js +56 -0
  78. package/dist/models/deck.js.map +1 -0
  79. package/dist/models/deckRequest.d.ts +39 -0
  80. package/dist/models/deckRequest.js +52 -0
  81. package/dist/models/deckRequest.js.map +1 -0
  82. package/dist/models/feature.d.ts +44 -0
  83. package/dist/models/feature.js +58 -0
  84. package/dist/models/feature.js.map +1 -0
  85. package/dist/models/featureOfCard.d.ts +81 -0
  86. package/dist/models/featureOfCard.js +81 -0
  87. package/dist/models/featureOfCard.js.map +1 -0
  88. package/dist/models/featureProducedByVariant.d.ts +39 -0
  89. package/dist/models/featureProducedByVariant.js +55 -0
  90. package/dist/models/featureProducedByVariant.js.map +1 -0
  91. package/dist/models/featureProducedInVariantSuggestion.d.ts +32 -0
  92. package/dist/models/featureProducedInVariantSuggestion.js +51 -0
  93. package/dist/models/featureProducedInVariantSuggestion.js.map +1 -0
  94. package/dist/models/featureProducedInVariantSuggestionRequest.d.ts +32 -0
  95. package/dist/models/featureProducedInVariantSuggestionRequest.js +51 -0
  96. package/dist/models/featureProducedInVariantSuggestionRequest.js.map +1 -0
  97. package/dist/models/findMyCombosResponse.d.ts +69 -0
  98. package/dist/models/findMyCombosResponse.js +76 -0
  99. package/dist/models/findMyCombosResponse.js.map +1 -0
  100. package/dist/models/identityEnum.d.ts +86 -0
  101. package/dist/models/identityEnum.js +115 -0
  102. package/dist/models/identityEnum.js.map +1 -0
  103. package/dist/models/index.d.ts +56 -0
  104. package/dist/models/index.js +75 -0
  105. package/dist/models/index.js.map +1 -0
  106. package/dist/models/invalidUrlResponse.d.ts +32 -0
  107. package/dist/models/invalidUrlResponse.js +51 -0
  108. package/dist/models/invalidUrlResponse.js.map +1 -0
  109. package/dist/models/paginatedCardDetailList.d.ts +51 -0
  110. package/dist/models/paginatedCardDetailList.js +64 -0
  111. package/dist/models/paginatedCardDetailList.js.map +1 -0
  112. package/dist/models/paginatedFeatureList.d.ts +51 -0
  113. package/dist/models/paginatedFeatureList.js +64 -0
  114. package/dist/models/paginatedFeatureList.js.map +1 -0
  115. package/dist/models/paginatedFindMyCombosResponseList.d.ts +51 -0
  116. package/dist/models/paginatedFindMyCombosResponseList.js +64 -0
  117. package/dist/models/paginatedFindMyCombosResponseList.js.map +1 -0
  118. package/dist/models/paginatedFindMyCombosResponseListResults.d.ts +69 -0
  119. package/dist/models/paginatedFindMyCombosResponseListResults.js +76 -0
  120. package/dist/models/paginatedFindMyCombosResponseListResults.js.map +1 -0
  121. package/dist/models/paginatedTemplateList.d.ts +51 -0
  122. package/dist/models/paginatedTemplateList.js +64 -0
  123. package/dist/models/paginatedTemplateList.js.map +1 -0
  124. package/dist/models/paginatedUserDetailList.d.ts +51 -0
  125. package/dist/models/paginatedUserDetailList.js +64 -0
  126. package/dist/models/paginatedUserDetailList.js.map +1 -0
  127. package/dist/models/paginatedVariantAliasList.d.ts +51 -0
  128. package/dist/models/paginatedVariantAliasList.js +64 -0
  129. package/dist/models/paginatedVariantAliasList.js.map +1 -0
  130. package/dist/models/paginatedVariantList.d.ts +51 -0
  131. package/dist/models/paginatedVariantList.js +64 -0
  132. package/dist/models/paginatedVariantList.js.map +1 -0
  133. package/dist/models/paginatedVariantSuggestionList.d.ts +51 -0
  134. package/dist/models/paginatedVariantSuggestionList.js +64 -0
  135. package/dist/models/paginatedVariantSuggestionList.js.map +1 -0
  136. package/dist/models/paginatedWebsitePropertyList.d.ts +51 -0
  137. package/dist/models/paginatedWebsitePropertyList.js +64 -0
  138. package/dist/models/paginatedWebsitePropertyList.js.map +1 -0
  139. package/dist/models/patchedUserDetailRequest.d.ts +44 -0
  140. package/dist/models/patchedUserDetailRequest.js +53 -0
  141. package/dist/models/patchedUserDetailRequest.js.map +1 -0
  142. package/dist/models/patchedVariantSuggestionRequest.d.ts +83 -0
  143. package/dist/models/patchedVariantSuggestionRequest.js +68 -0
  144. package/dist/models/patchedVariantSuggestionRequest.js.map +1 -0
  145. package/dist/models/template.d.ts +57 -0
  146. package/dist/models/template.js +61 -0
  147. package/dist/models/template.js.map +1 -0
  148. package/dist/models/templateInVariant.d.ts +75 -0
  149. package/dist/models/templateInVariant.js +73 -0
  150. package/dist/models/templateInVariant.js.map +1 -0
  151. package/dist/models/templateRequiredInVariantSuggestion.d.ts +88 -0
  152. package/dist/models/templateRequiredInVariantSuggestion.js +84 -0
  153. package/dist/models/templateRequiredInVariantSuggestion.js.map +1 -0
  154. package/dist/models/templateRequiredInVariantSuggestionRequest.d.ts +88 -0
  155. package/dist/models/templateRequiredInVariantSuggestionRequest.js +70 -0
  156. package/dist/models/templateRequiredInVariantSuggestionRequest.js.map +1 -0
  157. package/dist/models/tokenObtainPair.d.ts +38 -0
  158. package/dist/models/tokenObtainPair.js +52 -0
  159. package/dist/models/tokenObtainPair.js.map +1 -0
  160. package/dist/models/tokenObtainPairRequest.d.ts +44 -0
  161. package/dist/models/tokenObtainPairRequest.js +53 -0
  162. package/dist/models/tokenObtainPairRequest.js.map +1 -0
  163. package/dist/models/tokenRefresh.d.ts +32 -0
  164. package/dist/models/tokenRefresh.js +49 -0
  165. package/dist/models/tokenRefresh.js.map +1 -0
  166. package/dist/models/tokenRefreshRequest.d.ts +32 -0
  167. package/dist/models/tokenRefreshRequest.js +51 -0
  168. package/dist/models/tokenRefreshRequest.js.map +1 -0
  169. package/dist/models/tokenVerifyRequest.d.ts +32 -0
  170. package/dist/models/tokenVerifyRequest.js +51 -0
  171. package/dist/models/tokenVerifyRequest.js.map +1 -0
  172. package/dist/models/user.d.ts +38 -0
  173. package/dist/models/user.js +54 -0
  174. package/dist/models/user.js.map +1 -0
  175. package/dist/models/userDetail.d.ts +68 -0
  176. package/dist/models/userDetail.js +70 -0
  177. package/dist/models/userDetail.js.map +1 -0
  178. package/dist/models/userDetailRequest.d.ts +44 -0
  179. package/dist/models/userDetailRequest.js +55 -0
  180. package/dist/models/userDetailRequest.js.map +1 -0
  181. package/dist/models/userRequest.d.ts +32 -0
  182. package/dist/models/userRequest.js +51 -0
  183. package/dist/models/userRequest.js.map +1 -0
  184. package/dist/models/variant.d.ts +150 -0
  185. package/dist/models/variant.js +113 -0
  186. package/dist/models/variant.js.map +1 -0
  187. package/dist/models/variantAlias.d.ts +38 -0
  188. package/dist/models/variantAlias.js +55 -0
  189. package/dist/models/variantAlias.js.map +1 -0
  190. package/dist/models/variantLegalities.d.ts +104 -0
  191. package/dist/models/variantLegalities.js +99 -0
  192. package/dist/models/variantLegalities.js.map +1 -0
  193. package/dist/models/variantPrices.d.ts +44 -0
  194. package/dist/models/variantPrices.js +59 -0
  195. package/dist/models/variantPrices.js.map +1 -0
  196. package/dist/models/variantStatusEnum.d.ts +36 -0
  197. package/dist/models/variantStatusEnum.js +65 -0
  198. package/dist/models/variantStatusEnum.js.map +1 -0
  199. package/dist/models/variantSuggestion.d.ts +115 -0
  200. package/dist/models/variantSuggestion.js +100 -0
  201. package/dist/models/variantSuggestion.js.map +1 -0
  202. package/dist/models/variantSuggestionRequest.d.ts +83 -0
  203. package/dist/models/variantSuggestionRequest.js +76 -0
  204. package/dist/models/variantSuggestionRequest.js.map +1 -0
  205. package/dist/models/variantSuggestionStatusEnum.d.ts +32 -0
  206. package/dist/models/variantSuggestionStatusEnum.js +61 -0
  207. package/dist/models/variantSuggestionStatusEnum.js.map +1 -0
  208. package/dist/models/variantsQueryValidationError.d.ts +32 -0
  209. package/dist/models/variantsQueryValidationError.js +51 -0
  210. package/dist/models/variantsQueryValidationError.js.map +1 -0
  211. package/dist/models/websiteProperty.d.ts +38 -0
  212. package/dist/models/websiteProperty.js +54 -0
  213. package/dist/models/websiteProperty.js.map +1 -0
  214. package/dist/models/zoneLocationsEnum.d.ts +34 -0
  215. package/dist/models/zoneLocationsEnum.js +63 -0
  216. package/dist/models/zoneLocationsEnum.js.map +1 -0
  217. package/dist/runtime.d.ts +182 -0
  218. package/dist/runtime.js +347 -0
  219. package/dist/runtime.js.map +1 -0
  220. package/package.json +36 -0
  221. package/spellbook-client/.openapi-generator/FILES +74 -0
  222. package/spellbook-client/.openapi-generator/VERSION +1 -0
  223. package/spellbook-client/.openapi-generator-ignore +23 -0
  224. package/spellbook-client/apis/cardListFromTextApi.ts +107 -0
  225. package/spellbook-client/apis/cardListFromUrlApi.ts +76 -0
  226. package/spellbook-client/apis/cardsApi.ts +142 -0
  227. package/spellbook-client/apis/defaultApi.ts +112 -0
  228. package/spellbook-client/apis/featuresApi.ts +132 -0
  229. package/spellbook-client/apis/findMyCombosApi.ts +173 -0
  230. package/spellbook-client/apis/index.ts +15 -0
  231. package/spellbook-client/apis/propertiesApi.ts +127 -0
  232. package/spellbook-client/apis/templatesApi.ts +132 -0
  233. package/spellbook-client/apis/tokenApi.ts +154 -0
  234. package/spellbook-client/apis/usersApi.ts +285 -0
  235. package/spellbook-client/apis/variantAliasesApi.ts +127 -0
  236. package/spellbook-client/apis/variantSuggestionsApi.ts +339 -0
  237. package/spellbook-client/apis/variantsApi.ts +150 -0
  238. package/spellbook-client/index.ts +5 -0
  239. package/spellbook-client/models/card.ts +101 -0
  240. package/spellbook-client/models/cardDetail.ts +227 -0
  241. package/spellbook-client/models/cardInDeck.ts +75 -0
  242. package/spellbook-client/models/cardInDeckRequest.ts +74 -0
  243. package/spellbook-client/models/cardInVariant.ts +130 -0
  244. package/spellbook-client/models/cardLegalities.ts +174 -0
  245. package/spellbook-client/models/cardPrices.ts +84 -0
  246. package/spellbook-client/models/cardUsedInVariantSuggestion.ts +137 -0
  247. package/spellbook-client/models/cardUsedInVariantSuggestionRequest.ts +131 -0
  248. package/spellbook-client/models/combo.ts +65 -0
  249. package/spellbook-client/models/deck.ts +83 -0
  250. package/spellbook-client/models/deckRequest.ts +81 -0
  251. package/spellbook-client/models/feature.ts +83 -0
  252. package/spellbook-client/models/featureOfCard.ts +143 -0
  253. package/spellbook-client/models/featureProducedByVariant.ts +82 -0
  254. package/spellbook-client/models/featureProducedInVariantSuggestion.ts +66 -0
  255. package/spellbook-client/models/featureProducedInVariantSuggestionRequest.ts +66 -0
  256. package/spellbook-client/models/findMyCombosResponse.ts +128 -0
  257. package/spellbook-client/models/identityEnum.ts +113 -0
  258. package/spellbook-client/models/index.ts +58 -0
  259. package/spellbook-client/models/invalidUrlResponse.ts +66 -0
  260. package/spellbook-client/models/paginatedCardDetailList.ts +101 -0
  261. package/spellbook-client/models/paginatedFeatureList.ts +101 -0
  262. package/spellbook-client/models/paginatedFindMyCombosResponseList.ts +101 -0
  263. package/spellbook-client/models/paginatedFindMyCombosResponseListResults.ts +128 -0
  264. package/spellbook-client/models/paginatedTemplateList.ts +101 -0
  265. package/spellbook-client/models/paginatedUserDetailList.ts +101 -0
  266. package/spellbook-client/models/paginatedVariantAliasList.ts +101 -0
  267. package/spellbook-client/models/paginatedVariantList.ts +101 -0
  268. package/spellbook-client/models/paginatedVariantSuggestionList.ts +101 -0
  269. package/spellbook-client/models/paginatedWebsitePropertyList.ts +101 -0
  270. package/spellbook-client/models/patchedUserDetailRequest.ts +81 -0
  271. package/spellbook-client/models/patchedVariantSuggestionRequest.ts +151 -0
  272. package/spellbook-client/models/template.ts +98 -0
  273. package/spellbook-client/models/templateInVariant.ts +130 -0
  274. package/spellbook-client/models/templateRequiredInVariantSuggestion.ts +153 -0
  275. package/spellbook-client/models/templateRequiredInVariantSuggestionRequest.ts +146 -0
  276. package/spellbook-client/models/tokenObtainPair.ts +73 -0
  277. package/spellbook-client/models/tokenObtainPairRequest.ts +81 -0
  278. package/spellbook-client/models/tokenRefresh.ts +65 -0
  279. package/spellbook-client/models/tokenRefreshRequest.ts +66 -0
  280. package/spellbook-client/models/tokenVerifyRequest.ts +66 -0
  281. package/spellbook-client/models/user.ts +74 -0
  282. package/spellbook-client/models/userDetail.ts +115 -0
  283. package/spellbook-client/models/userDetailRequest.ts +82 -0
  284. package/spellbook-client/models/userRequest.ts +66 -0
  285. package/spellbook-client/models/variant.ts +272 -0
  286. package/spellbook-client/models/variantAlias.ts +75 -0
  287. package/spellbook-client/models/variantLegalities.ts +174 -0
  288. package/spellbook-client/models/variantPrices.ts +84 -0
  289. package/spellbook-client/models/variantStatusEnum.ts +63 -0
  290. package/spellbook-client/models/variantSuggestion.ts +214 -0
  291. package/spellbook-client/models/variantSuggestionRequest.ts +155 -0
  292. package/spellbook-client/models/variantSuggestionStatusEnum.ts +59 -0
  293. package/spellbook-client/models/variantsQueryValidationError.ts +66 -0
  294. package/spellbook-client/models/websiteProperty.ts +74 -0
  295. package/spellbook-client/models/zoneLocationsEnum.ts +61 -0
  296. package/spellbook-client/runtime.ts +431 -0
@@ -0,0 +1,154 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Commander Spellbook API
5
+ * API for Commander Spellbook, the combo database engine for Magic: The Gathering
6
+ *
7
+ * The version of the OpenAPI document: dev
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import * as runtime from '../runtime';
17
+ import type {
18
+ TokenObtainPair,
19
+ TokenObtainPairRequest,
20
+ TokenRefresh,
21
+ TokenRefreshRequest,
22
+ TokenVerifyRequest,
23
+ } from '../models/index';
24
+ import {
25
+ TokenObtainPairFromJSON,
26
+ TokenObtainPairToJSON,
27
+ TokenObtainPairRequestFromJSON,
28
+ TokenObtainPairRequestToJSON,
29
+ TokenRefreshFromJSON,
30
+ TokenRefreshToJSON,
31
+ TokenRefreshRequestFromJSON,
32
+ TokenRefreshRequestToJSON,
33
+ TokenVerifyRequestFromJSON,
34
+ TokenVerifyRequestToJSON,
35
+ } from '../models/index';
36
+
37
+ export interface TokenCreateRequest {
38
+ tokenObtainPairRequest?: TokenObtainPairRequest;
39
+ }
40
+
41
+ export interface TokenRefreshCreateRequest {
42
+ tokenRefreshRequest: TokenRefreshRequest;
43
+ }
44
+
45
+ export interface TokenVerifyCreateRequest {
46
+ tokenVerifyRequest: TokenVerifyRequest;
47
+ }
48
+
49
+ /**
50
+ *
51
+ */
52
+ export class TokenApi extends runtime.BaseAPI {
53
+
54
+ /**
55
+ * Takes a set of user credentials and returns an access and refresh JSON web token pair to prove the authentication of those credentials.
56
+ */
57
+ async tokenCreateRaw(requestParameters: TokenCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TokenObtainPair>> {
58
+ const queryParameters: any = {};
59
+
60
+ const headerParameters: runtime.HTTPHeaders = {};
61
+
62
+ headerParameters['Content-Type'] = 'application/json';
63
+
64
+ const response = await this.request({
65
+ path: `/token/`,
66
+ method: 'POST',
67
+ headers: headerParameters,
68
+ query: queryParameters,
69
+ body: TokenObtainPairRequestToJSON(requestParameters['tokenObtainPairRequest']),
70
+ }, initOverrides);
71
+
72
+ return new runtime.JSONApiResponse(response, (jsonValue) => TokenObtainPairFromJSON(jsonValue));
73
+ }
74
+
75
+ /**
76
+ * Takes a set of user credentials and returns an access and refresh JSON web token pair to prove the authentication of those credentials.
77
+ */
78
+ async tokenCreate(requestParameters: TokenCreateRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TokenObtainPair> {
79
+ const response = await this.tokenCreateRaw(requestParameters, initOverrides);
80
+ return await response.value();
81
+ }
82
+
83
+ /**
84
+ * Takes a refresh type JSON web token and returns an access type JSON web token if the refresh token is valid.
85
+ */
86
+ async tokenRefreshCreateRaw(requestParameters: TokenRefreshCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TokenRefresh>> {
87
+ if (requestParameters['tokenRefreshRequest'] == null) {
88
+ throw new runtime.RequiredError(
89
+ 'tokenRefreshRequest',
90
+ 'Required parameter "tokenRefreshRequest" was null or undefined when calling tokenRefreshCreate().'
91
+ );
92
+ }
93
+
94
+ const queryParameters: any = {};
95
+
96
+ const headerParameters: runtime.HTTPHeaders = {};
97
+
98
+ headerParameters['Content-Type'] = 'application/json';
99
+
100
+ const response = await this.request({
101
+ path: `/token/refresh/`,
102
+ method: 'POST',
103
+ headers: headerParameters,
104
+ query: queryParameters,
105
+ body: TokenRefreshRequestToJSON(requestParameters['tokenRefreshRequest']),
106
+ }, initOverrides);
107
+
108
+ return new runtime.JSONApiResponse(response, (jsonValue) => TokenRefreshFromJSON(jsonValue));
109
+ }
110
+
111
+ /**
112
+ * Takes a refresh type JSON web token and returns an access type JSON web token if the refresh token is valid.
113
+ */
114
+ async tokenRefreshCreate(requestParameters: TokenRefreshCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TokenRefresh> {
115
+ const response = await this.tokenRefreshCreateRaw(requestParameters, initOverrides);
116
+ return await response.value();
117
+ }
118
+
119
+ /**
120
+ * Takes a token and indicates if it is valid. This view provides no information about a token\'s fitness for a particular use.
121
+ */
122
+ async tokenVerifyCreateRaw(requestParameters: TokenVerifyCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
123
+ if (requestParameters['tokenVerifyRequest'] == null) {
124
+ throw new runtime.RequiredError(
125
+ 'tokenVerifyRequest',
126
+ 'Required parameter "tokenVerifyRequest" was null or undefined when calling tokenVerifyCreate().'
127
+ );
128
+ }
129
+
130
+ const queryParameters: any = {};
131
+
132
+ const headerParameters: runtime.HTTPHeaders = {};
133
+
134
+ headerParameters['Content-Type'] = 'application/json';
135
+
136
+ const response = await this.request({
137
+ path: `/token/verify/`,
138
+ method: 'POST',
139
+ headers: headerParameters,
140
+ query: queryParameters,
141
+ body: TokenVerifyRequestToJSON(requestParameters['tokenVerifyRequest']),
142
+ }, initOverrides);
143
+
144
+ return new runtime.VoidApiResponse(response);
145
+ }
146
+
147
+ /**
148
+ * Takes a token and indicates if it is valid. This view provides no information about a token\'s fitness for a particular use.
149
+ */
150
+ async tokenVerifyCreate(requestParameters: TokenVerifyCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
151
+ await this.tokenVerifyCreateRaw(requestParameters, initOverrides);
152
+ }
153
+
154
+ }
@@ -0,0 +1,285 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Commander Spellbook API
5
+ * API for Commander Spellbook, the combo database engine for Magic: The Gathering
6
+ *
7
+ * The version of the OpenAPI document: dev
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import * as runtime from '../runtime';
17
+ import type {
18
+ PaginatedUserDetailList,
19
+ PatchedUserDetailRequest,
20
+ UserDetail,
21
+ UserDetailRequest,
22
+ } from '../models/index';
23
+ import {
24
+ PaginatedUserDetailListFromJSON,
25
+ PaginatedUserDetailListToJSON,
26
+ PatchedUserDetailRequestFromJSON,
27
+ PatchedUserDetailRequestToJSON,
28
+ UserDetailFromJSON,
29
+ UserDetailToJSON,
30
+ UserDetailRequestFromJSON,
31
+ UserDetailRequestToJSON,
32
+ } from '../models/index';
33
+
34
+ export interface UsersDestroyRequest {
35
+ id: number;
36
+ }
37
+
38
+ export interface UsersListRequest {
39
+ limit?: number;
40
+ offset?: number;
41
+ }
42
+
43
+ export interface UsersPartialUpdateRequest {
44
+ id: number;
45
+ patchedUserDetailRequest?: PatchedUserDetailRequest;
46
+ }
47
+
48
+ export interface UsersRetrieveRequest {
49
+ id: number;
50
+ }
51
+
52
+ export interface UsersUpdateRequest {
53
+ id: number;
54
+ userDetailRequest: UserDetailRequest;
55
+ }
56
+
57
+ /**
58
+ *
59
+ */
60
+ export class UsersApi extends runtime.BaseAPI {
61
+
62
+ /**
63
+ */
64
+ async usersDestroyRaw(requestParameters: UsersDestroyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
65
+ if (requestParameters['id'] == null) {
66
+ throw new runtime.RequiredError(
67
+ 'id',
68
+ 'Required parameter "id" was null or undefined when calling usersDestroy().'
69
+ );
70
+ }
71
+
72
+ const queryParameters: any = {};
73
+
74
+ const headerParameters: runtime.HTTPHeaders = {};
75
+
76
+ if (this.configuration && (this.configuration.username !== undefined || this.configuration.password !== undefined)) {
77
+ headerParameters["Authorization"] = "Basic " + btoa(this.configuration.username + ":" + this.configuration.password);
78
+ }
79
+ if (this.configuration && this.configuration.accessToken) {
80
+ const token = this.configuration.accessToken;
81
+ const tokenString = await token("jwtAuth", []);
82
+
83
+ if (tokenString) {
84
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
85
+ }
86
+ }
87
+ const response = await this.request({
88
+ path: `/users/{id}/`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters['id']))),
89
+ method: 'DELETE',
90
+ headers: headerParameters,
91
+ query: queryParameters,
92
+ }, initOverrides);
93
+
94
+ return new runtime.VoidApiResponse(response);
95
+ }
96
+
97
+ /**
98
+ */
99
+ async usersDestroy(requestParameters: UsersDestroyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
100
+ await this.usersDestroyRaw(requestParameters, initOverrides);
101
+ }
102
+
103
+ /**
104
+ */
105
+ async usersListRaw(requestParameters: UsersListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedUserDetailList>> {
106
+ const queryParameters: any = {};
107
+
108
+ if (requestParameters['limit'] != null) {
109
+ queryParameters['limit'] = requestParameters['limit'];
110
+ }
111
+
112
+ if (requestParameters['offset'] != null) {
113
+ queryParameters['offset'] = requestParameters['offset'];
114
+ }
115
+
116
+ const headerParameters: runtime.HTTPHeaders = {};
117
+
118
+ if (this.configuration && (this.configuration.username !== undefined || this.configuration.password !== undefined)) {
119
+ headerParameters["Authorization"] = "Basic " + btoa(this.configuration.username + ":" + this.configuration.password);
120
+ }
121
+ if (this.configuration && this.configuration.accessToken) {
122
+ const token = this.configuration.accessToken;
123
+ const tokenString = await token("jwtAuth", []);
124
+
125
+ if (tokenString) {
126
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
127
+ }
128
+ }
129
+ const response = await this.request({
130
+ path: `/users/`,
131
+ method: 'GET',
132
+ headers: headerParameters,
133
+ query: queryParameters,
134
+ }, initOverrides);
135
+
136
+ return new runtime.JSONApiResponse(response, (jsonValue) => PaginatedUserDetailListFromJSON(jsonValue));
137
+ }
138
+
139
+ /**
140
+ */
141
+ async usersList(requestParameters: UsersListRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedUserDetailList> {
142
+ const response = await this.usersListRaw(requestParameters, initOverrides);
143
+ return await response.value();
144
+ }
145
+
146
+ /**
147
+ */
148
+ async usersPartialUpdateRaw(requestParameters: UsersPartialUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UserDetail>> {
149
+ if (requestParameters['id'] == null) {
150
+ throw new runtime.RequiredError(
151
+ 'id',
152
+ 'Required parameter "id" was null or undefined when calling usersPartialUpdate().'
153
+ );
154
+ }
155
+
156
+ const queryParameters: any = {};
157
+
158
+ const headerParameters: runtime.HTTPHeaders = {};
159
+
160
+ headerParameters['Content-Type'] = 'application/json';
161
+
162
+ if (this.configuration && (this.configuration.username !== undefined || this.configuration.password !== undefined)) {
163
+ headerParameters["Authorization"] = "Basic " + btoa(this.configuration.username + ":" + this.configuration.password);
164
+ }
165
+ if (this.configuration && this.configuration.accessToken) {
166
+ const token = this.configuration.accessToken;
167
+ const tokenString = await token("jwtAuth", []);
168
+
169
+ if (tokenString) {
170
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
171
+ }
172
+ }
173
+ const response = await this.request({
174
+ path: `/users/{id}/`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters['id']))),
175
+ method: 'PATCH',
176
+ headers: headerParameters,
177
+ query: queryParameters,
178
+ body: PatchedUserDetailRequestToJSON(requestParameters['patchedUserDetailRequest']),
179
+ }, initOverrides);
180
+
181
+ return new runtime.JSONApiResponse(response, (jsonValue) => UserDetailFromJSON(jsonValue));
182
+ }
183
+
184
+ /**
185
+ */
186
+ async usersPartialUpdate(requestParameters: UsersPartialUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserDetail> {
187
+ const response = await this.usersPartialUpdateRaw(requestParameters, initOverrides);
188
+ return await response.value();
189
+ }
190
+
191
+ /**
192
+ */
193
+ async usersRetrieveRaw(requestParameters: UsersRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UserDetail>> {
194
+ if (requestParameters['id'] == null) {
195
+ throw new runtime.RequiredError(
196
+ 'id',
197
+ 'Required parameter "id" was null or undefined when calling usersRetrieve().'
198
+ );
199
+ }
200
+
201
+ const queryParameters: any = {};
202
+
203
+ const headerParameters: runtime.HTTPHeaders = {};
204
+
205
+ if (this.configuration && (this.configuration.username !== undefined || this.configuration.password !== undefined)) {
206
+ headerParameters["Authorization"] = "Basic " + btoa(this.configuration.username + ":" + this.configuration.password);
207
+ }
208
+ if (this.configuration && this.configuration.accessToken) {
209
+ const token = this.configuration.accessToken;
210
+ const tokenString = await token("jwtAuth", []);
211
+
212
+ if (tokenString) {
213
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
214
+ }
215
+ }
216
+ const response = await this.request({
217
+ path: `/users/{id}/`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters['id']))),
218
+ method: 'GET',
219
+ headers: headerParameters,
220
+ query: queryParameters,
221
+ }, initOverrides);
222
+
223
+ return new runtime.JSONApiResponse(response, (jsonValue) => UserDetailFromJSON(jsonValue));
224
+ }
225
+
226
+ /**
227
+ */
228
+ async usersRetrieve(requestParameters: UsersRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserDetail> {
229
+ const response = await this.usersRetrieveRaw(requestParameters, initOverrides);
230
+ return await response.value();
231
+ }
232
+
233
+ /**
234
+ */
235
+ async usersUpdateRaw(requestParameters: UsersUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UserDetail>> {
236
+ if (requestParameters['id'] == null) {
237
+ throw new runtime.RequiredError(
238
+ 'id',
239
+ 'Required parameter "id" was null or undefined when calling usersUpdate().'
240
+ );
241
+ }
242
+
243
+ if (requestParameters['userDetailRequest'] == null) {
244
+ throw new runtime.RequiredError(
245
+ 'userDetailRequest',
246
+ 'Required parameter "userDetailRequest" was null or undefined when calling usersUpdate().'
247
+ );
248
+ }
249
+
250
+ const queryParameters: any = {};
251
+
252
+ const headerParameters: runtime.HTTPHeaders = {};
253
+
254
+ headerParameters['Content-Type'] = 'application/json';
255
+
256
+ if (this.configuration && (this.configuration.username !== undefined || this.configuration.password !== undefined)) {
257
+ headerParameters["Authorization"] = "Basic " + btoa(this.configuration.username + ":" + this.configuration.password);
258
+ }
259
+ if (this.configuration && this.configuration.accessToken) {
260
+ const token = this.configuration.accessToken;
261
+ const tokenString = await token("jwtAuth", []);
262
+
263
+ if (tokenString) {
264
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
265
+ }
266
+ }
267
+ const response = await this.request({
268
+ path: `/users/{id}/`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters['id']))),
269
+ method: 'PUT',
270
+ headers: headerParameters,
271
+ query: queryParameters,
272
+ body: UserDetailRequestToJSON(requestParameters['userDetailRequest']),
273
+ }, initOverrides);
274
+
275
+ return new runtime.JSONApiResponse(response, (jsonValue) => UserDetailFromJSON(jsonValue));
276
+ }
277
+
278
+ /**
279
+ */
280
+ async usersUpdate(requestParameters: UsersUpdateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserDetail> {
281
+ const response = await this.usersUpdateRaw(requestParameters, initOverrides);
282
+ return await response.value();
283
+ }
284
+
285
+ }
@@ -0,0 +1,127 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Commander Spellbook API
5
+ * API for Commander Spellbook, the combo database engine for Magic: The Gathering
6
+ *
7
+ * The version of the OpenAPI document: dev
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import * as runtime from '../runtime';
17
+ import type {
18
+ PaginatedVariantAliasList,
19
+ VariantAlias,
20
+ } from '../models/index';
21
+ import {
22
+ PaginatedVariantAliasListFromJSON,
23
+ PaginatedVariantAliasListToJSON,
24
+ VariantAliasFromJSON,
25
+ VariantAliasToJSON,
26
+ } from '../models/index';
27
+
28
+ export interface VariantAliasesListRequest {
29
+ limit?: number;
30
+ offset?: number;
31
+ }
32
+
33
+ export interface VariantAliasesRetrieveRequest {
34
+ id: string;
35
+ }
36
+
37
+ /**
38
+ *
39
+ */
40
+ export class VariantAliasesApi extends runtime.BaseAPI {
41
+
42
+ /**
43
+ */
44
+ async variantAliasesListRaw(requestParameters: VariantAliasesListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedVariantAliasList>> {
45
+ const queryParameters: any = {};
46
+
47
+ if (requestParameters['limit'] != null) {
48
+ queryParameters['limit'] = requestParameters['limit'];
49
+ }
50
+
51
+ if (requestParameters['offset'] != null) {
52
+ queryParameters['offset'] = requestParameters['offset'];
53
+ }
54
+
55
+ const headerParameters: runtime.HTTPHeaders = {};
56
+
57
+ if (this.configuration && (this.configuration.username !== undefined || this.configuration.password !== undefined)) {
58
+ headerParameters["Authorization"] = "Basic " + btoa(this.configuration.username + ":" + this.configuration.password);
59
+ }
60
+ if (this.configuration && this.configuration.accessToken) {
61
+ const token = this.configuration.accessToken;
62
+ const tokenString = await token("jwtAuth", []);
63
+
64
+ if (tokenString) {
65
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
66
+ }
67
+ }
68
+ const response = await this.request({
69
+ path: `/variant-aliases/`,
70
+ method: 'GET',
71
+ headers: headerParameters,
72
+ query: queryParameters,
73
+ }, initOverrides);
74
+
75
+ return new runtime.JSONApiResponse(response, (jsonValue) => PaginatedVariantAliasListFromJSON(jsonValue));
76
+ }
77
+
78
+ /**
79
+ */
80
+ async variantAliasesList(requestParameters: VariantAliasesListRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedVariantAliasList> {
81
+ const response = await this.variantAliasesListRaw(requestParameters, initOverrides);
82
+ return await response.value();
83
+ }
84
+
85
+ /**
86
+ */
87
+ async variantAliasesRetrieveRaw(requestParameters: VariantAliasesRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VariantAlias>> {
88
+ if (requestParameters['id'] == null) {
89
+ throw new runtime.RequiredError(
90
+ 'id',
91
+ 'Required parameter "id" was null or undefined when calling variantAliasesRetrieve().'
92
+ );
93
+ }
94
+
95
+ const queryParameters: any = {};
96
+
97
+ const headerParameters: runtime.HTTPHeaders = {};
98
+
99
+ if (this.configuration && (this.configuration.username !== undefined || this.configuration.password !== undefined)) {
100
+ headerParameters["Authorization"] = "Basic " + btoa(this.configuration.username + ":" + this.configuration.password);
101
+ }
102
+ if (this.configuration && this.configuration.accessToken) {
103
+ const token = this.configuration.accessToken;
104
+ const tokenString = await token("jwtAuth", []);
105
+
106
+ if (tokenString) {
107
+ headerParameters["Authorization"] = `Bearer ${tokenString}`;
108
+ }
109
+ }
110
+ const response = await this.request({
111
+ path: `/variant-aliases/{id}/`.replace(`{${"id"}}`, encodeURIComponent(String(requestParameters['id']))),
112
+ method: 'GET',
113
+ headers: headerParameters,
114
+ query: queryParameters,
115
+ }, initOverrides);
116
+
117
+ return new runtime.JSONApiResponse(response, (jsonValue) => VariantAliasFromJSON(jsonValue));
118
+ }
119
+
120
+ /**
121
+ */
122
+ async variantAliasesRetrieve(requestParameters: VariantAliasesRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VariantAlias> {
123
+ const response = await this.variantAliasesRetrieveRaw(requestParameters, initOverrides);
124
+ return await response.value();
125
+ }
126
+
127
+ }