@unchainedshop/core-warehousing 4.8.10 → 4.8.11

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, isDocumentDBCompatModeEnabled } from '@unchainedshop/mongodb';
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: 1,
39
- },
40
- },
41
- {
42
- index: {
43
- userId: 1,
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
- index: {
53
- orderPositionId: 1,
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
- index: {
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
  };
@@ -1,5 +1,5 @@
1
1
  import { emit, registerEvents } from '@unchainedshop/events';
2
- import { generateDbFilterById, generateDbObjectId, escapeRegexString, assertDocumentDBCompatMode, } from '@unchainedshop/mongodb';
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 pMemoize from 'p-memoize';
@@ -29,7 +29,6 @@ export const buildFindSelector = ({ includeDeleted = false, queryString, warehou
29
29
  export const buildTokenFindSelector = ({ queryString, walletAddressExists, ...rest }) => {
30
30
  const selector = { ...(rest || {}) };
31
31
  if (queryString) {
32
- assertDocumentDBCompatMode();
33
32
  selector.$text = { $search: queryString };
34
33
  }
35
34
  if (walletAddressExists !== undefined) {
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": "4.8.10",
4
+ "version": "4.8.11",
5
5
  "main": "lib/warehousing-index.js",
6
6
  "types": "lib/warehousing-index.d.ts",
7
7
  "type": "module",