@isnap/sdk 1.3.0-next.64 → 1.3.0-next.66
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.
|
@@ -387,7 +387,7 @@ export interface paths {
|
|
|
387
387
|
};
|
|
388
388
|
/**
|
|
389
389
|
* List available lines (public marketplace)
|
|
390
|
-
* @description Browse the marketplace inventory of unassigned lines. Filter by billing tier, area code, country code,
|
|
390
|
+
* @description Browse the marketplace inventory of unassigned lines. Filter by billing tier, area code, country code, state, country. Returns only `status: available` and never the iSnap-internal `shared_pool` tier — `?status=` therefore accepts `available` alone and refuses any other status with a 400, rather than answering with a list you did not ask for (WHA-2777). Unauthenticated — partners use this in prospecting / quote flows.
|
|
391
391
|
*/
|
|
392
392
|
get: {
|
|
393
393
|
parameters: {
|
|
@@ -399,6 +399,7 @@ export interface paths {
|
|
|
399
399
|
state?: string;
|
|
400
400
|
/** @description Country filter — ISO alpha-2 code or country name. */
|
|
401
401
|
country?: string;
|
|
402
|
+
/** @description Comma-separated set of statuses to filter on. Every member must be one of: available — anything else is a 400, never an empty list. Omitted or blank means no status filter. */
|
|
402
403
|
status?: string;
|
|
403
404
|
page?: number;
|
|
404
405
|
limit?: number;
|