From b55f979760b4af0b6147fc1fc273bb36e53a00cb Mon Sep 17 00:00:00 2001 From: Jithendra Nara Date: Tue, 17 Mar 2026 14:39:47 -0400 Subject: [PATCH 1/2] feat: add badges to README - npm version badge - License badge - Test status badge --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 541419a..551bdd8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # @google/stitch-sdk +[![npm version](https://img.shields.io/npm/v/@google/stitch-sdk)](https://www.npmjs.com/package/@google/stitch-sdk) +[![License](https://img.shields.io/npm/l/@google/stitch-sdk)](LICENSE) +[![Test Status](https://github.com/google-labs-code/stitch-sdk/actions/workflows/test.yml/badge.svg)](https://github.com/google-labs-code/stitch-sdk/actions) + Generate UI screens from text prompts and extract their HTML and screenshots programmatically. ## Quick Start From 846398f95fd745f8957ed210fcaf001ee53d4a19 Mon Sep 17 00:00:00 2001 From: Jithendra Nara Date: Tue, 17 Mar 2026 14:46:16 -0400 Subject: [PATCH 2/2] feat: export StitchProxyConfigSchema for proxy configuration --- bun.lock | 1 + packages/sdk/src/index.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/bun.lock b/bun.lock index 4b7fa82..39cece0 100644 --- a/bun.lock +++ b/bun.lock @@ -1,5 +1,6 @@ { "lockfileVersion": 1, + "configVersion": 0, "workspaces": { "": { "name": "stitch-root", diff --git a/packages/sdk/src/index.ts b/packages/sdk/src/index.ts index 780cb18..f55f2e9 100644 --- a/packages/sdk/src/index.ts +++ b/packages/sdk/src/index.ts @@ -29,6 +29,7 @@ export { StitchError, StitchErrorCode } from "./spec/errors.js"; // Types (config + data interfaces) export type { StitchConfig, StitchConfigInput } from "./spec/client.js"; +export { StitchProxyConfigSchema } from "./spec/proxy.js"; export type { ProjectData, GenerateScreenParams,