@geekmidas/cli 1.10.29 → 1.10.30

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,14 @@
1
1
  # @geekmidas/cli
2
2
 
3
+ ## 1.10.30
4
+
5
+ ### Patch Changes
6
+
7
+ - ✨ [`79e17a8`](https://github.com/geekmidas/toolbox/commit/79e17a84e630f102023005994d9d45b37f7d9d8f) Thanks [@geekmidas](https://github.com/geekmidas)! - Add msw support for construct testing for ui
8
+
9
+ - Updated dependencies [[`79e17a8`](https://github.com/geekmidas/toolbox/commit/79e17a84e630f102023005994d9d45b37f7d9d8f)]:
10
+ - @geekmidas/constructs@3.0.7
11
+
3
12
  ## 1.10.29
4
13
 
5
14
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -5,7 +5,7 @@ const require_config = require('./config-D3ORuiUs.cjs');
5
5
  const require_credentials = require('./credentials-C8DWtnMY.cjs');
6
6
  const require_fullstack_secrets = require('./fullstack-secrets-Bchl2MDd.cjs');
7
7
  const require_storage = require('./storage-B1wvztiJ.cjs');
8
- const require_openapi = require('./openapi-CBU4TEi-.cjs');
8
+ const require_openapi = require('./openapi-ClA8lIhO.cjs');
9
9
  const require_dokploy_api = require('./dokploy-api-Dvyq-LsM.cjs');
10
10
  const require_encryption = require('./encryption-DgKS-Dv9.cjs');
11
11
  const require_CachedStateProvider = require('./CachedStateProvider-CxsXOKkg.cjs');
@@ -35,7 +35,7 @@ const prompts = require_chunk.__toESM(require("prompts"));
35
35
 
36
36
  //#region package.json
37
37
  var name = "@geekmidas/cli";
38
- var version = "1.10.28";
38
+ var version = "1.10.29";
39
39
  var description = "CLI tools for building Lambda handlers, server applications, and generating OpenAPI specs";
40
40
  var private$1 = false;
41
41
  var type = "module";
@@ -6806,7 +6806,7 @@ const GEEKMIDAS_VERSIONS = {
6806
6806
  "@geekmidas/cache": "~1.1.0",
6807
6807
  "@geekmidas/client": "~4.0.4",
6808
6808
  "@geekmidas/cloud": "~1.0.0",
6809
- "@geekmidas/constructs": "~3.0.5",
6809
+ "@geekmidas/constructs": "~3.0.6",
6810
6810
  "@geekmidas/db": "~1.0.1",
6811
6811
  "@geekmidas/emailkit": "~1.0.0",
6812
6812
  "@geekmidas/envkit": "~1.0.4",
@@ -8933,6 +8933,10 @@ export const telescope = new Telescope({
8933
8933
  */
8934
8934
  const OPENAPI_OUTPUT_PATH$1 = "./.gkm/openapi.ts";
8935
8935
  /**
8936
+ * Endpoints output path (generated by gkm dev/build)
8937
+ */
8938
+ const ENDPOINTS_OUTPUT_PATH = "./.gkm/server/endpoints.ts";
8939
+ /**
8936
8940
  * All available templates
8937
8941
  */
8938
8942
  const templates = {
@@ -9132,7 +9136,10 @@ function generatePackageJson(options, template) {
9132
9136
  version: "0.0.1",
9133
9137
  private: true,
9134
9138
  type: "module",
9135
- exports: { "./client": OPENAPI_OUTPUT_PATH$1 },
9139
+ exports: {
9140
+ "./client": OPENAPI_OUTPUT_PATH$1,
9141
+ "./endpoints": ENDPOINTS_OUTPUT_PATH
9142
+ },
9136
9143
  scripts: scripts$1,
9137
9144
  dependencies: sortObject(dependencies$1),
9138
9145
  devDependencies: sortObject(devDependencies$1)