Skip to content

Commit

Permalink
chore(release): 1.11.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.11.1](v1.11.0...v1.11.1) (2025-01-03)

### 🛠 Fixes

* **types:** queue tolerance ([9719af7](9719af7))
  • Loading branch information
semantic-release-bot committed Jan 3, 2025
1 parent 9719af7 commit 0e26a7c
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 5 deletions.
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.11.1](https://github.com/SkeLLLa/pinot-noir/compare/v1.11.0...v1.11.1) (2025-01-03)

### 🛠 Fixes

* **types:** queue tolerance ([9719af7](https://github.com/SkeLLLa/pinot-noir/commit/9719af762c7eb5349b00dd921277c1b91a2aa2e5))

## [1.11.0](https://github.com/SkeLLLa/pinot-noir/compare/v1.10.0...v1.11.0) (2025-01-03)

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion docs/api/pinot-noir.ibrokertransportrequestoptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Description
</td><td>
{ queueTolerance?: number \| undefined; } \| undefined
{ queueTolerance?: [TQueueTolerancePredefined](./pinot-noir.tqueuetolerancepredefined.md) \| number \| undefined; } \| undefined
</td><td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

```typescript
options?: {
queueTolerance?: number | undefined;
queueTolerance?: TQueueTolerancePredefined | number | undefined;
} | undefined;
```
2 changes: 1 addition & 1 deletion docs/api/pinot-noir.ipinotqueryoptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ _(Optional)_ Number of replica groups to query when replica-group based routing

</td><td>

QueueTolerancePredefined \| number
[TQueueTolerancePredefined](./pinot-noir.tqueuetolerancepredefined.md) \| number

</td><td>

Expand Down
2 changes: 1 addition & 1 deletion docs/api/pinot-noir.ipinotqueryoptions.queuetolerance.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Queue tolerance in percent of `maxQueueSize`<!-- -->. If maxQueueSize \* queueTo
**Signature:**

```typescript
queueTolerance?: QueueTolerancePredefined | number;
queueTolerance?: TQueueTolerancePredefined | number;
```
9 changes: 9 additions & 0 deletions docs/api/pinot-noir.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,5 +307,14 @@ Description

Available Pinot data types

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

[TQueueTolerancePredefined](./pinot-noir.tqueuetolerancepredefined.md)

</td><td>

Predefined queue tolerance values.

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

[Home](./index.md) &gt; [pinot-noir](./pinot-noir.md) &gt; [TQueueTolerancePredefined](./pinot-noir.tqueuetolerancepredefined.md)

## TQueueTolerancePredefined type

Predefined queue tolerance values.

**Signature:**

```typescript
export type TQueueTolerancePredefined =
| 0
| 0.1
| 0.2
| 0.3
| 0.4
| 0.5
| 0.6
| 0.7
| 0.8
| 0.9
| 1;
```
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.11.0",
"version": "1.11.1",
"description": "Unofficial client for Apache Pinot.",
"keywords": [
"pinot",
Expand Down

0 comments on commit 0e26a7c

Please sign in to comment.