@shakerquiz/utilities 0.3.41 → 0.3.43
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,10 +1,13 @@
|
|
|
1
1
|
export namespace Domains {
|
|
2
|
+
let Asset: "Asset";
|
|
2
3
|
let User: "User";
|
|
3
4
|
let Role: "Role";
|
|
4
5
|
let City: "City";
|
|
5
6
|
let Venue: "Venue";
|
|
6
7
|
let Theme: "Theme";
|
|
8
|
+
let ThemeAsset: "ThemeAsset";
|
|
7
9
|
let Game: "Game";
|
|
10
|
+
let GameAsset: "GameAsset";
|
|
8
11
|
let Registration: "Registration";
|
|
9
12
|
let Mailing: "Mailing";
|
|
10
13
|
}
|
|
@@ -4,12 +4,15 @@ import { Methods } from './methods.js'
|
|
|
4
4
|
import { Requirements } from './requirements.js'
|
|
5
5
|
|
|
6
6
|
export var Domains = /** @type {const} */ ({
|
|
7
|
+
Asset: 'Asset',
|
|
7
8
|
User: 'User',
|
|
8
9
|
Role: 'Role',
|
|
9
10
|
City: 'City',
|
|
10
11
|
Venue: 'Venue',
|
|
11
12
|
Theme: 'Theme',
|
|
13
|
+
ThemeAsset: 'ThemeAsset',
|
|
12
14
|
Game: 'Game',
|
|
15
|
+
GameAsset: 'GameAsset',
|
|
13
16
|
Registration: 'Registration',
|
|
14
17
|
Mailing: 'Mailing',
|
|
15
18
|
})
|
|
@@ -37,7 +40,7 @@ export var DomainKindPathnames = {
|
|
|
37
40
|
[Kinds.Set]: '/users',
|
|
38
41
|
},
|
|
39
42
|
|
|
40
|
-
[Domains.
|
|
43
|
+
[Domains.Role]: {
|
|
41
44
|
[Kinds.Unit]: '/role/:role?',
|
|
42
45
|
[Kinds.Set]: '/roles',
|
|
43
46
|
},
|