@sealant/sdk 0.2.0 → 0.3.1

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.
@@ -559,6 +559,12 @@ declare const buildControlPlaneClient: (config: SealantInternalConfig) => Effect
559
559
  readonly status?: "cancelled" | "completed" | "failed" | "queued" | "running" | undefined;
560
560
  readonly exitCode?: number | undefined;
561
561
  readonly errorMessage?: string | undefined;
562
+ readonly diff?: string | undefined;
563
+ readonly changedFiles?: readonly {
564
+ readonly path: string;
565
+ readonly change: "added" | "deleted" | "modified" | "renamed";
566
+ readonly oldPath?: string | undefined;
567
+ }[] | undefined;
562
568
  };
563
569
  readonly responseMode?: Mode;
564
570
  }) => Effect.Effect<HttpApiClient.Client.Response<{
@@ -1436,6 +1442,12 @@ declare const SealantApiClient_base: Context.ServiceClass<SealantApiClient, "@se
1436
1442
  readonly status?: "cancelled" | "completed" | "failed" | "queued" | "running" | undefined;
1437
1443
  readonly exitCode?: number | undefined;
1438
1444
  readonly errorMessage?: string | undefined;
1445
+ readonly diff?: string | undefined;
1446
+ readonly changedFiles?: readonly {
1447
+ readonly path: string;
1448
+ readonly change: "added" | "deleted" | "modified" | "renamed";
1449
+ readonly oldPath?: string | undefined;
1450
+ }[] | undefined;
1439
1451
  };
1440
1452
  readonly responseMode?: Mode;
1441
1453
  }) => Effect.Effect<HttpApiClient.Client.Response<{
@@ -169,6 +169,12 @@ export declare const updateRunOp: (runId: string, payload: {
169
169
  readonly status?: "cancelled" | "completed" | "failed" | "queued" | "running" | undefined;
170
170
  readonly exitCode?: number | undefined;
171
171
  readonly errorMessage?: string | undefined;
172
+ readonly diff?: string | undefined;
173
+ readonly changedFiles?: readonly {
174
+ readonly path: string;
175
+ readonly change: "added" | "deleted" | "modified" | "renamed";
176
+ readonly oldPath?: string | undefined;
177
+ }[] | undefined;
172
178
  }) => Effect.Effect<{
173
179
  readonly runId: string;
174
180
  readonly sandboxId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sealant/sdk",
3
- "version": "0.2.0",
3
+ "version": "0.3.1",
4
4
  "description": "The fluent public SDK for Sealant — create a sandbox, run a harness, replay the record.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "effect": "^4.0.0-beta.85",
26
- "@sealant/api-contracts": "^0.2.0"
26
+ "@sealant/api-contracts": "^0.3.1"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@effect/vitest": "^4.0.0-beta.85",