abmp-npm 1.10.7 → 1.10.9

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/backend/index.js CHANGED
@@ -14,4 +14,6 @@ module.exports = {
14
14
  ...require('./data-hooks'),
15
15
  ...require('./http-functions'),
16
16
  ...require('./dev-only-methods'),
17
+ ...require('./tasks/migration-methods'),
18
+ ...require('./tasks/url-migration-methods'),
17
19
  };
@@ -3,4 +3,5 @@ module.exports = {
3
3
  ...require('./consts'),
4
4
  ...require('./tasks-process-methods'),
5
5
  ...require('./migration-methods'),
6
+ ...require('./url-migration-methods'),
6
7
  };
@@ -83,9 +83,10 @@ async function scheduleMigrateExistingUrls() {
83
83
  */
84
84
  async function migrateUrlsChunk(data) {
85
85
  const { urlData, chunkIndex, totalChunks } = data;
86
- console.log(
87
- `Processing migration chunk ${chunkIndex + 1}/${totalChunks} (${urlData.length} members)`
88
- );
86
+ console.log('migrateUrlsChunk data', data);
87
+ // console.log(
88
+ // `Processing migration chunk ${chunkIndex + 1}/${totalChunks} (${urlData.length} members)`
89
+ // );
89
90
 
90
91
  const result = {
91
92
  successful: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abmp-npm",
3
- "version": "1.10.7",
3
+ "version": "1.10.9",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "check-cycles": "madge --circular .",