@shakerquiz/contracts 0.0.169 → 0.0.170

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/contracts",
4
- "version": "0.0.169",
4
+ "version": "0.0.170",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
package/source/index.js CHANGED
@@ -21,12 +21,6 @@ import PATCH_themes_admin from './contracts/PATCH/themes/admin.json' with { type
21
21
  import PATCH_venue_organizer from './contracts/PATCH/venue/organizer.json' with { type: 'json' }
22
22
  import PATCH_venue_admin from './contracts/PATCH/venue/admin.json' with { type: 'json' }
23
23
  import PATCH_registrations_Service from './contracts/PATCH/registrations/Service.json' with { type: 'json' }
24
- import PATCH_registrations_lineup_organizer from './contracts/PATCH/registrations/lineup/organizer.json' with { type: 'json' }
25
- import PATCH_registrations_lineup_Service from './contracts/PATCH/registrations/lineup/Service.json' with { type: 'json' }
26
- import PATCH_registrations_lineup_admin from './contracts/PATCH/registrations/lineup/admin.json' with { type: 'json' }
27
- import PATCH_registrations_status_organizer from './contracts/PATCH/registrations/status/organizer.json' with { type: 'json' }
28
- import PATCH_registrations_status_Service from './contracts/PATCH/registrations/status/Service.json' with { type: 'json' }
29
- import PATCH_registrations_status_admin from './contracts/PATCH/registrations/status/admin.json' with { type: 'json' }
30
24
  import PATCH_user_password_admin from './contracts/PATCH/user/password/admin.json' with { type: 'json' }
31
25
  import PATCH_user_admin from './contracts/PATCH/user/admin.json' with { type: 'json' }
32
26
  import PATCH_user_role_admin from './contracts/PATCH/user/role/admin.json' with { type: 'json' }
@@ -174,12 +168,6 @@ export const Contracts = Object.freeze(
174
168
  'PATCH/venue/organizer',
175
169
  'PATCH/venue/admin',
176
170
  'PATCH/registrations/Service',
177
- 'PATCH/registrations/lineup/organizer',
178
- 'PATCH/registrations/lineup/Service',
179
- 'PATCH/registrations/lineup/admin',
180
- 'PATCH/registrations/status/organizer',
181
- 'PATCH/registrations/status/Service',
182
- 'PATCH/registrations/status/admin',
183
171
  'PATCH/user/password/admin',
184
172
  'PATCH/user/admin',
185
173
  'PATCH/user/role/admin',
@@ -329,12 +317,6 @@ export const Schemas = Object.freeze(
329
317
  PATCH_venue_organizer,
330
318
  PATCH_venue_admin,
331
319
  PATCH_registrations_Service,
332
- PATCH_registrations_lineup_organizer,
333
- PATCH_registrations_lineup_Service,
334
- PATCH_registrations_lineup_admin,
335
- PATCH_registrations_status_organizer,
336
- PATCH_registrations_status_Service,
337
- PATCH_registrations_status_admin,
338
320
  PATCH_user_password_admin,
339
321
  PATCH_user_admin,
340
322
  PATCH_user_role_admin,
@@ -484,12 +466,6 @@ export const ContractSchema = Object.freeze(
484
466
  'PATCH/venue/organizer': PATCH_venue_organizer,
485
467
  'PATCH/venue/admin': PATCH_venue_admin,
486
468
  'PATCH/registrations/Service': PATCH_registrations_Service,
487
- 'PATCH/registrations/lineup/organizer': PATCH_registrations_lineup_organizer,
488
- 'PATCH/registrations/lineup/Service': PATCH_registrations_lineup_Service,
489
- 'PATCH/registrations/lineup/admin': PATCH_registrations_lineup_admin,
490
- 'PATCH/registrations/status/organizer': PATCH_registrations_status_organizer,
491
- 'PATCH/registrations/status/Service': PATCH_registrations_status_Service,
492
- 'PATCH/registrations/status/admin': PATCH_registrations_status_admin,
493
469
  'PATCH/user/password/admin': PATCH_user_password_admin,
494
470
  'PATCH/user/admin': PATCH_user_admin,
495
471
  'PATCH/user/role/admin': PATCH_user_role_admin,
@@ -1,25 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "array",
4
- "items": {
5
- "type": "object",
6
- "properties": {
7
- "id": {
8
- "type": "string",
9
- "format": "uuid"
10
- },
11
- "lineup": {
12
- "type": "string",
13
- "enum": [
14
- "Main",
15
- "Reserve"
16
- ]
17
- }
18
- },
19
- "required": [
20
- "id",
21
- "lineup"
22
- ]
23
- },
24
- "uniqueItems": true
25
- }
@@ -1,25 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "array",
4
- "items": {
5
- "type": "object",
6
- "properties": {
7
- "id": {
8
- "type": "string",
9
- "format": "uuid"
10
- },
11
- "lineup": {
12
- "type": "string",
13
- "enum": [
14
- "Main",
15
- "Reserve"
16
- ]
17
- }
18
- },
19
- "required": [
20
- "id",
21
- "lineup"
22
- ]
23
- },
24
- "uniqueItems": true
25
- }
@@ -1,25 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "array",
4
- "items": {
5
- "type": "object",
6
- "properties": {
7
- "id": {
8
- "type": "string",
9
- "format": "uuid"
10
- },
11
- "lineup": {
12
- "type": "string",
13
- "enum": [
14
- "Main",
15
- "Reserve"
16
- ]
17
- }
18
- },
19
- "required": [
20
- "id",
21
- "lineup"
22
- ]
23
- },
24
- "uniqueItems": true
25
- }
@@ -1,26 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "array",
4
- "items": {
5
- "type": "object",
6
- "properties": {
7
- "id": {
8
- "type": "string",
9
- "format": "uuid"
10
- },
11
- "status": {
12
- "type": "string",
13
- "enum": [
14
- "Created",
15
- "Confirmed",
16
- "Cancelled"
17
- ]
18
- }
19
- },
20
- "required": [
21
- "id",
22
- "status"
23
- ]
24
- },
25
- "uniqueItems": true
26
- }
@@ -1,26 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "array",
4
- "items": {
5
- "type": "object",
6
- "properties": {
7
- "id": {
8
- "type": "string",
9
- "format": "uuid"
10
- },
11
- "status": {
12
- "type": "string",
13
- "enum": [
14
- "Created",
15
- "Confirmed",
16
- "Cancelled"
17
- ]
18
- }
19
- },
20
- "required": [
21
- "id",
22
- "status"
23
- ]
24
- },
25
- "uniqueItems": true
26
- }
@@ -1,26 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "array",
4
- "items": {
5
- "type": "object",
6
- "properties": {
7
- "id": {
8
- "type": "string",
9
- "format": "uuid"
10
- },
11
- "status": {
12
- "type": "string",
13
- "enum": [
14
- "Created",
15
- "Confirmed",
16
- "Cancelled"
17
- ]
18
- }
19
- },
20
- "required": [
21
- "id",
22
- "status"
23
- ]
24
- },
25
- "uniqueItems": true
26
- }