@shakerquiz/forms 0.0.154 → 0.0.156
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
CHANGED
package/source/index.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import POST_theme_cover_admin from './forms/POST/theme/cover/admin.json' with { type: 'json' }
|
|
2
2
|
import POST_theme_admin from './forms/POST/theme/admin.json' with { type: 'json' }
|
|
3
|
-
import
|
|
3
|
+
import POST_checkin_user from './forms/POST/checkin/user.json' with { type: 'json' }
|
|
4
|
+
import POST_checkin_admin from './forms/POST/checkin/admin.json' with { type: 'json' }
|
|
5
|
+
import POST_checkin_organizer from './forms/POST/checkin/organizer.json' with { type: 'json' }
|
|
4
6
|
import POST_user_role_admin from './forms/POST/user/role/admin.json' with { type: 'json' }
|
|
5
7
|
import POST_user_city_admin from './forms/POST/user/city/admin.json' with { type: 'json' }
|
|
6
8
|
import POST_user_password_admin from './forms/POST/user/password/admin.json' with { type: 'json' }
|
|
@@ -46,7 +48,9 @@ export const FormSchema = Object.freeze(
|
|
|
46
48
|
/** @type {const} */ ({
|
|
47
49
|
'POST/theme/cover/admin': POST_theme_cover_admin,
|
|
48
50
|
'POST/theme/admin': POST_theme_admin,
|
|
49
|
-
'POST/checkin/
|
|
51
|
+
'POST/checkin/user': POST_checkin_user,
|
|
52
|
+
'POST/checkin/admin': POST_checkin_admin,
|
|
53
|
+
'POST/checkin/organizer': POST_checkin_organizer,
|
|
50
54
|
'POST/user/role/admin': POST_user_role_admin,
|
|
51
55
|
'POST/user/city/admin': POST_user_city_admin,
|
|
52
56
|
'POST/user/password/admin': POST_user_password_admin,
|
|
@@ -94,7 +98,9 @@ export const FormKind = Object.freeze(
|
|
|
94
98
|
/** @type {const} */ ({
|
|
95
99
|
'POST/theme/cover/admin': 'Schema',
|
|
96
100
|
'POST/theme/admin': 'Schema',
|
|
97
|
-
'POST/checkin/
|
|
101
|
+
'POST/checkin/user': 'Unknown',
|
|
102
|
+
'POST/checkin/admin': 'Unknown',
|
|
103
|
+
'POST/checkin/organizer': 'Unknown',
|
|
98
104
|
'POST/user/role/admin': 'Schema',
|
|
99
105
|
'POST/user/city/admin': 'Schema',
|
|
100
106
|
'POST/user/password/admin': 'Schema',
|
|
File without changes
|