@unchainedshop/core-warehousing 5.0.0-alpha.1 → 5.0.0-alpha.3
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { buildDbIndexes
|
|
1
|
+
import { buildDbIndexes } from '@unchainedshop/mongodb';
|
|
2
2
|
export const TokenStatus = {
|
|
3
3
|
CENTRALIZED: 'CENTRALIZED',
|
|
4
4
|
EXPORTING: 'EXPORTING',
|
|
@@ -6,53 +6,36 @@ export const TokenStatus = {
|
|
|
6
6
|
};
|
|
7
7
|
export const TokenSurrogateCollection = async (db) => {
|
|
8
8
|
const TokenSurrogates = db.collection('token_surrogates');
|
|
9
|
-
if (!isDocumentDBCompatModeEnabled()) {
|
|
10
|
-
await buildDbIndexes(TokenSurrogates, [
|
|
11
|
-
{
|
|
12
|
-
index: {
|
|
13
|
-
tokenSerialNumber: 'text',
|
|
14
|
-
userId: 'text',
|
|
15
|
-
productId: 'text',
|
|
16
|
-
_id: 'text',
|
|
17
|
-
walletAddress: 'text',
|
|
18
|
-
contractAddress: 'text',
|
|
19
|
-
},
|
|
20
|
-
options: {
|
|
21
|
-
weights: {
|
|
22
|
-
_id: 9,
|
|
23
|
-
tokenSerialNumber: 8,
|
|
24
|
-
userId: 3,
|
|
25
|
-
productId: 6,
|
|
26
|
-
contractAddress: 5,
|
|
27
|
-
walletAddress: 4,
|
|
28
|
-
status: 1,
|
|
29
|
-
},
|
|
30
|
-
name: 'token_fulltext_search',
|
|
31
|
-
},
|
|
32
|
-
},
|
|
33
|
-
], { rebuild: true });
|
|
34
|
-
}
|
|
35
9
|
await buildDbIndexes(TokenSurrogates, [
|
|
36
10
|
{
|
|
37
11
|
index: {
|
|
38
|
-
tokenSerialNumber:
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
},
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
index: {
|
|
48
|
-
productId: 1,
|
|
12
|
+
tokenSerialNumber: 'text',
|
|
13
|
+
userId: 'text',
|
|
14
|
+
productId: 'text',
|
|
15
|
+
_id: 'text',
|
|
16
|
+
walletAddress: 'text',
|
|
17
|
+
contractAddress: 'text',
|
|
49
18
|
},
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
19
|
+
options: {
|
|
20
|
+
weights: {
|
|
21
|
+
_id: 9,
|
|
22
|
+
tokenSerialNumber: 8,
|
|
23
|
+
userId: 3,
|
|
24
|
+
productId: 6,
|
|
25
|
+
contractAddress: 5,
|
|
26
|
+
walletAddress: 4,
|
|
27
|
+
status: 1,
|
|
28
|
+
},
|
|
29
|
+
name: 'token_fulltext_search',
|
|
54
30
|
},
|
|
55
31
|
},
|
|
32
|
+
], { rebuild: true });
|
|
33
|
+
await buildDbIndexes(TokenSurrogates, [
|
|
34
|
+
{ index: { tokenSerialNumber: 1 } },
|
|
35
|
+
{ index: { userId: 1 } },
|
|
36
|
+
{ index: { orderPositionId: 1 } },
|
|
37
|
+
{ index: { walletAddress: 1 }, options: { sparse: true } },
|
|
38
|
+
{ index: { productId: 1, 'meta.cancelled': 1 }, options: { sparse: true } },
|
|
56
39
|
]);
|
|
57
40
|
return TokenSurrogates;
|
|
58
41
|
};
|
|
@@ -6,21 +6,8 @@ export const WarehousingProviderType = {
|
|
|
6
6
|
export const WarehousingProvidersCollection = async (db) => {
|
|
7
7
|
const WarehousingProviders = db.collection('warehousing-providers');
|
|
8
8
|
await buildDbIndexes(WarehousingProviders, [
|
|
9
|
-
{
|
|
10
|
-
|
|
11
|
-
type: 1,
|
|
12
|
-
},
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
index: {
|
|
16
|
-
created: 1,
|
|
17
|
-
},
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
index: {
|
|
21
|
-
deleted: 1,
|
|
22
|
-
},
|
|
23
|
-
},
|
|
9
|
+
{ index: { deleted: 1, type: 1 } },
|
|
10
|
+
{ index: { deleted: 1, created: 1 } },
|
|
24
11
|
]);
|
|
25
12
|
return WarehousingProviders;
|
|
26
13
|
};
|
|
@@ -31,9 +31,7 @@ export declare const configureWarehousingModule: ({ db }: ModuleInput<Record<str
|
|
|
31
31
|
walletAddresses: string[];
|
|
32
32
|
}, options?: mongodb.FindOptions) => Promise<TokenSurrogate[]>;
|
|
33
33
|
findProviders: (query?: WarehousingProviderQuery, options?: mongodb.FindOptions) => Promise<WarehousingProvider[]>;
|
|
34
|
-
allProviders: (
|
|
35
|
-
clear: () => void;
|
|
36
|
-
};
|
|
34
|
+
allProviders: import("@unchainedshop/utils/lib/memoize-with-ttl.js").MemoizedWithTTL<[], mongodb.WithId<WarehousingProvider>[]>;
|
|
37
35
|
providerExists: ({ warehousingProviderId, }: {
|
|
38
36
|
warehousingProviderId: string;
|
|
39
37
|
}) => Promise<boolean>;
|
|
@@ -45,7 +43,7 @@ export declare const configureWarehousingModule: ({ db }: ModuleInput<Record<str
|
|
|
45
43
|
walletAddress: string;
|
|
46
44
|
}) => Promise<mongodb.WithId<TokenSurrogate> | null>;
|
|
47
45
|
invalidateToken: (tokenId: string) => Promise<mongodb.WithId<TokenSurrogate> | null>;
|
|
48
|
-
|
|
46
|
+
buildAccessKeyFromToken: (token: TokenSurrogate) => Promise<string>;
|
|
49
47
|
create: (doc: Omit<WarehousingProvider, "_id" | "created"> & Pick<Partial<WarehousingProvider>, "_id">) => Promise<WarehousingProvider>;
|
|
50
48
|
update: (warehousingProviderId: string, doc: Partial<WarehousingProvider>) => Promise<mongodb.WithId<WarehousingProvider> | null>;
|
|
51
49
|
delete: (providerId: string) => Promise<mongodb.WithId<WarehousingProvider> | null>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { emit, registerEvents } from '@unchainedshop/events';
|
|
2
|
-
import { generateDbFilterById, generateDbObjectId, escapeRegexString,
|
|
2
|
+
import { generateDbFilterById, generateDbObjectId, escapeRegexString, } from '@unchainedshop/mongodb';
|
|
3
3
|
import { WarehousingProvidersCollection, } from "../db/WarehousingProvidersCollection.js";
|
|
4
4
|
import { TokenSurrogateCollection } from "../db/TokenSurrogateCollection.js";
|
|
5
5
|
import { memoizeWithTTL } from '@unchainedshop/utils';
|
|
@@ -10,7 +10,6 @@ const WAREHOUSING_PROVIDER_EVENTS = [
|
|
|
10
10
|
'TOKEN_OWNERSHIP_CHANGED',
|
|
11
11
|
'TOKEN_INVALIDATED',
|
|
12
12
|
];
|
|
13
|
-
const allProvidersTtlMs = process.env.NODE_ENV === 'production' ? 60000 : 1;
|
|
14
13
|
export const buildFindSelector = ({ includeDeleted = false, queryString, warehousingProviderIds, type, } = {}) => {
|
|
15
14
|
const selector = includeDeleted ? {} : { deleted: null };
|
|
16
15
|
if (warehousingProviderIds) {
|
|
@@ -28,7 +27,6 @@ export const buildFindSelector = ({ includeDeleted = false, queryString, warehou
|
|
|
28
27
|
export const buildTokenFindSelector = ({ queryString, walletAddressExists, ...rest }) => {
|
|
29
28
|
const selector = { ...(rest || {}) };
|
|
30
29
|
if (queryString) {
|
|
31
|
-
assertDocumentDBCompatMode();
|
|
32
30
|
selector.$text = { $search: queryString };
|
|
33
31
|
}
|
|
34
32
|
if (walletAddressExists !== undefined) {
|
|
@@ -39,10 +37,8 @@ export const buildTokenFindSelector = ({ queryString, walletAddressExists, ...re
|
|
|
39
37
|
export const configureWarehousingModule = async ({ db }) => {
|
|
40
38
|
registerEvents(WAREHOUSING_PROVIDER_EVENTS);
|
|
41
39
|
const WarehousingProviders = await WarehousingProvidersCollection(db);
|
|
40
|
+
const allProviders = memoizeWithTTL(async () => WarehousingProviders.find({ deleted: null }, { sort: { created: 1 } }).toArray(), { ttl: process.env.NODE_ENV === 'production' ? 60000 : 1 });
|
|
42
41
|
const TokenSurrogates = await TokenSurrogateCollection(db);
|
|
43
|
-
const allProviders = memoizeWithTTL(async function () {
|
|
44
|
-
return WarehousingProviders.find({ deleted: null }, { sort: { created: 1 } }).toArray();
|
|
45
|
-
}, allProvidersTtlMs);
|
|
46
42
|
return {
|
|
47
43
|
count: async (query = {}) => {
|
|
48
44
|
const providerCount = await WarehousingProviders.countDocuments(buildFindSelector(query));
|
|
@@ -129,10 +125,7 @@ export const configureWarehousingModule = async ({ db }) => {
|
|
|
129
125
|
await emit('TOKEN_INVALIDATED', { token });
|
|
130
126
|
return token;
|
|
131
127
|
},
|
|
132
|
-
|
|
133
|
-
const token = await TokenSurrogates.findOne(generateDbFilterById(tokenId));
|
|
134
|
-
if (!token)
|
|
135
|
-
return null;
|
|
128
|
+
buildAccessKeyFromToken: async (token) => {
|
|
136
129
|
const payload = [
|
|
137
130
|
token._id,
|
|
138
131
|
token.walletAddress || token.userId,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unchainedshop/core-warehousing",
|
|
3
3
|
"description": "Inventory and stock management module for the Unchained Engine",
|
|
4
|
-
"version": "5.0.0-alpha.
|
|
4
|
+
"version": "5.0.0-alpha.3",
|
|
5
5
|
"main": "lib/warehousing-index.js",
|
|
6
6
|
"types": "lib/warehousing-index.d.ts",
|
|
7
7
|
"type": "module",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"homepage": "https://github.com/unchainedshop/unchained#readme",
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@unchainedshop/events": "^5.0.0-alpha.1",
|
|
39
|
-
"@unchainedshop/
|
|
39
|
+
"@unchainedshop/mongodb": "^5.0.0-alpha.1",
|
|
40
40
|
"@unchainedshop/utils": "^5.0.0-alpha.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@types/node": "^
|
|
43
|
+
"@types/node": "^26.2.0",
|
|
44
44
|
"typescript": "^5.8.3"
|
|
45
45
|
}
|
|
46
46
|
}
|