@nina-protocol/nina-db 0.0.64 → 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 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;
@@ -4,6 +4,7 @@ import Hub from './Hub.js';
4
4
  import Post from './Post.js';
5
5
  import Release from './Release.js';
6
6
  import Subscription from './Subscription.js';
7
+ import Tag from './Tag.js';
7
8
  import Transaction from './Transaction.js';
8
9
  import Verification from './Verification.js';
9
10
  const models = {
@@ -13,6 +14,7 @@ const models = {
13
14
  Post,
14
15
  Release,
15
16
  Subscription,
17
+ Tag,
16
18
  Transaction,
17
19
  Verification,
18
20
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nina-protocol/nina-db",
3
- "version": "0.0.64",
3
+ "version": "0.0.66",
4
4
  "description": "",
5
5
  "source": "src/index.js",
6
6
  "main": "dist/index.js",
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
@@ -4,6 +4,7 @@ import Hub from './Hub.js';
4
4
  import Post from './Post.js';
5
5
  import Release from './Release.js';
6
6
  import Subscription from './Subscription.js';
7
+ import Tag from './Tag.js';
7
8
  import Transaction from './Transaction.js';
8
9
  import Verification from './Verification.js';
9
10
 
@@ -14,6 +15,7 @@ const models = {
14
15
  Post,
15
16
  Release,
16
17
  Subscription,
18
+ Tag,
17
19
  Transaction,
18
20
  Verification,
19
21
  };