Skip to content

Commit d527501

Browse files
author
Frank
committed
wip: zen
1 parent dedfa56 commit d527501

13 files changed

Lines changed: 316 additions & 300 deletions

File tree

cloud/app/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

cloud/core/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

cloud/function/sst-env.d.ts

Lines changed: 79 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -6,87 +6,91 @@
66
import "sst"
77
declare module "sst" {
88
export interface Resource {
9-
ANTHROPIC_API_KEY: {
10-
type: "sst.sst.Secret"
11-
value: string
12-
}
13-
AUTH_API_URL: {
14-
type: "sst.sst.Linkable"
15-
value: string
16-
}
17-
BASETEN_API_KEY: {
18-
type: "sst.sst.Secret"
19-
value: string
20-
}
21-
Console: {
22-
type: "sst.cloudflare.SolidStart"
23-
url: string
24-
}
25-
Database: {
26-
database: string
27-
host: string
28-
password: string
29-
port: number
30-
type: "sst.sst.Linkable"
31-
username: string
32-
}
33-
GITHUB_APP_ID: {
34-
type: "sst.sst.Secret"
35-
value: string
36-
}
37-
GITHUB_APP_PRIVATE_KEY: {
38-
type: "sst.sst.Secret"
39-
value: string
40-
}
41-
GITHUB_CLIENT_ID_CONSOLE: {
42-
type: "sst.sst.Secret"
43-
value: string
44-
}
45-
GITHUB_CLIENT_SECRET_CONSOLE: {
46-
type: "sst.sst.Secret"
47-
value: string
48-
}
49-
GOOGLE_CLIENT_ID: {
50-
type: "sst.sst.Secret"
51-
value: string
52-
}
53-
HONEYCOMB_API_KEY: {
54-
type: "sst.sst.Secret"
55-
value: string
56-
}
57-
OPENAI_API_KEY: {
58-
type: "sst.sst.Secret"
59-
value: string
60-
}
61-
STRIPE_SECRET_KEY: {
62-
type: "sst.sst.Secret"
63-
value: string
64-
}
65-
STRIPE_WEBHOOK_SECRET: {
66-
type: "sst.sst.Linkable"
67-
value: string
68-
}
69-
Web: {
70-
type: "sst.cloudflare.Astro"
71-
url: string
72-
}
73-
XAI_API_KEY: {
74-
type: "sst.sst.Secret"
75-
value: string
9+
"ANTHROPIC_API_KEY": {
10+
"type": "sst.sst.Secret"
11+
"value": string
12+
}
13+
"AUTH_API_URL": {
14+
"type": "sst.sst.Linkable"
15+
"value": string
16+
}
17+
"BASETEN_API_KEY": {
18+
"type": "sst.sst.Secret"
19+
"value": string
20+
}
21+
"Console": {
22+
"type": "sst.cloudflare.SolidStart"
23+
"url": string
24+
}
25+
"Database": {
26+
"database": string
27+
"host": string
28+
"password": string
29+
"port": number
30+
"type": "sst.sst.Linkable"
31+
"username": string
32+
}
33+
"FIREWORKS_API_KEY": {
34+
"type": "sst.sst.Secret"
35+
"value": string
36+
}
37+
"GITHUB_APP_ID": {
38+
"type": "sst.sst.Secret"
39+
"value": string
40+
}
41+
"GITHUB_APP_PRIVATE_KEY": {
42+
"type": "sst.sst.Secret"
43+
"value": string
44+
}
45+
"GITHUB_CLIENT_ID_CONSOLE": {
46+
"type": "sst.sst.Secret"
47+
"value": string
48+
}
49+
"GITHUB_CLIENT_SECRET_CONSOLE": {
50+
"type": "sst.sst.Secret"
51+
"value": string
52+
}
53+
"GOOGLE_CLIENT_ID": {
54+
"type": "sst.sst.Secret"
55+
"value": string
56+
}
57+
"HONEYCOMB_API_KEY": {
58+
"type": "sst.sst.Secret"
59+
"value": string
60+
}
61+
"OPENAI_API_KEY": {
62+
"type": "sst.sst.Secret"
63+
"value": string
64+
}
65+
"STRIPE_SECRET_KEY": {
66+
"type": "sst.sst.Secret"
67+
"value": string
68+
}
69+
"STRIPE_WEBHOOK_SECRET": {
70+
"type": "sst.sst.Linkable"
71+
"value": string
72+
}
73+
"Web": {
74+
"type": "sst.cloudflare.Astro"
75+
"url": string
76+
}
77+
"XAI_API_KEY": {
78+
"type": "sst.sst.Secret"
79+
"value": string
7680
}
7781
}
7882
}
79-
// cloudflare
80-
import * as cloudflare from "@cloudflare/workers-types"
83+
// cloudflare
84+
import * as cloudflare from "@cloudflare/workers-types";
8185
declare module "sst" {
8286
export interface Resource {
83-
Api: cloudflare.Service
84-
AuthApi: cloudflare.Service
85-
AuthStorage: cloudflare.KVNamespace
86-
Bucket: cloudflare.R2Bucket
87-
LogProcessor: cloudflare.Service
87+
"Api": cloudflare.Service
88+
"AuthApi": cloudflare.Service
89+
"AuthStorage": cloudflare.KVNamespace
90+
"Bucket": cloudflare.R2Bucket
91+
"LogProcessor": cloudflare.Service
8892
}
8993
}
9094

9195
import "sst"
92-
export {}
96+
export {}

cloud/resource/sst-env.d.ts

Lines changed: 79 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -6,87 +6,91 @@
66
import "sst"
77
declare module "sst" {
88
export interface Resource {
9-
ANTHROPIC_API_KEY: {
10-
type: "sst.sst.Secret"
11-
value: string
12-
}
13-
AUTH_API_URL: {
14-
type: "sst.sst.Linkable"
15-
value: string
16-
}
17-
BASETEN_API_KEY: {
18-
type: "sst.sst.Secret"
19-
value: string
20-
}
21-
Console: {
22-
type: "sst.cloudflare.SolidStart"
23-
url: string
24-
}
25-
Database: {
26-
database: string
27-
host: string
28-
password: string
29-
port: number
30-
type: "sst.sst.Linkable"
31-
username: string
32-
}
33-
GITHUB_APP_ID: {
34-
type: "sst.sst.Secret"
35-
value: string
36-
}
37-
GITHUB_APP_PRIVATE_KEY: {
38-
type: "sst.sst.Secret"
39-
value: string
40-
}
41-
GITHUB_CLIENT_ID_CONSOLE: {
42-
type: "sst.sst.Secret"
43-
value: string
44-
}
45-
GITHUB_CLIENT_SECRET_CONSOLE: {
46-
type: "sst.sst.Secret"
47-
value: string
48-
}
49-
GOOGLE_CLIENT_ID: {
50-
type: "sst.sst.Secret"
51-
value: string
52-
}
53-
HONEYCOMB_API_KEY: {
54-
type: "sst.sst.Secret"
55-
value: string
56-
}
57-
OPENAI_API_KEY: {
58-
type: "sst.sst.Secret"
59-
value: string
60-
}
61-
STRIPE_SECRET_KEY: {
62-
type: "sst.sst.Secret"
63-
value: string
64-
}
65-
STRIPE_WEBHOOK_SECRET: {
66-
type: "sst.sst.Linkable"
67-
value: string
68-
}
69-
Web: {
70-
type: "sst.cloudflare.Astro"
71-
url: string
72-
}
73-
XAI_API_KEY: {
74-
type: "sst.sst.Secret"
75-
value: string
9+
"ANTHROPIC_API_KEY": {
10+
"type": "sst.sst.Secret"
11+
"value": string
12+
}
13+
"AUTH_API_URL": {
14+
"type": "sst.sst.Linkable"
15+
"value": string
16+
}
17+
"BASETEN_API_KEY": {
18+
"type": "sst.sst.Secret"
19+
"value": string
20+
}
21+
"Console": {
22+
"type": "sst.cloudflare.SolidStart"
23+
"url": string
24+
}
25+
"Database": {
26+
"database": string
27+
"host": string
28+
"password": string
29+
"port": number
30+
"type": "sst.sst.Linkable"
31+
"username": string
32+
}
33+
"FIREWORKS_API_KEY": {
34+
"type": "sst.sst.Secret"
35+
"value": string
36+
}
37+
"GITHUB_APP_ID": {
38+
"type": "sst.sst.Secret"
39+
"value": string
40+
}
41+
"GITHUB_APP_PRIVATE_KEY": {
42+
"type": "sst.sst.Secret"
43+
"value": string
44+
}
45+
"GITHUB_CLIENT_ID_CONSOLE": {
46+
"type": "sst.sst.Secret"
47+
"value": string
48+
}
49+
"GITHUB_CLIENT_SECRET_CONSOLE": {
50+
"type": "sst.sst.Secret"
51+
"value": string
52+
}
53+
"GOOGLE_CLIENT_ID": {
54+
"type": "sst.sst.Secret"
55+
"value": string
56+
}
57+
"HONEYCOMB_API_KEY": {
58+
"type": "sst.sst.Secret"
59+
"value": string
60+
}
61+
"OPENAI_API_KEY": {
62+
"type": "sst.sst.Secret"
63+
"value": string
64+
}
65+
"STRIPE_SECRET_KEY": {
66+
"type": "sst.sst.Secret"
67+
"value": string
68+
}
69+
"STRIPE_WEBHOOK_SECRET": {
70+
"type": "sst.sst.Linkable"
71+
"value": string
72+
}
73+
"Web": {
74+
"type": "sst.cloudflare.Astro"
75+
"url": string
76+
}
77+
"XAI_API_KEY": {
78+
"type": "sst.sst.Secret"
79+
"value": string
7680
}
7781
}
7882
}
79-
// cloudflare
80-
import * as cloudflare from "@cloudflare/workers-types"
83+
// cloudflare
84+
import * as cloudflare from "@cloudflare/workers-types";
8185
declare module "sst" {
8286
export interface Resource {
83-
Api: cloudflare.Service
84-
AuthApi: cloudflare.Service
85-
AuthStorage: cloudflare.KVNamespace
86-
Bucket: cloudflare.R2Bucket
87-
LogProcessor: cloudflare.Service
87+
"Api": cloudflare.Service
88+
"AuthApi": cloudflare.Service
89+
"AuthStorage": cloudflare.KVNamespace
90+
"Bucket": cloudflare.R2Bucket
91+
"LogProcessor": cloudflare.Service
8892
}
8993
}
9094

9195
import "sst"
92-
export {}
96+
export {}

cloud/scripts/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

github/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

0 commit comments

Comments
 (0)