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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "12.0.0-beta.7"
".": "12.0.0-beta.8"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 164
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-73901c6384e9bc200d699d9fc8e3d66a6968447ed9dc81de9c3e76ab855a7e7a.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-10f337363613795d73455c319c396fbd45bd29e52d1dd4d3345ab9063c124618.yml
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 12.0.0-beta.8 (2025-02-24)

Full Changelog: [v12.0.0-beta.7...v12.0.0-beta.8](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.0.0-beta.7...v12.0.0-beta.8)

### Features

* **api:** api update ([#52](https://github.com/conductor-is/quickbooks-desktop-node/issues/52)) ([da93300](https://github.com/conductor-is/quickbooks-desktop-node/commit/da9330019d5f88069dfb3fef452ee8d49b3dbc68))
* **api:** api update ([#54](https://github.com/conductor-is/quickbooks-desktop-node/issues/54)) ([e1a287d](https://github.com/conductor-is/quickbooks-desktop-node/commit/e1a287d2f4264cf229c20ee3db0399e568f00b9a))

## 12.0.0-beta.7 (2025-02-23)

Full Changelog: [v12.0.0-beta.6...v12.0.0-beta.7](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.0.0-beta.6...v12.0.0-beta.7)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This repository contains the official Conductor **Node.js** library, which provi

## Documentation

The REST API documentation can be found on [docs.conductor.is](https://docs.conductor.is/qbd-api). The full API of this library can be found in [api.md](api.md).
The REST API documentation can be found on [docs.conductor.is](https://docs.conductor.is/api-ref). The full API of this library can be found in [api.md](api.md).

## Installation

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "conductor-node",
"version": "12.0.0-beta.7",
"version": "12.0.0-beta.8",
"description": "The official TypeScript library for the Conductor API",
"author": "Conductor <support@conductor.is>",
"types": "dist/index.d.ts",
Expand Down
12 changes: 6 additions & 6 deletions src/resources/qbd/time-tracking-activities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,12 @@ export interface TimeTrackingActivityListParams extends CursorPageParams {
*/
conductorEndUserId: string;

/**
* Query param: Filter for time tracking activities tracking the time of these
* employees, vendors, or persons on QuickBooks's "Other Names" list.
*/
entityIds?: Array<string>;

/**
* Query param: Filter for specific time tracking activities by their
* QuickBooks-assigned unique identifier(s).
Expand All @@ -556,12 +562,6 @@ export interface TimeTrackingActivityListParams extends CursorPageParams {
*/
ids?: Array<string>;

/**
* Query param: Filter for time tracking activities tracking the time of these
* employees, vendors, or persons on QuickBooks's "Other Names" list.
*/
timeTrackingEntityIds?: Array<string>;

/**
* Query param: Filter for time tracking activities created on or after this date,
* in ISO 8601 format (YYYY-MM-DD).
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '12.0.0-beta.7'; // x-release-please-version
export const VERSION = '12.0.0-beta.8'; // x-release-please-version
2 changes: 1 addition & 1 deletion tests/api-resources/qbd/time-tracking-activities.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ describe('resource timeTrackingActivities', () => {
const response = await client.qbd.timeTrackingActivities.list({
conductorEndUserId: 'end_usr_1234567abcdefg',
cursor: '12345678-abcd-abcd-example-1234567890ab',
entityIds: ['80000001-1234567890'],
ids: ['123ABC-1234567890'],
limit: 150,
timeTrackingEntityIds: ['80000001-1234567890'],
transactionDateFrom: '2021-01-01',
transactionDateTo: '2021-02-01',
updatedAfter: '2021-01-01T12:34:56',
Expand Down