@ryyseexvi/temtem-promise-v1
TypeScript icon, indicating that this package has built-in type declarations

1.1.3 • Public • Published

Temtem API Wrapper 🎮

NPM Version

A modern TypeScript wrapper for the Temtem API, providing easy access to all Temtem game data.

📥 Installation

npm install temtem-promise-v1

🚀 Usage

import { TemtemDex } from '@ryyseexvi/temtem-promise-v1';

const TemDex = new TemtemDex();

// Example: Get all Temtems
const temtems = await TemDex.getTemtems();

// Example: Get a specific Temtem with ID
const temtem = await TemDex.getTemtemById(1);

// Example: Get Temtems with specific parameters
const filteredTemtems = await TemDex.getTemtems({
    names: "Pigepic",
    fields: "name,type",
    expand: "evolution",
    weaknesses: true
});

📚 Available Methods

  • getTemtems(params?: TemtemQueryParams)
  • getTemtemById(id: number, params?: TemtemByIdQueryParams)
  • getFreetemByTemtemNameAndLevel(name: string, level: number)
  • getFreetemsRewards()
  • getTypes(params?: TypesQueryParams)
  • getConditions(params?: ConditionsQueryParams)
  • getTechniques(params?: TechniquesQueryParams)
  • getTrainingCourses(params?: TrainingCoursesQueryParams)
  • getTraits(params?: TraitsQueryParams)
  • getItems(params?: ItemsQueryParams)
  • getGear(params?: GearQueryParams)
  • getQuests(params?: BasicQueryParams)
  • getDojos()
  • getCharacters(params?: BasicQueryParams)
  • getSaipark(params?: BasicQueryParams)
  • getLocations(params?: BasicQueryParams)
  • getCosmetics(params?: BasicQueryParams)
  • getDyes(params?: BasicQueryParams)
  • getPatches(params?: BasicQueryParams)
  • getWeaknesses()
  • calculateWeaknesses(params: WeaknessCalculateParams)
  • getBreeding()

🔍 Query Parameters All methods that accept parameters support filtering the response using:

  • fields: Specify which fields to return
  • limit: Limit the number of results Some endpoints support additional parameters like names, expand, and weaknesses.

🏷️ Used Types/Interfaces

  • BasicQueryParams { fields?: string, limit?: number }
  • TemtemQueryParams extends BasicQueryParams { names?: string, expand?: string, weaknesses?: boolean }
  • TemtemByIdQueryParams { fields?: string, expand?: string, weaknesses?: boolean }
  • TechniquesQueryParams extends BasicQueryParams { names?: string }
  • TraitsQueryParams extends BasicQueryParams { names?: string }
  • TypesQueryParams = BasicQueryParams
  • ConditionsQueryParams = BasicQueryParams
  • TrainingCoursesQueryParams = BasicQueryParams
  • ItemsQueryParams = BasicQueryParams
  • GearQueryParams = BasicQueryParams
  • WeaknessCalculateParams { attacking: string, defending: string }

📄 License MIT

🤝 Contributing This wrapper uses the Temtem API provided by https://temtem-api.mael.tech

Using his typing package is strongly recommended until its included here.

Package Sidebar

Install

npm i @ryyseexvi/temtem-promise-v1

Weekly Downloads

4

Version

1.1.3

License

ISC

Unpacked Size

51.5 kB

Total Files

8

Last publish

Collaborators

  • ryyseexvi