@@ -10,17 +10,17 @@ public class Catalogs : BaseRestService, ICatalogs
1010 {
1111 internal Catalogs ( HttpClient httpClient , ILogger logger , IMemoryCache cache = null ) : base ( httpClient , logger , cache ) { }
1212
13- public async Task < string [ ] > ListCardNames ( ) => ( await GetAsync < Catalog > ( "/catalog/card-names" ) ) . Data ;
14- public async Task < string [ ] > ListWordBank ( ) => ( await GetAsync < Catalog > ( "/catalog/word-bank" ) ) . Data ;
15- public async Task < string [ ] > ListCreatureTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/creature-types" ) ) . Data ;
16- public async Task < string [ ] > ListPlaneswalkerTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/planeswalker-types" ) ) . Data ;
17- public async Task < string [ ] > ListLandTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/land-types" ) ) . Data ;
18- public async Task < string [ ] > ListSpellTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/spell-types" ) ) . Data ;
19- public async Task < string [ ] > ListEnchantmentTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/enchantment-types" ) ) . Data ;
20- public async Task < string [ ] > ListArtifactTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/artifact-types" ) ) . Data ;
21- public async Task < string [ ] > ListPowers ( ) => ( await GetAsync < Catalog > ( "/catalog/powers" ) ) . Data ;
22- public async Task < string [ ] > ListToughnesses ( ) => ( await GetAsync < Catalog > ( "/catalog/toughnesses" ) ) . Data ;
23- public async Task < string [ ] > ListLoyalties ( ) => ( await GetAsync < Catalog > ( "/catalog/loyalties" ) ) . Data ;
24- public async Task < string [ ] > ListWatermarks ( ) => ( await GetAsync < Catalog > ( "/catalog/watermarks" ) ) . Data ;
13+ public async Task < string [ ] > ListCardNames ( ) => ( await GetAsync < Catalog > ( "/catalog/card-names" ) . ConfigureAwait ( false ) ) . Data ;
14+ public async Task < string [ ] > ListWordBank ( ) => ( await GetAsync < Catalog > ( "/catalog/word-bank" ) . ConfigureAwait ( false ) ) . Data ;
15+ public async Task < string [ ] > ListCreatureTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/creature-types" ) . ConfigureAwait ( false ) ) . Data ;
16+ public async Task < string [ ] > ListPlaneswalkerTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/planeswalker-types" ) . ConfigureAwait ( false ) ) . Data ;
17+ public async Task < string [ ] > ListLandTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/land-types" ) . ConfigureAwait ( false ) ) . Data ;
18+ public async Task < string [ ] > ListSpellTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/spell-types" ) . ConfigureAwait ( false ) ) . Data ;
19+ public async Task < string [ ] > ListEnchantmentTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/enchantment-types" ) . ConfigureAwait ( false ) ) . Data ;
20+ public async Task < string [ ] > ListArtifactTypes ( ) => ( await GetAsync < Catalog > ( "/catalog/artifact-types" ) . ConfigureAwait ( false ) ) . Data ;
21+ public async Task < string [ ] > ListPowers ( ) => ( await GetAsync < Catalog > ( "/catalog/powers" ) . ConfigureAwait ( false ) ) . Data ;
22+ public async Task < string [ ] > ListToughnesses ( ) => ( await GetAsync < Catalog > ( "/catalog/toughnesses" ) . ConfigureAwait ( false ) ) . Data ;
23+ public async Task < string [ ] > ListLoyalties ( ) => ( await GetAsync < Catalog > ( "/catalog/loyalties" ) . ConfigureAwait ( false ) ) . Data ;
24+ public async Task < string [ ] > ListWatermarks ( ) => ( await GetAsync < Catalog > ( "/catalog/watermarks" ) . ConfigureAwait ( false ) ) . Data ;
2525 }
2626}
0 commit comments