@goweekdays/core 2.15.1 → 2.15.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @goweekdays/core
2
2
 
3
+ ## 2.15.2
4
+
5
+ ### Patch Changes
6
+
7
+ - ce59a03: Add chart of account search index
8
+
3
9
  ## 2.15.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -18356,7 +18356,8 @@ function useChartOfAccountRepo() {
18356
18356
  { key: { code: 1 } },
18357
18357
  { key: { path: 1 } },
18358
18358
  { key: { name: 1, org: 1 }, unique: true, name: "unique_name_per_org" },
18359
- { key: { code: 1, org: 1 }, unique: true, name: "unique_code_per_org" }
18359
+ { key: { code: 1, org: 1 }, unique: true, name: "unique_code_per_org" },
18360
+ { key: { name: "text", code: "text" }, name: "text_search" }
18360
18361
  ]);
18361
18362
  } catch (error) {
18362
18363
  throw new Error("Failed to create index on chart of account.");