Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/major-sites-search.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@stripe/link-sdk": patch
"@stripe/link-cli": patch
---

Fix: allow nickname to be undefined in shipping address resource
2 changes: 1 addition & 1 deletion packages/sdk/src/resources/shipping-address.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { z } from 'zod';
const shippingAddressSchema = z.looseObject({
id: z.string(),
is_default: z.boolean(),
nickname: z.string().nullable(),
nickname: z.optional(z.string().nullable()),
address: z.looseObject({}).nullable(),
});
const shippingAddressesResponseSchema = z.looseObject({
Expand Down
2 changes: 1 addition & 1 deletion plugins/cursor-link/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "link",
"displayName": "Link",
"version": "0.14.1",
"version": "0.15.0",
"description": "Complete purchases with one-time-use payment credentials from a Link wallet, using spend requests the user has approved.",
"author": {
"name": "Stripe"
Expand Down
2 changes: 1 addition & 1 deletion plugins/link/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "link",
"version": "0.11.0",
"version": "0.15.0",
"description": "Authenticate with Link, create spend requests, and retrieve one-time-use card or shared payment token credentials for user-approved purchases.",
"author": {
"name": "Stripe"
Expand Down
2 changes: 1 addition & 1 deletion plugins/link/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "link",
"version": "0.11.0",
"version": "0.15.0",
"description": "Secure, one-time-use payment credentials from Link",
"author": {
"name": "Stripe",
Expand Down
2 changes: 1 addition & 1 deletion skills/create-payment-credential/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 0.11.0
version: 0.15.0
name: create-payment-credential
description: |
Gets secure, one-time-use payment credentials (cards, tokens) from a Link wallet so agents can complete purchases on behalf of users. Use when the user says "get me a card", "buy something", "pay for X", "make a purchase", "I need to pay", "complete checkout", or asks to transact on any merchant site. Use when the user asks to connect or log in to or sign up for their Link account.
Expand Down
2 changes: 1 addition & 1 deletion skills/financial-insights/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 0.11.0
version: 0.15.0
name: financial-insights
description: |
Reads a user's Link financial data — transactions, balances, and wallet sources — so agents can answer questions about spending and available source capabilities. Use when the user says "check my balance", "how much did I spend", "show my transactions", "what accounts are connected", "summarize my spending", "recent purchases", or asks about their financial activity, account balances, or linked sources.
Expand Down
Loading