@shakerquiz/utilities 3.0.0 → 4.0.0
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/.github/workflows/publish.yml +31 -0
- package/package.json +5 -5
- package/scripts/route-cardinality.js +23 -0
- package/scripts/route-parameter.js +29 -0
- package/scripts/route-pathname.js +37 -0
- package/scripts/route-relation.js +26 -0
- package/scripts/route-service.js +25 -0
- package/scripts/templates/route-cardinality.js +5 -0
- package/scripts/templates/route-parameter.js +5 -0
- package/scripts/templates/route-pathname.js +7 -0
- package/scripts/templates/route-relation.js +5 -0
- package/scripts/templates/route-service.js +7 -0
- package/source/entities/blend.js +5 -0
- package/source/entities/cardinality.js +4 -0
- package/source/entities/category.js +4 -0
- package/source/entities/city-affilation.js +10 -0
- package/source/entities/city-chatapp-version.js +9 -0
- package/source/{enumerations/misc → entities}/constants.js +1 -1
- package/source/entities/display.js +4 -0
- package/source/entities/game-status.js +98 -0
- package/source/entities/gender.js +13 -0
- package/source/entities/icon.js +654 -0
- package/source/entities/key.js +41 -0
- package/source/{enumerations/core/methods.js → entities/method.js} +10 -4
- package/source/entities/mode.js +9 -0
- package/source/entities/network.js +9 -0
- package/source/entities/numerosity.js +5 -0
- package/source/entities/pattern.js +7 -0
- package/source/entities/phase.js +15 -0
- package/source/entities/quantifier.js +41 -0
- package/source/entities/registration-attribute.js +61 -0
- package/source/entities/registration-channel.js +11 -0
- package/source/entities/registration-lineup.js +14 -0
- package/source/entities/registration-mailing.js +20 -0
- package/source/entities/registration-status.js +19 -0
- package/source/entities/role.js +16 -0
- package/source/entities/route-cardinality.js +149 -0
- package/source/entities/route-parameter.js +149 -0
- package/source/entities/route-pathname.js +223 -0
- package/source/entities/route-relation.js +149 -0
- package/source/entities/route-service.js +179 -0
- package/source/entities/route.js +82 -0
- package/source/entities/runtime.js +6 -0
- package/source/entities/segment.js +255 -0
- package/source/entities/service-runtime.js +22 -0
- package/source/entities/service.js +22 -0
- package/source/entities/theme-status.js +9 -0
- package/source/entities/venue-audience.js +9 -0
- package/source/entities/venue-status.js +9 -0
- package/source/helpers/access.js +161 -0
- package/source/helpers/hydrate-route-pathname.js +29 -0
- package/source/helpers/tag.js +35 -0
- package/source/index.js +40 -34
- package/source/enumerations/core/features.js +0 -56
- package/source/enumerations/core/networks.js +0 -6
- package/source/enumerations/core/runtimes.js +0 -6
- package/source/enumerations/entities/affilation.js +0 -91
- package/source/enumerations/entities/cities-mode.js +0 -49
- package/source/enumerations/entities/city/timezone-mode.js +0 -44
- package/source/enumerations/entities/city/venues-mode.js +0 -60
- package/source/enumerations/entities/game-status.js +0 -130
- package/source/enumerations/entities/password-mode.js +0 -40
- package/source/enumerations/entities/registration-attribute.js +0 -83
- package/source/enumerations/entities/registration-channel.js +0 -26
- package/source/enumerations/entities/registration-lineup.js +0 -75
- package/source/enumerations/entities/registration-mailing.js +0 -24
- package/source/enumerations/entities/registration-status.js +0 -89
- package/source/enumerations/entities/role-mode.js +0 -40
- package/source/enumerations/entities/role.js +0 -82
- package/source/enumerations/entities/venue/audience.js +0 -100
- package/source/enumerations/entities/venue/city-mode.js +0 -44
- package/source/enumerations/entities/venue/status.js +0 -53
- package/source/enumerations/entities/version.js +0 -76
- package/source/enumerations/misc/icons.js +0 -655
- package/source/enumerations/misc/keys.js +0 -15
- package/source/enumerations/misc/phases.js +0 -42
- package/source/enumerations/misc/regexps.js +0 -5
- package/source/enumerations/misc/routes.js +0 -610
- package/source/functions/tag.d.ts +0 -1
- package/source/functions/tag.js +0 -5
- package/source/schemas/PATCH/city/admin.json +0 -126
- package/source/schemas/PATCH/city/currency/admin.json +0 -173
- package/source/schemas/PATCH/city/timezone/admin.json +0 -501
- package/source/schemas/PATCH/game/admin.json +0 -30
- package/source/schemas/PATCH/game/organizer.json +0 -30
- package/source/schemas/PATCH/registration/admin.json +0 -43
- package/source/schemas/PATCH/registration/cancellation/default.json +0 -12
- package/source/schemas/PATCH/registration/channel/default.json +0 -22
- package/source/schemas/PATCH/registration/confirmation/default.json +0 -12
- package/source/schemas/PATCH/registration/default.json +0 -10
- package/source/schemas/PATCH/registration/organizer.json +0 -43
- package/source/schemas/PATCH/theme/admin.json +0 -19
- package/source/schemas/PATCH/user/admin.json +0 -30
- package/source/schemas/PATCH/user/cities/admin.json +0 -17
- package/source/schemas/PATCH/user/password/admin.json +0 -12
- package/source/schemas/PATCH/user/role/admin.json +0 -13
- package/source/schemas/PATCH/venue/admin.json +0 -44
- package/source/schemas/PATCH/venue/organizer.json +0 -44
- package/source/schemas/POST/checkin/default.json +0 -16
- package/source/schemas/POST/city/admin.json +0 -696
- package/source/schemas/POST/game/admin.json +0 -27
- package/source/schemas/POST/game/organizer.json +0 -27
- package/source/schemas/POST/game/registrations/export/admin.json +0 -17
- package/source/schemas/POST/game/registrations/export/organizer.json +0 -17
- package/source/schemas/POST/registration/default.json +0 -125
- package/source/schemas/POST/registration/mailing/admin.json +0 -16
- package/source/schemas/POST/registration/mailing/organizer.json +0 -16
- package/source/schemas/POST/registrations/export/admin.json +0 -17
- package/source/schemas/POST/registrations/export/organizer.json +0 -17
- package/source/schemas/POST/theme/admin.json +0 -24
- package/source/schemas/POST/user/admin.json +0 -12
- package/source/schemas/POST/user/cities/admin.json +0 -17
- package/source/schemas/POST/user/password/admin.json +0 -12
- package/source/schemas/POST/user/role/admin.json +0 -13
- package/source/schemas/POST/venue/admin.json +0 -38
- package/source/schemas/POST/venue/organizer.json +0 -38
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"type": "object",
|
|
3
|
-
"properties": {
|
|
4
|
-
"people_count": {
|
|
5
|
-
"type": "integer"
|
|
6
|
-
},
|
|
7
|
-
"human_name": {
|
|
8
|
-
"type": "string"
|
|
9
|
-
},
|
|
10
|
-
"is_alone": {
|
|
11
|
-
"type": "boolean"
|
|
12
|
-
},
|
|
13
|
-
"is_canceled": {
|
|
14
|
-
"type": "boolean"
|
|
15
|
-
},
|
|
16
|
-
"is_confirm": {
|
|
17
|
-
"type": "boolean"
|
|
18
|
-
},
|
|
19
|
-
"is_reserve": {
|
|
20
|
-
"type": "boolean"
|
|
21
|
-
},
|
|
22
|
-
"team_name": {
|
|
23
|
-
"type": "string"
|
|
24
|
-
},
|
|
25
|
-
"status": {
|
|
26
|
-
"type": "string",
|
|
27
|
-
"enum": [
|
|
28
|
-
"Created",
|
|
29
|
-
"Confirmed",
|
|
30
|
-
"Cancelled"
|
|
31
|
-
]
|
|
32
|
-
},
|
|
33
|
-
"lineup": {
|
|
34
|
-
"type": "string",
|
|
35
|
-
"enum": [
|
|
36
|
-
"Main",
|
|
37
|
-
"Reserve"
|
|
38
|
-
]
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"required": [],
|
|
42
|
-
"additionalProperties": false
|
|
43
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"type": "object",
|
|
3
|
-
"properties": {
|
|
4
|
-
"name": {
|
|
5
|
-
"type": "string"
|
|
6
|
-
},
|
|
7
|
-
"short_description": {
|
|
8
|
-
"type": "string"
|
|
9
|
-
},
|
|
10
|
-
"description": {
|
|
11
|
-
"type": "string"
|
|
12
|
-
},
|
|
13
|
-
"alias": {
|
|
14
|
-
"type": "string"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"required": [],
|
|
18
|
-
"additionalProperties": false
|
|
19
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"type": "object",
|
|
3
|
-
"properties": {
|
|
4
|
-
"email": {
|
|
5
|
-
"type": "string"
|
|
6
|
-
},
|
|
7
|
-
"phone": {
|
|
8
|
-
"type": [
|
|
9
|
-
"string",
|
|
10
|
-
"null"
|
|
11
|
-
]
|
|
12
|
-
},
|
|
13
|
-
"first_name": {
|
|
14
|
-
"type": [
|
|
15
|
-
"string",
|
|
16
|
-
"null"
|
|
17
|
-
]
|
|
18
|
-
},
|
|
19
|
-
"last_name": {
|
|
20
|
-
"type": [
|
|
21
|
-
"string",
|
|
22
|
-
"null"
|
|
23
|
-
]
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"required": [
|
|
27
|
-
"email"
|
|
28
|
-
],
|
|
29
|
-
"additionalProperties": false
|
|
30
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"type": "object",
|
|
3
|
-
"properties": {
|
|
4
|
-
"name": {
|
|
5
|
-
"type": "string"
|
|
6
|
-
},
|
|
7
|
-
"street": {
|
|
8
|
-
"type": "string"
|
|
9
|
-
},
|
|
10
|
-
"house_number": {
|
|
11
|
-
"type": "string"
|
|
12
|
-
},
|
|
13
|
-
"people_capacity": {
|
|
14
|
-
"type": "integer"
|
|
15
|
-
},
|
|
16
|
-
"team_capacity": {
|
|
17
|
-
"type": "integer"
|
|
18
|
-
},
|
|
19
|
-
"is_adult": {
|
|
20
|
-
"type": "boolean"
|
|
21
|
-
},
|
|
22
|
-
"game_time": {
|
|
23
|
-
"type": "string",
|
|
24
|
-
"format": "iso-time"
|
|
25
|
-
},
|
|
26
|
-
"location_info": {
|
|
27
|
-
"type": [
|
|
28
|
-
"string",
|
|
29
|
-
"null"
|
|
30
|
-
]
|
|
31
|
-
},
|
|
32
|
-
"status": {
|
|
33
|
-
"type": "string"
|
|
34
|
-
},
|
|
35
|
-
"href": {
|
|
36
|
-
"type": [
|
|
37
|
-
"string",
|
|
38
|
-
"null"
|
|
39
|
-
]
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"required": [],
|
|
43
|
-
"additionalProperties": false
|
|
44
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"type": "object",
|
|
3
|
-
"properties": {
|
|
4
|
-
"name": {
|
|
5
|
-
"type": "string"
|
|
6
|
-
},
|
|
7
|
-
"street": {
|
|
8
|
-
"type": "string"
|
|
9
|
-
},
|
|
10
|
-
"house_number": {
|
|
11
|
-
"type": "string"
|
|
12
|
-
},
|
|
13
|
-
"people_capacity": {
|
|
14
|
-
"type": "integer"
|
|
15
|
-
},
|
|
16
|
-
"team_capacity": {
|
|
17
|
-
"type": "integer"
|
|
18
|
-
},
|
|
19
|
-
"is_adult": {
|
|
20
|
-
"type": "boolean"
|
|
21
|
-
},
|
|
22
|
-
"game_time": {
|
|
23
|
-
"type": "string",
|
|
24
|
-
"format": "iso-time"
|
|
25
|
-
},
|
|
26
|
-
"location_info": {
|
|
27
|
-
"type": [
|
|
28
|
-
"string",
|
|
29
|
-
"null"
|
|
30
|
-
]
|
|
31
|
-
},
|
|
32
|
-
"status": {
|
|
33
|
-
"type": "string"
|
|
34
|
-
},
|
|
35
|
-
"href": {
|
|
36
|
-
"type": [
|
|
37
|
-
"string",
|
|
38
|
-
"null"
|
|
39
|
-
]
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"required": [],
|
|
43
|
-
"additionalProperties": false
|
|
44
|
-
}
|