Skip to content

Commit b112cd2

Browse files
author
ActiveDbSoft
committed
disable html escaping in docs
1 parent 45ab03a commit b112cd2

24 files changed

+40
-37
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,6 @@ Class | Method | HTTP request | Description
8484
- [Model.Transform](docs/Transform.md)
8585
- [Model.TransformResult](docs/TransformResult.md)
8686

87+
88+
## Source code
89+
Full source code of all clients for Active Query Builder Web API is available on GitHub. Get the source code of javascript here: [https://github.com/ActiveDbSoft/webapi-active-query-builder-csharp](https://github.com/ActiveDbSoft/webapi-active-query-builder-csharp)

WebApi.ActiveQueryBuilder.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApi.ActiveQueryBuilder", "src\WebApi.ActiveQueryBuilder\WebApi.ActiveQueryBuilder.csproj", "{CA024373-104D-48F5-A397-59F9724EF5A3}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApi.ActiveQueryBuilder", "src\WebApi.ActiveQueryBuilder\WebApi.ActiveQueryBuilder.csproj", "{B4AD5511-5A77-46C9-93B5-D1A7F8E8F4BE}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApi.ActiveQueryBuilder.Test", "src\WebApi.ActiveQueryBuilder.Test\WebApi.ActiveQueryBuilder.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
88
EndProject
@@ -12,10 +12,10 @@ Debug|Any CPU = Debug|Any CPU
1212
Release|Any CPU = Release|Any CPU
1313
EndGlobalSection
1414
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15-
{CA024373-104D-48F5-A397-59F9724EF5A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{CA024373-104D-48F5-A397-59F9724EF5A3}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{CA024373-104D-48F5-A397-59F9724EF5A3}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{CA024373-104D-48F5-A397-59F9724EF5A3}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{B4AD5511-5A77-46C9-93B5-D1A7F8E8F4BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{B4AD5511-5A77-46C9-93B5-D1A7F8E8F4BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{B4AD5511-5A77-46C9-93B5-D1A7F8E8F4BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{B4AD5511-5A77-46C9-93B5-D1A7F8E8F4BE}.Release|Any CPU.Build.0 = Release|Any CPU
1919
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2020
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
2121
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU

docs/Condition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
99
**Field** | **string** | Column of original query to which a constraint will applied. | [optional]
1010
**ConditionOperator** | **string** | Condition operator. | [optional]
11-
**Values** | **List<string>** | List of values for a constraint. \"IsNull\", \"IsNotNull\" need no values; \"Between\", \"NotBetween\" require 2 values; \"In\" accepts one or more values; other conditions accept single value only. | [optional]
11+
**Values** | **List<string>** | List of values for a constraint. 'IsNull', 'IsNotNull' need no values; 'Between', 'NotBetween' require 2 values; 'In' accepts one or more values; other conditions accept single value only. | [optional]
1212

1313
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1414

docs/ConditionGroup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Group of conditions joined with the same boolean operator.
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**JunctionType** | **string** | Type of junction. All = AND; Any = OR. | [optional]
9+
**JunctionType** | **string** | Type of junction. All = AND; Any = OR. | [optional]
1010
**Conditions** | [**List<Condition>**](Condition.md) | List of conditions to join. | [optional]
1111
**ConditionGroups** | [**List<ConditionGroup>**](ConditionGroup.md) | List of nested condition groups to join them with a different boolean operator. | [optional]
1212

src/WebApi.ActiveQueryBuilder.Test/WebApi.ActiveQueryBuilder.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ QueryBuilderApi
44
55
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/.
66
7-
OpenAPI spec version: 1.1.3
7+
OpenAPI spec version: 1.1.6
88
99
Generated by: https://github.com/swagger-api/swagger-codegen.git
1010
@@ -86,7 +86,7 @@ limitations under the License.
8686
<Import Project="$(MsBuildToolsPath)\Microsoft.CSharp.targets" />
8787
<ItemGroup>
8888
<ProjectReference Include="..\WebApi.ActiveQueryBuilder\WebApi.ActiveQueryBuilder.csproj">
89-
<Project>{CA024373-104D-48F5-A397-59F9724EF5A3}</Project>
89+
<Project>{B4AD5511-5A77-46C9-93B5-D1A7F8E8F4BE}</Project>
9090
<Name>WebApi.ActiveQueryBuilder</Name>
9191
</ProjectReference>
9292
</ItemGroup>

src/WebApi.ActiveQueryBuilder/Api/ActiveQueryBuilderApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Client/ApiClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Client/ApiException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Client/ApiResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Client/Configuration.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*
@@ -58,7 +58,7 @@ public Configuration(ApiClient apiClient = null,
5858
string tempFolderPath = null,
5959
string dateTimeFormat = null,
6060
int timeout = 100000,
61-
string userAgent = "Swagger-Codegen/1.1.3/csharp"
61+
string userAgent = "Swagger-Codegen/1.1.6/csharp"
6262
)
6363
{
6464
setApiClientUsingDefault(apiClient);
@@ -93,7 +93,7 @@ public Configuration(ApiClient apiClient)
9393
/// Version of the package.
9494
/// </summary>
9595
/// <value>Version of the package.</value>
96-
public const string Version = "1.1.3";
96+
public const string Version = "1.1.6";
9797

9898
/// <summary>
9999
/// Gets or sets the default Configuration.
@@ -335,8 +335,8 @@ public static String ToDebugReport()
335335
.GetExecutingAssembly()
336336
.GetReferencedAssemblies()
337337
.Where(x => x.Name == "System.Core").First().Version.ToString() + "\n";
338-
report += " Version of the API: 1.1.3\n";
339-
report += " SDK Package Version: 1.1.3\n";
338+
report += " Version of the API: 1.1.6\n";
339+
report += " SDK Package Version: 1.1.6\n";
340340

341341
return report;
342342
}

src/WebApi.ActiveQueryBuilder/Client/ExceptionFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Client/IApiAccessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Model/Condition.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*
@@ -167,7 +167,7 @@ public enum ConditionOperatorEnum
167167
/// </summary>
168168
/// <param name="Field">Column of original query to which a constraint will applied..</param>
169169
/// <param name="ConditionOperator">Condition operator..</param>
170-
/// <param name="Values">List of values for a constraint. \&quot;IsNull\&quot;, \&quot;IsNotNull\&quot; need no values; \&quot;Between\&quot;, \&quot;NotBetween\&quot; require 2 values; \&quot;In\&quot; accepts one or more values; other conditions accept single value only..</param>
170+
/// <param name="Values">List of values for a constraint. &#39;IsNull&#39;, &#39;IsNotNull&#39; need no values; &#39;Between&#39;, &#39;NotBetween&#39; require 2 values; &#39;In&#39; accepts one or more values; other conditions accept single value only..</param>
171171
public Condition() {}
172172
public Condition(string Field = null, ConditionOperatorEnum? ConditionOperator = null, List<string> Values = null)
173173
{
@@ -183,9 +183,9 @@ public Condition(string Field = null, ConditionOperatorEnum? ConditionOperator =
183183
[DataMember(Name="field", EmitDefaultValue=false)]
184184
public string Field { get; set; }
185185
/// <summary>
186-
/// List of values for a constraint. \&quot;IsNull\&quot;, \&quot;IsNotNull\&quot; need no values; \&quot;Between\&quot;, \&quot;NotBetween\&quot; require 2 values; \&quot;In\&quot; accepts one or more values; other conditions accept single value only.
186+
/// List of values for a constraint. &#39;IsNull&#39;, &#39;IsNotNull&#39; need no values; &#39;Between&#39;, &#39;NotBetween&#39; require 2 values; &#39;In&#39; accepts one or more values; other conditions accept single value only.
187187
/// </summary>
188-
/// <value>List of values for a constraint. \&quot;IsNull\&quot;, \&quot;IsNotNull\&quot; need no values; \&quot;Between\&quot;, \&quot;NotBetween\&quot; require 2 values; \&quot;In\&quot; accepts one or more values; other conditions accept single value only.</value>
188+
/// <value>List of values for a constraint. &#39;IsNull&#39;, &#39;IsNotNull&#39; need no values; &#39;Between&#39;, &#39;NotBetween&#39; require 2 values; &#39;In&#39; accepts one or more values; other conditions accept single value only.</value>
189189
[DataMember(Name="values", EmitDefaultValue=false)]
190190
public List<string> Values { get; set; }
191191
/// <summary>

src/WebApi.ActiveQueryBuilder/Model/ConditionGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Model/HiddenColumn.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Model/Pagination.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Model/QueryColumn.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Model/Sorting.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Model/SqlQuery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Model/Totals.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Model/Transform.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Model/TransformResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* 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/.
55
*
6-
* OpenAPI spec version: 1.1.3
6+
* OpenAPI spec version: 1.1.6
77
* Contact: [email protected]
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*

src/WebApi.ActiveQueryBuilder/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// You can specify all the values or you can default the Build and Revision Numbers
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
31-
[assembly: AssemblyVersion("1.1.3")]
32-
[assembly: AssemblyFileVersion("1.1.3")]
31+
[assembly: AssemblyVersion("1.1.6")]
32+
[assembly: AssemblyFileVersion("1.1.6")]

src/WebApi.ActiveQueryBuilder/WebApi.ActiveQueryBuilder.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ QueryBuilderApi
44
55
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/.
66
7-
OpenAPI spec version: 1.1.3
7+
OpenAPI spec version: 1.1.6
88
99
Generated by: https://github.com/swagger-api/swagger-codegen.git
1010
@@ -24,7 +24,7 @@ limitations under the License.
2424
<PropertyGroup>
2525
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
2626
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
27-
<ProjectGuid>{CA024373-104D-48F5-A397-59F9724EF5A3}</ProjectGuid>
27+
<ProjectGuid>{B4AD5511-5A77-46C9-93B5-D1A7F8E8F4BE}</ProjectGuid>
2828
<OutputType>Library</OutputType>
2929
<AppDesignerFolder>Properties</AppDesignerFolder>
3030
<RootNamespace>Swagger Library</RootNamespace>

0 commit comments

Comments
 (0)