alchemy 2.0.0-beta.73 → 2.0.0-beta.74
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.
- package/README.md +1 -1
- package/lib/State/HttpStateApi.d.ts +8 -8
- package/package.json +13 -9
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ One `ReadWriteBucket(Bucket)` call wires the binding, env var, and typed client
|
|
|
50
50
|
- **Same code, every stage.** Local dev, `plan` / `deploy`, smoke tests, and CI all share one mental model.
|
|
51
51
|
|
|
52
52
|
```sh
|
|
53
|
-
bun add alchemy@
|
|
53
|
+
bun add alchemy@latest effect@rc
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
## GitHub Action
|
|
@@ -115,22 +115,22 @@ declare const StateGroup_base: HttpApiGroup.HttpApiGroup<"state", HttpApiEndpoin
|
|
|
115
115
|
readonly stack: Schema.String;
|
|
116
116
|
readonly stage: Schema.String;
|
|
117
117
|
readonly fqn: Schema.String;
|
|
118
|
-
}>>, never, never, never, Schema.toCodecJson<HttpApiSchema.NoContent>, never, StateAuth, BearerTokenValidator> | HttpApiEndpoint.HttpApiEndpoint<"
|
|
119
|
-
readonly stack: Schema.String;
|
|
120
|
-
}>>, never, never, never, Schema.toCodecJson<Schema.$Array<Schema.String>>, never, StateAuth, BearerTokenValidator> | HttpApiEndpoint.HttpApiEndpoint<"getStackOutput", "GET", "/state/stacks/:stack/stages/:stage/output", Schema.toCodecStringTree<Schema.Struct<{
|
|
118
|
+
}>>, never, never, never, Schema.toCodecJson<HttpApiSchema.NoContent>, never, StateAuth, BearerTokenValidator> | HttpApiEndpoint.HttpApiEndpoint<"getReplacedResources", "GET", "/state/stacks/:stack/stages/:stage/replaced-resources", Schema.toCodecStringTree<Schema.Struct<{
|
|
121
119
|
readonly stack: Schema.String;
|
|
122
120
|
readonly stage: Schema.String;
|
|
123
|
-
}>>, never, never, never, Schema.toCodecJson<Schema
|
|
121
|
+
}>>, never, never, never, Schema.toCodecJson<Schema.$Array<Schema.Any>>, never, StateAuth, BearerTokenValidator> | HttpApiEndpoint.HttpApiEndpoint<"getStackOutput", "GET", "/state/stacks/:stack/stages/:stage/output", Schema.toCodecStringTree<Schema.Struct<{
|
|
124
122
|
readonly stack: Schema.String;
|
|
125
123
|
readonly stage: Schema.String;
|
|
126
|
-
}>>, never, never, never, Schema.toCodecJson<Schema
|
|
124
|
+
}>>, never, never, never, Schema.toCodecJson<Schema.UndefinedOr<Schema.Any>>, never, StateAuth, BearerTokenValidator> | HttpApiEndpoint.HttpApiEndpoint<"getState", "GET", "/state/stacks/:stack/stages/:stage/resources/:fqn", Schema.toCodecStringTree<Schema.Struct<{
|
|
127
125
|
readonly stack: Schema.String;
|
|
128
126
|
readonly stage: Schema.String;
|
|
129
|
-
|
|
127
|
+
readonly fqn: Schema.String;
|
|
128
|
+
}>>, never, never, never, Schema.toCodecJson<Schema.UndefinedOr<Schema.Any>>, never, StateAuth, BearerTokenValidator> | HttpApiEndpoint.HttpApiEndpoint<"listResources", "GET", "/state/stacks/:stack/stages/:stage/resources", Schema.toCodecStringTree<Schema.Struct<{
|
|
130
129
|
readonly stack: Schema.String;
|
|
131
130
|
readonly stage: Schema.String;
|
|
132
|
-
|
|
133
|
-
|
|
131
|
+
}>>, never, never, never, Schema.toCodecJson<Schema.$Array<Schema.String>>, never, StateAuth, BearerTokenValidator> | HttpApiEndpoint.HttpApiEndpoint<"listStacks", "GET", "/state/stacks", never, never, never, never, Schema.toCodecJson<Schema.$Array<Schema.String>>, never, StateAuth, BearerTokenValidator> | HttpApiEndpoint.HttpApiEndpoint<"listStages", "GET", "/state/stacks/:stack/stages", Schema.toCodecStringTree<Schema.Struct<{
|
|
132
|
+
readonly stack: Schema.String;
|
|
133
|
+
}>>, never, never, never, Schema.toCodecJson<Schema.$Array<Schema.String>>, never, StateAuth, BearerTokenValidator> | HttpApiEndpoint.HttpApiEndpoint<"setStackOutput", "PUT", "/state/stacks/:stack/stages/:stage/output", Schema.toCodecStringTree<Schema.Struct<{
|
|
134
134
|
readonly stack: Schema.String;
|
|
135
135
|
readonly stage: Schema.String;
|
|
136
136
|
}>>, never, Schema.toCodecJson<Schema.Any>, never, Schema.toCodecJson<Schema.Any>, never, StateAuth, BearerTokenValidator> | HttpApiEndpoint.HttpApiEndpoint<"setState", "PUT", "/state/stacks/:stack/stages/:stage/resources/:fqn", Schema.toCodecStringTree<Schema.Struct<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alchemy",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.74",
|
|
4
4
|
"description": "Infrastructure as Effects for TypeScript.",
|
|
5
5
|
"homepage": "https://alchemy.run",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -403,17 +403,17 @@
|
|
|
403
403
|
"rolldown": "1.1.5",
|
|
404
404
|
"undici": "^7.16.0",
|
|
405
405
|
"yaml": "^2.0.0",
|
|
406
|
-
"@alchemy.run/
|
|
407
|
-
"@alchemy.run/
|
|
408
|
-
"@
|
|
406
|
+
"@alchemy.run/cloudflare-runtime": "2.0.0-beta.74",
|
|
407
|
+
"@alchemy.run/floci": "2.0.0-beta.74",
|
|
408
|
+
"@distilled.cloud/aws": "1.0.0-rc.6",
|
|
409
409
|
"@distilled.cloud/axiom": "1.0.0-rc.6",
|
|
410
|
+
"@alchemy.run/node-utils": "2.0.0-beta.74",
|
|
410
411
|
"@distilled.cloud/cloudflare": "1.0.0-rc.6",
|
|
411
|
-
"@distilled.cloud/aws": "1.0.0-rc.6",
|
|
412
412
|
"@distilled.cloud/core": "1.0.0-rc.6",
|
|
413
|
+
"@distilled.cloud/fly-io": "1.0.0-rc.6",
|
|
413
414
|
"@distilled.cloud/hetzner": "1.0.0-rc.6",
|
|
414
|
-
"@distilled.cloud/neon": "1.0.0-rc.6",
|
|
415
415
|
"@distilled.cloud/planetscale": "1.0.0-rc.6",
|
|
416
|
-
"@distilled.cloud/
|
|
416
|
+
"@distilled.cloud/neon": "1.0.0-rc.6"
|
|
417
417
|
},
|
|
418
418
|
"devDependencies": {
|
|
419
419
|
"@aws/durable-execution-sdk-js": "^2.1.0",
|
|
@@ -471,7 +471,7 @@
|
|
|
471
471
|
"waku": "1.0.0-beta.7",
|
|
472
472
|
"wrangler": "^4.103.0",
|
|
473
473
|
"ws": "^8.20.0",
|
|
474
|
-
"@alchemy.run/frontend-frameworks": "2.0.0-beta.
|
|
474
|
+
"@alchemy.run/frontend-frameworks": "2.0.0-beta.74",
|
|
475
475
|
"alchemy-test": "0.0.0"
|
|
476
476
|
},
|
|
477
477
|
"peerDependencies": {
|
|
@@ -488,9 +488,13 @@
|
|
|
488
488
|
"mysql2": "^3.23.2",
|
|
489
489
|
"pg": "^8.22.0",
|
|
490
490
|
"vite": "^8.0.7",
|
|
491
|
-
"ws": "^8.20.0"
|
|
491
|
+
"ws": "^8.20.0",
|
|
492
|
+
"@alchemy.run/frontend-frameworks": "2.0.0-beta.74"
|
|
492
493
|
},
|
|
493
494
|
"peerDependenciesMeta": {
|
|
495
|
+
"@alchemy.run/frontend-frameworks": {
|
|
496
|
+
"optional": true
|
|
497
|
+
},
|
|
494
498
|
"@aws/durable-execution-sdk-js": {
|
|
495
499
|
"optional": true
|
|
496
500
|
},
|