Skip to content

Commit

Permalink
chore(release): 1.6.0 [skip ci]
Browse files Browse the repository at this point in the history
## [1.6.0](v1.5.4...v1.6.0) (2024-08-13)

### 🚀 Features

* stringify sql with options ([ca1d8a0](ca1d8a0))
  • Loading branch information
semantic-release-bot committed Aug 13, 2024
1 parent ca1d8a0 commit 42362ca
Show file tree
Hide file tree
Showing 6 changed files with 163 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.6.0](https://github.com/SkeLLLa/pinot-noir/compare/v1.5.4...v1.6.0) (2024-08-13)

### 🚀 Features

* stringify sql with options ([ca1d8a0](https://github.com/SkeLLLa/pinot-noir/commit/ca1d8a092e5651ddd08f10c8cd09c2a85b767f06))

## [1.5.4](https://github.com/SkeLLLa/pinot-noir/compare/v1.5.3...v1.5.4) (2024-07-17)

### 🛠 Fixes
Expand Down
7 changes: 7 additions & 0 deletions docs/api/pinot-noir.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ Description

</td><td>

</td></tr>
<tr><td>

[SqlUtils](./pinot-noir.sqlutils.md)

</td><td>

</td></tr>
</tbody></table>

Expand Down
44 changes: 44 additions & 0 deletions docs/api/pinot-noir.sqlutils.formatoptions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [pinot-noir](./pinot-noir.md) &gt; [SqlUtils](./pinot-noir.sqlutils.md) &gt; [formatOptions](./pinot-noir.sqlutils.formatoptions.md)

## SqlUtils.formatOptions() method

**Signature:**

```typescript
static formatOptions(options?: IPinotQueryOptions): string;
```

## Parameters

<table><thead><tr><th>

Parameter

</th><th>

Type

</th><th>

Description

</th></tr></thead>
<tbody><tr><td>

options

</td><td>

[IPinotQueryOptions](./pinot-noir.ipinotqueryoptions.md)

</td><td>

_(Optional)_

</td></tr>
</tbody></table>
**Returns:**

string
50 changes: 50 additions & 0 deletions docs/api/pinot-noir.sqlutils.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [pinot-noir](./pinot-noir.md) &gt; [SqlUtils](./pinot-noir.sqlutils.md)

## SqlUtils class

**Signature:**

```typescript
export declare class SqlUtils
```

## Methods

<table><thead><tr><th>

Method

</th><th>

Modifiers

</th><th>

Description

</th></tr></thead>
<tbody><tr><td>

[formatOptions(options)](./pinot-noir.sqlutils.formatoptions.md)

</td><td>

`static`

</td><td>

</td></tr>
<tr><td>

[stringifyQuery(query, options)](./pinot-noir.sqlutils.stringifyquery.md)

</td><td>

`static`

</td><td>

</td></tr>
</tbody></table>
55 changes: 55 additions & 0 deletions docs/api/pinot-noir.sqlutils.stringifyquery.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [pinot-noir](./pinot-noir.md) &gt; [SqlUtils](./pinot-noir.sqlutils.md) &gt; [stringifyQuery](./pinot-noir.sqlutils.stringifyquery.md)

## SqlUtils.stringifyQuery() method

**Signature:**

```typescript
static stringifyQuery(query: Sql, options?: IPinotQueryOptions): string;
```

## Parameters

<table><thead><tr><th>

Parameter

</th><th>

Type

</th><th>

Description

</th></tr></thead>
<tbody><tr><td>

query

</td><td>

Sql

</td><td>

</td></tr>
<tr><td>

options

</td><td>

[IPinotQueryOptions](./pinot-noir.ipinotqueryoptions.md)

</td><td>

_(Optional)_

</td></tr>
</tbody></table>
**Returns:**

string
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json.schemastore.org/package.json",
"name": "pinot-noir",
"version": "1.5.4",
"version": "1.6.0",
"description": "Unofficial client for Apache Pinot.",
"keywords": [
"pinot",
Expand Down

0 comments on commit 42362ca

Please sign in to comment.