@shakerquiz/forms 0.0.124 → 0.0.126

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.124",
4
+ "version": "0.0.126",
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.151",
19
+ "@shakerquiz/contracts": "0.0.152",
20
20
  "@shakerquiz/utilities": "4.0.64",
21
21
  "@types/bun": "1.3.7"
22
22
  }
@@ -0,0 +1,9 @@
1
+ {
2
+ "state": "Interactive",
3
+ "fields": [
4
+ {
5
+ "name": "file",
6
+ "kind": "file"
7
+ }
8
+ ]
9
+ }
package/source/index.js CHANGED
@@ -14,6 +14,7 @@ import POST_venue_organizer from './forms/POST/venue/organizer.json' with { type
14
14
  import POST_registration_Unknown from './forms/POST/registration/Unknown.json' with { type: 'json' }
15
15
  import POST_registration_admin from './forms/POST/registration/admin.json' with { type: 'json' }
16
16
  import POST_registration_organizer from './forms/POST/registration/organizer.json' with { type: 'json' }
17
+ import PATCH_theme_cover_admin from './forms/PATCH/theme/cover/admin.json' with { type: 'json' }
17
18
  import PATCH_theme_admin from './forms/PATCH/theme/admin.json' with { type: 'json' }
18
19
  import PATCH_user_role_admin from './forms/PATCH/user/role/admin.json' with { type: 'json' }
19
20
  import PATCH_user_password_admin from './forms/PATCH/user/password/admin.json' with { type: 'json' }
@@ -60,6 +61,7 @@ export const FormSchema = Object.freeze(
60
61
  'POST/registration/Unknown': POST_registration_Unknown,
61
62
  'POST/registration/admin': POST_registration_admin,
62
63
  'POST/registration/organizer': POST_registration_organizer,
64
+ 'PATCH/theme/cover/admin': PATCH_theme_cover_admin,
63
65
  'PATCH/theme/admin': PATCH_theme_admin,
64
66
  'PATCH/user/role/admin': PATCH_user_role_admin,
65
67
  'PATCH/user/password/admin': PATCH_user_password_admin,
@@ -92,7 +94,7 @@ export const FormSchema = Object.freeze(
92
94
 
93
95
  export const FormKind = Object.freeze(
94
96
  /** @type {const} */ ({
95
- 'POST/theme/cover/admin': 'FormData',
97
+ 'POST/theme/cover/admin': 'Schema',
96
98
  'POST/theme/admin': 'Schema',
97
99
  'POST/checkin/Unknown': 'Schema',
98
100
  'POST/user/role/admin': 'Schema',
@@ -108,6 +110,7 @@ export const FormKind = Object.freeze(
108
110
  'POST/registration/Unknown': 'Schema',
109
111
  'POST/registration/admin': 'Schema',
110
112
  'POST/registration/organizer': 'Schema',
113
+ 'PATCH/theme/cover/admin': 'Unknown',
111
114
  'PATCH/theme/admin': 'Schema',
112
115
  'PATCH/user/role/admin': 'Schema',
113
116
  'PATCH/user/password/admin': 'Schema',