@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 +9 -0
- package/dist/index.cjs +11 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +11 -4
- package/dist/index.mjs.map +1 -1
- package/dist/{openapi-CQCoLuzh.mjs → openapi-CTARkkkn.mjs} +2 -2
- package/dist/openapi-CTARkkkn.mjs.map +1 -0
- package/dist/{openapi-CBU4TEi-.cjs → openapi-ClA8lIhO.cjs} +2 -2
- package/dist/openapi-ClA8lIhO.cjs.map +1 -0
- package/dist/openapi.cjs +1 -1
- package/dist/openapi.mjs +1 -1
- package/package.json +2 -2
- package/src/generators/EndpointGenerator.ts +1 -1
- package/src/init/generators/package.ts +2 -0
- package/src/init/templates/index.ts +5 -0
- package/src/init/versions.ts +1 -1
- package/dist/openapi-CBU4TEi-.cjs.map +0 -1
- package/dist/openapi-CQCoLuzh.mjs.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { getAppNameFromCwd, loadAppConfig, loadConfig, loadWorkspaceAppInfo, loa
|
|
|
5
5
|
import { getCredentialsPath, getDokployCredentials, getDokployRegistryId, getDokployToken, removeDokployCredentials, storeDokployCredentials, storeDokployRegistryId } from "./credentials-s1kLcIzK.mjs";
|
|
6
6
|
import { createStageSecrets, generateConnectionUrls, generateDbPassword, generateDbUrl, generateFullstackCustomSecrets, generateLocalStackCredentials, generatePgBossUrl, generateSecurePassword, generateServiceCredentials, rotateServicePassword, writeDockerEnvFromSecrets } from "./fullstack-secrets-P84v8zWn.mjs";
|
|
7
7
|
import { getKeyPath, maskPassword, readStageSecrets, secretsExist, setCustomSecret, toEmbeddableSecrets, writeStageSecrets } from "./storage-dbb9RyBl.mjs";
|
|
8
|
-
import { ConstructGenerator, EndpointGenerator, OPENAPI_OUTPUT_PATH, generateOpenApi, isPartitionedRoutes, normalizeRoutes, openapiCommand, resolveOpenApiConfig } from "./openapi-
|
|
8
|
+
import { ConstructGenerator, EndpointGenerator, OPENAPI_OUTPUT_PATH, generateOpenApi, isPartitionedRoutes, normalizeRoutes, openapiCommand, resolveOpenApiConfig } from "./openapi-CTARkkkn.mjs";
|
|
9
9
|
import { DokployApi } from "./dokploy-api-BIT0683o.mjs";
|
|
10
10
|
import { encryptSecrets } from "./encryption-DSkIlEZ6.mjs";
|
|
11
11
|
import { CachedStateProvider } from "./CachedStateProvider-C8A-cCm5.mjs";
|
|
@@ -35,7 +35,7 @@ import prompts from "prompts";
|
|
|
35
35
|
|
|
36
36
|
//#region package.json
|
|
37
37
|
var name = "@geekmidas/cli";
|
|
38
|
-
var version = "1.10.
|
|
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.
|
|
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: {
|
|
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)
|