@c15t/cli 2.0.0-rc.6 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/README.md +8 -8
  2. package/dist/145.mjs +1223 -332
  3. package/dist/generate-files.mjs +64 -90
  4. package/dist-types/auth/base-url.d.ts +2 -2
  5. package/dist-types/auth/config-store.d.ts +2 -2
  6. package/dist-types/auth/types.d.ts +1 -1
  7. package/dist-types/commands/generate/prompts/mode-select.d.ts +1 -1
  8. package/dist-types/commands/generate/templates/css.d.ts +10 -11
  9. package/dist-types/commands/generate/templates/shared/components.d.ts +1 -1
  10. package/dist-types/commands/generate/templates/shared/framework-config.d.ts +0 -4
  11. package/dist-types/commands/index.d.ts +1 -1
  12. package/dist-types/commands/instances/index.d.ts +13 -8
  13. package/dist-types/commands/self-host/migrate/migrator-result.d.ts +1 -1
  14. package/dist-types/commands/self-host/migrate/orm-result.d.ts +1 -1
  15. package/dist-types/commands/self-host/migrate/read-config.d.ts +1 -1
  16. package/dist-types/commands/shared/stylesheets.d.ts +19 -0
  17. package/dist-types/constants.d.ts +19 -7
  18. package/dist-types/context/types.d.ts +3 -1
  19. package/dist-types/control-plane/client.d.ts +6 -6
  20. package/dist-types/control-plane/types.d.ts +5 -5
  21. package/dist-types/core/errors.d.ts +10 -10
  22. package/dist-types/core/telemetry.d.ts +2 -77
  23. package/dist-types/machines/generate/actors/prompts.d.ts +1 -1
  24. package/dist-types/machines/generate/machine.d.ts +7 -7
  25. package/dist-types/machines/generate/types.d.ts +2 -2
  26. package/dist-types/types.d.ts +8 -18
  27. package/dist-types/utils/logger.d.ts +7 -6
  28. package/dist-types/utils/telemetry.d.ts +61 -117
  29. package/dist-types/utils/validation.d.ts +2 -2
  30. package/package.json +9 -9
  31. package/readme.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <a href="https://v2.c15t.com?utm_source=github&utm_medium=repopage_%40c15t%2Fcli" target="_blank" rel="noopener noreferrer">
2
+ <a href="https://c15t.com?utm_source=github&utm_medium=repopage_%40c15t%2Fcli" target="_blank" rel="noopener noreferrer">
3
3
  <picture>
4
4
  <source media="(prefers-color-scheme: dark)" srcset="../../docs/assets/c15t-banner-readme-dark.svg" type="image/svg+xml">
5
5
  <img src="../../docs/assets/c15t-banner-readme-light.svg" alt="c15t Banner" type="image/svg+xml">
@@ -11,7 +11,7 @@
11
11
 
12
12
  [![GitHub stars](https://img.shields.io/github/stars/c15t/c15t?style=flat-square)](https://github.com/c15t/c15t)
13
13
  [![CI](https://img.shields.io/github/actions/workflow/status/c15t/c15t/ci.yml?style=flat-square)](https://github.com/c15t/c15t/actions/workflows/ci.yml)
14
- [![License](https://img.shields.io/badge/license-GPL--3.0-blue.svg?style=flat-square)](https://github.com/c15t/c15t/blob/main/LICENSE.md)
14
+ [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg?style=flat-square)](https://github.com/c15t/c15t/blob/main/LICENSE.md)
15
15
  [![Discord](https://img.shields.io/discord/1312171102268690493?style=flat-square)](https://c15t.link/discord)
16
16
  [![npm version](https://img.shields.io/npm/v/%40c15t%2Fcli?style=flat-square)](https://www.npmjs.com/package/@c15t/cli)
17
17
  [![Top Language](https://img.shields.io/github/languages/top/c15t/c15t?style=flat-square)](https://github.com/c15t/c15t)
@@ -50,7 +50,7 @@ pnpm dlx @c15t/cli setup
50
50
  The CLI will:
51
51
 
52
52
  - Install necessary packages
53
- - Configure your c15t instance
53
+ - Configure your c15t project
54
54
  - Set up environment variables
55
55
  - Add consent management components to your app
56
56
 
@@ -117,7 +117,7 @@ Disable telemetry by:
117
117
 
118
118
  ## Documentation
119
119
 
120
- For further information, guides, and examples visit the [reference documentation](https://v2.c15t.com/docs/cli/overview).
120
+ For further information, guides, and examples visit the [reference documentation](https://c15t.com/docs/cli/overview).
121
121
 
122
122
  ## Support
123
123
 
@@ -129,8 +129,8 @@ For further information, guides, and examples visit the [reference documentation
129
129
  ## Contributing
130
130
 
131
131
  - We're open to all community contributions!
132
- - Read our [Contribution Guidelines](https://v2.c15t.com/docs/oss/contributing)
133
- - Review our [Code of Conduct](https://v2.c15t.com/docs/oss/code-of-conduct)
132
+ - Read our [Contribution Guidelines](https://c15t.com/docs/oss/contributing)
133
+ - Review our [Code of Conduct](https://c15t.com/docs/oss/code-of-conduct)
134
134
  - Fork the repository
135
135
  - Create a new branch for your feature
136
136
  - Submit a pull request
@@ -151,8 +151,8 @@ Our preference is that you make use of GitHub's private vulnerability reporting
151
151
 
152
152
  ## License
153
153
 
154
- [GNU General Public License v3.0](https://github.com/c15t/c15t/blob/main/LICENSE.md)
154
+ [Apache License 2.0](https://github.com/c15t/c15t/blob/main/LICENSE.md)
155
155
 
156
156
  ---
157
157
 
158
- **Built with ❤️ by the [consent.io](https://www.consent.io?utm_source=github&utm_medium=repopage_%40c15t%2Fcli) team**
158
+ **Built by [Inth](https://inth.com?utm_source=github&utm_medium=repopage_%40c15t%2Fcli)**