-
Notifications
You must be signed in to change notification settings - Fork 0
Blueprints
Adrian Preuß edited this page Oct 25, 2025
·
41 revisions
List all available blueprints.list(): Blueprint[] | null
list(): Blueprint[] | nullPromise<Blueprint[] | null>import { Blueprints } from 'battlefield6-api';
const blueprints = await Blueprints.list();
console.log('Blueprints:', blueprints);Get all blueprints by given id's.get(ids): Blueprint[] | null
get(ids): Blueprint[] | null| Name | Type | Description |
|---|---|---|
| ids | BlueprintId[] |
Array of blueprint ids. |
Promise<Blueprint[] | null>import { Blueprints } from 'battlefield6-api';
const blueprints = await Blueprints.get([{
id: '1234567890',
version: 'abcdefghijklmnopqrstuvwxyz'
}]);
console.log('Blueprints:', blueprints);The actual abstraction layer for retrieving or sending data from the portal server.
⠀⠀
⠀⠀
⠀⠀
The actual abstraction layer for retrieving or sending data from the portal server.
⠀⠀
⠀⠀
⠀⠀


⠀⠀
Model data for simplified use of the data.
⠀⠀
⠀⠀
⠀⠀
⠀⠀
⠀⠀
⠀⠀
⠀⠀
⠀⠀
⠀⠀
⠀⠀
Static data and informations.
⠀⠀
⠀⠀
⠀⠀