@shakerquiz/utilities 0.4.15 → 0.4.17
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/package.json +1 -1
- package/source/enumerations/core/features.js +11 -0
- package/source/index.d.ts +1139 -22
- package/source/index.js +0 -23
- package/source/checkin.d.ts +0 -9
- package/source/city.d.ts +0 -191
- package/source/enumerations/schemas.d.ts +0 -16
- package/source/enumerations/schemas.js +0 -17
- package/source/functions/schema.d.ts +0 -5
- package/source/functions/schema.js +0 -59
- package/source/game.d.ts +0 -188
- package/source/globals.d.ts +0 -89
- package/source/image-media.d.ts +0 -30
- package/source/media.d.ts +0 -30
- package/source/registration.d.ts +0 -148
- package/source/role.d.ts +0 -30
- package/source/schemas/city.d.ts +0 -275
- package/source/schemas/city.js +0 -224
- package/source/schemas/game.d.ts +0 -97
- package/source/schemas/game.js +0 -97
- package/source/schemas/registration.d.ts +0 -129
- package/source/schemas/registration.js +0 -129
- package/source/schemas/role.d.ts +0 -21
- package/source/schemas/role.js +0 -21
- package/source/schemas/theme.d.ts +0 -29
- package/source/schemas/theme.js +0 -29
- package/source/schemas/user.d.ts +0 -73
- package/source/schemas/user.js +0 -73
- package/source/schemas/venue.d.ts +0 -77
- package/source/schemas/venue.js +0 -77
- package/source/theme.d.ts +0 -41
- package/source/user.d.ts +0 -104
- package/source/venue.d.ts +0 -100
package/package.json
CHANGED
|
@@ -65,11 +65,22 @@ export var DomainKindPathname = /** @type {const} */ ({
|
|
|
65
65
|
},
|
|
66
66
|
|
|
67
67
|
'Game': {
|
|
68
|
+
/**
|
|
69
|
+
* Parameter "game" can be one of:
|
|
70
|
+
* - UUID of a Game,
|
|
71
|
+
* - Game alias combined with City (UUID, alias or VK group ID),
|
|
72
|
+
* - UUID of a Registration
|
|
73
|
+
*/
|
|
68
74
|
'Unit': '/game/:game?',
|
|
69
75
|
'Set': '/games',
|
|
70
76
|
},
|
|
71
77
|
|
|
72
78
|
'Registration': {
|
|
79
|
+
/**
|
|
80
|
+
* Parameter "registration" can be one of:
|
|
81
|
+
* - UUID of a Registration,
|
|
82
|
+
* - VK identifier of a Registration
|
|
83
|
+
*/
|
|
73
84
|
'Unit': '/registration/:registration?',
|
|
74
85
|
'Set': '/registrations',
|
|
75
86
|
},
|