@playcademy/sandbox 0.3.19-beta.3 → 0.3.19-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1205 -800
- package/dist/constants.js +10 -0
- package/dist/server.js +1205 -800
- package/package.json +1 -1
package/dist/constants.js
CHANGED
|
@@ -171,6 +171,15 @@ var init_domains = __esm(() => {
|
|
|
171
171
|
// ../constants/src/env-vars.ts
|
|
172
172
|
var init_env_vars = () => {};
|
|
173
173
|
|
|
174
|
+
// ../constants/src/game.ts
|
|
175
|
+
var GAME_MEMBER_ROLES;
|
|
176
|
+
var init_game = __esm(() => {
|
|
177
|
+
GAME_MEMBER_ROLES = {
|
|
178
|
+
OWNER: "owner",
|
|
179
|
+
COLLABORATOR: "collaborator"
|
|
180
|
+
};
|
|
181
|
+
});
|
|
182
|
+
|
|
174
183
|
// ../constants/src/overworld.ts
|
|
175
184
|
var MAX_LEVEL = 100, ITEM_SLUGS, CURRENCIES, CURRENCY_SYMBOLS, BADGES, TOAST_DURATION, CORE_GAME_UUIDS;
|
|
176
185
|
var init_overworld = __esm(() => {
|
|
@@ -281,6 +290,7 @@ var init_src = __esm(() => {
|
|
|
281
290
|
init_character();
|
|
282
291
|
init_domains();
|
|
283
292
|
init_env_vars();
|
|
293
|
+
init_game();
|
|
284
294
|
init_overworld();
|
|
285
295
|
init_timeback();
|
|
286
296
|
init_workers();
|