@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 +6 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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.");
|