This commit is contained in:
Frank
2026-05-21 13:55:31 -04:00
parent e4957a78ea
commit a568f616c9
6 changed files with 1526 additions and 14 deletions
+36 -9
View File
@@ -22,10 +22,22 @@ declare module "sst" {
"type": "sst.sst.Secret"
"value": string
}
"Api": import("@cloudflare/workers-types").Service
"AuthApi": import("@cloudflare/workers-types").Service
"AuthStorage": import("@cloudflare/workers-types").KVNamespace
"Bucket": import("@cloudflare/workers-types").R2Bucket
"Api": {
"type": "sst.cloudflare.Worker"
"url": string
}
"AuthApi": {
"type": "sst.cloudflare.Worker"
"url": string
}
"AuthStorage": {
"namespaceId": string
"type": "sst.cloudflare.Kv"
}
"Bucket": {
"name": string
"type": "sst.cloudflare.Bucket"
}
"CLOUDFLARE_API_TOKEN": {
"type": "sst.sst.Secret"
"value": string
@@ -62,7 +74,10 @@ declare module "sst" {
"type": "sst.sst.Secret"
"value": string
}
"EnterpriseStorage": import("@cloudflare/workers-types").R2Bucket
"EnterpriseStorage": {
"name": string
"type": "sst.cloudflare.Bucket"
}
"FEISHU_APP_ID": {
"type": "sst.sst.Secret"
"value": string
@@ -99,7 +114,9 @@ declare module "sst" {
"type": "random.index/randomPassword.RandomPassword"
"value": string
}
"LogProcessor": import("@cloudflare/workers-types").Service
"LogProcessor": {
"type": "sst.cloudflare.Worker"
}
"R2AccessKey": {
"type": "sst.sst.Secret"
"value": string
@@ -132,7 +149,10 @@ declare module "sst" {
"type": "sst.sst.Linkable"
"value": string
}
"Stat": import("@cloudflare/workers-types").Service
"Stat": {
"type": "sst.cloudflare.Worker"
"url": string
}
"Teams": {
"type": "sst.cloudflare.SolidStart"
"url": string
@@ -291,10 +311,17 @@ declare module "sst" {
"type": "sst.sst.Secret"
"value": string
}
"ZenData": import("@cloudflare/workers-types").R2Bucket
"ZenDataNew": import("@cloudflare/workers-types").R2Bucket
"ZenData": {
"name": string
"type": "sst.cloudflare.Bucket"
}
"ZenDataNew": {
"name": string
"type": "sst.cloudflare.Bucket"
}
}
}
/// <reference path="sst-env.d.ts" />
import "sst"
export {}