@shakerquiz/forms 0.0.190 → 0.0.192
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 +2 -2
- package/source/forms/PATCH/game/Admin.json +0 -8
- package/source/forms/PATCH/game/Organizer.json +0 -8
- package/source/forms/PATCH/game/theme/Admin.json +9 -0
- package/source/forms/PATCH/game/theme/Organizer.json +9 -0
- package/source/forms/PATCH/game/venue/Admin.json +9 -0
- package/source/forms/PATCH/game/venue/Organizer.json +9 -0
- package/source/index.js +12 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@shakerquiz/forms",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.192",
|
|
5
5
|
"author": "yurkimus <yurkimus@gmail.com>",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"repository": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
],
|
|
17
17
|
"exports": "./source/index.js",
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@shakerquiz/contracts": "0.0.
|
|
19
|
+
"@shakerquiz/contracts": "0.0.211",
|
|
20
20
|
"@shakerquiz/utilities": "4.0.88",
|
|
21
21
|
"@types/bun": "1.3.7"
|
|
22
22
|
}
|
package/source/index.js
CHANGED
|
@@ -24,8 +24,12 @@ import PATCH_theme_Admin from './forms/PATCH/theme/Admin.json' with { type: 'jso
|
|
|
24
24
|
import PATCH_user_role_Admin from './forms/PATCH/user/role/Admin.json' with { type: 'json' }
|
|
25
25
|
import PATCH_user_Admin from './forms/PATCH/user/Admin.json' with { type: 'json' }
|
|
26
26
|
import PATCH_user_password_Admin from './forms/PATCH/user/password/Admin.json' with { type: 'json' }
|
|
27
|
+
import PATCH_game_theme_Organizer from './forms/PATCH/game/theme/Organizer.json' with { type: 'json' }
|
|
28
|
+
import PATCH_game_theme_Admin from './forms/PATCH/game/theme/Admin.json' with { type: 'json' }
|
|
27
29
|
import PATCH_game_Organizer from './forms/PATCH/game/Organizer.json' with { type: 'json' }
|
|
28
30
|
import PATCH_game_Admin from './forms/PATCH/game/Admin.json' with { type: 'json' }
|
|
31
|
+
import PATCH_game_venue_Organizer from './forms/PATCH/game/venue/Organizer.json' with { type: 'json' }
|
|
32
|
+
import PATCH_game_venue_Admin from './forms/PATCH/game/venue/Admin.json' with { type: 'json' }
|
|
29
33
|
import PATCH_game_registration_Organizer from './forms/PATCH/game/registration/Organizer.json' with { type: 'json' }
|
|
30
34
|
import PATCH_game_registration_Admin from './forms/PATCH/game/registration/Admin.json' with { type: 'json' }
|
|
31
35
|
import PATCH_city_Organizer from './forms/PATCH/city/Organizer.json' with { type: 'json' }
|
|
@@ -73,8 +77,12 @@ export const FormSchema = Object.freeze(
|
|
|
73
77
|
'PATCH/user/role/Admin': PATCH_user_role_Admin,
|
|
74
78
|
'PATCH/user/Admin': PATCH_user_Admin,
|
|
75
79
|
'PATCH/user/password/Admin': PATCH_user_password_Admin,
|
|
80
|
+
'PATCH/game/theme/Organizer': PATCH_game_theme_Organizer,
|
|
81
|
+
'PATCH/game/theme/Admin': PATCH_game_theme_Admin,
|
|
76
82
|
'PATCH/game/Organizer': PATCH_game_Organizer,
|
|
77
83
|
'PATCH/game/Admin': PATCH_game_Admin,
|
|
84
|
+
'PATCH/game/venue/Organizer': PATCH_game_venue_Organizer,
|
|
85
|
+
'PATCH/game/venue/Admin': PATCH_game_venue_Admin,
|
|
78
86
|
'PATCH/game/registration/Organizer': PATCH_game_registration_Organizer,
|
|
79
87
|
'PATCH/game/registration/Admin': PATCH_game_registration_Admin,
|
|
80
88
|
'PATCH/city/Organizer': PATCH_city_Organizer,
|
|
@@ -124,8 +132,12 @@ export const FormKind = Object.freeze(
|
|
|
124
132
|
'PATCH/user/role/Admin': 'Schema',
|
|
125
133
|
'PATCH/user/Admin': 'Schema',
|
|
126
134
|
'PATCH/user/password/Admin': 'Schema',
|
|
135
|
+
'PATCH/game/theme/Organizer': 'Schema',
|
|
136
|
+
'PATCH/game/theme/Admin': 'Schema',
|
|
127
137
|
'PATCH/game/Organizer': 'Schema',
|
|
128
138
|
'PATCH/game/Admin': 'Schema',
|
|
139
|
+
'PATCH/game/venue/Organizer': 'Schema',
|
|
140
|
+
'PATCH/game/venue/Admin': 'Schema',
|
|
129
141
|
'PATCH/game/registration/Organizer': 'Schema',
|
|
130
142
|
'PATCH/game/registration/Admin': 'Schema',
|
|
131
143
|
'PATCH/city/Organizer': 'Schema',
|