Skip to content

Commit

Permalink
Merge pull request #136 from wizelineacademy/sst-fix
Browse files Browse the repository at this point in the history
chore: Updated sst version
  • Loading branch information
JulioEmmmanuel authored Jun 4, 2024
2 parents a94d04c + e013a06 commit d558a58
Showing 1 changed file with 54 additions and 1 deletion.
55 changes: 54 additions & 1 deletion sst-env.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,54 @@
/// <reference path="./.sst/types.generated.ts" />
/* tslint:disable */
/* eslint-disable */
import "sst"
declare module "sst" {
export interface Resource {
FacebookId: {
type: "sst.sst.Secret"
value: string
}
FacebookSecret: {
type: "sst.sst.Secret"
value: string
}
GeminiApiKey: {
type: "sst.sst.Secret"
value: string
}
GoogleId: {
type: "sst.sst.Secret"
value: string
}
GoogleSecret: {
type: "sst.sst.Secret"
value: string
}
GraphApiToken: {
type: "sst.sst.Secret"
value: string
}
MyBucket: {
name: string
type: "sst.aws.Bucket"
}
MyDatabase: {
clusterArn: string
database: string
secretArn: string
type: "sst.aws.Postgres"
}
MyWeb: {
type: "sst.aws.Nextjs"
url: string
}
OpenApiKey: {
type: "sst.sst.Secret"
value: string
}
WebhookVerifyToken: {
type: "sst.sst.Secret"
value: string
}
}
}
export {}

0 comments on commit d558a58

Please sign in to comment.