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/.stats.yml b/.stats.yml index 794dabc..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-c6fd81590d42e585def0ace329e14712c04163516175ce4a4abcb02a855e3c95.yml -openapi_spec_hash: a802ba0889a22ce20cf282b1ba168c54 +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/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/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; 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