@nina-protocol/nina-db 0.0.65 → 0.0.66
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/dist/index.js +1 -0
- package/package.json +1 -1
- package/src/index.js +1 -0
package/dist/index.js
CHANGED
|
@@ -24,6 +24,7 @@ export const Hub = Models.Hub;
|
|
|
24
24
|
export const Post = Models.Post;
|
|
25
25
|
export const Release = Models.Release;
|
|
26
26
|
export const Subscription = Models.Subscription;
|
|
27
|
+
export const Tag = Models.Tag;
|
|
27
28
|
export const Transaction = Models.Transaction;
|
|
28
29
|
export const Verification = Models.Verification;
|
|
29
30
|
export const config = knexConfig;
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -31,6 +31,7 @@ export const Hub = Models.Hub
|
|
|
31
31
|
export const Post = Models.Post
|
|
32
32
|
export const Release = Models.Release
|
|
33
33
|
export const Subscription = Models.Subscription
|
|
34
|
+
export const Tag = Models.Tag
|
|
34
35
|
export const Transaction = Models.Transaction
|
|
35
36
|
export const Verification = Models.Verification
|
|
36
37
|
export const config = knexConfig
|