late-sdk 0.0.571 → 0.0.572
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.
- checksums.yaml +4 -4
- data/docs/CheckPhoneNumberAvailability200Response.md +1 -1
- data/docs/CheckPhoneNumberAvailability200ResponseAreaOptionsInner.md +2 -2
- data/lib/zernio-sdk/models/check_phone_number_availability200_response.rb +1 -1
- data/lib/zernio-sdk/models/check_phone_number_availability200_response_area_options_inner.rb +2 -2
- data/lib/zernio-sdk/version.rb +1 -1
- data/openapi.yaml +16 -8
- data/zernio-sdk-0.0.572.gem +0 -0
- metadata +2 -2
- data/zernio-sdk-0.0.571.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5e3324f317e16b81226d00a5144c9cd5aeeec1a79045cc0055a88a593f856d0c
|
|
4
|
+
data.tar.gz: 54ea0e6fa0ac0674cd5804a98f8e60af70edd21de4f469cb1ce457248487933e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2add62050a6026d715f09327fee6e3b48342f76ee1c93e2d613f04c3bec36bce2f5edd530be962201f7c19e4d1f81fad73f46b55d8026ea01ddd477d05c8ba8
|
|
7
|
+
data.tar.gz: 59e1a9127a67820a19e809cdd74e73d6551c3ddd13a98df4930fd6051283763ee61bb886b1cd58cdd63e3d60cf937a496fa8fc2e41ed9429090c88c67ac8de42
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
| **available** | **Boolean** | Whether deliverable voice inventory exists right now. | [optional] |
|
|
10
10
|
| **address_constraint** | **String** | | [optional] |
|
|
11
11
|
| **areas** | **Array<String>** | For `geo` only — the area(s) the registered address must be in. | [optional] |
|
|
12
|
-
| **area_options** | [**Array<CheckPhoneNumberAvailability200ResponseAreaOptionsInner>**](CheckPhoneNumberAvailability200ResponseAreaOptionsInner.md) | Live inventory grouped by area code, largest stock first. Empty when out of stock (or the area lookup failed). Pass a chosen `ndc` as `areaCode` on POST /v1/phone-numbers/purchase (or on the KYC submit for regulated countries) to require that area. | [optional] |
|
|
12
|
+
| **area_options** | [**Array<CheckPhoneNumberAvailability200ResponseAreaOptionsInner>**](CheckPhoneNumberAvailability200ResponseAreaOptionsInner.md) | Live inventory grouped by area code, largest stock first. For US and CA this is the full country inventory (every area code with stock, named by state/province); other countries list the areas in the latest inventory page (up to 500 numbers, which for most countries is the entire pool). Empty when out of stock (or the area lookup failed). Pass a chosen `ndc` as `areaCode` on POST /v1/phone-numbers/purchase (or on the KYC submit for regulated countries) to require that area. | [optional] |
|
|
13
13
|
|
|
14
14
|
## Example
|
|
15
15
|
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **ndc** | **String** | Area code (national destination code), e.g. \"11\". | [optional] |
|
|
8
|
-
| **name** | **String** |
|
|
9
|
-
| **count** | **Integer** |
|
|
8
|
+
| **name** | **String** | Area name: state/province for US/CA (e.g. \"Minnesota\"), city otherwise (e.g. \"Sao Paulo\"). | [optional] |
|
|
9
|
+
| **count** | **Integer** | Numbers available in this area: country-wide count for US/CA, numbers seen on the latest inventory page otherwise. | [optional] |
|
|
10
10
|
|
|
11
11
|
## Example
|
|
12
12
|
|
|
@@ -27,7 +27,7 @@ module Zernio
|
|
|
27
27
|
# For `geo` only — the area(s) the registered address must be in.
|
|
28
28
|
attr_accessor :areas
|
|
29
29
|
|
|
30
|
-
# Live inventory grouped by area code, largest stock first. Empty when out of stock (or the area lookup failed). Pass a chosen `ndc` as `areaCode` on POST /v1/phone-numbers/purchase (or on the KYC submit for regulated countries) to require that area.
|
|
30
|
+
# Live inventory grouped by area code, largest stock first. For US and CA this is the full country inventory (every area code with stock, named by state/province); other countries list the areas in the latest inventory page (up to 500 numbers, which for most countries is the entire pool). Empty when out of stock (or the area lookup failed). Pass a chosen `ndc` as `areaCode` on POST /v1/phone-numbers/purchase (or on the KYC submit for regulated countries) to require that area.
|
|
31
31
|
attr_accessor :area_options
|
|
32
32
|
|
|
33
33
|
class EnumAttributeValidator
|
data/lib/zernio-sdk/models/check_phone_number_availability200_response_area_options_inner.rb
CHANGED
|
@@ -18,10 +18,10 @@ module Zernio
|
|
|
18
18
|
# Area code (national destination code), e.g. \"11\".
|
|
19
19
|
attr_accessor :ndc
|
|
20
20
|
|
|
21
|
-
#
|
|
21
|
+
# Area name: state/province for US/CA (e.g. \"Minnesota\"), city otherwise (e.g. \"Sao Paulo\").
|
|
22
22
|
attr_accessor :name
|
|
23
23
|
|
|
24
|
-
#
|
|
24
|
+
# Numbers available in this area: country-wide count for US/CA, numbers seen on the latest inventory page otherwise.
|
|
25
25
|
attr_accessor :count
|
|
26
26
|
|
|
27
27
|
# Attribute mapping from ruby-style variable name to JSON key.
|
data/lib/zernio-sdk/version.rb
CHANGED
data/openapi.yaml
CHANGED
|
@@ -28166,16 +28166,20 @@ paths:
|
|
|
28166
28166
|
type: array
|
|
28167
28167
|
description: >
|
|
28168
28168
|
Live inventory grouped by area code, largest stock
|
|
28169
|
-
first.
|
|
28170
|
-
|
|
28169
|
+
first. For US and CA this is the full country inventory
|
|
28170
|
+
(every area code with stock, named by state/province);
|
|
28171
|
+
other countries list the areas in the latest inventory
|
|
28172
|
+
page (up to 500 numbers, which for most countries is the
|
|
28173
|
+
entire pool). Empty when out of stock (or the area
|
|
28174
|
+
lookup failed). Pass a chosen `ndc` as `areaCode` on POST
|
|
28171
28175
|
/v1/phone-numbers/purchase (or on the KYC submit for
|
|
28172
28176
|
regulated countries) to require that area.
|
|
28173
28177
|
items:
|
|
28174
28178
|
type: object
|
|
28175
28179
|
properties:
|
|
28176
28180
|
ndc: { type: string, description: 'Area code (national destination code), e.g. "11".' }
|
|
28177
|
-
name: { type: string, description: '
|
|
28178
|
-
count: { type: integer, description:
|
|
28181
|
+
name: { type: string, description: 'Area name: state/province for US/CA (e.g. "Minnesota"), city otherwise (e.g. "Sao Paulo").' }
|
|
28182
|
+
count: { type: integer, description: 'Numbers available in this area: country-wide count for US/CA, numbers seen on the latest inventory page otherwise.' }
|
|
28179
28183
|
'400': { description: Country not offerable }
|
|
28180
28184
|
'401': { $ref: '#/components/responses/Unauthorized' }
|
|
28181
28185
|
|
|
@@ -28532,16 +28536,20 @@ paths:
|
|
|
28532
28536
|
type: array
|
|
28533
28537
|
description: >
|
|
28534
28538
|
Live inventory grouped by area code, largest stock
|
|
28535
|
-
first.
|
|
28536
|
-
|
|
28539
|
+
first. For US and CA this is the full country inventory
|
|
28540
|
+
(every area code with stock, named by state/province);
|
|
28541
|
+
other countries list the areas in the latest inventory
|
|
28542
|
+
page (up to 500 numbers, which for most countries is the
|
|
28543
|
+
entire pool). Empty when out of stock (or the area
|
|
28544
|
+
lookup failed). Pass a chosen `ndc` as `areaCode` on POST
|
|
28537
28545
|
/v1/phone-numbers/purchase (or on the KYC submit for
|
|
28538
28546
|
regulated countries) to require that area.
|
|
28539
28547
|
items:
|
|
28540
28548
|
type: object
|
|
28541
28549
|
properties:
|
|
28542
28550
|
ndc: { type: string, description: 'Area code (national destination code), e.g. "11".' }
|
|
28543
|
-
name: { type: string, description: '
|
|
28544
|
-
count: { type: integer, description:
|
|
28551
|
+
name: { type: string, description: 'Area name: state/province for US/CA (e.g. "Minnesota"), city otherwise (e.g. "Sao Paulo").' }
|
|
28552
|
+
count: { type: integer, description: 'Numbers available in this area: country-wide count for US/CA, numbers seen on the latest inventory page otherwise.' }
|
|
28545
28553
|
'400': { description: Country not offerable }
|
|
28546
28554
|
'401': { $ref: '#/components/responses/Unauthorized' }
|
|
28547
28555
|
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: late-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.572
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
@@ -4763,7 +4763,7 @@ files:
|
|
|
4763
4763
|
- spec/models/you_tube_video_retention_response_retention_curve_inner_spec.rb
|
|
4764
4764
|
- spec/models/you_tube_video_retention_response_spec.rb
|
|
4765
4765
|
- spec/spec_helper.rb
|
|
4766
|
-
- zernio-sdk-0.0.
|
|
4766
|
+
- zernio-sdk-0.0.572.gem
|
|
4767
4767
|
- zernio-sdk.gemspec
|
|
4768
4768
|
homepage: https://openapi-generator.tech
|
|
4769
4769
|
licenses:
|
data/zernio-sdk-0.0.571.gem
DELETED
|
Binary file
|