@jttc/projen-project-types 1.0.0-beta.0 → 1.0.0-beta.10

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.
Files changed (113) hide show
  1. package/.cz-config.js +83 -43
  2. package/.czrc +1 -1
  3. package/.jsii +4637 -14
  4. package/AGENTS.md +132 -0
  5. package/API.md +31146 -7
  6. package/README.md +197 -29
  7. package/docs/components/cdk8s.md +724 -0
  8. package/docs/components/commitzent.md +261 -0
  9. package/docs/components/k3d.md +456 -0
  10. package/docs/default-configurations.md +267 -0
  11. package/docs/index.md +86 -1
  12. package/docs/project-types/cdk-app.md +481 -0
  13. package/docs/project-types/cdk-library.md +321 -0
  14. package/docs/project-types/cdk8s-app.md +353 -0
  15. package/docs/project-types/cdk8s-library.md +442 -0
  16. package/docs/project-types/nx-monorepo.md +382 -0
  17. package/lib/cdk/cdk-app-project.d.ts +12 -0
  18. package/lib/cdk/cdk-app-project.js +28 -0
  19. package/lib/cdk/cdk-library-project.d.ts +12 -0
  20. package/lib/cdk/cdk-library-project.js +28 -0
  21. package/lib/cdk/cdk8s-app-project.d.ts +14 -0
  22. package/lib/cdk/cdk8s-app-project.js +54 -0
  23. package/lib/cdk/cdk8s-library-project.d.ts +14 -0
  24. package/lib/cdk/cdk8s-library-project.js +50 -0
  25. package/lib/cdk/index.d.ts +5 -0
  26. package/lib/cdk/index.js +22 -0
  27. package/lib/cdk/interfaces/cdk-app-options.d.ts +7 -0
  28. package/lib/cdk/interfaces/cdk-app-options.js +3 -0
  29. package/lib/cdk/interfaces/cdk-library-options.d.ts +7 -0
  30. package/lib/cdk/interfaces/cdk-library-options.js +3 -0
  31. package/lib/cdk/interfaces/cdk8s-app-options.d.ts +18 -0
  32. package/lib/cdk/interfaces/cdk8s-app-options.js +3 -0
  33. package/lib/cdk/interfaces/cdk8s-library-options.d.ts +8 -0
  34. package/lib/cdk/interfaces/cdk8s-library-options.js +3 -0
  35. package/lib/cdk/interfaces/index.d.ts +5 -0
  36. package/lib/cdk/interfaces/index.js +22 -0
  37. package/lib/cdk/interfaces/jsii-options.d.ts +7 -0
  38. package/lib/cdk/interfaces/jsii-options.js +3 -0
  39. package/lib/cdk/interfaces/project-global-options.d.ts +15 -0
  40. package/lib/cdk/interfaces/project-global-options.js +3 -0
  41. package/lib/cdk/jsii-project.d.ts +12 -0
  42. package/lib/cdk/jsii-project.js +24 -0
  43. package/lib/common/common-options.d.ts +40 -0
  44. package/lib/common/common-options.js +110 -0
  45. package/lib/components/agents/agents.d.ts +21 -0
  46. package/lib/components/agents/agents.js +476 -0
  47. package/lib/components/agents/index.d.ts +1 -0
  48. package/lib/components/agents/index.js +18 -0
  49. package/lib/components/cdk8s/cdk8s.d.ts +11 -0
  50. package/lib/components/cdk8s/cdk8s.js +124 -0
  51. package/lib/components/cdk8s/index.d.ts +2 -0
  52. package/lib/components/cdk8s/index.js +19 -0
  53. package/lib/components/cdk8s/interfaces/Cdk8s.d.ts +34 -0
  54. package/lib/components/cdk8s/interfaces/Cdk8s.js +12 -0
  55. package/lib/components/cdk8s/main-library.ts.template +35 -0
  56. package/lib/components/cdk8s/main.test.ts.template +3 -0
  57. package/lib/components/cdk8s/main.ts.template +38 -0
  58. package/lib/components/commitzent/commitzent.d.ts +8 -0
  59. package/lib/components/commitzent/commitzent.js +100 -0
  60. package/lib/components/commitzent/index.d.ts +2 -0
  61. package/lib/components/commitzent/index.js +19 -0
  62. package/lib/components/commitzent/interfaces/Icommitzent.d.ts +34 -0
  63. package/lib/components/commitzent/interfaces/Icommitzent.js +3 -0
  64. package/lib/components/index.d.ts +4 -0
  65. package/lib/components/index.js +21 -0
  66. package/lib/components/k3d/index.d.ts +3 -0
  67. package/lib/components/k3d/index.js +20 -0
  68. package/lib/components/k3d/k3d.d.ts +33 -0
  69. package/lib/components/k3d/k3d.js +109 -0
  70. package/lib/components/k3d/k3dBase.d.ts +4 -0
  71. package/lib/components/k3d/k3dBase.js +23 -0
  72. package/lib/components/k3d/types.d.ts +64 -0
  73. package/lib/components/k3d/types.js +8 -0
  74. package/lib/index.d.ts +5 -3
  75. package/lib/index.js +20 -12
  76. package/lib/monorepo/components/NxConfiguration.d.ts +17 -0
  77. package/lib/monorepo/components/NxConfiguration.js +105 -0
  78. package/lib/monorepo/components/index.d.ts +2 -0
  79. package/lib/monorepo/components/index.js +19 -0
  80. package/lib/monorepo/components/publish-release.d.ts +5 -0
  81. package/lib/monorepo/components/publish-release.js +80 -0
  82. package/lib/monorepo/index.d.ts +3 -0
  83. package/lib/monorepo/index.js +20 -0
  84. package/lib/monorepo/interfaces/Nx.d.ts +130 -0
  85. package/lib/monorepo/interfaces/Nx.js +3 -0
  86. package/lib/monorepo/interfaces/NxMonorepo.d.ts +3 -0
  87. package/lib/monorepo/interfaces/NxMonorepo.js +3 -0
  88. package/lib/monorepo/interfaces/index.d.ts +2 -0
  89. package/lib/monorepo/interfaces/index.js +19 -0
  90. package/lib/monorepo/monorepo.d.ts +16 -0
  91. package/lib/monorepo/monorepo.js +131 -0
  92. package/lib/terraform/components/index.d.ts +2 -0
  93. package/lib/terraform/components/index.js +19 -0
  94. package/lib/terraform/components/terraform-deploy-github-workflow.d.ts +26 -0
  95. package/lib/terraform/components/terraform-deploy-github-workflow.js +92 -0
  96. package/lib/terraform/components/terraform-plan-github-workflow.d.ts +31 -0
  97. package/lib/terraform/components/terraform-plan-github-workflow.js +155 -0
  98. package/lib/terraform/index.d.ts +5 -0
  99. package/lib/terraform/index.js +22 -0
  100. package/lib/terraform/providers/hetzner-provider.d.ts +105 -0
  101. package/lib/terraform/providers/hetzner-provider.js +83 -0
  102. package/lib/terraform/providers/index.d.ts +2 -0
  103. package/lib/terraform/providers/index.js +19 -0
  104. package/lib/terraform/providers/provider-strategy.d.ts +44 -0
  105. package/lib/terraform/providers/provider-strategy.js +38 -0
  106. package/lib/terraform/terraform-base-project.d.ts +38 -0
  107. package/lib/terraform/terraform-base-project.js +97 -0
  108. package/lib/terraform/terraform-module-project.d.ts +24 -0
  109. package/lib/terraform/terraform-module-project.js +77 -0
  110. package/lib/terraform/terraform-stack-project.d.ts +28 -0
  111. package/lib/terraform/terraform-stack-project.js +83 -0
  112. package/mkdocs.yml +12 -0
  113. package/package.json +14 -7
package/.jsii CHANGED
@@ -6,12 +6,84 @@
6
6
  "author"
7
7
  ]
8
8
  },
9
+ "dependencies": {
10
+ "constructs": "^10.4.4",
11
+ "projen": "^0.99.1"
12
+ },
13
+ "dependencyClosure": {
14
+ "constructs": {
15
+ "targets": {
16
+ "dotnet": {
17
+ "namespace": "Constructs",
18
+ "packageId": "Constructs"
19
+ },
20
+ "go": {
21
+ "moduleName": "github.com/aws/constructs-go"
22
+ },
23
+ "java": {
24
+ "maven": {
25
+ "artifactId": "constructs",
26
+ "groupId": "software.constructs"
27
+ },
28
+ "package": "software.constructs"
29
+ },
30
+ "js": {
31
+ "npm": "constructs"
32
+ },
33
+ "python": {
34
+ "distName": "constructs",
35
+ "module": "constructs"
36
+ }
37
+ }
38
+ },
39
+ "projen": {
40
+ "submodules": {
41
+ "projen.awscdk": {},
42
+ "projen.build": {},
43
+ "projen.cdk": {},
44
+ "projen.cdk8s": {},
45
+ "projen.cdktf": {},
46
+ "projen.circleci": {},
47
+ "projen.github": {},
48
+ "projen.github.workflows": {},
49
+ "projen.gitlab": {},
50
+ "projen.java": {},
51
+ "projen.javascript": {},
52
+ "projen.javascript.biome_config": {},
53
+ "projen.python": {},
54
+ "projen.python.uvConfig": {},
55
+ "projen.release": {},
56
+ "projen.typescript": {},
57
+ "projen.vscode": {},
58
+ "projen.web": {}
59
+ },
60
+ "targets": {
61
+ "go": {
62
+ "moduleName": "github.com/projen/projen-go"
63
+ },
64
+ "java": {
65
+ "maven": {
66
+ "artifactId": "projen",
67
+ "groupId": "io.github.cdklabs"
68
+ },
69
+ "package": "io.github.cdklabs.projen"
70
+ },
71
+ "js": {
72
+ "npm": "projen"
73
+ },
74
+ "python": {
75
+ "distName": "projen",
76
+ "module": "projen"
77
+ }
78
+ }
79
+ }
80
+ },
9
81
  "description": "@jttc/projen-project-types",
10
82
  "docs": {
11
83
  "stability": "stable"
12
84
  },
13
85
  "homepage": "git@github.com:JumpToTheCloud/projen-project-types.git",
14
- "jsiiVersion": "5.9.20 (build 6e2b13a)",
86
+ "jsiiVersion": "5.9.22 (build b81c634)",
15
87
  "license": "Apache-2.0",
16
88
  "metadata": {
17
89
  "jsii": {
@@ -23,7 +95,7 @@
23
95
  },
24
96
  "name": "@jttc/projen-project-types",
25
97
  "readme": {
26
- "markdown": "# Projen Project Types\n\nA collection of opinionated custom project templates for [projen.io](https://projen.io).\n\n## Overview\n\nThis repository provides curated project types that extend projen's capabilities with opinionated configurations and best practices. These project types are designed to accelerate development workflows while maintaining consistency and quality across projects.\n\n## Requirements\n\n### Documentation\n\nThis project uses MkDocs for documentation. To work with the documentation locally, you need to install the following dependencies:\n\n```bash\n# Install MkDocs and Material theme\npip3 install mkdocs mkdocs-material\n\n# Install Mike for documentation versioning\npip3 install mike\n```\n\n### Development Commands\n\nOnce the requirements are installed, you can use the following commands:\n\n```bash\n# Build the documentation\nyarn docs:build\n\n# Serve the documentation locally (with live reload)\nyarn docs:serve\n```\n\nThe documentation will be available at `http://localhost:8000` when using the serve command.\n\n## Features\n\n- 🚀 **Ready-to-use project templates** for various use cases\n- 📦 **Integrated tooling** with sensible defaults\n- 🔧 **Customizable configurations** to fit your needs\n- 📚 **Comprehensive documentation** with MkDocs Material theme\n- 🔄 **Continuous integration** templates included\n\n## Getting Started\n\nMore detailed documentation and project types will be added as features are developed. Visit the documentation site for the latest information.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit issues, feature requests, or pull requests to help improve these project types.\n\n## License\n\nThis project is licensed under the terms specified in the LICENSE file."
98
+ "markdown": "# 🏗️ Projen Project Types\n\n> **Opinionated project templates for [projen.io](https://projen.io) that accelerate development with best practices built-in**\n\n[![npm version](https://img.shields.io/npm/v/@jttc/projen-project-types)](https://www.npmjs.com/package/@jttc/projen-project-types)\n[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Documentation](https://img.shields.io/badge/docs-mkdocs-blue)](https://jumptothecloud.github.io/projen-project-types/)\n[![GitHub](https://img.shields.io/github/stars/JumpToTheCloud/projen-project-types?style=social)](https://github.com/JumpToTheCloud/projen-project-types)\n\n## ✨ What is this?\n\nThis package provides **ready-to-use project templates** that extend [projen](https://projen.io) with opinionated configurations, saving you hours of setup time while ensuring consistency and best practices across your projects.\n\nInstead of manually configuring Prettier, ESLint, VSCode settings, CI/CD pipelines, and other tools for every project, these templates give you everything pre-configured and battle-tested.\n\n## 🚀 Quick Start\n\n```bash\n# Create a CDK construct library\nnpx projen new --from @jttc/projen-project-types cdk-library\n\n# Create a CDK application\nnpx projen new --from @jttc/projen-project-types cdk-app\n\n# Create a CDK8s construct library with Kubernetes support\nnpx projen new --from @jttc/projen-project-types cdk8s-library\n\n# Create a CDK8s application with Kubernetes support\nnpx projen new --from @jttc/projen-project-types cdk8s-app\n\n# Create an NX monorepo workspace\nnpx projen new --from @jttc/projen-project-types nx-monorepo\n```\n\n## 📦 Available Project Types\n\n| Project Type | Description | Best For |\n|--------------|-------------|----------|\n| **[CDK Library](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-library/)** | AWS CDK construct libraries | Creating reusable AWS infrastructure components |\n| **[CDK App](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-app/)** | AWS CDK applications | Building and deploying AWS infrastructure |\n| **[CDK8s Library](https://jumptothecloud.github.io/projen-project-types/project-types/cdk8s-library/)** | CDK8s libraries with Kubernetes | Creating reusable Kubernetes constructs |\n| **[CDK8s App](https://jumptothecloud.github.io/projen-project-types/project-types/cdk8s-app/)** | CDK8s applications with Kubernetes | Building and deploying Kubernetes applications |\n| **[NX Monorepo](https://jumptothecloud.github.io/projen-project-types/project-types/nx-monorepo/)** | NX monorepo workspace | Managing multiple related packages in a single repository |\n\n## 🧩 Available Components\n\n| Component | Description | Documentation |\n|-----------|-------------|---------------|\n| **[CDK8s Component](https://jumptothecloud.github.io/projen-project-types/components/cdk8s/)** | Kubernetes manifest generation with TypeScript | Add to any project type |\n| **[K3d Component](https://jumptothecloud.github.io/projen-project-types/components/k3d/)** | Local Kubernetes development with K3d | Included in CDK8s apps, add to any project |\n| **[Commitzent Component](https://jumptothecloud.github.io/projen-project-types/components/commitzent/)** | Conventional Commits with interactive prompts | Included by default |\n\n## ⚡ What You Get Out of the Box\n\nEvery project template includes:\n\n- 🎨 **[Prettier](https://jumptothecloud.github.io/projen-project-types/default-configurations/#prettier-configuration)** - Consistent code formatting\n- 🔧 **[VSCode Setup](https://jumptothecloud.github.io/projen-project-types/default-configurations/#vscode-configuration)** - Optimized editor experience with recommended extensions\n- 📋 **[Commitzent](https://jumptothecloud.github.io/projen-project-types/components/commitzent/)** - Conventional commits with interactive prompts\n- 📝 **TypeScript** - Best practices and configurations\n- 🧪 **Jest Testing** - Ready-to-use testing framework\n- 🚢 **CI/CD Pipelines** - GitHub Actions workflows\n- 📚 **Documentation** - Auto-generated API docs\n- 🔒 **Security** - Dependabot and security scanning\n\n## 💡 Example Usage\n\n### CDK Library with Custom Configuration\n\n```typescript\n// .projenrc.ts\nimport { CdkLibrary } from '@jttc/projen-project-types';\n\nconst project = new CdkLibrary({\n name: 'my-awesome-constructs',\n author: 'Your Name',\n authorAddress: 'your@email.com',\n repositoryUrl: 'https://github.com/yourusername/my-awesome-constructs.git',\n cdkVersion: '2.1.0',\n defaultReleaseBranch: 'main',\n\n // Customize as needed\n prettier: true,\n vscode: true,\n});\n\nproject.synth();\n```\n\n### CDK8s Library with Kubernetes Support\n\n```typescript\n// .projenrc.ts\nimport { Cdk8sLibrary, K8sVersion } from '@jttc/projen-project-types';\n\nconst project = new Cdk8sLibrary({\n name: 'my-k8s-constructs',\n author: 'Your Name',\n authorAddress: 'your@email.com',\n repositoryUrl: 'https://github.com/yourusername/my-k8s-constructs.git',\n cdkVersion: '2.1.0',\n defaultReleaseBranch: 'main',\n\n // CDK8s specific options\n k8sVersion: K8sVersion.V1_31,\n appPath: 'src/k8s',\n imports: ['cert-manager@v1.13.0'],\n});\n\nproject.synth();\n```\n\n## 🏗️ Architecture\n\n```\nprojen-project-types/\n├── 📁 Project Types/ # Complete project templates\n│ ├── CDK Library # AWS CDK construct libraries\n│ ├── CDK App # AWS CDK applications\n│ └── CDK8s Library # Kubernetes + CDK8s libraries\n├── 🧩 Components/ # Reusable functionality\n│ └── CDK8s Component # Kubernetes manifest generation\n└── ⚙️ Common Config/ # Shared configurations\n ├── Prettier # Code formatting\n ├── VSCode # Editor setup\n └── TypeScript # Language configuration\n```\n\n## 📚 Documentation\n\nComprehensive documentation is available at: **[jumptothecloud.github.io/projen-project-types](https://jumptothecloud.github.io/projen-project-types/)**\n\n- **[Getting Started Guide](https://jumptothecloud.github.io/projen-project-types/)**\n- **[Project Types](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-library/)**\n- **[Components](https://jumptothecloud.github.io/projen-project-types/components/cdk8s/)**\n- **[Default Configurations](https://jumptothecloud.github.io/projen-project-types/default-configurations/)**\n\n## 🛠️ Development\n\n### Prerequisites\n\n- **Node.js** (v18+)\n- **Yarn** package manager\n- **Python 3** (for documentation)\n\n### Setup\n\n```bash\n# Clone the repository\ngit clone https://github.com/JumpToTheCloud/projen-project-types.git\ncd projen-project-types\n\n# Install dependencies\nyarn install\n\n# Run tests\nyarn test\n\n# Build the project\nyarn build\n```\n\n### Documentation Development\n\n```bash\n# Install documentation dependencies\npip3 install mkdocs mkdocs-material mike\n\n# Serve documentation locally with hot reload\nyarn docs:serve\n\n# Build documentation\nyarn docs:build\n```\n\nThe documentation will be available at `http://localhost:8099` when using the serve command.\n\n## 🗺️ Roadmap\n\nPlanned features and project types:\n\n- **Next.js Projects** - Full-stack TypeScript applications\n- **Node.js APIs** - REST and GraphQL API templates\n- **React Libraries** - Component library templates\n- **Terraform Modules** - Infrastructure as Code templates\n- **Docker Components** - Containerization support\n- **Serverless Functions** - AWS Lambda and other FaaS templates\n\n## 🤝 Contributing\n\nWe welcome contributions! Here's how to get started:\n\n1. **Fork the repository**\n2. **Create a feature branch**: `git checkout -b feature/amazing-feature`\n3. **Make your changes** and add tests\n4. **Run tests**: `yarn test`\n5. **Update documentation** if needed\n6. **Commit your changes**: `git commit -m 'Add amazing feature'`\n7. **Push to the branch**: `git push origin feature/amazing-feature`\n8. **Open a Pull Request**\n\n### Contribution Guidelines\n\n- All new features should include tests\n- Documentation should be updated for new project types or components\n- Follow the existing code style and patterns\n- Ensure all CI checks pass\n\n## ❓ Support\n\n- **Documentation**: [jumptothecloud.github.io/projen-project-types](https://jumptothecloud.github.io/projen-project-types/)\n- **Issues**: [GitHub Issues](https://github.com/JumpToTheCloud/projen-project-types/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/JumpToTheCloud/projen-project-types/discussions)\n\n## 📄 License\n\nThis project is licensed under the **Apache 2.0 License** - see the [LICENSE](LICENSE) file for details.\n\n## 🌟 Credits\n\nBuilt with ❤️ by the [JumpToTheCloud](https://github.com/JumpToTheCloud) team.\n\nSpecial thanks to the [projen](https://projen.io) community for creating such an amazing tool for project configuration management."
27
99
  },
28
100
  "repository": {
29
101
  "type": "git",
@@ -36,43 +108,4594 @@
36
108
  }
37
109
  },
38
110
  "types": {
39
- "@jttc/projen-project-types.Hello": {
111
+ "@jttc/projen-project-types.Affected": {
40
112
  "assembly": "@jttc/projen-project-types",
113
+ "datatype": true,
41
114
  "docs": {
42
115
  "stability": "stable"
43
116
  },
44
- "fqn": "@jttc/projen-project-types.Hello",
117
+ "fqn": "@jttc/projen-project-types.Affected",
118
+ "kind": "interface",
119
+ "locationInModule": {
120
+ "filename": "src/monorepo/interfaces/Nx.ts",
121
+ "line": 1
122
+ },
123
+ "name": "Affected",
124
+ "properties": [
125
+ {
126
+ "abstract": true,
127
+ "docs": {
128
+ "stability": "stable",
129
+ "summary": "Default base to use for affected commands It will take the projen default base by default."
130
+ },
131
+ "immutable": true,
132
+ "locationInModule": {
133
+ "filename": "src/monorepo/interfaces/Nx.ts",
134
+ "line": 6
135
+ },
136
+ "name": "defaultBase",
137
+ "optional": true,
138
+ "type": {
139
+ "primitive": "string"
140
+ }
141
+ }
142
+ ],
143
+ "symbolId": "src/monorepo/interfaces/Nx:Affected"
144
+ },
145
+ "@jttc/projen-project-types.Agents": {
146
+ "assembly": "@jttc/projen-project-types",
147
+ "base": "projen.Component",
148
+ "docs": {
149
+ "stability": "stable",
150
+ "summary": "Component that adds an AGENTS.md file to explain how the repository works for coding agents like GitHub Copilot."
151
+ },
152
+ "fqn": "@jttc/projen-project-types.Agents",
45
153
  "initializer": {
46
154
  "docs": {
47
155
  "stability": "stable"
48
- }
156
+ },
157
+ "locationInModule": {
158
+ "filename": "src/components/agents/agents.ts",
159
+ "line": 15
160
+ },
161
+ "parameters": [
162
+ {
163
+ "name": "project",
164
+ "type": {
165
+ "fqn": "projen.Project"
166
+ }
167
+ },
168
+ {
169
+ "name": "id",
170
+ "type": {
171
+ "primitive": "string"
172
+ }
173
+ },
174
+ {
175
+ "name": "options",
176
+ "optional": true,
177
+ "type": {
178
+ "fqn": "@jttc/projen-project-types.AgentsOptions"
179
+ }
180
+ }
181
+ ]
49
182
  },
50
183
  "kind": "class",
51
184
  "locationInModule": {
52
- "filename": "src/index.ts",
185
+ "filename": "src/components/agents/agents.ts",
186
+ "line": 14
187
+ },
188
+ "name": "Agents",
189
+ "symbolId": "src/components/agents/agents:Agents"
190
+ },
191
+ "@jttc/projen-project-types.AgentsOptions": {
192
+ "assembly": "@jttc/projen-project-types",
193
+ "datatype": true,
194
+ "docs": {
195
+ "stability": "stable"
196
+ },
197
+ "fqn": "@jttc/projen-project-types.AgentsOptions",
198
+ "kind": "interface",
199
+ "locationInModule": {
200
+ "filename": "src/components/agents/agents.ts",
201
+ "line": 3
202
+ },
203
+ "name": "AgentsOptions",
204
+ "properties": [
205
+ {
206
+ "abstract": true,
207
+ "docs": {
208
+ "stability": "stable",
209
+ "summary": "Custom content to include in the AGENTS.md file."
210
+ },
211
+ "immutable": true,
212
+ "locationInModule": {
213
+ "filename": "src/components/agents/agents.ts",
214
+ "line": 7
215
+ },
216
+ "name": "customContent",
217
+ "optional": true,
218
+ "type": {
219
+ "collection": {
220
+ "elementtype": {
221
+ "primitive": "string"
222
+ },
223
+ "kind": "array"
224
+ }
225
+ }
226
+ }
227
+ ],
228
+ "symbolId": "src/components/agents/agents:AgentsOptions"
229
+ },
230
+ "@jttc/projen-project-types.ApiVersion": {
231
+ "assembly": "@jttc/projen-project-types",
232
+ "docs": {
233
+ "stability": "stable"
234
+ },
235
+ "fqn": "@jttc/projen-project-types.ApiVersion",
236
+ "kind": "enum",
237
+ "locationInModule": {
238
+ "filename": "src/components/k3d/types.ts",
53
239
  "line": 1
54
240
  },
241
+ "members": [
242
+ {
243
+ "docs": {
244
+ "stability": "stable"
245
+ },
246
+ "name": "V1_ALPHA_5"
247
+ }
248
+ ],
249
+ "name": "ApiVersion",
250
+ "symbolId": "src/components/k3d/types:ApiVersion"
251
+ },
252
+ "@jttc/projen-project-types.ArgConfig": {
253
+ "assembly": "@jttc/projen-project-types",
254
+ "datatype": true,
255
+ "docs": {
256
+ "stability": "stable"
257
+ },
258
+ "fqn": "@jttc/projen-project-types.ArgConfig",
259
+ "kind": "interface",
260
+ "locationInModule": {
261
+ "filename": "src/components/k3d/types.ts",
262
+ "line": 20
263
+ },
264
+ "name": "ArgConfig",
265
+ "properties": [
266
+ {
267
+ "abstract": true,
268
+ "docs": {
269
+ "stability": "stable"
270
+ },
271
+ "immutable": true,
272
+ "locationInModule": {
273
+ "filename": "src/components/k3d/types.ts",
274
+ "line": 21
275
+ },
276
+ "name": "arg",
277
+ "type": {
278
+ "primitive": "string"
279
+ }
280
+ },
281
+ {
282
+ "abstract": true,
283
+ "docs": {
284
+ "stability": "stable"
285
+ },
286
+ "immutable": true,
287
+ "locationInModule": {
288
+ "filename": "src/components/k3d/types.ts",
289
+ "line": 22
290
+ },
291
+ "name": "nodeFilters",
292
+ "type": {
293
+ "collection": {
294
+ "elementtype": {
295
+ "primitive": "string"
296
+ },
297
+ "kind": "array"
298
+ }
299
+ }
300
+ }
301
+ ],
302
+ "symbolId": "src/components/k3d/types:ArgConfig"
303
+ },
304
+ "@jttc/projen-project-types.Cdk8App": {
305
+ "assembly": "@jttc/projen-project-types",
306
+ "base": "projen.typescript.TypeScriptProject",
307
+ "docs": {
308
+ "custom": {
309
+ "pjid": "cdk8s-app"
310
+ },
311
+ "stability": "stable",
312
+ "summary": "CDK8s Application Project."
313
+ },
314
+ "fqn": "@jttc/projen-project-types.Cdk8App",
315
+ "initializer": {
316
+ "docs": {
317
+ "stability": "stable"
318
+ },
319
+ "locationInModule": {
320
+ "filename": "src/cdk/cdk8s-app-project.ts",
321
+ "line": 15
322
+ },
323
+ "parameters": [
324
+ {
325
+ "name": "options",
326
+ "type": {
327
+ "fqn": "@jttc/projen-project-types.Cdk8sAppOptions"
328
+ }
329
+ }
330
+ ]
331
+ },
332
+ "kind": "class",
333
+ "locationInModule": {
334
+ "filename": "src/cdk/cdk8s-app-project.ts",
335
+ "line": 12
336
+ },
55
337
  "methods": [
338
+ {
339
+ "docs": {
340
+ "remarks": "Order is *not* guaranteed.",
341
+ "stability": "stable",
342
+ "summary": "Called after all components are synthesized."
343
+ },
344
+ "locationInModule": {
345
+ "filename": "src/cdk/cdk8s-app-project.ts",
346
+ "line": 47
347
+ },
348
+ "name": "postSynthesize",
349
+ "overrides": "projen.Project"
350
+ }
351
+ ],
352
+ "name": "Cdk8App",
353
+ "properties": [
56
354
  {
57
355
  "docs": {
58
356
  "stability": "stable"
59
357
  },
358
+ "immutable": true,
60
359
  "locationInModule": {
61
- "filename": "src/index.ts",
62
- "line": 2
360
+ "filename": "src/cdk/cdk8s-app-project.ts",
361
+ "line": 13
63
362
  },
64
- "name": "sayHello",
65
- "returns": {
363
+ "name": "cdk8s",
364
+ "type": {
365
+ "fqn": "@jttc/projen-project-types.Cdk8sComponent"
366
+ }
367
+ },
368
+ {
369
+ "docs": {
370
+ "stability": "stable"
371
+ },
372
+ "immutable": true,
373
+ "locationInModule": {
374
+ "filename": "src/cdk/cdk8s-app-project.ts",
375
+ "line": 14
376
+ },
377
+ "name": "commitzent",
378
+ "optional": true,
379
+ "type": {
380
+ "fqn": "@jttc/projen-project-types.Commitzent"
381
+ }
382
+ }
383
+ ],
384
+ "symbolId": "src/cdk/cdk8s-app-project:Cdk8App"
385
+ },
386
+ "@jttc/projen-project-types.Cdk8sAppOptions": {
387
+ "assembly": "@jttc/projen-project-types",
388
+ "datatype": true,
389
+ "docs": {
390
+ "stability": "stable",
391
+ "summary": "CDK8s Application Project options."
392
+ },
393
+ "fqn": "@jttc/projen-project-types.Cdk8sAppOptions",
394
+ "interfaces": [
395
+ "@jttc/projen-project-types.Cdk8sBaseOptions",
396
+ "projen.typescript.TypeScriptProjectOptions",
397
+ "@jttc/projen-project-types.ProjectGlobalOptions"
398
+ ],
399
+ "kind": "interface",
400
+ "locationInModule": {
401
+ "filename": "src/cdk/interfaces/cdk8s-app-options.ts",
402
+ "line": 9
403
+ },
404
+ "name": "Cdk8sAppOptions",
405
+ "properties": [
406
+ {
407
+ "abstract": true,
408
+ "docs": {
409
+ "default": "true",
410
+ "stability": "stable",
411
+ "summary": "Enable K3d component integration."
412
+ },
413
+ "immutable": true,
414
+ "locationInModule": {
415
+ "filename": "src/cdk/interfaces/cdk8s-app-options.ts",
416
+ "line": 15
417
+ },
418
+ "name": "k3d",
419
+ "optional": true,
420
+ "type": {
421
+ "primitive": "boolean"
422
+ }
423
+ },
424
+ {
425
+ "abstract": true,
426
+ "docs": {
427
+ "stability": "stable",
428
+ "summary": "K3d component configuration options."
429
+ },
430
+ "immutable": true,
431
+ "locationInModule": {
432
+ "filename": "src/cdk/interfaces/cdk8s-app-options.ts",
433
+ "line": 19
434
+ },
435
+ "name": "k3dOptions",
436
+ "optional": true,
437
+ "type": {
438
+ "fqn": "@jttc/projen-project-types.K3dOptions"
439
+ }
440
+ }
441
+ ],
442
+ "symbolId": "src/cdk/interfaces/cdk8s-app-options:Cdk8sAppOptions"
443
+ },
444
+ "@jttc/projen-project-types.Cdk8sBaseOptions": {
445
+ "assembly": "@jttc/projen-project-types",
446
+ "datatype": true,
447
+ "docs": {
448
+ "stability": "stable"
449
+ },
450
+ "fqn": "@jttc/projen-project-types.Cdk8sBaseOptions",
451
+ "kind": "interface",
452
+ "locationInModule": {
453
+ "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
454
+ "line": 9
455
+ },
456
+ "name": "Cdk8sBaseOptions",
457
+ "properties": [
458
+ {
459
+ "abstract": true,
460
+ "docs": {
461
+ "default": "main.ts",
462
+ "stability": "stable",
463
+ "summary": "The name of the main file."
464
+ },
465
+ "immutable": true,
466
+ "locationInModule": {
467
+ "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
468
+ "line": 21
469
+ },
470
+ "name": "appFile",
471
+ "optional": true,
472
+ "type": {
473
+ "primitive": "string"
474
+ }
475
+ },
476
+ {
477
+ "abstract": true,
478
+ "docs": {
479
+ "default": "\"src/k8s\"",
480
+ "stability": "stable",
481
+ "summary": "path of main file to execute the typescript transpilation."
482
+ },
483
+ "immutable": true,
484
+ "locationInModule": {
485
+ "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
486
+ "line": 15
487
+ },
488
+ "name": "appPath",
489
+ "optional": true,
490
+ "type": {
491
+ "primitive": "string"
492
+ }
493
+ },
494
+ {
495
+ "abstract": true,
496
+ "docs": {
497
+ "stability": "stable",
498
+ "summary": "List of kubernetes imports to be added."
499
+ },
500
+ "immutable": true,
501
+ "locationInModule": {
502
+ "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
503
+ "line": 25
504
+ },
505
+ "name": "imports",
506
+ "optional": true,
507
+ "type": {
508
+ "collection": {
509
+ "elementtype": {
510
+ "primitive": "string"
511
+ },
512
+ "kind": "array"
513
+ }
514
+ }
515
+ },
516
+ {
517
+ "abstract": true,
518
+ "docs": {
519
+ "default": "1.31",
520
+ "stability": "stable",
521
+ "summary": "The kubernetes version to use."
522
+ },
523
+ "immutable": true,
524
+ "locationInModule": {
525
+ "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
526
+ "line": 37
527
+ },
528
+ "name": "k8sVersion",
529
+ "optional": true,
530
+ "type": {
531
+ "fqn": "@jttc/projen-project-types.K8sVersion"
532
+ }
533
+ },
534
+ {
535
+ "abstract": true,
536
+ "docs": {
537
+ "default": "\"kubernetes\"",
538
+ "stability": "stable",
539
+ "summary": "The path where the output synthesized file will be saved."
540
+ },
541
+ "immutable": true,
542
+ "locationInModule": {
543
+ "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
544
+ "line": 31
545
+ },
546
+ "name": "outputPath",
547
+ "optional": true,
548
+ "type": {
549
+ "primitive": "string"
550
+ }
551
+ }
552
+ ],
553
+ "symbolId": "src/components/cdk8s/interfaces/Cdk8s:Cdk8sBaseOptions"
554
+ },
555
+ "@jttc/projen-project-types.Cdk8sComponent": {
556
+ "assembly": "@jttc/projen-project-types",
557
+ "base": "projen.Component",
558
+ "docs": {
559
+ "stability": "stable"
560
+ },
561
+ "fqn": "@jttc/projen-project-types.Cdk8sComponent",
562
+ "initializer": {
563
+ "docs": {
564
+ "stability": "stable"
565
+ },
566
+ "locationInModule": {
567
+ "filename": "src/components/cdk8s/cdk8s.ts",
568
+ "line": 21
569
+ },
570
+ "parameters": [
571
+ {
572
+ "name": "project",
573
+ "type": {
574
+ "fqn": "projen.Project"
575
+ }
576
+ },
577
+ {
578
+ "name": "id",
66
579
  "type": {
67
580
  "primitive": "string"
68
581
  }
582
+ },
583
+ {
584
+ "name": "props",
585
+ "optional": true,
586
+ "type": {
587
+ "fqn": "@jttc/projen-project-types.Cdk8sBaseOptions"
588
+ }
589
+ }
590
+ ]
591
+ },
592
+ "kind": "class",
593
+ "locationInModule": {
594
+ "filename": "src/components/cdk8s/cdk8s.ts",
595
+ "line": 14
596
+ },
597
+ "methods": [
598
+ {
599
+ "docs": {
600
+ "remarks": "Order is *not* guaranteed.",
601
+ "stability": "stable",
602
+ "summary": "Called after synthesis."
603
+ },
604
+ "locationInModule": {
605
+ "filename": "src/components/cdk8s/cdk8s.ts",
606
+ "line": 145
607
+ },
608
+ "name": "postSynthesize",
609
+ "overrides": "projen.Component"
610
+ }
611
+ ],
612
+ "name": "Cdk8sComponent",
613
+ "properties": [
614
+ {
615
+ "docs": {
616
+ "stability": "stable"
617
+ },
618
+ "immutable": true,
619
+ "locationInModule": {
620
+ "filename": "src/components/cdk8s/cdk8s.ts",
621
+ "line": 16
622
+ },
623
+ "name": "appFile",
624
+ "type": {
625
+ "primitive": "string"
626
+ }
627
+ },
628
+ {
629
+ "docs": {
630
+ "stability": "stable"
631
+ },
632
+ "immutable": true,
633
+ "locationInModule": {
634
+ "filename": "src/components/cdk8s/cdk8s.ts",
635
+ "line": 15
636
+ },
637
+ "name": "appPath",
638
+ "type": {
639
+ "primitive": "string"
640
+ }
641
+ },
642
+ {
643
+ "docs": {
644
+ "stability": "stable"
645
+ },
646
+ "immutable": true,
647
+ "locationInModule": {
648
+ "filename": "src/components/cdk8s/cdk8s.ts",
649
+ "line": 17
650
+ },
651
+ "name": "imports",
652
+ "type": {
653
+ "collection": {
654
+ "elementtype": {
655
+ "primitive": "string"
656
+ },
657
+ "kind": "array"
658
+ }
659
+ }
660
+ },
661
+ {
662
+ "docs": {
663
+ "stability": "stable"
664
+ },
665
+ "immutable": true,
666
+ "locationInModule": {
667
+ "filename": "src/components/cdk8s/cdk8s.ts",
668
+ "line": 19
669
+ },
670
+ "name": "k8sVersion",
671
+ "type": {
672
+ "fqn": "@jttc/projen-project-types.K8sVersion"
673
+ }
674
+ },
675
+ {
676
+ "docs": {
677
+ "stability": "stable"
678
+ },
679
+ "immutable": true,
680
+ "locationInModule": {
681
+ "filename": "src/components/cdk8s/cdk8s.ts",
682
+ "line": 18
683
+ },
684
+ "name": "outputPath",
685
+ "type": {
686
+ "primitive": "string"
687
+ }
688
+ }
689
+ ],
690
+ "symbolId": "src/components/cdk8s/cdk8s:Cdk8sComponent"
691
+ },
692
+ "@jttc/projen-project-types.Cdk8sLibrary": {
693
+ "assembly": "@jttc/projen-project-types",
694
+ "base": "projen.awscdk.AwsCdkConstructLibrary",
695
+ "docs": {
696
+ "custom": {
697
+ "pjid": "cdk8s-library"
698
+ },
699
+ "stability": "stable",
700
+ "summary": "CDK Construct Library Project."
701
+ },
702
+ "fqn": "@jttc/projen-project-types.Cdk8sLibrary",
703
+ "initializer": {
704
+ "docs": {
705
+ "stability": "stable"
706
+ },
707
+ "locationInModule": {
708
+ "filename": "src/cdk/cdk8s-library-project.ts",
709
+ "line": 15
710
+ },
711
+ "parameters": [
712
+ {
713
+ "name": "options",
714
+ "type": {
715
+ "fqn": "@jttc/projen-project-types.Cdk8sLibraryOptions"
716
+ }
717
+ }
718
+ ]
719
+ },
720
+ "kind": "class",
721
+ "locationInModule": {
722
+ "filename": "src/cdk/cdk8s-library-project.ts",
723
+ "line": 12
724
+ },
725
+ "methods": [
726
+ {
727
+ "docs": {
728
+ "remarks": "Order is *not* guaranteed.",
729
+ "stability": "stable",
730
+ "summary": "Called after all components are synthesized."
731
+ },
732
+ "locationInModule": {
733
+ "filename": "src/cdk/cdk8s-library-project.ts",
734
+ "line": 41
735
+ },
736
+ "name": "postSynthesize",
737
+ "overrides": "projen.Project"
738
+ }
739
+ ],
740
+ "name": "Cdk8sLibrary",
741
+ "properties": [
742
+ {
743
+ "docs": {
744
+ "stability": "stable"
745
+ },
746
+ "immutable": true,
747
+ "locationInModule": {
748
+ "filename": "src/cdk/cdk8s-library-project.ts",
749
+ "line": 13
750
+ },
751
+ "name": "cdk8s",
752
+ "type": {
753
+ "fqn": "@jttc/projen-project-types.Cdk8sComponent"
754
+ }
755
+ },
756
+ {
757
+ "docs": {
758
+ "stability": "stable"
759
+ },
760
+ "immutable": true,
761
+ "locationInModule": {
762
+ "filename": "src/cdk/cdk8s-library-project.ts",
763
+ "line": 14
764
+ },
765
+ "name": "commitzent",
766
+ "optional": true,
767
+ "type": {
768
+ "fqn": "@jttc/projen-project-types.Commitzent"
769
+ }
770
+ }
771
+ ],
772
+ "symbolId": "src/cdk/cdk8s-library-project:Cdk8sLibrary"
773
+ },
774
+ "@jttc/projen-project-types.Cdk8sLibraryOptions": {
775
+ "assembly": "@jttc/projen-project-types",
776
+ "datatype": true,
777
+ "docs": {
778
+ "stability": "stable",
779
+ "summary": "CDK8s Construct Library Project options."
780
+ },
781
+ "fqn": "@jttc/projen-project-types.Cdk8sLibraryOptions",
782
+ "interfaces": [
783
+ "@jttc/projen-project-types.Cdk8sBaseOptions",
784
+ "projen.awscdk.AwsCdkConstructLibraryOptions",
785
+ "@jttc/projen-project-types.ProjectGlobalOptions"
786
+ ],
787
+ "kind": "interface",
788
+ "locationInModule": {
789
+ "filename": "src/cdk/interfaces/cdk8s-library-options.ts",
790
+ "line": 8
791
+ },
792
+ "name": "Cdk8sLibraryOptions",
793
+ "symbolId": "src/cdk/interfaces/cdk8s-library-options:Cdk8sLibraryOptions"
794
+ },
795
+ "@jttc/projen-project-types.CdkApp": {
796
+ "assembly": "@jttc/projen-project-types",
797
+ "base": "projen.awscdk.AwsCdkTypeScriptApp",
798
+ "docs": {
799
+ "custom": {
800
+ "pjid": "cdk-app"
801
+ },
802
+ "stability": "stable",
803
+ "summary": "CDK TypeScript App Project."
804
+ },
805
+ "fqn": "@jttc/projen-project-types.CdkApp",
806
+ "initializer": {
807
+ "docs": {
808
+ "stability": "stable"
809
+ },
810
+ "locationInModule": {
811
+ "filename": "src/cdk/cdk-app-project.ts",
812
+ "line": 13
813
+ },
814
+ "parameters": [
815
+ {
816
+ "name": "options",
817
+ "type": {
818
+ "fqn": "@jttc/projen-project-types.CdkAppOptions"
819
+ }
820
+ }
821
+ ]
822
+ },
823
+ "kind": "class",
824
+ "locationInModule": {
825
+ "filename": "src/cdk/cdk-app-project.ts",
826
+ "line": 11
827
+ },
828
+ "name": "CdkApp",
829
+ "properties": [
830
+ {
831
+ "docs": {
832
+ "stability": "stable"
833
+ },
834
+ "immutable": true,
835
+ "locationInModule": {
836
+ "filename": "src/cdk/cdk-app-project.ts",
837
+ "line": 12
838
+ },
839
+ "name": "commitzent",
840
+ "optional": true,
841
+ "type": {
842
+ "fqn": "@jttc/projen-project-types.Commitzent"
843
+ }
844
+ }
845
+ ],
846
+ "symbolId": "src/cdk/cdk-app-project:CdkApp"
847
+ },
848
+ "@jttc/projen-project-types.CdkAppOptions": {
849
+ "assembly": "@jttc/projen-project-types",
850
+ "datatype": true,
851
+ "docs": {
852
+ "stability": "stable",
853
+ "summary": "CDK TypeScript App Project options."
854
+ },
855
+ "fqn": "@jttc/projen-project-types.CdkAppOptions",
856
+ "interfaces": [
857
+ "projen.awscdk.AwsCdkTypeScriptAppOptions",
858
+ "@jttc/projen-project-types.ProjectGlobalOptions"
859
+ ],
860
+ "kind": "interface",
861
+ "locationInModule": {
862
+ "filename": "src/cdk/interfaces/cdk-app-options.ts",
863
+ "line": 7
864
+ },
865
+ "name": "CdkAppOptions",
866
+ "symbolId": "src/cdk/interfaces/cdk-app-options:CdkAppOptions"
867
+ },
868
+ "@jttc/projen-project-types.CdkLibrary": {
869
+ "assembly": "@jttc/projen-project-types",
870
+ "base": "projen.awscdk.AwsCdkConstructLibrary",
871
+ "docs": {
872
+ "custom": {
873
+ "pjid": "cdk-library"
874
+ },
875
+ "stability": "stable",
876
+ "summary": "CDK Construct Library Project."
877
+ },
878
+ "fqn": "@jttc/projen-project-types.CdkLibrary",
879
+ "initializer": {
880
+ "docs": {
881
+ "stability": "stable"
882
+ },
883
+ "locationInModule": {
884
+ "filename": "src/cdk/cdk-library-project.ts",
885
+ "line": 13
886
+ },
887
+ "parameters": [
888
+ {
889
+ "name": "options",
890
+ "type": {
891
+ "fqn": "@jttc/projen-project-types.CdkLibraryOptions"
892
+ }
893
+ }
894
+ ]
895
+ },
896
+ "kind": "class",
897
+ "locationInModule": {
898
+ "filename": "src/cdk/cdk-library-project.ts",
899
+ "line": 11
900
+ },
901
+ "name": "CdkLibrary",
902
+ "properties": [
903
+ {
904
+ "docs": {
905
+ "stability": "stable"
906
+ },
907
+ "immutable": true,
908
+ "locationInModule": {
909
+ "filename": "src/cdk/cdk-library-project.ts",
910
+ "line": 12
911
+ },
912
+ "name": "commitzent",
913
+ "optional": true,
914
+ "type": {
915
+ "fqn": "@jttc/projen-project-types.Commitzent"
916
+ }
917
+ }
918
+ ],
919
+ "symbolId": "src/cdk/cdk-library-project:CdkLibrary"
920
+ },
921
+ "@jttc/projen-project-types.CdkLibraryOptions": {
922
+ "assembly": "@jttc/projen-project-types",
923
+ "datatype": true,
924
+ "docs": {
925
+ "stability": "stable",
926
+ "summary": "CDK Construct Library Project options."
927
+ },
928
+ "fqn": "@jttc/projen-project-types.CdkLibraryOptions",
929
+ "interfaces": [
930
+ "projen.awscdk.AwsCdkConstructLibraryOptions",
931
+ "@jttc/projen-project-types.ProjectGlobalOptions"
932
+ ],
933
+ "kind": "interface",
934
+ "locationInModule": {
935
+ "filename": "src/cdk/interfaces/cdk-library-options.ts",
936
+ "line": 7
937
+ },
938
+ "name": "CdkLibraryOptions",
939
+ "symbolId": "src/cdk/interfaces/cdk-library-options:CdkLibraryOptions"
940
+ },
941
+ "@jttc/projen-project-types.Commitzent": {
942
+ "assembly": "@jttc/projen-project-types",
943
+ "base": "projen.Component",
944
+ "docs": {
945
+ "stability": "stable"
946
+ },
947
+ "fqn": "@jttc/projen-project-types.Commitzent",
948
+ "initializer": {
949
+ "docs": {
950
+ "stability": "stable"
951
+ },
952
+ "locationInModule": {
953
+ "filename": "src/components/commitzent/commitzent.ts",
954
+ "line": 10
955
+ },
956
+ "parameters": [
957
+ {
958
+ "name": "project",
959
+ "type": {
960
+ "fqn": "projen.Project"
961
+ }
962
+ },
963
+ {
964
+ "name": "id",
965
+ "type": {
966
+ "primitive": "string"
967
+ }
968
+ }
969
+ ]
970
+ },
971
+ "kind": "class",
972
+ "locationInModule": {
973
+ "filename": "src/components/commitzent/commitzent.ts",
974
+ "line": 8
975
+ },
976
+ "methods": [
977
+ {
978
+ "docs": {
979
+ "stability": "stable"
980
+ },
981
+ "locationInModule": {
982
+ "filename": "src/components/commitzent/commitzent.ts",
983
+ "line": 96
984
+ },
985
+ "name": "addScope",
986
+ "parameters": [
987
+ {
988
+ "name": "scope",
989
+ "type": {
990
+ "fqn": "@jttc/projen-project-types.CommitzentScopes"
991
+ }
992
+ }
993
+ ]
994
+ },
995
+ {
996
+ "docs": {
997
+ "stability": "stable",
998
+ "summary": "Called before synthesis."
999
+ },
1000
+ "locationInModule": {
1001
+ "filename": "src/components/commitzent/commitzent.ts",
1002
+ "line": 100
1003
+ },
1004
+ "name": "preSynthesize",
1005
+ "overrides": "projen.Component"
1006
+ }
1007
+ ],
1008
+ "name": "Commitzent",
1009
+ "symbolId": "src/components/commitzent/commitzent:Commitzent"
1010
+ },
1011
+ "@jttc/projen-project-types.CommitzentConfiguration": {
1012
+ "assembly": "@jttc/projen-project-types",
1013
+ "datatype": true,
1014
+ "docs": {
1015
+ "stability": "stable"
1016
+ },
1017
+ "fqn": "@jttc/projen-project-types.CommitzentConfiguration",
1018
+ "kind": "interface",
1019
+ "locationInModule": {
1020
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1021
+ "line": 21
1022
+ },
1023
+ "name": "CommitzentConfiguration",
1024
+ "properties": [
1025
+ {
1026
+ "abstract": true,
1027
+ "docs": {
1028
+ "stability": "stable"
1029
+ },
1030
+ "immutable": true,
1031
+ "locationInModule": {
1032
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1033
+ "line": 29
1034
+ },
1035
+ "name": "messages",
1036
+ "type": {
1037
+ "fqn": "@jttc/projen-project-types.CommitzentMessages"
1038
+ }
1039
+ },
1040
+ {
1041
+ "abstract": true,
1042
+ "docs": {
1043
+ "stability": "stable"
1044
+ },
1045
+ "immutable": true,
1046
+ "locationInModule": {
1047
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1048
+ "line": 23
1049
+ },
1050
+ "name": "scopes",
1051
+ "type": {
1052
+ "collection": {
1053
+ "elementtype": {
1054
+ "fqn": "@jttc/projen-project-types.CommitzentScopes"
1055
+ },
1056
+ "kind": "array"
1057
+ }
1058
+ }
1059
+ },
1060
+ {
1061
+ "abstract": true,
1062
+ "docs": {
1063
+ "stability": "stable"
1064
+ },
1065
+ "immutable": true,
1066
+ "locationInModule": {
1067
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1068
+ "line": 22
1069
+ },
1070
+ "name": "types",
1071
+ "type": {
1072
+ "collection": {
1073
+ "elementtype": {
1074
+ "fqn": "@jttc/projen-project-types.CommitzentTypes"
1075
+ },
1076
+ "kind": "array"
1077
+ }
1078
+ }
1079
+ },
1080
+ {
1081
+ "abstract": true,
1082
+ "docs": {
1083
+ "stability": "stable"
1084
+ },
1085
+ "immutable": true,
1086
+ "locationInModule": {
1087
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1088
+ "line": 31
1089
+ },
1090
+ "name": "allowBreakingChanges",
1091
+ "optional": true,
1092
+ "type": {
1093
+ "collection": {
1094
+ "elementtype": {
1095
+ "primitive": "string"
1096
+ },
1097
+ "kind": "array"
1098
+ }
1099
+ }
1100
+ },
1101
+ {
1102
+ "abstract": true,
1103
+ "docs": {
1104
+ "stability": "stable"
1105
+ },
1106
+ "immutable": true,
1107
+ "locationInModule": {
1108
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1109
+ "line": 30
1110
+ },
1111
+ "name": "allowCustomScopes",
1112
+ "optional": true,
1113
+ "type": {
1114
+ "primitive": "boolean"
1115
+ }
1116
+ },
1117
+ {
1118
+ "abstract": true,
1119
+ "docs": {
1120
+ "stability": "stable"
1121
+ },
1122
+ "immutable": true,
1123
+ "locationInModule": {
1124
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1125
+ "line": 25
1126
+ },
1127
+ "name": "allowTicketNumber",
1128
+ "optional": true,
1129
+ "type": {
1130
+ "primitive": "boolean"
1131
+ }
1132
+ },
1133
+ {
1134
+ "abstract": true,
1135
+ "docs": {
1136
+ "stability": "stable"
1137
+ },
1138
+ "immutable": true,
1139
+ "locationInModule": {
1140
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1141
+ "line": 36
1142
+ },
1143
+ "name": "askForBreakingChangeFirst",
1144
+ "optional": true,
1145
+ "type": {
1146
+ "primitive": "boolean"
1147
+ }
1148
+ },
1149
+ {
1150
+ "abstract": true,
1151
+ "docs": {
1152
+ "stability": "stable"
1153
+ },
1154
+ "immutable": true,
1155
+ "locationInModule": {
1156
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1157
+ "line": 34
1158
+ },
1159
+ "name": "breakLineChar",
1160
+ "optional": true,
1161
+ "type": {
1162
+ "primitive": "string"
1163
+ }
1164
+ },
1165
+ {
1166
+ "abstract": true,
1167
+ "docs": {
1168
+ "stability": "stable"
1169
+ },
1170
+ "immutable": true,
1171
+ "locationInModule": {
1172
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1173
+ "line": 35
1174
+ },
1175
+ "name": "footerPrefix",
1176
+ "optional": true,
1177
+ "type": {
1178
+ "primitive": "string"
1179
+ }
1180
+ },
1181
+ {
1182
+ "abstract": true,
1183
+ "docs": {
1184
+ "stability": "stable"
1185
+ },
1186
+ "immutable": true,
1187
+ "locationInModule": {
1188
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1189
+ "line": 26
1190
+ },
1191
+ "name": "isTicketNumberRequired",
1192
+ "optional": true,
1193
+ "type": {
1194
+ "primitive": "boolean"
1195
+ }
1196
+ },
1197
+ {
1198
+ "abstract": true,
1199
+ "docs": {
1200
+ "stability": "stable"
1201
+ },
1202
+ "immutable": true,
1203
+ "locationInModule": {
1204
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1205
+ "line": 32
1206
+ },
1207
+ "name": "skipQuestions",
1208
+ "optional": true,
1209
+ "type": {
1210
+ "collection": {
1211
+ "elementtype": {
1212
+ "primitive": "string"
1213
+ },
1214
+ "kind": "array"
1215
+ }
1216
+ }
1217
+ },
1218
+ {
1219
+ "abstract": true,
1220
+ "docs": {
1221
+ "stability": "stable"
1222
+ },
1223
+ "immutable": true,
1224
+ "locationInModule": {
1225
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1226
+ "line": 33
1227
+ },
1228
+ "name": "subjectLimit",
1229
+ "optional": true,
1230
+ "type": {
1231
+ "primitive": "number"
1232
+ }
1233
+ },
1234
+ {
1235
+ "abstract": true,
1236
+ "docs": {
1237
+ "stability": "stable"
1238
+ },
1239
+ "immutable": true,
1240
+ "locationInModule": {
1241
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1242
+ "line": 27
1243
+ },
1244
+ "name": "ticketNumberPrefix",
1245
+ "optional": true,
1246
+ "type": {
1247
+ "primitive": "string"
1248
+ }
1249
+ },
1250
+ {
1251
+ "abstract": true,
1252
+ "docs": {
1253
+ "stability": "stable"
1254
+ },
1255
+ "immutable": true,
1256
+ "locationInModule": {
1257
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1258
+ "line": 28
1259
+ },
1260
+ "name": "ticketNumberRegExp",
1261
+ "optional": true,
1262
+ "type": {
1263
+ "primitive": "string"
1264
+ }
1265
+ },
1266
+ {
1267
+ "abstract": true,
1268
+ "docs": {
1269
+ "stability": "stable"
1270
+ },
1271
+ "immutable": true,
1272
+ "locationInModule": {
1273
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1274
+ "line": 24
1275
+ },
1276
+ "name": "usePreparedCommit",
1277
+ "optional": true,
1278
+ "type": {
1279
+ "primitive": "boolean"
1280
+ }
1281
+ }
1282
+ ],
1283
+ "symbolId": "src/components/commitzent/interfaces/Icommitzent:CommitzentConfiguration"
1284
+ },
1285
+ "@jttc/projen-project-types.CommitzentMessages": {
1286
+ "assembly": "@jttc/projen-project-types",
1287
+ "datatype": true,
1288
+ "docs": {
1289
+ "stability": "stable"
1290
+ },
1291
+ "fqn": "@jttc/projen-project-types.CommitzentMessages",
1292
+ "kind": "interface",
1293
+ "locationInModule": {
1294
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1295
+ "line": 10
1296
+ },
1297
+ "name": "CommitzentMessages",
1298
+ "properties": [
1299
+ {
1300
+ "abstract": true,
1301
+ "docs": {
1302
+ "stability": "stable"
1303
+ },
1304
+ "immutable": true,
1305
+ "locationInModule": {
1306
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1307
+ "line": 15
1308
+ },
1309
+ "name": "body",
1310
+ "type": {
1311
+ "primitive": "string"
1312
+ }
1313
+ },
1314
+ {
1315
+ "abstract": true,
1316
+ "docs": {
1317
+ "stability": "stable"
1318
+ },
1319
+ "immutable": true,
1320
+ "locationInModule": {
1321
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1322
+ "line": 16
1323
+ },
1324
+ "name": "breaking",
1325
+ "type": {
1326
+ "primitive": "string"
1327
+ }
1328
+ },
1329
+ {
1330
+ "abstract": true,
1331
+ "docs": {
1332
+ "stability": "stable"
1333
+ },
1334
+ "immutable": true,
1335
+ "locationInModule": {
1336
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1337
+ "line": 18
1338
+ },
1339
+ "name": "confirmCommit",
1340
+ "type": {
1341
+ "primitive": "string"
1342
+ }
1343
+ },
1344
+ {
1345
+ "abstract": true,
1346
+ "docs": {
1347
+ "stability": "stable"
1348
+ },
1349
+ "immutable": true,
1350
+ "locationInModule": {
1351
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1352
+ "line": 13
1353
+ },
1354
+ "name": "customScope",
1355
+ "type": {
1356
+ "primitive": "string"
1357
+ }
1358
+ },
1359
+ {
1360
+ "abstract": true,
1361
+ "docs": {
1362
+ "stability": "stable"
1363
+ },
1364
+ "immutable": true,
1365
+ "locationInModule": {
1366
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1367
+ "line": 17
1368
+ },
1369
+ "name": "footer",
1370
+ "type": {
1371
+ "primitive": "string"
1372
+ }
1373
+ },
1374
+ {
1375
+ "abstract": true,
1376
+ "docs": {
1377
+ "stability": "stable"
1378
+ },
1379
+ "immutable": true,
1380
+ "locationInModule": {
1381
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1382
+ "line": 12
1383
+ },
1384
+ "name": "scope",
1385
+ "type": {
1386
+ "primitive": "string"
1387
+ }
1388
+ },
1389
+ {
1390
+ "abstract": true,
1391
+ "docs": {
1392
+ "stability": "stable"
1393
+ },
1394
+ "immutable": true,
1395
+ "locationInModule": {
1396
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1397
+ "line": 14
1398
+ },
1399
+ "name": "subject",
1400
+ "type": {
1401
+ "primitive": "string"
1402
+ }
1403
+ },
1404
+ {
1405
+ "abstract": true,
1406
+ "docs": {
1407
+ "stability": "stable"
1408
+ },
1409
+ "immutable": true,
1410
+ "locationInModule": {
1411
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1412
+ "line": 11
1413
+ },
1414
+ "name": "type",
1415
+ "type": {
1416
+ "primitive": "string"
1417
+ }
1418
+ }
1419
+ ],
1420
+ "symbolId": "src/components/commitzent/interfaces/Icommitzent:CommitzentMessages"
1421
+ },
1422
+ "@jttc/projen-project-types.CommitzentScopes": {
1423
+ "assembly": "@jttc/projen-project-types",
1424
+ "datatype": true,
1425
+ "docs": {
1426
+ "stability": "stable"
1427
+ },
1428
+ "fqn": "@jttc/projen-project-types.CommitzentScopes",
1429
+ "kind": "interface",
1430
+ "locationInModule": {
1431
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1432
+ "line": 6
1433
+ },
1434
+ "name": "CommitzentScopes",
1435
+ "properties": [
1436
+ {
1437
+ "abstract": true,
1438
+ "docs": {
1439
+ "stability": "stable"
1440
+ },
1441
+ "immutable": true,
1442
+ "locationInModule": {
1443
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1444
+ "line": 7
1445
+ },
1446
+ "name": "name",
1447
+ "type": {
1448
+ "primitive": "string"
1449
+ }
1450
+ }
1451
+ ],
1452
+ "symbolId": "src/components/commitzent/interfaces/Icommitzent:CommitzentScopes"
1453
+ },
1454
+ "@jttc/projen-project-types.CommitzentTypes": {
1455
+ "assembly": "@jttc/projen-project-types",
1456
+ "datatype": true,
1457
+ "docs": {
1458
+ "stability": "stable"
1459
+ },
1460
+ "fqn": "@jttc/projen-project-types.CommitzentTypes",
1461
+ "kind": "interface",
1462
+ "locationInModule": {
1463
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1464
+ "line": 1
1465
+ },
1466
+ "name": "CommitzentTypes",
1467
+ "properties": [
1468
+ {
1469
+ "abstract": true,
1470
+ "docs": {
1471
+ "stability": "stable"
1472
+ },
1473
+ "immutable": true,
1474
+ "locationInModule": {
1475
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1476
+ "line": 3
1477
+ },
1478
+ "name": "name",
1479
+ "type": {
1480
+ "primitive": "string"
1481
+ }
1482
+ },
1483
+ {
1484
+ "abstract": true,
1485
+ "docs": {
1486
+ "stability": "stable"
1487
+ },
1488
+ "immutable": true,
1489
+ "locationInModule": {
1490
+ "filename": "src/components/commitzent/interfaces/Icommitzent.ts",
1491
+ "line": 2
1492
+ },
1493
+ "name": "value",
1494
+ "type": {
1495
+ "primitive": "string"
1496
+ }
1497
+ }
1498
+ ],
1499
+ "symbolId": "src/components/commitzent/interfaces/Icommitzent:CommitzentTypes"
1500
+ },
1501
+ "@jttc/projen-project-types.CommonOptionsConfig": {
1502
+ "assembly": "@jttc/projen-project-types",
1503
+ "docs": {
1504
+ "stability": "stable",
1505
+ "summary": "Utility class for configuring common project options with default values."
1506
+ },
1507
+ "fqn": "@jttc/projen-project-types.CommonOptionsConfig",
1508
+ "initializer": {
1509
+ "docs": {
1510
+ "stability": "stable"
1511
+ }
1512
+ },
1513
+ "kind": "class",
1514
+ "locationInModule": {
1515
+ "filename": "src/common/common-options.ts",
1516
+ "line": 23
1517
+ },
1518
+ "methods": [
1519
+ {
1520
+ "docs": {
1521
+ "stability": "stable",
1522
+ "summary": "Configures common components like VSCode settings and extensions If project has parent, configures VSCode in parent project instead of subproject Commitzent is only added to root projects (not subprojects) unless explicitly requested."
1523
+ },
1524
+ "locationInModule": {
1525
+ "filename": "src/common/common-options.ts",
1526
+ "line": 54
1527
+ },
1528
+ "name": "withCommonComponents",
1529
+ "parameters": [
1530
+ {
1531
+ "docs": {
1532
+ "summary": "- The project instance to configure."
1533
+ },
1534
+ "name": "project",
1535
+ "type": {
1536
+ "fqn": "projen.Project"
1537
+ }
1538
+ },
1539
+ {
1540
+ "docs": {
1541
+ "summary": "- Project options (any type that has vscode and commitzent properties)."
1542
+ },
1543
+ "name": "options",
1544
+ "type": {
1545
+ "fqn": "@jttc/projen-project-types.TypeScriptProjectWithGlobalOptions"
1546
+ }
1547
+ }
1548
+ ],
1549
+ "returns": {
1550
+ "type": {
1551
+ "fqn": "@jttc/projen-project-types.CommonsComponents"
1552
+ }
1553
+ },
1554
+ "static": true
1555
+ },
1556
+ {
1557
+ "docs": {
1558
+ "returns": "Final options with default values applied where no previous configuration existed",
1559
+ "stability": "stable",
1560
+ "summary": "Configures default options only if they are not already defined in the projen options Prettier and ESLint are only enabled for root projects (not subprojects)."
1561
+ },
1562
+ "locationInModule": {
1563
+ "filename": "src/common/common-options.ts",
1564
+ "line": 30
1565
+ },
1566
+ "name": "withCommonOptionsDefaults",
1567
+ "parameters": [
1568
+ {
1569
+ "docs": {
1570
+ "summary": "- Project options that may include existing configurations."
1571
+ },
1572
+ "name": "options",
1573
+ "type": {
1574
+ "fqn": "projen.typescript.TypeScriptProjectOptions"
1575
+ }
1576
+ }
1577
+ ],
1578
+ "returns": {
1579
+ "type": {
1580
+ "fqn": "projen.typescript.TypeScriptProjectOptions"
1581
+ }
1582
+ },
1583
+ "static": true
1584
+ }
1585
+ ],
1586
+ "name": "CommonOptionsConfig",
1587
+ "symbolId": "src/common/common-options:CommonOptionsConfig"
1588
+ },
1589
+ "@jttc/projen-project-types.CommonsComponents": {
1590
+ "assembly": "@jttc/projen-project-types",
1591
+ "datatype": true,
1592
+ "docs": {
1593
+ "stability": "stable"
1594
+ },
1595
+ "fqn": "@jttc/projen-project-types.CommonsComponents",
1596
+ "kind": "interface",
1597
+ "locationInModule": {
1598
+ "filename": "src/common/common-options.ts",
1599
+ "line": 16
1600
+ },
1601
+ "name": "CommonsComponents",
1602
+ "properties": [
1603
+ {
1604
+ "abstract": true,
1605
+ "docs": {
1606
+ "stability": "stable"
1607
+ },
1608
+ "immutable": true,
1609
+ "locationInModule": {
1610
+ "filename": "src/common/common-options.ts",
1611
+ "line": 17
1612
+ },
1613
+ "name": "agents",
1614
+ "optional": true,
1615
+ "type": {
1616
+ "fqn": "@jttc/projen-project-types.Agents"
1617
+ }
1618
+ },
1619
+ {
1620
+ "abstract": true,
1621
+ "docs": {
1622
+ "stability": "stable"
1623
+ },
1624
+ "immutable": true,
1625
+ "locationInModule": {
1626
+ "filename": "src/common/common-options.ts",
1627
+ "line": 18
1628
+ },
1629
+ "name": "commitzent",
1630
+ "optional": true,
1631
+ "type": {
1632
+ "fqn": "@jttc/projen-project-types.Commitzent"
1633
+ }
1634
+ }
1635
+ ],
1636
+ "symbolId": "src/common/common-options:CommonsComponents"
1637
+ },
1638
+ "@jttc/projen-project-types.HetznerPollFunction": {
1639
+ "assembly": "@jttc/projen-project-types",
1640
+ "docs": {
1641
+ "stability": "stable",
1642
+ "summary": "Poll function types for Hetzner Cloud provider."
1643
+ },
1644
+ "fqn": "@jttc/projen-project-types.HetznerPollFunction",
1645
+ "kind": "enum",
1646
+ "locationInModule": {
1647
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1648
+ "line": 9
1649
+ },
1650
+ "members": [
1651
+ {
1652
+ "docs": {
1653
+ "stability": "stable",
1654
+ "summary": "Constant polling interval."
1655
+ },
1656
+ "name": "CONSTANT"
1657
+ },
1658
+ {
1659
+ "docs": {
1660
+ "stability": "stable",
1661
+ "summary": "Exponential backoff polling."
1662
+ },
1663
+ "name": "EXPONENTIAL"
1664
+ }
1665
+ ],
1666
+ "name": "HetznerPollFunction",
1667
+ "symbolId": "src/terraform/providers/hetzner-provider:HetznerPollFunction"
1668
+ },
1669
+ "@jttc/projen-project-types.HetznerProvider": {
1670
+ "assembly": "@jttc/projen-project-types",
1671
+ "base": "@jttc/projen-project-types.TerraformProvider",
1672
+ "docs": {
1673
+ "stability": "stable",
1674
+ "summary": "Hetzner Cloud Terraform provider configuration."
1675
+ },
1676
+ "fqn": "@jttc/projen-project-types.HetznerProvider",
1677
+ "initializer": {
1678
+ "docs": {
1679
+ "stability": "stable"
1680
+ },
1681
+ "locationInModule": {
1682
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1683
+ "line": 113
1684
+ },
1685
+ "parameters": [
1686
+ {
1687
+ "name": "options",
1688
+ "type": {
1689
+ "fqn": "@jttc/projen-project-types.HetznerProviderOptions"
1690
+ }
1691
+ }
1692
+ ]
1693
+ },
1694
+ "kind": "class",
1695
+ "locationInModule": {
1696
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1697
+ "line": 110
1698
+ },
1699
+ "methods": [
1700
+ {
1701
+ "docs": {
1702
+ "stability": "stable",
1703
+ "summary": "Add a new provider configuration."
1704
+ },
1705
+ "locationInModule": {
1706
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1707
+ "line": 179
1708
+ },
1709
+ "name": "addProviderConfig",
1710
+ "parameters": [
1711
+ {
1712
+ "name": "config",
1713
+ "type": {
1714
+ "fqn": "@jttc/projen-project-types.HetznerProviderConfig"
1715
+ }
1716
+ }
1717
+ ]
1718
+ },
1719
+ {
1720
+ "docs": {
1721
+ "stability": "stable",
1722
+ "summary": "Generate the provider configuration block."
1723
+ },
1724
+ "locationInModule": {
1725
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1726
+ "line": 131
1727
+ },
1728
+ "name": "generateProviderBlock",
1729
+ "overrides": "@jttc/projen-project-types.TerraformProvider",
1730
+ "returns": {
1731
+ "type": {
1732
+ "collection": {
1733
+ "elementtype": {
1734
+ "primitive": "string"
1735
+ },
1736
+ "kind": "array"
1737
+ }
1738
+ }
1739
+ }
1740
+ },
1741
+ {
1742
+ "docs": {
1743
+ "stability": "stable",
1744
+ "summary": "Get the provider source (e.g., \"hashicorp/aws\")."
1745
+ },
1746
+ "locationInModule": {
1747
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1748
+ "line": 127
1749
+ },
1750
+ "name": "providerSource",
1751
+ "overrides": "@jttc/projen-project-types.TerraformProvider",
1752
+ "returns": {
1753
+ "type": {
1754
+ "primitive": "string"
1755
+ }
1756
+ }
1757
+ }
1758
+ ],
1759
+ "name": "HetznerProvider",
1760
+ "symbolId": "src/terraform/providers/hetzner-provider:HetznerProvider"
1761
+ },
1762
+ "@jttc/projen-project-types.HetznerProviderConfig": {
1763
+ "assembly": "@jttc/projen-project-types",
1764
+ "datatype": true,
1765
+ "docs": {
1766
+ "stability": "stable",
1767
+ "summary": "Configuration for a specific Hetzner Cloud provider instance."
1768
+ },
1769
+ "fqn": "@jttc/projen-project-types.HetznerProviderConfig",
1770
+ "kind": "interface",
1771
+ "locationInModule": {
1772
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1773
+ "line": 24
1774
+ },
1775
+ "name": "HetznerProviderConfig",
1776
+ "properties": [
1777
+ {
1778
+ "abstract": true,
1779
+ "docs": {
1780
+ "stability": "stable",
1781
+ "summary": "Provider alias for multiple configurations."
1782
+ },
1783
+ "immutable": true,
1784
+ "locationInModule": {
1785
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1786
+ "line": 28
1787
+ },
1788
+ "name": "alias",
1789
+ "optional": true,
1790
+ "type": {
1791
+ "primitive": "string"
1792
+ }
1793
+ },
1794
+ {
1795
+ "abstract": true,
1796
+ "docs": {
1797
+ "default": "\"https://api.hetzner.cloud/v1\"",
1798
+ "stability": "stable",
1799
+ "summary": "Hetzner Cloud API endpoint."
1800
+ },
1801
+ "immutable": true,
1802
+ "locationInModule": {
1803
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1804
+ "line": 49
1805
+ },
1806
+ "name": "endpoint",
1807
+ "optional": true,
1808
+ "type": {
1809
+ "primitive": "string"
1810
+ }
1811
+ },
1812
+ {
1813
+ "abstract": true,
1814
+ "docs": {
1815
+ "default": "\"https://api.hetzner.com/v1\"",
1816
+ "stability": "stable",
1817
+ "summary": "Hetzner API endpoint (for Hetzner services, not Hetzner Cloud)."
1818
+ },
1819
+ "immutable": true,
1820
+ "locationInModule": {
1821
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1822
+ "line": 55
1823
+ },
1824
+ "name": "endpointHetzner",
1825
+ "optional": true,
1826
+ "type": {
1827
+ "primitive": "string"
1828
+ }
1829
+ },
1830
+ {
1831
+ "abstract": true,
1832
+ "docs": {
1833
+ "default": "\"exponential\"",
1834
+ "stability": "stable",
1835
+ "summary": "Configures the type of function to be used during polling."
1836
+ },
1837
+ "immutable": true,
1838
+ "locationInModule": {
1839
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1840
+ "line": 68
1841
+ },
1842
+ "name": "pollFunction",
1843
+ "optional": true,
1844
+ "type": {
1845
+ "fqn": "@jttc/projen-project-types.HetznerPollFunction"
1846
+ }
1847
+ },
1848
+ {
1849
+ "abstract": true,
1850
+ "docs": {
1851
+ "default": "\"500ms\"",
1852
+ "example": "\"1s\", \"2000ms\"",
1853
+ "stability": "stable",
1854
+ "summary": "Configures the interval in which actions are polled by the client."
1855
+ },
1856
+ "immutable": true,
1857
+ "locationInModule": {
1858
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1859
+ "line": 62
1860
+ },
1861
+ "name": "pollInterval",
1862
+ "optional": true,
1863
+ "type": {
1864
+ "primitive": "string"
1865
+ }
1866
+ },
1867
+ {
1868
+ "abstract": true,
1869
+ "docs": {
1870
+ "remarks": "Required unless useEnvironmentToken is true or set via environment variable.",
1871
+ "stability": "stable",
1872
+ "summary": "Hetzner Cloud API token (can be set via HCLOUD_TOKEN env var)."
1873
+ },
1874
+ "immutable": true,
1875
+ "locationInModule": {
1876
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1877
+ "line": 34
1878
+ },
1879
+ "name": "token",
1880
+ "optional": true,
1881
+ "type": {
1882
+ "primitive": "string"
1883
+ }
1884
+ },
1885
+ {
1886
+ "abstract": true,
1887
+ "docs": {
1888
+ "default": "true",
1889
+ "remarks": "When true, the token will be read from HCLOUD_TOKEN environment variable\nand no explicit token configuration will be generated in the provider block.\nThis is useful for CI/CD pipelines and different environments.",
1890
+ "stability": "stable",
1891
+ "summary": "Use HCLOUD_TOKEN environment variable for authentication."
1892
+ },
1893
+ "immutable": true,
1894
+ "locationInModule": {
1895
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1896
+ "line": 43
1897
+ },
1898
+ "name": "useEnvironmentToken",
1899
+ "optional": true,
1900
+ "type": {
1901
+ "primitive": "boolean"
1902
+ }
1903
+ }
1904
+ ],
1905
+ "symbolId": "src/terraform/providers/hetzner-provider:HetznerProviderConfig"
1906
+ },
1907
+ "@jttc/projen-project-types.HetznerProviderOptions": {
1908
+ "assembly": "@jttc/projen-project-types",
1909
+ "datatype": true,
1910
+ "docs": {
1911
+ "stability": "stable",
1912
+ "summary": "Options for Hetzner Terraform provider."
1913
+ },
1914
+ "fqn": "@jttc/projen-project-types.HetznerProviderOptions",
1915
+ "interfaces": [
1916
+ "@jttc/projen-project-types.TerraformProviderOptions"
1917
+ ],
1918
+ "kind": "interface",
1919
+ "locationInModule": {
1920
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1921
+ "line": 74
1922
+ },
1923
+ "name": "HetznerProviderOptions",
1924
+ "properties": [
1925
+ {
1926
+ "abstract": true,
1927
+ "docs": {
1928
+ "example": "// Simple case - uses default configuration with HCLOUD_TOKEN env var\nnew HetznerProvider({\n version: '~> 1.45'\n})\n\n// Multiple configurations\nnew HetznerProvider({\n version: '~> 1.45',\n providers: [\n {\n alias: 'dns',\n token: 'dns-project-token',\n useEnvironmentToken: false\n },\n {\n alias: 'staging',\n useEnvironmentToken: true\n }\n ]\n})",
1929
+ "remarks": "If empty or not provided, a default configuration will be created\nwith useEnvironmentToken: true and no alias.",
1930
+ "stability": "stable",
1931
+ "summary": "Array of provider configurations for multiple instances/projects. Each configuration can have its own alias, token, and settings."
1932
+ },
1933
+ "immutable": true,
1934
+ "locationInModule": {
1935
+ "filename": "src/terraform/providers/hetzner-provider.ts",
1936
+ "line": 104
1937
+ },
1938
+ "name": "providers",
1939
+ "optional": true,
1940
+ "type": {
1941
+ "collection": {
1942
+ "elementtype": {
1943
+ "fqn": "@jttc/projen-project-types.HetznerProviderConfig"
1944
+ },
1945
+ "kind": "array"
1946
+ }
1947
+ }
1948
+ }
1949
+ ],
1950
+ "symbolId": "src/terraform/providers/hetzner-provider:HetznerProviderOptions"
1951
+ },
1952
+ "@jttc/projen-project-types.K3d": {
1953
+ "assembly": "@jttc/projen-project-types",
1954
+ "base": "projen.Component",
1955
+ "docs": {
1956
+ "stability": "stable"
1957
+ },
1958
+ "fqn": "@jttc/projen-project-types.K3d",
1959
+ "initializer": {
1960
+ "docs": {
1961
+ "stability": "stable"
1962
+ },
1963
+ "locationInModule": {
1964
+ "filename": "src/components/k3d/k3d.ts",
1965
+ "line": 36
1966
+ },
1967
+ "parameters": [
1968
+ {
1969
+ "name": "project",
1970
+ "type": {
1971
+ "fqn": "projen.Project"
1972
+ }
1973
+ },
1974
+ {
1975
+ "name": "id",
1976
+ "type": {
1977
+ "primitive": "string"
1978
+ }
1979
+ },
1980
+ {
1981
+ "name": "props",
1982
+ "optional": true,
1983
+ "type": {
1984
+ "fqn": "@jttc/projen-project-types.K3dOptions"
1985
+ }
1986
+ }
1987
+ ]
1988
+ },
1989
+ "kind": "class",
1990
+ "locationInModule": {
1991
+ "filename": "src/components/k3d/k3d.ts",
1992
+ "line": 31
1993
+ },
1994
+ "name": "K3d",
1995
+ "symbolId": "src/components/k3d/k3d:K3d"
1996
+ },
1997
+ "@jttc/projen-project-types.K3dBase": {
1998
+ "assembly": "@jttc/projen-project-types",
1999
+ "base": "projen.Component",
2000
+ "docs": {
2001
+ "stability": "stable"
2002
+ },
2003
+ "fqn": "@jttc/projen-project-types.K3dBase",
2004
+ "initializer": {
2005
+ "docs": {
2006
+ "stability": "stable"
2007
+ },
2008
+ "locationInModule": {
2009
+ "filename": "src/components/k3d/k3dBase.ts",
2010
+ "line": 5
2011
+ },
2012
+ "parameters": [
2013
+ {
2014
+ "name": "project",
2015
+ "type": {
2016
+ "fqn": "projen.Project"
2017
+ }
2018
+ },
2019
+ {
2020
+ "name": "id",
2021
+ "type": {
2022
+ "primitive": "string"
2023
+ }
2024
+ }
2025
+ ]
2026
+ },
2027
+ "kind": "class",
2028
+ "locationInModule": {
2029
+ "filename": "src/components/k3d/k3dBase.ts",
2030
+ "line": 4
2031
+ },
2032
+ "name": "K3dBase",
2033
+ "symbolId": "src/components/k3d/k3dBase:K3dBase"
2034
+ },
2035
+ "@jttc/projen-project-types.K3dConfig": {
2036
+ "assembly": "@jttc/projen-project-types",
2037
+ "datatype": true,
2038
+ "docs": {
2039
+ "stability": "stable"
2040
+ },
2041
+ "fqn": "@jttc/projen-project-types.K3dConfig",
2042
+ "kind": "interface",
2043
+ "locationInModule": {
2044
+ "filename": "src/components/k3d/types.ts",
2045
+ "line": 37
2046
+ },
2047
+ "name": "K3dConfig",
2048
+ "properties": [
2049
+ {
2050
+ "abstract": true,
2051
+ "docs": {
2052
+ "stability": "stable"
2053
+ },
2054
+ "immutable": true,
2055
+ "locationInModule": {
2056
+ "filename": "src/components/k3d/types.ts",
2057
+ "line": 69
2058
+ },
2059
+ "name": "agents",
2060
+ "optional": true,
2061
+ "type": {
2062
+ "primitive": "number"
2063
+ }
2064
+ },
2065
+ {
2066
+ "abstract": true,
2067
+ "docs": {
2068
+ "stability": "stable"
2069
+ },
2070
+ "immutable": true,
2071
+ "locationInModule": {
2072
+ "filename": "src/components/k3d/types.ts",
2073
+ "line": 65
2074
+ },
2075
+ "name": "apiVersion",
2076
+ "optional": true,
2077
+ "type": {
2078
+ "fqn": "@jttc/projen-project-types.ApiVersion"
2079
+ }
2080
+ },
2081
+ {
2082
+ "abstract": true,
2083
+ "docs": {
2084
+ "stability": "stable"
2085
+ },
2086
+ "immutable": true,
2087
+ "locationInModule": {
2088
+ "filename": "src/components/k3d/types.ts",
2089
+ "line": 48
2090
+ },
2091
+ "name": "disableImageVolume",
2092
+ "optional": true,
2093
+ "type": {
2094
+ "primitive": "boolean"
2095
+ }
2096
+ },
2097
+ {
2098
+ "abstract": true,
2099
+ "docs": {
2100
+ "stability": "stable"
2101
+ },
2102
+ "immutable": true,
2103
+ "locationInModule": {
2104
+ "filename": "src/components/k3d/types.ts",
2105
+ "line": 47
2106
+ },
2107
+ "name": "disableLoadbalancer",
2108
+ "optional": true,
2109
+ "type": {
2110
+ "primitive": "boolean"
2111
+ }
2112
+ },
2113
+ {
2114
+ "abstract": true,
2115
+ "docs": {
2116
+ "stability": "stable"
2117
+ },
2118
+ "immutable": true,
2119
+ "locationInModule": {
2120
+ "filename": "src/components/k3d/types.ts",
2121
+ "line": 49
2122
+ },
2123
+ "name": "disableRollback",
2124
+ "optional": true,
2125
+ "type": {
2126
+ "primitive": "boolean"
2127
+ }
2128
+ },
2129
+ {
2130
+ "abstract": true,
2131
+ "docs": {
2132
+ "stability": "stable"
2133
+ },
2134
+ "immutable": true,
2135
+ "locationInModule": {
2136
+ "filename": "src/components/k3d/types.ts",
2137
+ "line": 70
2138
+ },
2139
+ "name": "image",
2140
+ "optional": true,
2141
+ "type": {
2142
+ "primitive": "string"
2143
+ }
2144
+ },
2145
+ {
2146
+ "abstract": true,
2147
+ "docs": {
2148
+ "stability": "stable"
2149
+ },
2150
+ "immutable": true,
2151
+ "locationInModule": {
2152
+ "filename": "src/components/k3d/types.ts",
2153
+ "line": 66
2154
+ },
2155
+ "name": "kind",
2156
+ "optional": true,
2157
+ "type": {
2158
+ "primitive": "string"
2159
+ }
2160
+ },
2161
+ {
2162
+ "abstract": true,
2163
+ "docs": {
2164
+ "stability": "stable"
2165
+ },
2166
+ "immutable": true,
2167
+ "locationInModule": {
2168
+ "filename": "src/components/k3d/types.ts",
2169
+ "line": 72
2170
+ },
2171
+ "name": "kubeAPI",
2172
+ "optional": true,
2173
+ "type": {
2174
+ "fqn": "@jttc/projen-project-types.KubeAPI"
2175
+ }
2176
+ },
2177
+ {
2178
+ "abstract": true,
2179
+ "docs": {
2180
+ "stability": "stable"
2181
+ },
2182
+ "immutable": true,
2183
+ "locationInModule": {
2184
+ "filename": "src/components/k3d/types.ts",
2185
+ "line": 50
2186
+ },
2187
+ "name": "loadbalancer",
2188
+ "optional": true,
2189
+ "type": {
2190
+ "fqn": "@jttc/projen-project-types.LoadbalancerConfig"
2191
+ }
2192
+ },
2193
+ {
2194
+ "abstract": true,
2195
+ "docs": {
2196
+ "stability": "stable"
2197
+ },
2198
+ "immutable": true,
2199
+ "locationInModule": {
2200
+ "filename": "src/components/k3d/types.ts",
2201
+ "line": 67
2202
+ },
2203
+ "name": "metadata",
2204
+ "optional": true,
2205
+ "type": {
2206
+ "fqn": "@jttc/projen-project-types.Metadata"
2207
+ }
2208
+ },
2209
+ {
2210
+ "abstract": true,
2211
+ "docs": {
2212
+ "stability": "stable"
2213
+ },
2214
+ "immutable": true,
2215
+ "locationInModule": {
2216
+ "filename": "src/components/k3d/types.ts",
2217
+ "line": 71
2218
+ },
2219
+ "name": "network",
2220
+ "optional": true,
2221
+ "type": {
2222
+ "primitive": "string"
2223
+ }
2224
+ },
2225
+ {
2226
+ "abstract": true,
2227
+ "docs": {
2228
+ "stability": "stable"
2229
+ },
2230
+ "immutable": true,
2231
+ "locationInModule": {
2232
+ "filename": "src/components/k3d/types.ts",
2233
+ "line": 75
2234
+ },
2235
+ "name": "options",
2236
+ "optional": true,
2237
+ "type": {
2238
+ "fqn": "@jttc/projen-project-types.K3dOptions"
2239
+ }
2240
+ },
2241
+ {
2242
+ "abstract": true,
2243
+ "docs": {
2244
+ "stability": "stable"
2245
+ },
2246
+ "immutable": true,
2247
+ "locationInModule": {
2248
+ "filename": "src/components/k3d/types.ts",
2249
+ "line": 74
2250
+ },
2251
+ "name": "ports",
2252
+ "optional": true,
2253
+ "type": {
2254
+ "collection": {
2255
+ "elementtype": {
2256
+ "fqn": "@jttc/projen-project-types.PortConfig"
2257
+ },
2258
+ "kind": "array"
2259
+ }
2260
+ }
2261
+ },
2262
+ {
2263
+ "abstract": true,
2264
+ "docs": {
2265
+ "stability": "stable"
2266
+ },
2267
+ "immutable": true,
2268
+ "locationInModule": {
2269
+ "filename": "src/components/k3d/types.ts",
2270
+ "line": 68
2271
+ },
2272
+ "name": "servers",
2273
+ "optional": true,
2274
+ "type": {
2275
+ "primitive": "number"
2276
+ }
2277
+ },
2278
+ {
2279
+ "abstract": true,
2280
+ "docs": {
2281
+ "remarks": "same as `--timeout 60s`",
2282
+ "stability": "stable",
2283
+ "summary": "wait timeout before aborting;"
2284
+ },
2285
+ "immutable": true,
2286
+ "locationInModule": {
2287
+ "filename": "src/components/k3d/types.ts",
2288
+ "line": 46
2289
+ },
2290
+ "name": "timeout",
2291
+ "optional": true,
2292
+ "type": {
2293
+ "primitive": "string"
2294
+ }
2295
+ },
2296
+ {
2297
+ "abstract": true,
2298
+ "docs": {
2299
+ "stability": "stable"
2300
+ },
2301
+ "immutable": true,
2302
+ "locationInModule": {
2303
+ "filename": "src/components/k3d/types.ts",
2304
+ "line": 73
2305
+ },
2306
+ "name": "volumes",
2307
+ "optional": true,
2308
+ "type": {
2309
+ "collection": {
2310
+ "elementtype": {
2311
+ "fqn": "@jttc/projen-project-types.Volume"
2312
+ },
2313
+ "kind": "array"
2314
+ }
2315
+ }
2316
+ },
2317
+ {
2318
+ "abstract": true,
2319
+ "docs": {
2320
+ "remarks": "same as `--wait` (default: true)",
2321
+ "stability": "stable",
2322
+ "summary": "wait for cluster to be usable before returning;"
2323
+ },
2324
+ "immutable": true,
2325
+ "locationInModule": {
2326
+ "filename": "src/components/k3d/types.ts",
2327
+ "line": 41
2328
+ },
2329
+ "name": "wait",
2330
+ "optional": true,
2331
+ "type": {
2332
+ "primitive": "boolean"
2333
+ }
2334
+ }
2335
+ ],
2336
+ "symbolId": "src/components/k3d/types:K3dConfig"
2337
+ },
2338
+ "@jttc/projen-project-types.K3dOptions": {
2339
+ "assembly": "@jttc/projen-project-types",
2340
+ "datatype": true,
2341
+ "docs": {
2342
+ "stability": "stable"
2343
+ },
2344
+ "fqn": "@jttc/projen-project-types.K3dOptions",
2345
+ "kind": "interface",
2346
+ "locationInModule": {
2347
+ "filename": "src/components/k3d/types.ts",
2348
+ "line": 53
2349
+ },
2350
+ "name": "K3dOptions",
2351
+ "properties": [
2352
+ {
2353
+ "abstract": true,
2354
+ "docs": {
2355
+ "stability": "stable"
2356
+ },
2357
+ "immutable": true,
2358
+ "locationInModule": {
2359
+ "filename": "src/components/k3d/types.ts",
2360
+ "line": 54
2361
+ },
2362
+ "name": "k3d",
2363
+ "optional": true,
2364
+ "type": {
2365
+ "fqn": "@jttc/projen-project-types.K3dConfig"
2366
+ }
2367
+ },
2368
+ {
2369
+ "abstract": true,
2370
+ "docs": {
2371
+ "stability": "stable"
2372
+ },
2373
+ "immutable": true,
2374
+ "locationInModule": {
2375
+ "filename": "src/components/k3d/types.ts",
2376
+ "line": 55
2377
+ },
2378
+ "name": "k3s",
2379
+ "optional": true,
2380
+ "type": {
2381
+ "fqn": "@jttc/projen-project-types.K3s"
2382
+ }
2383
+ },
2384
+ {
2385
+ "abstract": true,
2386
+ "docs": {
2387
+ "stability": "stable"
2388
+ },
2389
+ "immutable": true,
2390
+ "locationInModule": {
2391
+ "filename": "src/components/k3d/types.ts",
2392
+ "line": 56
2393
+ },
2394
+ "name": "kubeconfig",
2395
+ "optional": true,
2396
+ "type": {
2397
+ "fqn": "@jttc/projen-project-types.Kubeconfig"
2398
+ }
2399
+ }
2400
+ ],
2401
+ "symbolId": "src/components/k3d/types:K3dOptions"
2402
+ },
2403
+ "@jttc/projen-project-types.K3dProps": {
2404
+ "assembly": "@jttc/projen-project-types",
2405
+ "datatype": true,
2406
+ "docs": {
2407
+ "stability": "stable"
2408
+ },
2409
+ "fqn": "@jttc/projen-project-types.K3dProps",
2410
+ "kind": "interface",
2411
+ "locationInModule": {
2412
+ "filename": "src/components/k3d/k3d.ts",
2413
+ "line": 4
2414
+ },
2415
+ "name": "K3dProps",
2416
+ "properties": [
2417
+ {
2418
+ "abstract": true,
2419
+ "docs": {
2420
+ "stability": "stable"
2421
+ },
2422
+ "immutable": true,
2423
+ "locationInModule": {
2424
+ "filename": "src/components/k3d/k3d.ts",
2425
+ "line": 5
2426
+ },
2427
+ "name": "name",
2428
+ "type": {
2429
+ "primitive": "string"
2430
+ }
2431
+ },
2432
+ {
2433
+ "abstract": true,
2434
+ "docs": {
2435
+ "default": "0",
2436
+ "stability": "stable",
2437
+ "summary": "Number of worker nodes."
2438
+ },
2439
+ "immutable": true,
2440
+ "locationInModule": {
2441
+ "filename": "src/components/k3d/k3d.ts",
2442
+ "line": 16
2443
+ },
2444
+ "name": "agents",
2445
+ "optional": true,
2446
+ "type": {
2447
+ "primitive": "number"
2448
+ }
2449
+ },
2450
+ {
2451
+ "abstract": true,
2452
+ "docs": {
2453
+ "stability": "stable"
2454
+ },
2455
+ "immutable": true,
2456
+ "locationInModule": {
2457
+ "filename": "src/components/k3d/k3d.ts",
2458
+ "line": 17
2459
+ },
2460
+ "name": "k3sExtraArgs",
2461
+ "optional": true,
2462
+ "type": {
2463
+ "collection": {
2464
+ "elementtype": {
2465
+ "fqn": "@jttc/projen-project-types.ArgConfig"
2466
+ },
2467
+ "kind": "array"
2468
+ }
2469
+ }
2470
+ },
2471
+ {
2472
+ "abstract": true,
2473
+ "docs": {
2474
+ "stability": "stable"
2475
+ },
2476
+ "immutable": true,
2477
+ "locationInModule": {
2478
+ "filename": "src/components/k3d/k3d.ts",
2479
+ "line": 18
2480
+ },
2481
+ "name": "loadBalancerPort",
2482
+ "optional": true,
2483
+ "type": {
2484
+ "primitive": "number"
2485
+ }
2486
+ },
2487
+ {
2488
+ "abstract": true,
2489
+ "docs": {
2490
+ "default": "aws",
2491
+ "stability": "stable",
2492
+ "summary": "Name of the docker network."
2493
+ },
2494
+ "immutable": true,
2495
+ "locationInModule": {
2496
+ "filename": "src/components/k3d/k3d.ts",
2497
+ "line": 28
2498
+ },
2499
+ "name": "network",
2500
+ "optional": true,
2501
+ "type": {
2502
+ "primitive": "string"
2503
+ }
2504
+ },
2505
+ {
2506
+ "abstract": true,
2507
+ "docs": {
2508
+ "default": "3",
2509
+ "stability": "stable",
2510
+ "summary": "Control Plane number of servers."
2511
+ },
2512
+ "immutable": true,
2513
+ "locationInModule": {
2514
+ "filename": "src/components/k3d/k3d.ts",
2515
+ "line": 10
2516
+ },
2517
+ "name": "servers",
2518
+ "optional": true,
2519
+ "type": {
2520
+ "primitive": "number"
2521
+ }
2522
+ },
2523
+ {
2524
+ "abstract": true,
2525
+ "docs": {
2526
+ "default": "true",
2527
+ "stability": "stable"
2528
+ },
2529
+ "immutable": true,
2530
+ "locationInModule": {
2531
+ "filename": "src/components/k3d/k3d.ts",
2532
+ "line": 22
2533
+ },
2534
+ "name": "updateDefaultKubeconfig",
2535
+ "optional": true,
2536
+ "type": {
2537
+ "primitive": "boolean"
2538
+ }
2539
+ }
2540
+ ],
2541
+ "symbolId": "src/components/k3d/k3d:K3dProps"
2542
+ },
2543
+ "@jttc/projen-project-types.K3s": {
2544
+ "assembly": "@jttc/projen-project-types",
2545
+ "datatype": true,
2546
+ "docs": {
2547
+ "stability": "stable"
2548
+ },
2549
+ "fqn": "@jttc/projen-project-types.K3s",
2550
+ "kind": "interface",
2551
+ "locationInModule": {
2552
+ "filename": "src/components/k3d/types.ts",
2553
+ "line": 25
2554
+ },
2555
+ "name": "K3s",
2556
+ "properties": [
2557
+ {
2558
+ "abstract": true,
2559
+ "docs": {
2560
+ "stability": "stable"
2561
+ },
2562
+ "immutable": true,
2563
+ "locationInModule": {
2564
+ "filename": "src/components/k3d/types.ts",
2565
+ "line": 26
2566
+ },
2567
+ "name": "extraArgs",
2568
+ "type": {
2569
+ "collection": {
2570
+ "elementtype": {
2571
+ "fqn": "@jttc/projen-project-types.ArgConfig"
2572
+ },
2573
+ "kind": "array"
2574
+ }
2575
+ }
2576
+ }
2577
+ ],
2578
+ "symbolId": "src/components/k3d/types:K3s"
2579
+ },
2580
+ "@jttc/projen-project-types.K8sVersion": {
2581
+ "assembly": "@jttc/projen-project-types",
2582
+ "docs": {
2583
+ "stability": "stable"
2584
+ },
2585
+ "fqn": "@jttc/projen-project-types.K8sVersion",
2586
+ "kind": "enum",
2587
+ "locationInModule": {
2588
+ "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
2589
+ "line": 1
2590
+ },
2591
+ "members": [
2592
+ {
2593
+ "docs": {
2594
+ "stability": "stable"
2595
+ },
2596
+ "name": "V1_29"
2597
+ },
2598
+ {
2599
+ "docs": {
2600
+ "stability": "stable"
2601
+ },
2602
+ "name": "V1_30"
2603
+ },
2604
+ {
2605
+ "docs": {
2606
+ "stability": "stable"
2607
+ },
2608
+ "name": "V1_31"
2609
+ },
2610
+ {
2611
+ "docs": {
2612
+ "stability": "stable"
2613
+ },
2614
+ "name": "V1_32"
2615
+ },
2616
+ {
2617
+ "docs": {
2618
+ "stability": "stable"
2619
+ },
2620
+ "name": "V1_33"
2621
+ }
2622
+ ],
2623
+ "name": "K8sVersion",
2624
+ "symbolId": "src/components/cdk8s/interfaces/Cdk8s:K8sVersion"
2625
+ },
2626
+ "@jttc/projen-project-types.KubeAPI": {
2627
+ "assembly": "@jttc/projen-project-types",
2628
+ "datatype": true,
2629
+ "docs": {
2630
+ "stability": "stable"
2631
+ },
2632
+ "fqn": "@jttc/projen-project-types.KubeAPI",
2633
+ "kind": "interface",
2634
+ "locationInModule": {
2635
+ "filename": "src/components/k3d/types.ts",
2636
+ "line": 9
2637
+ },
2638
+ "name": "KubeAPI",
2639
+ "properties": [
2640
+ {
2641
+ "abstract": true,
2642
+ "docs": {
2643
+ "stability": "stable"
2644
+ },
2645
+ "immutable": true,
2646
+ "locationInModule": {
2647
+ "filename": "src/components/k3d/types.ts",
2648
+ "line": 10
2649
+ },
2650
+ "name": "host",
2651
+ "type": {
2652
+ "primitive": "string"
2653
+ }
2654
+ },
2655
+ {
2656
+ "abstract": true,
2657
+ "docs": {
2658
+ "stability": "stable"
2659
+ },
2660
+ "immutable": true,
2661
+ "locationInModule": {
2662
+ "filename": "src/components/k3d/types.ts",
2663
+ "line": 11
2664
+ },
2665
+ "name": "hostIP",
2666
+ "type": {
2667
+ "primitive": "string"
2668
+ }
2669
+ },
2670
+ {
2671
+ "abstract": true,
2672
+ "docs": {
2673
+ "stability": "stable"
2674
+ },
2675
+ "immutable": true,
2676
+ "locationInModule": {
2677
+ "filename": "src/components/k3d/types.ts",
2678
+ "line": 12
2679
+ },
2680
+ "name": "hostPort",
2681
+ "type": {
2682
+ "primitive": "string"
2683
+ }
2684
+ }
2685
+ ],
2686
+ "symbolId": "src/components/k3d/types:KubeAPI"
2687
+ },
2688
+ "@jttc/projen-project-types.Kubeconfig": {
2689
+ "assembly": "@jttc/projen-project-types",
2690
+ "datatype": true,
2691
+ "docs": {
2692
+ "stability": "stable"
2693
+ },
2694
+ "fqn": "@jttc/projen-project-types.Kubeconfig",
2695
+ "kind": "interface",
2696
+ "locationInModule": {
2697
+ "filename": "src/components/k3d/types.ts",
2698
+ "line": 29
2699
+ },
2700
+ "name": "Kubeconfig",
2701
+ "properties": [
2702
+ {
2703
+ "abstract": true,
2704
+ "docs": {
2705
+ "stability": "stable"
2706
+ },
2707
+ "immutable": true,
2708
+ "locationInModule": {
2709
+ "filename": "src/components/k3d/types.ts",
2710
+ "line": 30
2711
+ },
2712
+ "name": "updateDefaultKubeconfig",
2713
+ "type": {
2714
+ "primitive": "boolean"
2715
+ }
2716
+ }
2717
+ ],
2718
+ "symbolId": "src/components/k3d/types:Kubeconfig"
2719
+ },
2720
+ "@jttc/projen-project-types.LoadbalancerConfig": {
2721
+ "assembly": "@jttc/projen-project-types",
2722
+ "datatype": true,
2723
+ "docs": {
2724
+ "stability": "stable"
2725
+ },
2726
+ "fqn": "@jttc/projen-project-types.LoadbalancerConfig",
2727
+ "kind": "interface",
2728
+ "locationInModule": {
2729
+ "filename": "src/components/k3d/types.ts",
2730
+ "line": 33
2731
+ },
2732
+ "name": "LoadbalancerConfig",
2733
+ "properties": [
2734
+ {
2735
+ "abstract": true,
2736
+ "docs": {
2737
+ "stability": "stable"
2738
+ },
2739
+ "immutable": true,
2740
+ "locationInModule": {
2741
+ "filename": "src/components/k3d/types.ts",
2742
+ "line": 34
2743
+ },
2744
+ "name": "configOverrides",
2745
+ "type": {
2746
+ "collection": {
2747
+ "elementtype": {
2748
+ "primitive": "string"
2749
+ },
2750
+ "kind": "array"
2751
+ }
2752
+ }
2753
+ }
2754
+ ],
2755
+ "symbolId": "src/components/k3d/types:LoadbalancerConfig"
2756
+ },
2757
+ "@jttc/projen-project-types.Metadata": {
2758
+ "assembly": "@jttc/projen-project-types",
2759
+ "datatype": true,
2760
+ "docs": {
2761
+ "stability": "stable"
2762
+ },
2763
+ "fqn": "@jttc/projen-project-types.Metadata",
2764
+ "kind": "interface",
2765
+ "locationInModule": {
2766
+ "filename": "src/components/k3d/types.ts",
2767
+ "line": 5
2768
+ },
2769
+ "name": "Metadata",
2770
+ "properties": [
2771
+ {
2772
+ "abstract": true,
2773
+ "docs": {
2774
+ "stability": "stable"
2775
+ },
2776
+ "immutable": true,
2777
+ "locationInModule": {
2778
+ "filename": "src/components/k3d/types.ts",
2779
+ "line": 6
2780
+ },
2781
+ "name": "name",
2782
+ "type": {
2783
+ "primitive": "string"
2784
+ }
2785
+ }
2786
+ ],
2787
+ "symbolId": "src/components/k3d/types:Metadata"
2788
+ },
2789
+ "@jttc/projen-project-types.NxConfiguration": {
2790
+ "assembly": "@jttc/projen-project-types",
2791
+ "datatype": true,
2792
+ "docs": {
2793
+ "stability": "stable"
2794
+ },
2795
+ "fqn": "@jttc/projen-project-types.NxConfiguration",
2796
+ "kind": "interface",
2797
+ "locationInModule": {
2798
+ "filename": "src/monorepo/interfaces/Nx.ts",
2799
+ "line": 139
2800
+ },
2801
+ "name": "NxConfiguration",
2802
+ "properties": [
2803
+ {
2804
+ "abstract": true,
2805
+ "docs": {
2806
+ "stability": "stable",
2807
+ "summary": "Default options for `nx affected`."
2808
+ },
2809
+ "immutable": true,
2810
+ "locationInModule": {
2811
+ "filename": "src/monorepo/interfaces/Nx.ts",
2812
+ "line": 148
2813
+ },
2814
+ "name": "affected",
2815
+ "type": {
2816
+ "fqn": "@jttc/projen-project-types.Affected"
2817
+ }
2818
+ },
2819
+ {
2820
+ "abstract": true,
2821
+ "docs": {
2822
+ "stability": "stable",
2823
+ "summary": "Named inputs used by inputs defined in targets."
2824
+ },
2825
+ "immutable": true,
2826
+ "locationInModule": {
2827
+ "filename": "src/monorepo/interfaces/Nx.ts",
2828
+ "line": 153
2829
+ },
2830
+ "name": "namedInput",
2831
+ "type": {
2832
+ "collection": {
2833
+ "elementtype": {
2834
+ "collection": {
2835
+ "elementtype": {
2836
+ "primitive": "string"
2837
+ },
2838
+ "kind": "array"
2839
+ }
2840
+ },
2841
+ "kind": "map"
2842
+ }
2843
+ }
2844
+ },
2845
+ {
2846
+ "abstract": true,
2847
+ "docs": {
2848
+ "default": "nx/presets/npm.json",
2849
+ "stability": "stable",
2850
+ "summary": "Specifies the base config to exten."
2851
+ },
2852
+ "immutable": true,
2853
+ "locationInModule": {
2854
+ "filename": "src/monorepo/interfaces/Nx.ts",
2855
+ "line": 144
2856
+ },
2857
+ "name": "extends",
2858
+ "optional": true,
2859
+ "type": {
2860
+ "primitive": "string"
2861
+ }
2862
+ },
2863
+ {
2864
+ "abstract": true,
2865
+ "docs": {
2866
+ "stability": "stable"
2867
+ },
2868
+ "immutable": true,
2869
+ "locationInModule": {
2870
+ "filename": "src/monorepo/interfaces/Nx.ts",
2871
+ "line": 155
2872
+ },
2873
+ "name": "release",
2874
+ "optional": true,
2875
+ "type": {
2876
+ "fqn": "@jttc/projen-project-types.NxRelease"
2877
+ }
2878
+ }
2879
+ ],
2880
+ "symbolId": "src/monorepo/interfaces/Nx:NxConfiguration"
2881
+ },
2882
+ "@jttc/projen-project-types.NxConfigurations": {
2883
+ "assembly": "@jttc/projen-project-types",
2884
+ "base": "projen.Component",
2885
+ "docs": {
2886
+ "stability": "stable"
2887
+ },
2888
+ "fqn": "@jttc/projen-project-types.NxConfigurations",
2889
+ "initializer": {
2890
+ "docs": {
2891
+ "stability": "stable"
2892
+ },
2893
+ "locationInModule": {
2894
+ "filename": "src/monorepo/components/NxConfiguration.ts",
2895
+ "line": 12
2896
+ },
2897
+ "parameters": [
2898
+ {
2899
+ "name": "project",
2900
+ "type": {
2901
+ "fqn": "projen.Project"
2902
+ }
2903
+ },
2904
+ {
2905
+ "name": "id",
2906
+ "type": {
2907
+ "primitive": "string"
2908
+ }
2909
+ }
2910
+ ]
2911
+ },
2912
+ "kind": "class",
2913
+ "locationInModule": {
2914
+ "filename": "src/monorepo/components/NxConfiguration.ts",
2915
+ "line": 8
2916
+ },
2917
+ "methods": [
2918
+ {
2919
+ "docs": {
2920
+ "stability": "stable",
2921
+ "summary": "Adds a target default to the configuration."
2922
+ },
2923
+ "locationInModule": {
2924
+ "filename": "src/monorepo/components/NxConfiguration.ts",
2925
+ "line": 84
2926
+ },
2927
+ "name": "addTargetDefaults",
2928
+ "parameters": [
2929
+ {
2930
+ "docs": {
2931
+ "summary": "The target default to add."
2932
+ },
2933
+ "name": "target",
2934
+ "type": {
2935
+ "fqn": "@jttc/projen-project-types.TargetDefaults"
2936
+ }
2937
+ }
2938
+ ]
2939
+ },
2940
+ {
2941
+ "docs": {
2942
+ "stability": "stable",
2943
+ "summary": "Adds a target default to the configuration."
2944
+ },
2945
+ "locationInModule": {
2946
+ "filename": "src/monorepo/components/NxConfiguration.ts",
2947
+ "line": 104
2948
+ },
2949
+ "name": "addTaskRunner",
2950
+ "parameters": [
2951
+ {
2952
+ "docs": {
2953
+ "summary": "The target default to add."
2954
+ },
2955
+ "name": "target",
2956
+ "type": {
2957
+ "fqn": "@jttc/projen-project-types.TaskRunnerOptions"
2958
+ }
2959
+ }
2960
+ ]
2961
+ }
2962
+ ],
2963
+ "name": "NxConfigurations",
2964
+ "symbolId": "src/monorepo/components/NxConfiguration:NxConfigurations"
2965
+ },
2966
+ "@jttc/projen-project-types.NxMonorepo": {
2967
+ "assembly": "@jttc/projen-project-types",
2968
+ "base": "projen.typescript.TypeScriptProject",
2969
+ "docs": {
2970
+ "custom": {
2971
+ "pjid": "nx-monorepo"
2972
+ },
2973
+ "stability": "stable",
2974
+ "summary": "NX Monorepo Project."
2975
+ },
2976
+ "fqn": "@jttc/projen-project-types.NxMonorepo",
2977
+ "initializer": {
2978
+ "docs": {
2979
+ "stability": "stable"
2980
+ },
2981
+ "locationInModule": {
2982
+ "filename": "src/monorepo/monorepo.ts",
2983
+ "line": 16
2984
+ },
2985
+ "parameters": [
2986
+ {
2987
+ "name": "options",
2988
+ "type": {
2989
+ "fqn": "@jttc/projen-project-types.NxMonorepoOptions"
2990
+ }
2991
+ }
2992
+ ]
2993
+ },
2994
+ "kind": "class",
2995
+ "locationInModule": {
2996
+ "filename": "src/monorepo/monorepo.ts",
2997
+ "line": 13
2998
+ },
2999
+ "methods": [
3000
+ {
3001
+ "docs": {
3002
+ "stability": "stable"
3003
+ },
3004
+ "locationInModule": {
3005
+ "filename": "src/monorepo/monorepo.ts",
3006
+ "line": 154
3007
+ },
3008
+ "name": "addExecRunManyCommand",
3009
+ "parameters": [
3010
+ {
3011
+ "name": "target",
3012
+ "type": {
3013
+ "primitive": "string"
3014
+ }
3015
+ }
3016
+ ]
3017
+ },
3018
+ {
3019
+ "docs": {
3020
+ "stability": "stable"
3021
+ },
3022
+ "locationInModule": {
3023
+ "filename": "src/monorepo/monorepo.ts",
3024
+ "line": 142
3025
+ },
3026
+ "name": "addRunManyCommand",
3027
+ "parameters": [
3028
+ {
3029
+ "name": "target",
3030
+ "type": {
3031
+ "primitive": "string"
3032
+ }
3033
+ },
3034
+ {
3035
+ "name": "description",
3036
+ "type": {
3037
+ "primitive": "string"
3038
+ }
3039
+ }
3040
+ ]
3041
+ }
3042
+ ],
3043
+ "name": "NxMonorepo",
3044
+ "properties": [
3045
+ {
3046
+ "docs": {
3047
+ "stability": "stable"
3048
+ },
3049
+ "immutable": true,
3050
+ "locationInModule": {
3051
+ "filename": "src/monorepo/monorepo.ts",
3052
+ "line": 15
3053
+ },
3054
+ "name": "nx",
3055
+ "type": {
3056
+ "fqn": "@jttc/projen-project-types.NxConfigurations"
3057
+ }
3058
+ },
3059
+ {
3060
+ "docs": {
3061
+ "stability": "stable"
3062
+ },
3063
+ "immutable": true,
3064
+ "locationInModule": {
3065
+ "filename": "src/monorepo/monorepo.ts",
3066
+ "line": 14
3067
+ },
3068
+ "name": "commitzent",
3069
+ "optional": true,
3070
+ "type": {
3071
+ "fqn": "@jttc/projen-project-types.Commitzent"
3072
+ }
3073
+ }
3074
+ ],
3075
+ "symbolId": "src/monorepo/monorepo:NxMonorepo"
3076
+ },
3077
+ "@jttc/projen-project-types.NxMonorepoOptions": {
3078
+ "assembly": "@jttc/projen-project-types",
3079
+ "datatype": true,
3080
+ "docs": {
3081
+ "stability": "stable"
3082
+ },
3083
+ "fqn": "@jttc/projen-project-types.NxMonorepoOptions",
3084
+ "interfaces": [
3085
+ "projen.typescript.TypeScriptProjectOptions"
3086
+ ],
3087
+ "kind": "interface",
3088
+ "locationInModule": {
3089
+ "filename": "src/monorepo/interfaces/NxMonorepo.ts",
3090
+ "line": 3
3091
+ },
3092
+ "name": "NxMonorepoOptions",
3093
+ "symbolId": "src/monorepo/interfaces/NxMonorepo:NxMonorepoOptions"
3094
+ },
3095
+ "@jttc/projen-project-types.NxRelease": {
3096
+ "assembly": "@jttc/projen-project-types",
3097
+ "datatype": true,
3098
+ "docs": {
3099
+ "stability": "stable"
3100
+ },
3101
+ "fqn": "@jttc/projen-project-types.NxRelease",
3102
+ "kind": "interface",
3103
+ "locationInModule": {
3104
+ "filename": "src/monorepo/interfaces/Nx.ts",
3105
+ "line": 134
3106
+ },
3107
+ "name": "NxRelease",
3108
+ "properties": [
3109
+ {
3110
+ "abstract": true,
3111
+ "docs": {
3112
+ "stability": "stable"
3113
+ },
3114
+ "immutable": true,
3115
+ "locationInModule": {
3116
+ "filename": "src/monorepo/interfaces/Nx.ts",
3117
+ "line": 135
3118
+ },
3119
+ "name": "projects",
3120
+ "type": {
3121
+ "collection": {
3122
+ "elementtype": {
3123
+ "primitive": "string"
3124
+ },
3125
+ "kind": "array"
3126
+ }
3127
+ }
3128
+ },
3129
+ {
3130
+ "abstract": true,
3131
+ "docs": {
3132
+ "stability": "stable"
3133
+ },
3134
+ "immutable": true,
3135
+ "locationInModule": {
3136
+ "filename": "src/monorepo/interfaces/Nx.ts",
3137
+ "line": 136
3138
+ },
3139
+ "name": "version",
3140
+ "type": {
3141
+ "fqn": "@jttc/projen-project-types.ReleaseVersion"
3142
+ }
3143
+ },
3144
+ {
3145
+ "abstract": true,
3146
+ "docs": {
3147
+ "stability": "stable"
3148
+ },
3149
+ "immutable": true,
3150
+ "locationInModule": {
3151
+ "filename": "src/monorepo/interfaces/Nx.ts",
3152
+ "line": 137
3153
+ },
3154
+ "name": "changelog",
3155
+ "optional": true,
3156
+ "type": {
3157
+ "fqn": "@jttc/projen-project-types.ReleaseChangelog"
3158
+ }
3159
+ }
3160
+ ],
3161
+ "symbolId": "src/monorepo/interfaces/Nx:NxRelease"
3162
+ },
3163
+ "@jttc/projen-project-types.PortConfig": {
3164
+ "assembly": "@jttc/projen-project-types",
3165
+ "datatype": true,
3166
+ "docs": {
3167
+ "stability": "stable"
3168
+ },
3169
+ "fqn": "@jttc/projen-project-types.PortConfig",
3170
+ "kind": "interface",
3171
+ "locationInModule": {
3172
+ "filename": "src/components/k3d/types.ts",
3173
+ "line": 15
3174
+ },
3175
+ "name": "PortConfig",
3176
+ "properties": [
3177
+ {
3178
+ "abstract": true,
3179
+ "docs": {
3180
+ "stability": "stable"
3181
+ },
3182
+ "immutable": true,
3183
+ "locationInModule": {
3184
+ "filename": "src/components/k3d/types.ts",
3185
+ "line": 17
3186
+ },
3187
+ "name": "nodeFilters",
3188
+ "type": {
3189
+ "collection": {
3190
+ "elementtype": {
3191
+ "primitive": "string"
3192
+ },
3193
+ "kind": "array"
3194
+ }
3195
+ }
3196
+ },
3197
+ {
3198
+ "abstract": true,
3199
+ "docs": {
3200
+ "stability": "stable"
3201
+ },
3202
+ "immutable": true,
3203
+ "locationInModule": {
3204
+ "filename": "src/components/k3d/types.ts",
3205
+ "line": 16
3206
+ },
3207
+ "name": "port",
3208
+ "type": {
3209
+ "primitive": "string"
3210
+ }
3211
+ }
3212
+ ],
3213
+ "symbolId": "src/components/k3d/types:PortConfig"
3214
+ },
3215
+ "@jttc/projen-project-types.ProjectGlobalOptions": {
3216
+ "assembly": "@jttc/projen-project-types",
3217
+ "datatype": true,
3218
+ "docs": {
3219
+ "stability": "stable",
3220
+ "summary": "Global configuration options that apply to all projects."
3221
+ },
3222
+ "fqn": "@jttc/projen-project-types.ProjectGlobalOptions",
3223
+ "kind": "interface",
3224
+ "locationInModule": {
3225
+ "filename": "src/cdk/interfaces/project-global-options.ts",
3226
+ "line": 4
3227
+ },
3228
+ "name": "ProjectGlobalOptions",
3229
+ "properties": [
3230
+ {
3231
+ "abstract": true,
3232
+ "docs": {
3233
+ "default": "true",
3234
+ "stability": "stable",
3235
+ "summary": "Whether to include Agents component for coding agent documentation."
3236
+ },
3237
+ "immutable": true,
3238
+ "locationInModule": {
3239
+ "filename": "src/cdk/interfaces/project-global-options.ts",
3240
+ "line": 9
3241
+ },
3242
+ "name": "agents",
3243
+ "optional": true,
3244
+ "type": {
3245
+ "primitive": "boolean"
3246
+ }
3247
+ },
3248
+ {
3249
+ "abstract": true,
3250
+ "docs": {
3251
+ "default": "true",
3252
+ "stability": "stable",
3253
+ "summary": "Whether to include Commitzent component for conventional commits."
3254
+ },
3255
+ "immutable": true,
3256
+ "locationInModule": {
3257
+ "filename": "src/cdk/interfaces/project-global-options.ts",
3258
+ "line": 15
3259
+ },
3260
+ "name": "commitzent",
3261
+ "optional": true,
3262
+ "type": {
3263
+ "primitive": "boolean"
3264
+ }
3265
+ }
3266
+ ],
3267
+ "symbolId": "src/cdk/interfaces/project-global-options:ProjectGlobalOptions"
3268
+ },
3269
+ "@jttc/projen-project-types.PublishRelease": {
3270
+ "assembly": "@jttc/projen-project-types",
3271
+ "base": "projen.Component",
3272
+ "docs": {
3273
+ "stability": "stable"
3274
+ },
3275
+ "fqn": "@jttc/projen-project-types.PublishRelease",
3276
+ "initializer": {
3277
+ "docs": {
3278
+ "stability": "stable"
3279
+ },
3280
+ "locationInModule": {
3281
+ "filename": "src/monorepo/components/publish-release.ts",
3282
+ "line": 6
3283
+ },
3284
+ "parameters": [
3285
+ {
3286
+ "name": "github",
3287
+ "type": {
3288
+ "fqn": "projen.github.GitHub"
3289
+ }
3290
+ },
3291
+ {
3292
+ "name": "id",
3293
+ "type": {
3294
+ "primitive": "string"
3295
+ }
3296
+ }
3297
+ ]
3298
+ },
3299
+ "kind": "class",
3300
+ "locationInModule": {
3301
+ "filename": "src/monorepo/components/publish-release.ts",
3302
+ "line": 5
3303
+ },
3304
+ "name": "PublishRelease",
3305
+ "symbolId": "src/monorepo/components/publish-release:PublishRelease"
3306
+ },
3307
+ "@jttc/projen-project-types.ReleaseChangelog": {
3308
+ "assembly": "@jttc/projen-project-types",
3309
+ "datatype": true,
3310
+ "docs": {
3311
+ "stability": "stable"
3312
+ },
3313
+ "fqn": "@jttc/projen-project-types.ReleaseChangelog",
3314
+ "kind": "interface",
3315
+ "locationInModule": {
3316
+ "filename": "src/monorepo/interfaces/Nx.ts",
3317
+ "line": 130
3318
+ },
3319
+ "name": "ReleaseChangelog",
3320
+ "properties": [
3321
+ {
3322
+ "abstract": true,
3323
+ "docs": {
3324
+ "stability": "stable"
3325
+ },
3326
+ "immutable": true,
3327
+ "locationInModule": {
3328
+ "filename": "src/monorepo/interfaces/Nx.ts",
3329
+ "line": 131
3330
+ },
3331
+ "name": "workspaceChangelog",
3332
+ "type": {
3333
+ "fqn": "@jttc/projen-project-types.WorkspaceChangelog"
3334
+ }
3335
+ }
3336
+ ],
3337
+ "symbolId": "src/monorepo/interfaces/Nx:ReleaseChangelog"
3338
+ },
3339
+ "@jttc/projen-project-types.ReleaseVersion": {
3340
+ "assembly": "@jttc/projen-project-types",
3341
+ "datatype": true,
3342
+ "docs": {
3343
+ "stability": "stable"
3344
+ },
3345
+ "fqn": "@jttc/projen-project-types.ReleaseVersion",
3346
+ "kind": "interface",
3347
+ "locationInModule": {
3348
+ "filename": "src/monorepo/interfaces/Nx.ts",
3349
+ "line": 123
3350
+ },
3351
+ "name": "ReleaseVersion",
3352
+ "properties": [
3353
+ {
3354
+ "abstract": true,
3355
+ "docs": {
3356
+ "stability": "stable"
3357
+ },
3358
+ "immutable": true,
3359
+ "locationInModule": {
3360
+ "filename": "src/monorepo/interfaces/Nx.ts",
3361
+ "line": 124
3362
+ },
3363
+ "name": "conventionalCommits",
3364
+ "type": {
3365
+ "primitive": "boolean"
3366
+ }
3367
+ }
3368
+ ],
3369
+ "symbolId": "src/monorepo/interfaces/Nx:ReleaseVersion"
3370
+ },
3371
+ "@jttc/projen-project-types.RunnerOptions": {
3372
+ "assembly": "@jttc/projen-project-types",
3373
+ "datatype": true,
3374
+ "docs": {
3375
+ "stability": "stable"
3376
+ },
3377
+ "fqn": "@jttc/projen-project-types.RunnerOptions",
3378
+ "kind": "interface",
3379
+ "locationInModule": {
3380
+ "filename": "src/monorepo/interfaces/Nx.ts",
3381
+ "line": 70
3382
+ },
3383
+ "name": "RunnerOptions",
3384
+ "properties": [
3385
+ {
3386
+ "abstract": true,
3387
+ "docs": {
3388
+ "stability": "stable",
3389
+ "summary": "Defines the list of targets/operations that are cached by Nx."
3390
+ },
3391
+ "immutable": true,
3392
+ "locationInModule": {
3393
+ "filename": "src/monorepo/interfaces/Nx.ts",
3394
+ "line": 86
3395
+ },
3396
+ "name": "cacheableOperations",
3397
+ "type": {
3398
+ "collection": {
3399
+ "elementtype": {
3400
+ "primitive": "string"
3401
+ },
3402
+ "kind": "array"
3403
+ }
3404
+ }
3405
+ },
3406
+ {
3407
+ "abstract": true,
3408
+ "docs": {
3409
+ "stability": "stable"
3410
+ },
3411
+ "immutable": true,
3412
+ "locationInModule": {
3413
+ "filename": "src/monorepo/interfaces/Nx.ts",
3414
+ "line": 71
3415
+ },
3416
+ "name": "accessToken",
3417
+ "optional": true,
3418
+ "type": {
3419
+ "primitive": "string"
3420
+ }
3421
+ },
3422
+ {
3423
+ "abstract": true,
3424
+ "docs": {
3425
+ "stability": "stable",
3426
+ "summary": "Defines where the local cache is stored."
3427
+ },
3428
+ "immutable": true,
3429
+ "locationInModule": {
3430
+ "filename": "src/monorepo/interfaces/Nx.ts",
3431
+ "line": 91
3432
+ },
3433
+ "name": "cacheDirectory",
3434
+ "optional": true,
3435
+ "type": {
3436
+ "primitive": "string"
3437
+ }
3438
+ },
3439
+ {
3440
+ "abstract": true,
3441
+ "docs": {
3442
+ "stability": "stable",
3443
+ "summary": "Defines whether the cache captures stderr or just stdout."
3444
+ },
3445
+ "immutable": true,
3446
+ "locationInModule": {
3447
+ "filename": "src/monorepo/interfaces/Nx.ts",
3448
+ "line": 76
3449
+ },
3450
+ "name": "captureStderr",
3451
+ "optional": true,
3452
+ "type": {
3453
+ "primitive": "boolean"
3454
+ }
3455
+ },
3456
+ {
3457
+ "abstract": true,
3458
+ "docs": {
3459
+ "remarks": "You may also provide an environment variable with the key NX_CLOUD_ENCRYPTION_KEY\nthat contains an encryption key as its value. The Nx Cloud task runner normalizes\nthe key length, so any length of key is acceptable.",
3460
+ "stability": "stable",
3461
+ "summary": "Defines an encryption key to support end-to-end encryption of your cloud cache."
3462
+ },
3463
+ "immutable": true,
3464
+ "locationInModule": {
3465
+ "filename": "src/monorepo/interfaces/Nx.ts",
3466
+ "line": 104
3467
+ },
3468
+ "name": "encryptionKey",
3469
+ "optional": true,
3470
+ "type": {
3471
+ "primitive": "string"
3472
+ }
3473
+ },
3474
+ {
3475
+ "abstract": true,
3476
+ "docs": {
3477
+ "stability": "stable"
3478
+ },
3479
+ "immutable": true,
3480
+ "locationInModule": {
3481
+ "filename": "src/monorepo/interfaces/Nx.ts",
3482
+ "line": 72
3483
+ },
3484
+ "name": "nxCloudId",
3485
+ "optional": true,
3486
+ "type": {
3487
+ "primitive": "string"
3488
+ }
3489
+ },
3490
+ {
3491
+ "abstract": true,
3492
+ "docs": {
3493
+ "stability": "stable",
3494
+ "summary": "Defines the max number of targets ran in parallel."
3495
+ },
3496
+ "immutable": true,
3497
+ "locationInModule": {
3498
+ "filename": "src/monorepo/interfaces/Nx.ts",
3499
+ "line": 81
3500
+ },
3501
+ "name": "parallel",
3502
+ "optional": true,
3503
+ "type": {
3504
+ "primitive": "number"
3505
+ }
3506
+ },
3507
+ {
3508
+ "abstract": true,
3509
+ "docs": {
3510
+ "stability": "stable",
3511
+ "summary": "Defines whether the Nx Cache should be skipped."
3512
+ },
3513
+ "immutable": true,
3514
+ "locationInModule": {
3515
+ "filename": "src/monorepo/interfaces/Nx.ts",
3516
+ "line": 96
3517
+ },
3518
+ "name": "skipNxCache",
3519
+ "optional": true,
3520
+ "type": {
3521
+ "primitive": "boolean"
3522
+ }
3523
+ }
3524
+ ],
3525
+ "symbolId": "src/monorepo/interfaces/Nx:RunnerOptions"
3526
+ },
3527
+ "@jttc/projen-project-types.TargetDefaults": {
3528
+ "assembly": "@jttc/projen-project-types",
3529
+ "datatype": true,
3530
+ "docs": {
3531
+ "stability": "stable"
3532
+ },
3533
+ "fqn": "@jttc/projen-project-types.TargetDefaults",
3534
+ "kind": "interface",
3535
+ "locationInModule": {
3536
+ "filename": "src/monorepo/interfaces/Nx.ts",
3537
+ "line": 17
3538
+ },
3539
+ "name": "TargetDefaults",
3540
+ "properties": [
3541
+ {
3542
+ "abstract": true,
3543
+ "docs": {
3544
+ "stability": "stable",
3545
+ "summary": "Target name."
3546
+ },
3547
+ "immutable": true,
3548
+ "locationInModule": {
3549
+ "filename": "src/monorepo/interfaces/Nx.ts",
3550
+ "line": 21
3551
+ },
3552
+ "name": "name",
3553
+ "type": {
3554
+ "primitive": "string"
3555
+ }
3556
+ },
3557
+ {
3558
+ "abstract": true,
3559
+ "docs": {
3560
+ "stability": "stable",
3561
+ "summary": "Specifies if the given target should be cacheable."
3562
+ },
3563
+ "immutable": true,
3564
+ "locationInModule": {
3565
+ "filename": "src/monorepo/interfaces/Nx.ts",
3566
+ "line": 62
3567
+ },
3568
+ "name": "cache",
3569
+ "optional": true,
3570
+ "type": {
3571
+ "primitive": "boolean"
3572
+ }
3573
+ },
3574
+ {
3575
+ "abstract": true,
3576
+ "docs": {
3577
+ "stability": "stable",
3578
+ "summary": "provides extra sets of values that will be merged into the options map."
3579
+ },
3580
+ "immutable": true,
3581
+ "locationInModule": {
3582
+ "filename": "src/monorepo/interfaces/Nx.ts",
3583
+ "line": 41
3584
+ },
3585
+ "name": "configurations",
3586
+ "optional": true,
3587
+ "type": {
3588
+ "collection": {
3589
+ "elementtype": {
3590
+ "primitive": "string"
3591
+ },
3592
+ "kind": "map"
3593
+ }
3594
+ }
3595
+ },
3596
+ {
3597
+ "abstract": true,
3598
+ "docs": {
3599
+ "default": "false",
3600
+ "stability": "stable",
3601
+ "summary": "Whether this target runs continuously until stopped."
3602
+ },
3603
+ "immutable": true,
3604
+ "locationInModule": {
3605
+ "filename": "src/monorepo/interfaces/Nx.ts",
3606
+ "line": 47
3607
+ },
3608
+ "name": "continuous",
3609
+ "optional": true,
3610
+ "type": {
3611
+ "primitive": "boolean"
3612
+ }
3613
+ },
3614
+ {
3615
+ "abstract": true,
3616
+ "docs": {
3617
+ "stability": "stable",
3618
+ "summary": "The name of a configuration to use as the default if a configuration is not provided."
3619
+ },
3620
+ "immutable": true,
3621
+ "locationInModule": {
3622
+ "filename": "src/monorepo/interfaces/Nx.ts",
3623
+ "line": 36
3624
+ },
3625
+ "name": "defaultConfiguration",
3626
+ "optional": true,
3627
+ "type": {
3628
+ "primitive": "string"
3629
+ }
3630
+ },
3631
+ {
3632
+ "abstract": true,
3633
+ "docs": {
3634
+ "stability": "stable"
3635
+ },
3636
+ "immutable": true,
3637
+ "locationInModule": {
3638
+ "filename": "src/monorepo/interfaces/Nx.ts",
3639
+ "line": 57
3640
+ },
3641
+ "name": "dependsOn",
3642
+ "optional": true,
3643
+ "type": {
3644
+ "collection": {
3645
+ "elementtype": {
3646
+ "primitive": "string"
3647
+ },
3648
+ "kind": "array"
3649
+ }
3650
+ }
3651
+ },
3652
+ {
3653
+ "abstract": true,
3654
+ "docs": {
3655
+ "stability": "stable",
3656
+ "summary": "The function that Nx will invoke when you run this target."
3657
+ },
3658
+ "immutable": true,
3659
+ "locationInModule": {
3660
+ "filename": "src/monorepo/interfaces/Nx.ts",
3661
+ "line": 25
3662
+ },
3663
+ "name": "executor",
3664
+ "optional": true,
3665
+ "type": {
3666
+ "primitive": "string"
3667
+ }
3668
+ },
3669
+ {
3670
+ "abstract": true,
3671
+ "docs": {
3672
+ "stability": "stable"
3673
+ },
3674
+ "immutable": true,
3675
+ "locationInModule": {
3676
+ "filename": "src/monorepo/interfaces/Nx.ts",
3677
+ "line": 55
3678
+ },
3679
+ "name": "inputs",
3680
+ "optional": true,
3681
+ "type": {
3682
+ "collection": {
3683
+ "elementtype": {
3684
+ "primitive": "string"
3685
+ },
3686
+ "kind": "array"
3687
+ }
3688
+ }
3689
+ },
3690
+ {
3691
+ "abstract": true,
3692
+ "docs": {
3693
+ "stability": "stable"
3694
+ },
3695
+ "immutable": true,
3696
+ "locationInModule": {
3697
+ "filename": "src/monorepo/interfaces/Nx.ts",
3698
+ "line": 27
3699
+ },
3700
+ "name": "options",
3701
+ "optional": true,
3702
+ "type": {
3703
+ "collection": {
3704
+ "elementtype": {
3705
+ "primitive": "string"
3706
+ },
3707
+ "kind": "map"
3708
+ }
3709
+ }
3710
+ },
3711
+ {
3712
+ "abstract": true,
3713
+ "docs": {
3714
+ "stability": "stable"
3715
+ },
3716
+ "immutable": true,
3717
+ "locationInModule": {
3718
+ "filename": "src/monorepo/interfaces/Nx.ts",
3719
+ "line": 31
3720
+ },
3721
+ "name": "outputs",
3722
+ "optional": true,
3723
+ "type": {
3724
+ "collection": {
3725
+ "elementtype": {
3726
+ "primitive": "string"
3727
+ },
3728
+ "kind": "array"
3729
+ }
3730
+ }
3731
+ },
3732
+ {
3733
+ "abstract": true,
3734
+ "docs": {
3735
+ "default": "true",
3736
+ "stability": "stable",
3737
+ "summary": "Whether this target can be run in parallel with other tasks."
3738
+ },
3739
+ "immutable": true,
3740
+ "locationInModule": {
3741
+ "filename": "src/monorepo/interfaces/Nx.ts",
3742
+ "line": 53
3743
+ },
3744
+ "name": "parallelism",
3745
+ "optional": true,
3746
+ "type": {
3747
+ "primitive": "boolean"
3748
+ }
3749
+ },
3750
+ {
3751
+ "abstract": true,
3752
+ "docs": {
3753
+ "stability": "stable",
3754
+ "summary": "List of generators to run before the target to ensure the workspace is up to date."
3755
+ },
3756
+ "immutable": true,
3757
+ "locationInModule": {
3758
+ "filename": "src/monorepo/interfaces/Nx.ts",
3759
+ "line": 67
3760
+ },
3761
+ "name": "syncGenerators",
3762
+ "optional": true,
3763
+ "type": {
3764
+ "collection": {
3765
+ "elementtype": {
3766
+ "primitive": "string"
3767
+ },
3768
+ "kind": "array"
3769
+ }
3770
+ }
3771
+ }
3772
+ ],
3773
+ "symbolId": "src/monorepo/interfaces/Nx:TargetDefaults"
3774
+ },
3775
+ "@jttc/projen-project-types.TaskRunnerOptions": {
3776
+ "assembly": "@jttc/projen-project-types",
3777
+ "datatype": true,
3778
+ "docs": {
3779
+ "stability": "stable"
3780
+ },
3781
+ "fqn": "@jttc/projen-project-types.TaskRunnerOptions",
3782
+ "kind": "interface",
3783
+ "locationInModule": {
3784
+ "filename": "src/monorepo/interfaces/Nx.ts",
3785
+ "line": 107
3786
+ },
3787
+ "name": "TaskRunnerOptions",
3788
+ "properties": [
3789
+ {
3790
+ "abstract": true,
3791
+ "docs": {
3792
+ "stability": "stable",
3793
+ "summary": "Name of the Task Runner."
3794
+ },
3795
+ "immutable": true,
3796
+ "locationInModule": {
3797
+ "filename": "src/monorepo/interfaces/Nx.ts",
3798
+ "line": 111
3799
+ },
3800
+ "name": "name",
3801
+ "type": {
3802
+ "primitive": "string"
3803
+ }
3804
+ },
3805
+ {
3806
+ "abstract": true,
3807
+ "docs": {
3808
+ "stability": "stable",
3809
+ "summary": "Default options for the runner."
3810
+ },
3811
+ "immutable": true,
3812
+ "locationInModule": {
3813
+ "filename": "src/monorepo/interfaces/Nx.ts",
3814
+ "line": 120
3815
+ },
3816
+ "name": "options",
3817
+ "type": {
3818
+ "fqn": "@jttc/projen-project-types.RunnerOptions"
3819
+ }
3820
+ },
3821
+ {
3822
+ "abstract": true,
3823
+ "docs": {
3824
+ "stability": "stable",
3825
+ "summary": "Path to resolve the runner."
3826
+ },
3827
+ "immutable": true,
3828
+ "locationInModule": {
3829
+ "filename": "src/monorepo/interfaces/Nx.ts",
3830
+ "line": 115
3831
+ },
3832
+ "name": "runner",
3833
+ "type": {
3834
+ "primitive": "string"
3835
+ }
3836
+ }
3837
+ ],
3838
+ "symbolId": "src/monorepo/interfaces/Nx:TaskRunnerOptions"
3839
+ },
3840
+ "@jttc/projen-project-types.TerraformBaseProject": {
3841
+ "assembly": "@jttc/projen-project-types",
3842
+ "base": "projen.Project",
3843
+ "docs": {
3844
+ "stability": "stable",
3845
+ "summary": "Base Terraform project that provides common Terraform configuration."
3846
+ },
3847
+ "fqn": "@jttc/projen-project-types.TerraformBaseProject",
3848
+ "initializer": {
3849
+ "docs": {
3850
+ "stability": "stable"
3851
+ },
3852
+ "locationInModule": {
3853
+ "filename": "src/terraform/terraform-base-project.ts",
3854
+ "line": 27
3855
+ },
3856
+ "parameters": [
3857
+ {
3858
+ "name": "options",
3859
+ "type": {
3860
+ "fqn": "@jttc/projen-project-types.TerraformBaseProjectOptions"
3861
+ }
3862
+ }
3863
+ ]
3864
+ },
3865
+ "kind": "class",
3866
+ "locationInModule": {
3867
+ "filename": "src/terraform/terraform-base-project.ts",
3868
+ "line": 23
3869
+ },
3870
+ "methods": [
3871
+ {
3872
+ "docs": {
3873
+ "remarks": "Only one provider per project is allowed.",
3874
+ "stability": "stable",
3875
+ "summary": "Add a provider to this Terraform project."
3876
+ },
3877
+ "locationInModule": {
3878
+ "filename": "src/terraform/terraform-base-project.ts",
3879
+ "line": 83
3880
+ },
3881
+ "name": "addProvider",
3882
+ "parameters": [
3883
+ {
3884
+ "name": "provider",
3885
+ "type": {
3886
+ "fqn": "@jttc/projen-project-types.TerraformProvider"
3887
+ }
3888
+ }
3889
+ ]
3890
+ },
3891
+ {
3892
+ "docs": {
3893
+ "stability": "stable",
3894
+ "summary": "Called before all components are synthesized."
3895
+ },
3896
+ "locationInModule": {
3897
+ "filename": "src/terraform/terraform-base-project.ts",
3898
+ "line": 98
3899
+ },
3900
+ "name": "preSynthesize",
3901
+ "overrides": "projen.Project"
3902
+ }
3903
+ ],
3904
+ "name": "TerraformBaseProject",
3905
+ "properties": [
3906
+ {
3907
+ "docs": {
3908
+ "stability": "stable",
3909
+ "summary": "Get the current provider."
3910
+ },
3911
+ "immutable": true,
3912
+ "locationInModule": {
3913
+ "filename": "src/terraform/terraform-base-project.ts",
3914
+ "line": 94
3915
+ },
3916
+ "name": "provider",
3917
+ "optional": true,
3918
+ "type": {
3919
+ "fqn": "@jttc/projen-project-types.TerraformProvider"
3920
+ }
3921
+ }
3922
+ ],
3923
+ "symbolId": "src/terraform/terraform-base-project:TerraformBaseProject"
3924
+ },
3925
+ "@jttc/projen-project-types.TerraformBaseProjectOptions": {
3926
+ "assembly": "@jttc/projen-project-types",
3927
+ "datatype": true,
3928
+ "docs": {
3929
+ "stability": "stable",
3930
+ "summary": "Options for Terraform base project."
3931
+ },
3932
+ "fqn": "@jttc/projen-project-types.TerraformBaseProjectOptions",
3933
+ "interfaces": [
3934
+ "projen.ProjectOptions"
3935
+ ],
3936
+ "kind": "interface",
3937
+ "locationInModule": {
3938
+ "filename": "src/terraform/terraform-base-project.ts",
3939
+ "line": 7
3940
+ },
3941
+ "name": "TerraformBaseProjectOptions",
3942
+ "properties": [
3943
+ {
3944
+ "abstract": true,
3945
+ "docs": {
3946
+ "stability": "stable",
3947
+ "summary": "Terraform provider configuration."
3948
+ },
3949
+ "immutable": true,
3950
+ "locationInModule": {
3951
+ "filename": "src/terraform/terraform-base-project.ts",
3952
+ "line": 17
3953
+ },
3954
+ "name": "provider",
3955
+ "optional": true,
3956
+ "type": {
3957
+ "fqn": "@jttc/projen-project-types.TerraformProvider"
3958
+ }
3959
+ },
3960
+ {
3961
+ "abstract": true,
3962
+ "docs": {
3963
+ "default": "\"1.6.0\"",
3964
+ "stability": "stable",
3965
+ "summary": "Minimum required Terraform version."
3966
+ },
3967
+ "immutable": true,
3968
+ "locationInModule": {
3969
+ "filename": "src/terraform/terraform-base-project.ts",
3970
+ "line": 12
3971
+ },
3972
+ "name": "terraformVersion",
3973
+ "optional": true,
3974
+ "type": {
3975
+ "primitive": "string"
3976
+ }
3977
+ }
3978
+ ],
3979
+ "symbolId": "src/terraform/terraform-base-project:TerraformBaseProjectOptions"
3980
+ },
3981
+ "@jttc/projen-project-types.TerraformDeployGithubWorkflow": {
3982
+ "assembly": "@jttc/projen-project-types",
3983
+ "base": "projen.Component",
3984
+ "docs": {
3985
+ "remarks": "This component is designed for Terraform stack projects that need deployment,\nnot for module projects that need release workflows.",
3986
+ "stability": "stable",
3987
+ "summary": "GitHub workflow component for Terraform deployment. Creates a workflow that validates, plans, and applies Terraform changes."
3988
+ },
3989
+ "fqn": "@jttc/projen-project-types.TerraformDeployGithubWorkflow",
3990
+ "initializer": {
3991
+ "docs": {
3992
+ "stability": "stable"
3993
+ },
3994
+ "locationInModule": {
3995
+ "filename": "src/terraform/components/terraform-deploy-github-workflow.ts",
3996
+ "line": 30
3997
+ },
3998
+ "parameters": [
3999
+ {
4000
+ "name": "project",
4001
+ "type": {
4002
+ "fqn": "projen.Project"
4003
+ }
4004
+ },
4005
+ {
4006
+ "name": "options",
4007
+ "optional": true,
4008
+ "type": {
4009
+ "fqn": "@jttc/projen-project-types.TerraformDeployGithubWorkflowOptions"
4010
+ }
4011
+ }
4012
+ ]
4013
+ },
4014
+ "kind": "class",
4015
+ "locationInModule": {
4016
+ "filename": "src/terraform/components/terraform-deploy-github-workflow.ts",
4017
+ "line": 29
4018
+ },
4019
+ "name": "TerraformDeployGithubWorkflow",
4020
+ "symbolId": "src/terraform/components/terraform-deploy-github-workflow:TerraformDeployGithubWorkflow"
4021
+ },
4022
+ "@jttc/projen-project-types.TerraformDeployGithubWorkflowOptions": {
4023
+ "assembly": "@jttc/projen-project-types",
4024
+ "datatype": true,
4025
+ "docs": {
4026
+ "stability": "stable",
4027
+ "summary": "Options for TerraformDeployGithubWorkflow component."
4028
+ },
4029
+ "fqn": "@jttc/projen-project-types.TerraformDeployGithubWorkflowOptions",
4030
+ "kind": "interface",
4031
+ "locationInModule": {
4032
+ "filename": "src/terraform/components/terraform-deploy-github-workflow.ts",
4033
+ "line": 8
4034
+ },
4035
+ "name": "TerraformDeployGithubWorkflowOptions",
4036
+ "properties": [
4037
+ {
4038
+ "abstract": true,
4039
+ "docs": {
4040
+ "default": "\"1.6.0\"",
4041
+ "stability": "stable",
4042
+ "summary": "Terraform version to use in the workflow."
4043
+ },
4044
+ "immutable": true,
4045
+ "locationInModule": {
4046
+ "filename": "src/terraform/components/terraform-deploy-github-workflow.ts",
4047
+ "line": 13
4048
+ },
4049
+ "name": "terraformVersion",
4050
+ "optional": true,
4051
+ "type": {
4052
+ "primitive": "string"
4053
+ }
4054
+ },
4055
+ {
4056
+ "abstract": true,
4057
+ "docs": {
4058
+ "default": "\"terraform-deploy\"",
4059
+ "stability": "stable",
4060
+ "summary": "Name of the workflow."
4061
+ },
4062
+ "immutable": true,
4063
+ "locationInModule": {
4064
+ "filename": "src/terraform/components/terraform-deploy-github-workflow.ts",
4065
+ "line": 19
4066
+ },
4067
+ "name": "workflowName",
4068
+ "optional": true,
4069
+ "type": {
4070
+ "primitive": "string"
4071
+ }
4072
+ }
4073
+ ],
4074
+ "symbolId": "src/terraform/components/terraform-deploy-github-workflow:TerraformDeployGithubWorkflowOptions"
4075
+ },
4076
+ "@jttc/projen-project-types.TerraformModuleProject": {
4077
+ "assembly": "@jttc/projen-project-types",
4078
+ "base": "@jttc/projen-project-types.TerraformBaseProject",
4079
+ "docs": {
4080
+ "custom": {
4081
+ "pjid": "terraform-module"
4082
+ },
4083
+ "remarks": "This project type is designed for Terraform modules that are published\nand consumed by other projects, not for deploying infrastructure directly.",
4084
+ "stability": "stable",
4085
+ "summary": "Terraform module project for creating reusable infrastructure components."
4086
+ },
4087
+ "fqn": "@jttc/projen-project-types.TerraformModuleProject",
4088
+ "initializer": {
4089
+ "docs": {
4090
+ "stability": "stable"
4091
+ },
4092
+ "locationInModule": {
4093
+ "filename": "src/terraform/terraform-module-project.ts",
4094
+ "line": 30
4095
+ },
4096
+ "parameters": [
4097
+ {
4098
+ "name": "options",
4099
+ "type": {
4100
+ "fqn": "@jttc/projen-project-types.TerraformModuleProjectOptions"
4101
+ }
4102
+ }
4103
+ ]
4104
+ },
4105
+ "kind": "class",
4106
+ "locationInModule": {
4107
+ "filename": "src/terraform/terraform-module-project.ts",
4108
+ "line": 29
4109
+ },
4110
+ "name": "TerraformModuleProject",
4111
+ "symbolId": "src/terraform/terraform-module-project:TerraformModuleProject"
4112
+ },
4113
+ "@jttc/projen-project-types.TerraformModuleProjectOptions": {
4114
+ "assembly": "@jttc/projen-project-types",
4115
+ "datatype": true,
4116
+ "docs": {
4117
+ "stability": "stable",
4118
+ "summary": "Options for Terraform module project."
4119
+ },
4120
+ "fqn": "@jttc/projen-project-types.TerraformModuleProjectOptions",
4121
+ "interfaces": [
4122
+ "@jttc/projen-project-types.TerraformBaseProjectOptions"
4123
+ ],
4124
+ "kind": "interface",
4125
+ "locationInModule": {
4126
+ "filename": "src/terraform/terraform-module-project.ts",
4127
+ "line": 11
4128
+ },
4129
+ "name": "TerraformModuleProjectOptions",
4130
+ "properties": [
4131
+ {
4132
+ "abstract": true,
4133
+ "docs": {
4134
+ "default": "true",
4135
+ "remarks": "Creates a workflow that validates and plans Terraform changes on PRs,\nand comments the results back to the PR.",
4136
+ "stability": "stable",
4137
+ "summary": "Enable GitHub workflow for Terraform plan on Pull Requests."
4138
+ },
4139
+ "immutable": true,
4140
+ "locationInModule": {
4141
+ "filename": "src/terraform/terraform-module-project.ts",
4142
+ "line": 18
4143
+ },
4144
+ "name": "enablePlanWorkflow",
4145
+ "optional": true,
4146
+ "type": {
4147
+ "primitive": "boolean"
4148
+ }
4149
+ }
4150
+ ],
4151
+ "symbolId": "src/terraform/terraform-module-project:TerraformModuleProjectOptions"
4152
+ },
4153
+ "@jttc/projen-project-types.TerraformPlanGithubWorkflow": {
4154
+ "assembly": "@jttc/projen-project-types",
4155
+ "base": "projen.Component",
4156
+ "docs": {
4157
+ "remarks": "Creates a workflow that validates, plans Terraform changes and comments results on PRs.\n\nThis component is designed for Terraform stack projects to show plan results\nin Pull Requests without actually applying changes.",
4158
+ "stability": "stable",
4159
+ "summary": "GitHub workflow component for Terraform plan on Pull Requests."
4160
+ },
4161
+ "fqn": "@jttc/projen-project-types.TerraformPlanGithubWorkflow",
4162
+ "initializer": {
4163
+ "docs": {
4164
+ "stability": "stable"
4165
+ },
4166
+ "locationInModule": {
4167
+ "filename": "src/terraform/components/terraform-plan-github-workflow.ts",
4168
+ "line": 36
4169
+ },
4170
+ "parameters": [
4171
+ {
4172
+ "name": "project",
4173
+ "type": {
4174
+ "fqn": "projen.Project"
4175
+ }
4176
+ },
4177
+ {
4178
+ "name": "options",
4179
+ "optional": true,
4180
+ "type": {
4181
+ "fqn": "@jttc/projen-project-types.TerraformPlanGithubWorkflowOptions"
4182
+ }
4183
+ }
4184
+ ]
4185
+ },
4186
+ "kind": "class",
4187
+ "locationInModule": {
4188
+ "filename": "src/terraform/components/terraform-plan-github-workflow.ts",
4189
+ "line": 35
4190
+ },
4191
+ "name": "TerraformPlanGithubWorkflow",
4192
+ "symbolId": "src/terraform/components/terraform-plan-github-workflow:TerraformPlanGithubWorkflow"
4193
+ },
4194
+ "@jttc/projen-project-types.TerraformPlanGithubWorkflowOptions": {
4195
+ "assembly": "@jttc/projen-project-types",
4196
+ "datatype": true,
4197
+ "docs": {
4198
+ "stability": "stable",
4199
+ "summary": "Options for TerraformPlanGithubWorkflow component."
4200
+ },
4201
+ "fqn": "@jttc/projen-project-types.TerraformPlanGithubWorkflowOptions",
4202
+ "kind": "interface",
4203
+ "locationInModule": {
4204
+ "filename": "src/terraform/components/terraform-plan-github-workflow.ts",
4205
+ "line": 8
4206
+ },
4207
+ "name": "TerraformPlanGithubWorkflowOptions",
4208
+ "properties": [
4209
+ {
4210
+ "abstract": true,
4211
+ "docs": {
4212
+ "default": "\"1.6.0\"",
4213
+ "stability": "stable",
4214
+ "summary": "Terraform version to use in the workflow."
4215
+ },
4216
+ "immutable": true,
4217
+ "locationInModule": {
4218
+ "filename": "src/terraform/components/terraform-plan-github-workflow.ts",
4219
+ "line": 13
4220
+ },
4221
+ "name": "terraformVersion",
4222
+ "optional": true,
4223
+ "type": {
4224
+ "primitive": "string"
4225
+ }
4226
+ },
4227
+ {
4228
+ "abstract": true,
4229
+ "docs": {
4230
+ "default": "\"terraform-plan\"",
4231
+ "stability": "stable",
4232
+ "summary": "Name of the workflow."
4233
+ },
4234
+ "immutable": true,
4235
+ "locationInModule": {
4236
+ "filename": "src/terraform/components/terraform-plan-github-workflow.ts",
4237
+ "line": 19
4238
+ },
4239
+ "name": "workflowName",
4240
+ "optional": true,
4241
+ "type": {
4242
+ "primitive": "string"
4243
+ }
4244
+ },
4245
+ {
4246
+ "abstract": true,
4247
+ "docs": {
4248
+ "default": "\".\"",
4249
+ "stability": "stable",
4250
+ "summary": "Working directory for Terraform commands."
4251
+ },
4252
+ "immutable": true,
4253
+ "locationInModule": {
4254
+ "filename": "src/terraform/components/terraform-plan-github-workflow.ts",
4255
+ "line": 25
4256
+ },
4257
+ "name": "workingDirectory",
4258
+ "optional": true,
4259
+ "type": {
4260
+ "primitive": "string"
4261
+ }
4262
+ }
4263
+ ],
4264
+ "symbolId": "src/terraform/components/terraform-plan-github-workflow:TerraformPlanGithubWorkflowOptions"
4265
+ },
4266
+ "@jttc/projen-project-types.TerraformProvider": {
4267
+ "abstract": true,
4268
+ "assembly": "@jttc/projen-project-types",
4269
+ "docs": {
4270
+ "remarks": "This is a strategy class that holds configuration, not a Projen component.",
4271
+ "stability": "stable",
4272
+ "summary": "Base class for Terraform provider configurations."
4273
+ },
4274
+ "fqn": "@jttc/projen-project-types.TerraformProvider",
4275
+ "initializer": {
4276
+ "docs": {
4277
+ "stability": "stable"
4278
+ },
4279
+ "locationInModule": {
4280
+ "filename": "src/terraform/providers/provider-strategy.ts",
4281
+ "line": 26
4282
+ },
4283
+ "parameters": [
4284
+ {
4285
+ "name": "providerName",
4286
+ "type": {
4287
+ "primitive": "string"
4288
+ }
4289
+ },
4290
+ {
4291
+ "name": "options",
4292
+ "optional": true,
4293
+ "type": {
4294
+ "fqn": "@jttc/projen-project-types.TerraformProviderOptions"
4295
+ }
4296
+ }
4297
+ ]
4298
+ },
4299
+ "kind": "class",
4300
+ "locationInModule": {
4301
+ "filename": "src/terraform/providers/provider-strategy.ts",
4302
+ "line": 21
4303
+ },
4304
+ "methods": [
4305
+ {
4306
+ "abstract": true,
4307
+ "docs": {
4308
+ "stability": "stable",
4309
+ "summary": "Generate the provider configuration block."
4310
+ },
4311
+ "locationInModule": {
4312
+ "filename": "src/terraform/providers/provider-strategy.ts",
4313
+ "line": 47
4314
+ },
4315
+ "name": "generateProviderBlock",
4316
+ "returns": {
4317
+ "type": {
4318
+ "collection": {
4319
+ "elementtype": {
4320
+ "primitive": "string"
4321
+ },
4322
+ "kind": "array"
4323
+ }
4324
+ }
4325
+ }
4326
+ },
4327
+ {
4328
+ "docs": {
4329
+ "stability": "stable",
4330
+ "summary": "Get the provider name."
4331
+ },
4332
+ "locationInModule": {
4333
+ "filename": "src/terraform/providers/provider-strategy.ts",
4334
+ "line": 59
4335
+ },
4336
+ "name": "name",
4337
+ "returns": {
4338
+ "type": {
4339
+ "primitive": "string"
4340
+ }
4341
+ }
4342
+ },
4343
+ {
4344
+ "docs": {
4345
+ "stability": "stable",
4346
+ "summary": "Get the provider alias for the required_providers block."
4347
+ },
4348
+ "locationInModule": {
4349
+ "filename": "src/terraform/providers/provider-strategy.ts",
4350
+ "line": 35
4351
+ },
4352
+ "name": "providerAlias",
4353
+ "returns": {
4354
+ "type": {
4355
+ "primitive": "string"
4356
+ }
4357
+ }
4358
+ },
4359
+ {
4360
+ "abstract": true,
4361
+ "docs": {
4362
+ "stability": "stable",
4363
+ "summary": "Get the provider source (e.g., \"hashicorp/aws\")."
4364
+ },
4365
+ "locationInModule": {
4366
+ "filename": "src/terraform/providers/provider-strategy.ts",
4367
+ "line": 42
4368
+ },
4369
+ "name": "providerSource",
4370
+ "returns": {
4371
+ "type": {
4372
+ "primitive": "string"
4373
+ }
4374
+ }
4375
+ },
4376
+ {
4377
+ "docs": {
4378
+ "stability": "stable",
4379
+ "summary": "Get the version constraint."
4380
+ },
4381
+ "locationInModule": {
4382
+ "filename": "src/terraform/providers/provider-strategy.ts",
4383
+ "line": 52
4384
+ },
4385
+ "name": "versionConstraint",
4386
+ "returns": {
4387
+ "optional": true,
4388
+ "type": {
4389
+ "primitive": "string"
4390
+ }
4391
+ }
4392
+ }
4393
+ ],
4394
+ "name": "TerraformProvider",
4395
+ "properties": [
4396
+ {
4397
+ "docs": {
4398
+ "stability": "stable"
4399
+ },
4400
+ "immutable": true,
4401
+ "locationInModule": {
4402
+ "filename": "src/terraform/providers/provider-strategy.ts",
4403
+ "line": 24
4404
+ },
4405
+ "name": "providerName",
4406
+ "protected": true,
4407
+ "type": {
4408
+ "primitive": "string"
4409
+ }
4410
+ },
4411
+ {
4412
+ "docs": {
4413
+ "stability": "stable"
4414
+ },
4415
+ "immutable": true,
4416
+ "locationInModule": {
4417
+ "filename": "src/terraform/providers/provider-strategy.ts",
4418
+ "line": 23
4419
+ },
4420
+ "name": "alias",
4421
+ "optional": true,
4422
+ "protected": true,
4423
+ "type": {
4424
+ "primitive": "string"
4425
+ }
4426
+ },
4427
+ {
4428
+ "docs": {
4429
+ "stability": "stable"
4430
+ },
4431
+ "immutable": true,
4432
+ "locationInModule": {
4433
+ "filename": "src/terraform/providers/provider-strategy.ts",
4434
+ "line": 22
4435
+ },
4436
+ "name": "version",
4437
+ "optional": true,
4438
+ "protected": true,
4439
+ "type": {
4440
+ "primitive": "string"
4441
+ }
4442
+ }
4443
+ ],
4444
+ "symbolId": "src/terraform/providers/provider-strategy:TerraformProvider"
4445
+ },
4446
+ "@jttc/projen-project-types.TerraformProviderOptions": {
4447
+ "assembly": "@jttc/projen-project-types",
4448
+ "datatype": true,
4449
+ "docs": {
4450
+ "stability": "stable",
4451
+ "summary": "Base options for Terraform providers."
4452
+ },
4453
+ "fqn": "@jttc/projen-project-types.TerraformProviderOptions",
4454
+ "kind": "interface",
4455
+ "locationInModule": {
4456
+ "filename": "src/terraform/providers/provider-strategy.ts",
4457
+ "line": 4
4458
+ },
4459
+ "name": "TerraformProviderOptions",
4460
+ "properties": [
4461
+ {
4462
+ "abstract": true,
4463
+ "docs": {
4464
+ "stability": "stable",
4465
+ "summary": "Provider alias (optional)."
4466
+ },
4467
+ "immutable": true,
4468
+ "locationInModule": {
4469
+ "filename": "src/terraform/providers/provider-strategy.ts",
4470
+ "line": 14
4471
+ },
4472
+ "name": "alias",
4473
+ "optional": true,
4474
+ "type": {
4475
+ "primitive": "string"
4476
+ }
4477
+ },
4478
+ {
4479
+ "abstract": true,
4480
+ "docs": {
4481
+ "example": "\"~> 5.0\"",
4482
+ "stability": "stable",
4483
+ "summary": "Provider version constraint."
4484
+ },
4485
+ "immutable": true,
4486
+ "locationInModule": {
4487
+ "filename": "src/terraform/providers/provider-strategy.ts",
4488
+ "line": 9
4489
+ },
4490
+ "name": "version",
4491
+ "optional": true,
4492
+ "type": {
4493
+ "primitive": "string"
4494
+ }
4495
+ }
4496
+ ],
4497
+ "symbolId": "src/terraform/providers/provider-strategy:TerraformProviderOptions"
4498
+ },
4499
+ "@jttc/projen-project-types.TerraformStackProject": {
4500
+ "assembly": "@jttc/projen-project-types",
4501
+ "base": "@jttc/projen-project-types.TerraformBaseProject",
4502
+ "docs": {
4503
+ "custom": {
4504
+ "pjid": "terraform-stack"
4505
+ },
4506
+ "stability": "stable",
4507
+ "summary": "Terraform stack project for managing infrastructure."
4508
+ },
4509
+ "fqn": "@jttc/projen-project-types.TerraformStackProject",
4510
+ "initializer": {
4511
+ "docs": {
4512
+ "stability": "stable"
4513
+ },
4514
+ "locationInModule": {
4515
+ "filename": "src/terraform/terraform-stack-project.ts",
4516
+ "line": 38
4517
+ },
4518
+ "parameters": [
4519
+ {
4520
+ "name": "options",
4521
+ "type": {
4522
+ "fqn": "@jttc/projen-project-types.TerraformStackProjectOptions"
4523
+ }
4524
+ }
4525
+ ]
4526
+ },
4527
+ "kind": "class",
4528
+ "locationInModule": {
4529
+ "filename": "src/terraform/terraform-stack-project.ts",
4530
+ "line": 37
4531
+ },
4532
+ "name": "TerraformStackProject",
4533
+ "symbolId": "src/terraform/terraform-stack-project:TerraformStackProject"
4534
+ },
4535
+ "@jttc/projen-project-types.TerraformStackProjectOptions": {
4536
+ "assembly": "@jttc/projen-project-types",
4537
+ "datatype": true,
4538
+ "docs": {
4539
+ "stability": "stable",
4540
+ "summary": "Options for Terraform stack project."
4541
+ },
4542
+ "fqn": "@jttc/projen-project-types.TerraformStackProjectOptions",
4543
+ "interfaces": [
4544
+ "@jttc/projen-project-types.TerraformBaseProjectOptions"
4545
+ ],
4546
+ "kind": "interface",
4547
+ "locationInModule": {
4548
+ "filename": "src/terraform/terraform-stack-project.ts",
4549
+ "line": 14
4550
+ },
4551
+ "name": "TerraformStackProjectOptions",
4552
+ "properties": [
4553
+ {
4554
+ "abstract": true,
4555
+ "docs": {
4556
+ "default": "true",
4557
+ "remarks": "Creates a workflow that validates, plans, and applies Terraform changes.\nOnly applicable for stack projects, not module projects.",
4558
+ "stability": "stable",
4559
+ "summary": "Enable GitHub workflow for Terraform deployment."
4560
+ },
4561
+ "immutable": true,
4562
+ "locationInModule": {
4563
+ "filename": "src/terraform/terraform-stack-project.ts",
4564
+ "line": 21
4565
+ },
4566
+ "name": "enableGitHubWorkflow",
4567
+ "optional": true,
4568
+ "type": {
4569
+ "primitive": "boolean"
4570
+ }
4571
+ },
4572
+ {
4573
+ "abstract": true,
4574
+ "docs": {
4575
+ "default": "true",
4576
+ "remarks": "Creates a workflow that validates and plans Terraform changes on PRs,\nand comments the results back to the PR.",
4577
+ "stability": "stable",
4578
+ "summary": "Enable GitHub workflow for Terraform plan on Pull Requests."
4579
+ },
4580
+ "immutable": true,
4581
+ "locationInModule": {
4582
+ "filename": "src/terraform/terraform-stack-project.ts",
4583
+ "line": 29
4584
+ },
4585
+ "name": "enablePlanWorkflow",
4586
+ "optional": true,
4587
+ "type": {
4588
+ "primitive": "boolean"
4589
+ }
4590
+ }
4591
+ ],
4592
+ "symbolId": "src/terraform/terraform-stack-project:TerraformStackProjectOptions"
4593
+ },
4594
+ "@jttc/projen-project-types.TypeScriptProjectWithGlobalOptions": {
4595
+ "assembly": "@jttc/projen-project-types",
4596
+ "datatype": true,
4597
+ "docs": {
4598
+ "stability": "stable",
4599
+ "summary": "TypeScript project options that include global project options."
4600
+ },
4601
+ "fqn": "@jttc/projen-project-types.TypeScriptProjectWithGlobalOptions",
4602
+ "interfaces": [
4603
+ "projen.typescript.TypeScriptProjectOptions",
4604
+ "@jttc/projen-project-types.ProjectGlobalOptions"
4605
+ ],
4606
+ "kind": "interface",
4607
+ "locationInModule": {
4608
+ "filename": "src/common/common-options.ts",
4609
+ "line": 13
4610
+ },
4611
+ "name": "TypeScriptProjectWithGlobalOptions",
4612
+ "symbolId": "src/common/common-options:TypeScriptProjectWithGlobalOptions"
4613
+ },
4614
+ "@jttc/projen-project-types.Volume": {
4615
+ "assembly": "@jttc/projen-project-types",
4616
+ "datatype": true,
4617
+ "docs": {
4618
+ "stability": "stable"
4619
+ },
4620
+ "fqn": "@jttc/projen-project-types.Volume",
4621
+ "kind": "interface",
4622
+ "locationInModule": {
4623
+ "filename": "src/components/k3d/types.ts",
4624
+ "line": 59
4625
+ },
4626
+ "name": "Volume",
4627
+ "properties": [
4628
+ {
4629
+ "abstract": true,
4630
+ "docs": {
4631
+ "stability": "stable"
4632
+ },
4633
+ "immutable": true,
4634
+ "locationInModule": {
4635
+ "filename": "src/components/k3d/types.ts",
4636
+ "line": 61
4637
+ },
4638
+ "name": "nodeFilters",
4639
+ "type": {
4640
+ "collection": {
4641
+ "elementtype": {
4642
+ "primitive": "string"
4643
+ },
4644
+ "kind": "array"
4645
+ }
4646
+ }
4647
+ },
4648
+ {
4649
+ "abstract": true,
4650
+ "docs": {
4651
+ "stability": "stable"
4652
+ },
4653
+ "immutable": true,
4654
+ "locationInModule": {
4655
+ "filename": "src/components/k3d/types.ts",
4656
+ "line": 60
4657
+ },
4658
+ "name": "volumeName",
4659
+ "type": {
4660
+ "primitive": "string"
4661
+ }
4662
+ }
4663
+ ],
4664
+ "symbolId": "src/components/k3d/types:Volume"
4665
+ },
4666
+ "@jttc/projen-project-types.WorkspaceChangelog": {
4667
+ "assembly": "@jttc/projen-project-types",
4668
+ "datatype": true,
4669
+ "docs": {
4670
+ "stability": "stable"
4671
+ },
4672
+ "fqn": "@jttc/projen-project-types.WorkspaceChangelog",
4673
+ "kind": "interface",
4674
+ "locationInModule": {
4675
+ "filename": "src/monorepo/interfaces/Nx.ts",
4676
+ "line": 127
4677
+ },
4678
+ "name": "WorkspaceChangelog",
4679
+ "properties": [
4680
+ {
4681
+ "abstract": true,
4682
+ "docs": {
4683
+ "stability": "stable"
4684
+ },
4685
+ "immutable": true,
4686
+ "locationInModule": {
4687
+ "filename": "src/monorepo/interfaces/Nx.ts",
4688
+ "line": 128
4689
+ },
4690
+ "name": "createRelease",
4691
+ "type": {
4692
+ "primitive": "string"
69
4693
  }
70
4694
  }
71
4695
  ],
72
- "name": "Hello",
73
- "symbolId": "src/index:Hello"
4696
+ "symbolId": "src/monorepo/interfaces/Nx:WorkspaceChangelog"
74
4697
  }
75
4698
  },
76
- "version": "1.0.0-beta.0",
77
- "fingerprint": "L7CJ7lss3O8xQMPZ0bOhncIjDiz/rk2xB0GoQVKQAAA="
4699
+ "version": "1.0.0-beta.10",
4700
+ "fingerprint": "OQrge2xjklfD5+ErFkeJRln2bu04BpO836Uoub+eTwI="
78
4701
  }