Skip to content

Commit f277512

Browse files
committed
chore: format code
1 parent 4ceabdf commit f277512

File tree

14 files changed

+316
-316
lines changed

14 files changed

+316
-316
lines changed

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 {}

packages/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 {}

packages/console/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 {}

packages/console/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 {}

packages/console/function/sst-env.d.ts

Lines changed: 79 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -6,91 +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-
"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
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
8080
}
8181
}
8282
}
83-
// cloudflare
84-
import * as cloudflare from "@cloudflare/workers-types";
83+
// cloudflare
84+
import * as cloudflare from "@cloudflare/workers-types"
8585
declare module "sst" {
8686
export interface Resource {
87-
"Api": cloudflare.Service
88-
"AuthApi": cloudflare.Service
89-
"AuthStorage": cloudflare.KVNamespace
90-
"Bucket": cloudflare.R2Bucket
91-
"LogProcessor": cloudflare.Service
87+
Api: cloudflare.Service
88+
AuthApi: cloudflare.Service
89+
AuthStorage: cloudflare.KVNamespace
90+
Bucket: cloudflare.R2Bucket
91+
LogProcessor: cloudflare.Service
9292
}
9393
}
9494

9595
import "sst"
96-
export {}
96+
export {}

packages/console/resource/sst-env.d.ts

Lines changed: 79 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -6,91 +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-
"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
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
8080
}
8181
}
8282
}
83-
// cloudflare
84-
import * as cloudflare from "@cloudflare/workers-types";
83+
// cloudflare
84+
import * as cloudflare from "@cloudflare/workers-types"
8585
declare module "sst" {
8686
export interface Resource {
87-
"Api": cloudflare.Service
88-
"AuthApi": cloudflare.Service
89-
"AuthStorage": cloudflare.KVNamespace
90-
"Bucket": cloudflare.R2Bucket
91-
"LogProcessor": cloudflare.Service
87+
Api: cloudflare.Service
88+
AuthApi: cloudflare.Service
89+
AuthStorage: cloudflare.KVNamespace
90+
Bucket: cloudflare.R2Bucket
91+
LogProcessor: cloudflare.Service
9292
}
9393
}
9494

9595
import "sst"
96-
export {}
96+
export {}

packages/console/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 {}

0 commit comments

Comments
 (0)