webapi-active-query-builder 1.1.6 → 1.1.8
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.
- data/lib/webapi-active-query-builder.rb +1 -1
- data/lib/webapi-active-query-builder/api/active_query_builder_api.rb +1 -1
- data/lib/webapi-active-query-builder/api_client.rb +1 -1
- data/lib/webapi-active-query-builder/api_error.rb +1 -1
- data/lib/webapi-active-query-builder/configuration.rb +1 -1
- data/lib/webapi-active-query-builder/models/condition.rb +3 -3
- data/lib/webapi-active-query-builder/models/condition_group.rb +1 -1
- data/lib/webapi-active-query-builder/models/hidden_column.rb +1 -1
- data/lib/webapi-active-query-builder/models/pagination.rb +1 -1
- data/lib/webapi-active-query-builder/models/query_column.rb +1 -1
- data/lib/webapi-active-query-builder/models/sorting.rb +1 -1
- data/lib/webapi-active-query-builder/models/sql_query.rb +1 -1
- data/lib/webapi-active-query-builder/models/totals.rb +1 -1
- data/lib/webapi-active-query-builder/models/transform.rb +1 -1
- data/lib/webapi-active-query-builder/models/transform_result.rb +1 -1
- data/lib/webapi-active-query-builder/version.rb +2 -2
- data/webapi-active-query-builder.gemspec +1 -1
- metadata +2 -2
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -109,7 +109,7 @@ module WebApiActivequerybuilder
|
|
|
109
109
|
# Check to see if the all the properties in the model are valid
|
|
110
110
|
# @return true if the model is valid
|
|
111
111
|
def valid?
|
|
112
|
-
condition_operator_validator = EnumAttributeValidator.new('String', ["IsNull", "IsNotNull", "Equal", "NotEqual", "Less", "NotLess", "LessEqual", "NotLessEqual", "Greater", "NotGreater", "GreaterEqual", "NotGreaterEqual", "Between", "NotBetween", "In", "NotIn", "
|
|
112
|
+
condition_operator_validator = EnumAttributeValidator.new('String', ["IsNull", "IsNotNull", "Equal", "NotEqual", "Less", "NotLess", "LessEqual", "NotLessEqual", "Greater", "NotGreater", "GreaterEqual", "NotGreaterEqual", "Between", "NotBetween", "In", "NotIn", "Contains", "DoesntContain", "StartsWith", "DoesntStartWith", "EndsWith", "DoesntEndWith"])
|
|
113
113
|
return false unless condition_operator_validator.valid?(@condition_operator)
|
|
114
114
|
return true
|
|
115
115
|
end
|
|
@@ -117,7 +117,7 @@ module WebApiActivequerybuilder
|
|
|
117
117
|
# Custom attribute writer method checking allowed values (enum).
|
|
118
118
|
# @param [Object] condition_operator Object to be assigned
|
|
119
119
|
def condition_operator=(condition_operator)
|
|
120
|
-
validator = EnumAttributeValidator.new('String', ["IsNull", "IsNotNull", "Equal", "NotEqual", "Less", "NotLess", "LessEqual", "NotLessEqual", "Greater", "NotGreater", "GreaterEqual", "NotGreaterEqual", "Between", "NotBetween", "In", "NotIn", "
|
|
120
|
+
validator = EnumAttributeValidator.new('String', ["IsNull", "IsNotNull", "Equal", "NotEqual", "Less", "NotLess", "LessEqual", "NotLessEqual", "Greater", "NotGreater", "GreaterEqual", "NotGreaterEqual", "Between", "NotBetween", "In", "NotIn", "Contains", "DoesntContain", "StartsWith", "DoesntStartWith", "EndsWith", "DoesntEndWith"])
|
|
121
121
|
unless validator.valid?(condition_operator)
|
|
122
122
|
fail ArgumentError, "invalid value for 'condition_operator', must be one of #{validator.allowable_values}."
|
|
123
123
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 1.1.
|
|
6
|
+
OpenAPI spec version: 1.1.8
|
|
7
7
|
Contact: support@activedbsoft.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
9
|
|
|
@@ -22,5 +22,5 @@ limitations under the License.
|
|
|
22
22
|
=end
|
|
23
23
|
|
|
24
24
|
module WebApiActivequerybuilder
|
|
25
|
-
VERSION = "1.1.
|
|
25
|
+
VERSION = "1.1.8"
|
|
26
26
|
end
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
#Active Query Builder Web API lets create, analyze and modify SQL queries for different database servers using RESTful HTTP requests to a cloud-based service. It requires SQL execution context (information about database schema and used database server) to be stored under the registered account at https://webapi.activequerybuilder.com/.
|
|
7
7
|
|
|
8
|
-
OpenAPI spec version: 1.1.
|
|
8
|
+
OpenAPI spec version: 1.1.8
|
|
9
9
|
Contact: support@activedbsoft.com
|
|
10
10
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
11
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webapi-active-query-builder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.8
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-11-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: typhoeus
|