attio 0.0.1-experimental.20250625 → 0.0.1-experimental.20250626

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 (2) hide show
  1. package/package.json +1 -1
  2. package/lib/template/.env +0 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attio",
3
- "version": "0.0.1-experimental.20250625",
3
+ "version": "0.0.1-experimental.20250626",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "lib",
package/lib/template/.env DELETED
@@ -1,12 +0,0 @@
1
- # Add secrets that you want available in your .server.ts files
2
- # IN DEV MODE ONLY here. In production, secrets should be managed
3
- # using the `attio secret` command.
4
- #
5
- # Example: SECRET_KEY=super-secret-value
6
- #
7
- # You will then be able to reference them in your code like so:
8
- # ```
9
- # import { env } from '@attio/extension-sdk';
10
- #
11
- # const secretValue = env('SECRET_KEY');
12
- # ```