@myapihq/sdk 2.31.0 → 2.31.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.
@@ -19,6 +19,16 @@ export interface Container {
19
19
  egress: string;
20
20
  /** Startup probe path. Absent (omitempty) when the probe is a bare TCP connect. */
21
21
  health_check?: string;
22
+ /** Human explanation of a build_error / deploy_error, from the platform. */
23
+ error?: string;
24
+ /**
25
+ * Which half failed. `build` is the customer's image; `deploy` is our rollout
26
+ * of an image that built fine — the distinction that decides whether their
27
+ * logs are worth reading at all.
28
+ */
29
+ error_stage?: 'build' | 'deploy';
30
+ /** True when the failure was infrastructure-side and retrying is reasonable. */
31
+ error_retryable?: boolean;
22
32
  created_at: string;
23
33
  updated_at: string;
24
34
  }
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "2.31.0";
1
+ export declare const SDK_VERSION = "2.31.1";
package/dist/version.js CHANGED
@@ -8,4 +8,4 @@ exports.SDK_VERSION = void 0;
8
8
  // Why a constant and not a package.json read: the SDK runs inside edge
9
9
  // functions (Cloudflare Workers), so it must not import node:fs. A literal
10
10
  // is the only version source that works in every runtime we ship to.
11
- exports.SDK_VERSION = '2.31.0';
11
+ exports.SDK_VERSION = '2.31.1';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@myapihq/sdk",
3
3
  "license": "Apache-2.0",
4
- "version": "2.31.0",
4
+ "version": "2.31.1",
5
5
  "description": "TypeScript SDK for the MyAPI ecosystem",
6
6
  "repository": {
7
7
  "type": "git",