@memberjunction/cli 2.56.0 → 2.57.0

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.
@@ -0,0 +1,7 @@
1
+ import { Hook } from '@oclif/core';
2
+ /**
3
+ * Init hook runs once when the CLI starts up.
4
+ * Currently unused but required by oclif configuration.
5
+ */
6
+ declare const hook: Hook<'init'>;
7
+ export default hook;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ /**
4
+ * Init hook runs once when the CLI starts up.
5
+ * Currently unused but required by oclif configuration.
6
+ */
7
+ const hook = async function () {
8
+ // No initialization needed at this time
9
+ };
10
+ exports.default = hook;
@@ -577,5 +577,5 @@
577
577
  ]
578
578
  }
579
579
  },
580
- "version": "2.56.0"
580
+ "version": "2.57.0"
581
581
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/cli",
3
- "version": "2.56.0",
3
+ "version": "2.57.0",
4
4
  "description": "MemberJunction command line tools",
5
5
  "keywords": [
6
6
  "oclif"
@@ -51,9 +51,9 @@
51
51
  },
52
52
  "dependencies": {
53
53
  "@inquirer/prompts": "^5.0.1",
54
- "@memberjunction/codegen-lib": "2.56.0",
55
- "@memberjunction/metadata-sync": "2.56.0",
56
- "@memberjunction/sqlserver-dataprovider": "2.56.0",
54
+ "@memberjunction/codegen-lib": "2.57.0",
55
+ "@memberjunction/metadata-sync": "2.57.0",
56
+ "@memberjunction/sqlserver-dataprovider": "2.57.0",
57
57
  "@oclif/core": "^3",
58
58
  "@oclif/plugin-help": "^6",
59
59
  "@oclif/plugin-version": "^2.0.17",