@isnap/sdk 1.1.0-next.54 → 1.1.0-next.55

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.
@@ -4404,6 +4404,10 @@ export interface paths {
4404
4404
  billing_tier?: "rental_iphone" | "rental_android" | "byod_imessage" | "byod_android" | "shared_pool";
4405
4405
  area_code?: string;
4406
4406
  country_code?: string;
4407
+ /** @description US state filter — 2-letter code or full name. */
4408
+ state?: string;
4409
+ /** @description Country filter — ISO alpha-2 code or country name. */
4410
+ country?: string;
4407
4411
  status?: string;
4408
4412
  page?: number;
4409
4413
  limit?: number;
@@ -11039,6 +11043,8 @@ export interface components {
11039
11043
  phone_number: string;
11040
11044
  area_code: string | null;
11041
11045
  country_code: string | null;
11046
+ state: string | null;
11047
+ state_name: string | null;
11042
11048
  /** @enum {string} */
11043
11049
  billing_tier: "rental_iphone" | "rental_android" | "byod_imessage" | "byod_android" | "shared_pool";
11044
11050
  /** @description True when the customer owns the underlying hardware (BYOD billing tiers). BYOD lines expose the full line-health surface (offline/degraded events, GET /v1/lines/{id}/health). Rental lines (false) only emit durable, actionable events to keep customers out of transient infrastructure noise they cannot act on. */
@@ -11467,7 +11473,7 @@ export interface components {
11467
11473
  next_cursor: string | null;
11468
11474
  };
11469
11475
  Webhook: {
11470
- /** Format: uuid */
11476
+ /** @example wh_3Kp8Rn9Fh2Lm5Qx7Vw1Yz4Bc */
11471
11477
  id: string;
11472
11478
  url: string;
11473
11479
  events?: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isnap/sdk",
3
- "version": "1.1.0-next.54",
3
+ "version": "1.1.0-next.55",
4
4
  "description": "Official TypeScript SDK for the iSnap P2P telephony API",
5
5
  "license": "MIT",
6
6
  "type": "module",