@isnap/sdk 1.3.0-next.97 → 1.3.0-next.99

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.
@@ -2527,9 +2527,15 @@ export interface paths {
2527
2527
  requestBody?: {
2528
2528
  content: {
2529
2529
  "application/json": {
2530
- /** Format: uuid */
2530
+ /**
2531
+ * @description Line to check out. Send the `line_<base62>` public ID returned by `POST /v1/lines/{id}/reserve`; the internal UUID is also accepted for backward compatibility. Must be status `reserved`.
2532
+ * @example line_2k9Qp7RtY4mNb8VcXs3Wd6Lf1
2533
+ */
2531
2534
  line_id: string;
2532
- /** @default false */
2535
+ /**
2536
+ * @description Pick the inbound-only rental price variant (WHA-1153). Rental tiers only; the chosen Stripe price is the source of truth — `lines.inbound_only` is re-derived from its lookup_key on `customer.subscription.created/updated`.
2537
+ * @default false
2538
+ */
2533
2539
  inbound_only?: boolean;
2534
2540
  };
2535
2541
  };
@@ -3317,6 +3323,7 @@ export interface paths {
3317
3323
  content: {
3318
3324
  "application/json": {
3319
3325
  line_id: string;
3326
+ /** @description Recipient phone number. E.164 preferred; loose national forms are normalized (US default region). Phone-only in v1 — an email / Apple-ID handle is rejected with 400 even when POST /v1/lookup reports it iMessage-capable. */
3320
3327
  to: string;
3321
3328
  body?: string;
3322
3329
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isnap/sdk",
3
- "version": "1.3.0-next.97",
3
+ "version": "1.3.0-next.99",
4
4
  "description": "Official TypeScript SDK for the iSnap P2P telephony API",
5
5
  "license": "MIT",
6
6
  "type": "module",