From 0e12a5c47a8d755670810fbc56c20b2c8efe57a6 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 27 Jun 2026 22:27:00 +0000 Subject: [PATCH 1/3] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 794dabc..233b433 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 12 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sequenzy/sequenzy-c6fd81590d42e585def0ace329e14712c04163516175ce4a4abcb02a855e3c95.yml -openapi_spec_hash: a802ba0889a22ce20cf282b1ba168c54 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sequenzy/sequenzy-a044204816541ac2a984a9aea54ceac543dd510246b2562271f3fae161bf3454.yml +openapi_spec_hash: a48870a133418f00b9d667fd3251e6c4 config_hash: 51c1d1194ac58d8c8e3162839c8f84dd From ed24d5732e25a4101f034db0e495c9bc78976ac3 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 11:27:02 +0000 Subject: [PATCH 2/3] feat(api): api update --- .stats.yml | 4 +-- src/resources/subscribers/subscribers.ts | 34 ++++++++++++++++++++++-- 2 files changed, 34 insertions(+), 4 deletions(-) diff --git a/.stats.yml b/.stats.yml index 233b433..e7050ac 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 12 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sequenzy/sequenzy-a044204816541ac2a984a9aea54ceac543dd510246b2562271f3fae161bf3454.yml -openapi_spec_hash: a48870a133418f00b9d667fd3251e6c4 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sequenzy/sequenzy-8a0acc1c46addc277e6a3f99b5cb30988f6a169b52c1c67101ce8d4d2c11806d.yml +openapi_spec_hash: 010be44d4524b428a4b4e1041b27d00e config_hash: 51c1d1194ac58d8c8e3162839c8f84dd diff --git a/src/resources/subscribers/subscribers.ts b/src/resources/subscribers/subscribers.ts index df9b234..37a87f4 100644 --- a/src/resources/subscribers/subscribers.ts +++ b/src/resources/subscribers/subscribers.ts @@ -43,8 +43,8 @@ export class Subscribers extends APIResource { } /** - * Retrieves a subscriber by their email address, including list memberships, - * sequence enrollments, email stats, and recent activity. + * Retrieves a subscriber by their email address, including notes, list + * memberships, sequence enrollments, email stats, and recent activity. * * @example * ```ts @@ -188,6 +188,8 @@ export namespace SubscriberRetrieveResponse { lists?: Array; + notes?: Array; + sequenceEnrollments?: Array; } @@ -257,6 +259,34 @@ export namespace SubscriberRetrieveResponse { unsubscribedAt?: string | null; } + export interface Note { + id?: string; + + author?: Note.Author | null; + + authorId?: string; + + body?: string; + + companyId?: string; + + createdAt?: string; + + subscriberId?: string; + + updatedAt?: string; + } + + export namespace Note { + export interface Author { + id?: string; + + email?: string | null; + + name?: string | null; + } + } + export interface SequenceEnrollment { currentNodeId?: string; From 1769149558dc31436c7400abd12f5f8172524765 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 11:27:26 +0000 Subject: [PATCH 3/3] release: 0.27.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c84411f..2b11449 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.26.0" + ".": "0.27.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e36337..f5042cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.27.0 (2026-06-29) + +Full Changelog: [v0.26.0...v0.27.0](https://github.com/Sequenzy/sequenzy-typescript/compare/v0.26.0...v0.27.0) + +### Features + +* **api:** api update ([ed24d57](https://github.com/Sequenzy/sequenzy-typescript/commit/ed24d5732e25a4101f034db0e495c9bc78976ac3)) + ## 0.26.0 (2026-06-26) Full Changelog: [v0.25.0...v0.26.0](https://github.com/Sequenzy/sequenzy-typescript/compare/v0.25.0...v0.26.0) diff --git a/package.json b/package.json index 599ca38..1d50784 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sequenzy", - "version": "0.26.0", + "version": "0.27.0", "description": "The official TypeScript library for the Sequenzy API", "author": "Sequenzy ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index aa25151..288031c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.26.0'; // x-release-please-version +export const VERSION = '0.27.0'; // x-release-please-version