From 441e0ea9f517d49f4c8c73f449eb26b7da19f2f2 Mon Sep 17 00:00:00 2001 From: Ken Eucker Date: Tue, 28 Jan 2025 15:35:13 -0800 Subject: [PATCH 1/2] fix(common/data): adds the radius to the region of the game data --- src/common/data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/data.ts b/src/common/data.ts index 67eccc4..b0ad733 100644 --- a/src/common/data.ts +++ b/src/common/data.ts @@ -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', + region: 'name,description,zipcode,radius', } export const gameDataFields = Object.keys(createGameObject()) From 4ac55f192428cadb66be71d795c0517dbc35bf98 Mon Sep 17 00:00:00 2001 From: Ken Eucker Date: Tue, 28 Jan 2025 15:38:12 -0800 Subject: [PATCH 2/2] docs(version): v3.3.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b3c69cb..e0be2da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "biketag", - "version": "3.3.3", + "version": "3.3.6", "description": "The Javascript client API for BikeTag Games", "main": "./dist/index.js", "module": "./dist/index.mjs",