Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
All notable changes to this project will be documented in this file.

<!-- git-cliff-unreleased-start -->

## 0.1.4 - **not yet released**

### 🚀 Features

- **gteam-internal:** Add gteam-internal subpath export, migrate tests to Vitest ([#5](https://github.com/apify/apify-actor-utils/pull/5)) ([4e133c2](https://github.com/apify/apify-actor-utils/commit/4e133c261a51a3fa02da72d9a47b21a8a6119928)) by [@yaroslav-tykhovetskyi-apify](https://github.com/yaroslav-tykhovetskyi-apify)


<!-- git-cliff-unreleased-end -->

## [0.1.3](https://github.com/apify/apify-actor-utils/releases/tag/v0.1.3) (2026-07-27)
Expand All @@ -25,4 +25,4 @@ All notable changes to this project will be documented in this file.

## [0.1.2](https://github.com/apify/apify-actor-utils/releases/tag/v0.1.2) (2026-07-22)

## [0.1.1](https://github.com/apify/apify-actor-utils/releases/tag/v0.1.1) (2026-07-22)
## [0.1.1](https://github.com/apify/apify-actor-utils/releases/tag/v0.1.1) (2026-07-22)
7 changes: 5 additions & 2 deletions src/gteam-internal/push-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ async function wrapPushData<R>(pushDataFn: () => Promise<R>): Promise<R> {
* await safePushData(report, { alias: 'competitorAnalysis' });
* ```
*/
export async function safePushData<T extends object>(data: T | T[], options?: { alias: string }): Promise<void>;
export async function safePushData<T extends object>(
data: T | T[],
options?: { alias: string; eventName?: never },
): Promise<void>;
/**
* Pushes to the default dataset and atomically charges for `eventName`, via
* {@link Actor.pushData}'s built-in pay-per-event support. Converts a
Expand All @@ -57,7 +60,7 @@ export async function safePushData<T extends object>(data: T | T[], options?: {
*/
export async function safePushData<T extends object>(
data: T | T[],
options: { eventName: string },
options: { eventName: string; alias?: never },
): Promise<ChargeResult>;
export async function safePushData<T extends object>(
data: T | T[],
Expand Down
Loading