@isnap/sdk 1.3.0-next.69 → 1.3.0-next.71

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.
@@ -6944,6 +6944,27 @@ export interface components {
6944
6944
  region: string;
6945
6945
  /** @example US */
6946
6946
  country_code: string;
6947
+ /**
6948
+ * @description A ZIP code whose geography this area code serves — the postal address to use at purchase, and the address most likely to have the carrier assign this area code. `null` when no ZIP is on record for this code: choosing the address is then a judgement call for the operator, and this catalogue may not know of an overlay covering the code either, so no regional address can be assumed to yield it.
6949
+ * @example 10019
6950
+ */
6951
+ purchase_zip: string | null;
6952
+ /**
6953
+ * @description Fallback ZIPs in the same geography, to retry with if the carrier rejects the primary. Empty when no ZIP is on record.
6954
+ * @example [
6955
+ * "10021",
6956
+ * "10023"
6957
+ * ]
6958
+ */
6959
+ alt_zips: string[];
6960
+ /**
6961
+ * @description Other area codes IN THIS CATALOGUE that overlay the same geography. Non-empty means NO address can guarantee this specific code — the carrier may assign any code in the complex. An empty list is NOT the converse guarantee: it says only that no code this endpoint can offer is known to overlay this one, and an overlay outside the catalogue may still take the number.
6962
+ * @example [
6963
+ * "646",
6964
+ * "917"
6965
+ * ]
6966
+ */
6967
+ shared_with: string[];
6947
6968
  };
6948
6969
  Country: {
6949
6970
  /** @example US */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isnap/sdk",
3
- "version": "1.3.0-next.69",
3
+ "version": "1.3.0-next.71",
4
4
  "description": "Official TypeScript SDK for the iSnap P2P telephony API",
5
5
  "license": "MIT",
6
6
  "type": "module",