-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
889 changed files
with
3,557 additions
and
3,053 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.4.0 | ||
7.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
-- iplocation.net API | ||
-- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
-- OpenAPI v3 specification and a set of generated API clients for iplocation.net | ||
-- | ||
-- The version of the OpenAPI document: 0.9.0_pre.0 | ||
-- Contact: [email protected] | ||
-- | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.4.0. | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.6.0. | ||
-- https://openapi-generator.tech | ||
-- Do not edit the class manually. | ||
|
||
|
@@ -17,9 +17,27 @@ package body .Models is | |
|
||
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; | ||
Name : in String; | ||
Value : in .Models.Get400Response_Type) is | ||
Value : in .Models.Get200Response_Type) is | ||
begin | ||
Into.Start_Entity (Name); | ||
if not Value.Ip.Is_Null then | ||
Into.Write_Entity ("ip", Value.Ip); | ||
end if; | ||
if not Value.Ip_Number.Is_Null then | ||
Into.Write_Entity ("ip_number", Value.Ip_Number); | ||
end if; | ||
if not Value.Ip_Version.Is_Null then | ||
Into.Write_Entity ("ip_version", Value.Ip_Version); | ||
end if; | ||
if not Value.Country_Name.Is_Null then | ||
Into.Write_Entity ("country_name", Value.Country_Name); | ||
end if; | ||
if not Value.Country_Code_2.Is_Null then | ||
Into.Write_Entity ("country_code2", Value.Country_Code_2); | ||
end if; | ||
if not Value.Isp.Is_Null then | ||
Into.Write_Entity ("isp", Value.Isp); | ||
end if; | ||
if not Value.Response_Code.Is_Null then | ||
Into.Write_Entity ("response_code", Value.Response_Code); | ||
end if; | ||
|
@@ -31,7 +49,7 @@ package body .Models is | |
|
||
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; | ||
Name : in String; | ||
Value : in Get400Response_Type_Vectors.Vector) is | ||
Value : in Get200Response_Type_Vectors.Vector) is | ||
begin | ||
Into.Start_Array (Name); | ||
for Item of Value loop | ||
|
@@ -42,19 +60,25 @@ package body .Models is | |
|
||
procedure Deserialize (From : in Swagger.Value_Type; | ||
Name : in String; | ||
Value : out .Models.Get400Response_Type) is | ||
Value : out .Models.Get200Response_Type) is | ||
Object : Swagger.Value_Type; | ||
begin | ||
Swagger.Streams.Deserialize (From, Name, Object); | ||
Swagger.Streams.Deserialize (Object, "ip", Value.Ip); | ||
Swagger.Streams.Deserialize (Object, "ip_number", Value.Ip_Number); | ||
Swagger.Streams.Deserialize (Object, "ip_version", Value.Ip_Version); | ||
Swagger.Streams.Deserialize (Object, "country_name", Value.Country_Name); | ||
Swagger.Streams.Deserialize (Object, "country_code2", Value.Country_Code_2); | ||
Swagger.Streams.Deserialize (Object, "isp", Value.Isp); | ||
Swagger.Streams.Deserialize (Object, "response_code", Value.Response_Code); | ||
Swagger.Streams.Deserialize (Object, "response_message", Value.Response_Message); | ||
end Deserialize; | ||
|
||
procedure Deserialize (From : in Swagger.Value_Type; | ||
Name : in String; | ||
Value : in out Get400Response_Type_Vectors.Vector) is | ||
Value : in out Get200Response_Type_Vectors.Vector) is | ||
List : Swagger.Value_Array_Type; | ||
Item : .Models.Get400Response_Type; | ||
Item : .Models.Get200Response_Type; | ||
begin | ||
Value.Clear; | ||
Swagger.Streams.Deserialize (From, Name, List); | ||
|
@@ -66,25 +90,9 @@ package body .Models is | |
|
||
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; | ||
Name : in String; | ||
Value : in .Models.Get200Response_Type) is | ||
Value : in .Models.Get400Response_Type) is | ||
begin | ||
Into.Start_Entity (Name); | ||
if not Value.Ip.Is_Null then | ||
Into.Write_Entity ("ip", Value.Ip); | ||
end if; | ||
Serialize (Into, "ip_number", Value.Ip_Number); | ||
if not Value.Ip_Version.Is_Null then | ||
Into.Write_Entity ("ip_version", Value.Ip_Version); | ||
end if; | ||
if not Value.Country_Name.Is_Null then | ||
Into.Write_Entity ("country_name", Value.Country_Name); | ||
end if; | ||
if not Value.Country_Code_2.Is_Null then | ||
Into.Write_Entity ("country_code2", Value.Country_Code_2); | ||
end if; | ||
if not Value.Isp.Is_Null then | ||
Into.Write_Entity ("isp", Value.Isp); | ||
end if; | ||
if not Value.Response_Code.Is_Null then | ||
Into.Write_Entity ("response_code", Value.Response_Code); | ||
end if; | ||
|
@@ -96,7 +104,7 @@ package body .Models is | |
|
||
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; | ||
Name : in String; | ||
Value : in Get200Response_Type_Vectors.Vector) is | ||
Value : in Get400Response_Type_Vectors.Vector) is | ||
begin | ||
Into.Start_Array (Name); | ||
for Item of Value loop | ||
|
@@ -107,25 +115,19 @@ package body .Models is | |
|
||
procedure Deserialize (From : in Swagger.Value_Type; | ||
Name : in String; | ||
Value : out .Models.Get200Response_Type) is | ||
Value : out .Models.Get400Response_Type) is | ||
Object : Swagger.Value_Type; | ||
begin | ||
Swagger.Streams.Deserialize (From, Name, Object); | ||
Swagger.Streams.Deserialize (Object, "ip", Value.Ip); | ||
Deserialize (Object, "ip_number", Value.Ip_Number); | ||
Swagger.Streams.Deserialize (Object, "ip_version", Value.Ip_Version); | ||
Swagger.Streams.Deserialize (Object, "country_name", Value.Country_Name); | ||
Swagger.Streams.Deserialize (Object, "country_code2", Value.Country_Code_2); | ||
Swagger.Streams.Deserialize (Object, "isp", Value.Isp); | ||
Swagger.Streams.Deserialize (Object, "response_code", Value.Response_Code); | ||
Swagger.Streams.Deserialize (Object, "response_message", Value.Response_Message); | ||
end Deserialize; | ||
|
||
procedure Deserialize (From : in Swagger.Value_Type; | ||
Name : in String; | ||
Value : in out Get200Response_Type_Vectors.Vector) is | ||
Value : in out Get400Response_Type_Vectors.Vector) is | ||
List : Swagger.Value_Array_Type; | ||
Item : .Models.Get200Response_Type; | ||
Item : .Models.Get400Response_Type; | ||
begin | ||
Value.Clear; | ||
Swagger.Streams.Deserialize (From, Name, List); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
-- iplocation.net API | ||
-- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
-- OpenAPI v3 specification and a set of generated API clients for iplocation.net | ||
-- | ||
-- The version of the OpenAPI document: 0.9.0_pre.0 | ||
-- Contact: [email protected] | ||
-- | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.4.0. | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.6.0. | ||
-- https://openapi-generator.tech | ||
-- Do not edit the class manually. | ||
|
||
|
@@ -15,61 +15,61 @@ package .Models is | |
|
||
|
||
|
||
type Get400Response_Type is | ||
type Get200Response_Type is | ||
record | ||
Ip : Swagger.Nullable_UString; | ||
Ip_Number : Swagger.Nullable_UString; | ||
Ip_Version : Swagger.Nullable_Integer; | ||
Country_Name : Swagger.Nullable_UString; | ||
Country_Code_2 : Swagger.Nullable_UString; | ||
Isp : Swagger.Nullable_UString; | ||
Response_Code : Swagger.Nullable_UString; | ||
Response_Message : Swagger.Nullable_UString; | ||
end record; | ||
|
||
|
||
package Get400Response_Type_Vectors is | ||
package Get200Response_Type_Vectors is | ||
new Ada.Containers.Vectors (Index_Type => Positive, | ||
Element_Type => .Models.Get400Response_Type); | ||
Element_Type => .Models.Get200Response_Type); | ||
|
||
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; | ||
Name : in String; | ||
Value : in .Models.Get400Response_Type); | ||
Value : in .Models.Get200Response_Type); | ||
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; | ||
Name : in String; | ||
Value : in Get400Response_Type_Vectors.Vector); | ||
Value : in Get200Response_Type_Vectors.Vector); | ||
procedure Deserialize (From : in Swagger.Value_Type; | ||
Name : in String; | ||
Value : out .Models.Get400Response_Type); | ||
Value : out .Models.Get200Response_Type); | ||
procedure Deserialize (From : in Swagger.Value_Type; | ||
Name : in String; | ||
Value : in out Get400Response_Type_Vectors.Vector); | ||
Value : in out Get200Response_Type_Vectors.Vector); | ||
|
||
|
||
|
||
type Get200Response_Type is | ||
type Get400Response_Type is | ||
record | ||
Ip : Swagger.Nullable_UString; | ||
Ip_Number : .Models.Int64_Type; | ||
Ip_Version : Swagger.Nullable_Integer; | ||
Country_Name : Swagger.Nullable_UString; | ||
Country_Code_2 : Swagger.Nullable_UString; | ||
Isp : Swagger.Nullable_UString; | ||
Response_Code : Swagger.Nullable_UString; | ||
Response_Message : Swagger.Nullable_UString; | ||
end record; | ||
|
||
|
||
package Get200Response_Type_Vectors is | ||
package Get400Response_Type_Vectors is | ||
new Ada.Containers.Vectors (Index_Type => Positive, | ||
Element_Type => .Models.Get200Response_Type); | ||
Element_Type => .Models.Get400Response_Type); | ||
|
||
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; | ||
Name : in String; | ||
Value : in .Models.Get200Response_Type); | ||
Value : in .Models.Get400Response_Type); | ||
procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; | ||
Name : in String; | ||
Value : in Get200Response_Type_Vectors.Vector); | ||
Value : in Get400Response_Type_Vectors.Vector); | ||
procedure Deserialize (From : in Swagger.Value_Type; | ||
Name : in String; | ||
Value : out .Models.Get200Response_Type); | ||
Value : out .Models.Get400Response_Type); | ||
procedure Deserialize (From : in Swagger.Value_Type; | ||
Name : in String; | ||
Value : in out Get200Response_Type_Vectors.Vector); | ||
Value : in out Get400Response_Type_Vectors.Vector); | ||
|
||
|
||
end .Models; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
-- iplocation.net API | ||
-- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
-- OpenAPI v3 specification and a set of generated API clients for iplocation.net | ||
-- | ||
-- The version of the OpenAPI document: 0.9.0_pre.0 | ||
-- Contact: [email protected] | ||
-- | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.4.0. | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.6.0. | ||
-- https://openapi-generator.tech | ||
-- Do not edit the class manually. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
-- iplocation.net API | ||
-- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
-- OpenAPI v3 specification and a set of generated API clients for iplocation.net | ||
-- | ||
-- The version of the OpenAPI document: 0.9.0_pre.0 | ||
-- Contact: [email protected] | ||
-- | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.4.0. | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.6.0. | ||
-- https://openapi-generator.tech | ||
-- Do not edit the class manually. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.4.0 | ||
7.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
-- iplocation.net API | ||
-- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
-- OpenAPI v3 specification and a set of generated API clients for iplocation.net | ||
-- | ||
-- The version of the OpenAPI document: 0.9.0_pre.0 | ||
-- Contact: [email protected] | ||
-- | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.4.0. | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.6.0. | ||
-- https://openapi-generator.tech | ||
-- Do not edit the class manually. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
-- iplocation.net API | ||
-- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
-- OpenAPI v3 specification and a set of generated API clients for iplocation.net | ||
-- | ||
-- The version of the OpenAPI document: 0.9.0_pre.0 | ||
-- Contact: [email protected] | ||
-- | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.4.0. | ||
-- NOTE: This package is auto generated by OpenAPI-Generator 7.6.0. | ||
-- https://openapi-generator.tech | ||
-- Do not edit the class manually. | ||
|
||
|
Oops, something went wrong.