This package contains data used across multiple services, handled here in an effort to adhere to "D.R.Y" coding principles.
This checklist tracks the first pass needed before downstream ecosystem work depends on this package.
- Deprecate or move runtime error constructors into
pkg-service-utilsonce consumers have migrated. - Move profanity matching/normalisation helpers into
pkg-service-utils. - Review whether every
mainpush should auto-bump and publish this data package.
The old DataErrors classes are still exported for compatibility. Runtime profanity matching and @2toad/profanity integration now live in @bigfootds/bigfootds-service-utils; this package owns only static profanity/restricted-word list data and metadata.
This package is publicly published on NPM, so its contents must be safe for public-facing usage.
It should contain static, reviewable reference data only:
- public Project IDs, Project Kinds, and minimal Project Definitions
- safe client-facing global error codes and default messages
- shared TypeScript data shapes for future service response helpers
- baseline profanity/restricted-word lists and typed list metadata
- public Bigfoot Fetcher header/config metadata
Do not put secrets, credentials, private moderation notes, account data, private diagnostics, provider payloads, environment-specific service URLs, or mutable live-ops configuration in this package.
This package is published to these places:
This is a scoped package, so its install command looks a little longer than normal. But it means you can guarantee that you'll be getting the package from BigfootDS!
npm install @bigfootds/bigfootds-shared-data
This package ships generated TypeScript declarations with its compiled JavaScript output.
Use Project Definitions when services or tools need to validate or list known BigfootDS projects:
import {
PROJECT_IDS,
getProjectDefinition,
isKnownProjectId
} from "@bigfootds/bigfootds-shared-data";
const projectDefinition = getProjectDefinition(PROJECT_IDS.GAME_THEBESTESTBEEHIVE);
if (isKnownProjectId("ms-auth")) {
console.log(projectDefinition?.displayName);
}Use the global error catalogue when a service needs stable public error metadata:
import {
ERROR_CODES,
getErrorCodeDefinition,
type SharedErrorResponse
} from "@bigfootds/bigfootds-shared-data";
const definition = getErrorCodeDefinition(ERROR_CODES.RATE_LIMITED);
const response: SharedErrorResponse = {
error: {
code: ERROR_CODES.RATE_LIMITED,
message: definition?.defaultMessage ?? "Too many requests. Try again later.",
requestId: "req_123"
}
};Use profanity-list metadata when a consumer needs the static BigfootDS-owned lists without importing runtime matching helpers:
import {
PROFANITY_LISTS_BY_ID,
PROFANITY_LIST_IDS
} from "@bigfootds/bigfootds-shared-data";
const reservedWords = PROFANITY_LISTS_BY_ID[PROFANITY_LIST_IDS.RESERVED_WORDS].words;Shared Bigfoot Fetcher metadata is exported here so services can configure headers without importing the fetch wrapper:
import {
BIGFOOT_FETCHER_HEADER_NAMES,
type BigfootDSConfig
} from "@bigfootds/bigfootds-shared-data";
const allowedHeaders = [
"Content-Type",
"Authorization",
...BIGFOOT_FETCHER_HEADER_NAMES
];
const serviceMetadata: BigfootDSConfig = {
productName: "@bigfootds/ms-auth",
platformType: "api"
};Import the package and use the static first-pass data:
const bdsSharedData = require('@bigfootds/bigfootds-shared-data');
console.log(bdsSharedData.PROJECT_IDS.MS_AUTH);
console.log(bdsSharedData.getProjectDefinition("game-godmaker"));
console.log(bdsSharedData.getErrorCodeDefinition("auth_user_banned"));Output:
ms-auth
{ id: 'game-godmaker', displayName: 'Godmaker', kind: 'game' }
{
code: 'auth_user_banned',
ownerArea: 'ms-auth',
defaultHttpStatus: 403,
defaultMessage: 'This account cannot be used.'
}
Runtime profanity handlers live in @bigfootds/bigfootds-service-utils:
const { playerNameProfanityHandler } = require('@bigfootds/bigfootds-service-utils');
const result = playerNameProfanityHandler.check("bigfootds");
console.log(result.isAllowed);
console.log(result.hasDevWord);Output:
false
true