@nina-protocol/nina-db 0.0.64 → 0.0.65
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/models/index.js +2 -0
- package/package.json +1 -1
- package/src/models/index.js +2 -0
package/dist/models/index.js
CHANGED
|
@@ -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
package/src/models/index.js
CHANGED
|
@@ -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
|
};
|