@shakerquiz/forms 0.0.67 → 0.0.69
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@shakerquiz/forms",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.69",
|
|
5
5
|
"author": "yurkimus <yurkimus@gmail.com>",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"repository": {
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
],
|
|
17
17
|
"exports": "./source/index.js",
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@shakerquiz/contracts": "0.0.
|
|
20
|
-
"@shakerquiz/utilities": "4.0.
|
|
19
|
+
"@shakerquiz/contracts": "0.0.102",
|
|
20
|
+
"@shakerquiz/utilities": "4.0.45",
|
|
21
21
|
"@types/bun": "1.3.7"
|
|
22
22
|
}
|
|
23
23
|
}
|
package/source/index.js
CHANGED
|
@@ -26,6 +26,7 @@ import PATCH_registration_channel_admin from './forms/PATCH/registration/channel
|
|
|
26
26
|
import POST_user_admin from './forms/POST/user/admin.json' with { type: 'json' }
|
|
27
27
|
import POST_user_password_admin from './forms/POST/user/password/admin.json' with { type: 'json' }
|
|
28
28
|
import POST_user_role_admin from './forms/POST/user/role/admin.json' with { type: 'json' }
|
|
29
|
+
import POST_user_city_admin from './forms/POST/user/city/admin.json' with { type: 'json' }
|
|
29
30
|
import POST_checkin_admin from './forms/POST/checkin/admin.json' with { type: 'json' }
|
|
30
31
|
import POST_checkin_organizer from './forms/POST/checkin/organizer.json' with { type: 'json' }
|
|
31
32
|
import POST_checkin_Unknown from './forms/POST/checkin/Unknown.json' with { type: 'json' }
|
|
@@ -72,6 +73,7 @@ export const Forms = Object.freeze(
|
|
|
72
73
|
'POST/user/admin',
|
|
73
74
|
'POST/user/password/admin',
|
|
74
75
|
'POST/user/role/admin',
|
|
76
|
+
'POST/user/city/admin',
|
|
75
77
|
'POST/checkin/admin',
|
|
76
78
|
'POST/checkin/organizer',
|
|
77
79
|
'POST/checkin/Unknown',
|
|
@@ -120,6 +122,7 @@ export const Schemas = Object.freeze(
|
|
|
120
122
|
POST_user_admin,
|
|
121
123
|
POST_user_password_admin,
|
|
122
124
|
POST_user_role_admin,
|
|
125
|
+
POST_user_city_admin,
|
|
123
126
|
POST_checkin_admin,
|
|
124
127
|
POST_checkin_organizer,
|
|
125
128
|
POST_checkin_Unknown,
|
|
@@ -168,6 +171,7 @@ export const FormSchema = Object.freeze(
|
|
|
168
171
|
'POST/user/admin': POST_user_admin,
|
|
169
172
|
'POST/user/password/admin': POST_user_password_admin,
|
|
170
173
|
'POST/user/role/admin': POST_user_role_admin,
|
|
174
|
+
'POST/user/city/admin': POST_user_city_admin,
|
|
171
175
|
'POST/checkin/admin': POST_checkin_admin,
|
|
172
176
|
'POST/checkin/organizer': POST_checkin_organizer,
|
|
173
177
|
'POST/checkin/Unknown': POST_checkin_Unknown,
|
|
@@ -216,6 +220,7 @@ export const FormKind = Object.freeze(
|
|
|
216
220
|
'POST/user/admin': 'Schema',
|
|
217
221
|
'POST/user/password/admin': 'Schema',
|
|
218
222
|
'POST/user/role/admin': 'Schema',
|
|
223
|
+
'POST/user/city/admin': 'Schema',
|
|
219
224
|
'POST/checkin/admin': 'Unknown',
|
|
220
225
|
'POST/checkin/organizer': 'Unknown',
|
|
221
226
|
'POST/checkin/Unknown': 'Schema',
|