Skip to content

Commit

Permalink
Merge pull request #241 from KenEucker/develop
Browse files Browse the repository at this point in the history
fix(region): changes the utc variable to tz to represent timezone more  effectively
  • Loading branch information
KenEucker authored Mar 7, 2025
2 parents 5efbe14 + a5f4e74 commit 802bc3c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "biketag",
"version": "3.3.11",
"version": "3.3.12",
"description": "The Javascript client API for BikeTag Games",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/common/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const gameDataReferenceFields = ['region', 'settings']
export const gameDataArrayFields = ['ambassadors', 'tags', 'settings']
export const gameDataCustomFields = {
settings: '[]->{key,value}',
region: 'name,description,zipcode,radius,utc',
region: 'name,description,zipcode,radius,tz',
}

export const gameDataFields = Object.keys(createGameObject())
Expand Down
2 changes: 1 addition & 1 deletion src/common/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export type Region = {
name: string
description: string
zipcode: number
utc: string
tz: string
}

export type Player = {
Expand Down

0 comments on commit 802bc3c

Please sign in to comment.