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
23 changes: 0 additions & 23 deletions .devcontainer/Dockerfile

This file was deleted.

27 changes: 12 additions & 15 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "Debian",
"build": {
"dockerfile": "Dockerfile"
"name": "Development",
"image": "mcr.microsoft.com/devcontainers/typescript-node:latest",
"features": {
"ghcr.io/devcontainers/features/node:1": {}
},
"postCreateCommand": "yarn install",
"customizations": {
"vscode": {
"extensions": [
"esbenp.prettier-vscode"
]
}
}

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
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.4"
".": "12.0.0-beta.5"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 160
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-04f964a1ebe845a79205ad4aff601860ed482245b4ea4b7a8c81f9595e91ebb6.yml
configured_endpoints: 165
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-54821f89f77f7a8cd0d792e51306298c26832f14aafbeb8fed2969d030648114.yml
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

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

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

### Features

* **api:** api update ([#39](https://github.com/conductor-is/quickbooks-desktop-node/issues/39)) ([2b02cbc](https://github.com/conductor-is/quickbooks-desktop-node/commit/2b02cbc118423a1e65e254eaab43c2cfa8750826))
* **api:** api update ([#42](https://github.com/conductor-is/quickbooks-desktop-node/issues/42)) ([f4724e0](https://github.com/conductor-is/quickbooks-desktop-node/commit/f4724e09acfcb2567a63510bd6e0b348599aa7f4))
* **api:** api update ([#43](https://github.com/conductor-is/quickbooks-desktop-node/issues/43)) ([886e7ad](https://github.com/conductor-is/quickbooks-desktop-node/commit/886e7ada0c9f6163dd61386b509bf2e7e8ee228d))
* **api:** api update ([#44](https://github.com/conductor-is/quickbooks-desktop-node/issues/44)) ([31e96e5](https://github.com/conductor-is/quickbooks-desktop-node/commit/31e96e50ab6042840c48c51d1f88844f8f4e78a2))


### Chores

* **internal:** fix devcontainers setup ([#41](https://github.com/conductor-is/quickbooks-desktop-node/issues/41)) ([5a94758](https://github.com/conductor-is/quickbooks-desktop-node/commit/5a9475838ba0e5550e2bac06cd5085c2b89f024d))

## 12.0.0-beta.4 (2025-02-21)

Full Changelog: [v12.0.0-beta.3...v12.0.0-beta.4](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.0.0-beta.3...v12.0.0-beta.4)
Expand Down
15 changes: 15 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,21 @@ Methods:
- <code title="post /quickbooks-desktop/subtotal-items/{id}">client.qbd.subtotalItems.<a href="./src/resources/qbd/subtotal-items.ts">update</a>(id, { ...params }) -> SubtotalItem</code>
- <code title="get /quickbooks-desktop/subtotal-items">client.qbd.subtotalItems.<a href="./src/resources/qbd/subtotal-items.ts">list</a>({ ...params }) -> SubtotalItemsCursorPage</code>

## TimeTrackingActivities

Types:

- <code><a href="./src/resources/qbd/time-tracking-activities.ts">TimeTrackingActivity</a></code>
- <code><a href="./src/resources/qbd/time-tracking-activities.ts">TimeTrackingActivityDeleteResponse</a></code>

Methods:

- <code title="post /quickbooks-desktop/time-tracking-activities">client.qbd.timeTrackingActivities.<a href="./src/resources/qbd/time-tracking-activities.ts">create</a>({ ...params }) -> TimeTrackingActivity</code>
- <code title="get /quickbooks-desktop/time-tracking-activities/{id}">client.qbd.timeTrackingActivities.<a href="./src/resources/qbd/time-tracking-activities.ts">retrieve</a>(id, { ...params }) -> TimeTrackingActivity</code>
- <code title="post /quickbooks-desktop/time-tracking-activities/{id}">client.qbd.timeTrackingActivities.<a href="./src/resources/qbd/time-tracking-activities.ts">update</a>(id, { ...params }) -> TimeTrackingActivity</code>
- <code title="get /quickbooks-desktop/time-tracking-activities">client.qbd.timeTrackingActivities.<a href="./src/resources/qbd/time-tracking-activities.ts">list</a>({ ...params }) -> TimeTrackingActivitiesCursorPage</code>
- <code title="delete /quickbooks-desktop/time-tracking-activities/{id}">client.qbd.timeTrackingActivities.<a href="./src/resources/qbd/time-tracking-activities.ts">delete</a>(id, { ...params }) -> TimeTrackingActivityDeleteResponse</code>

## Transfers

Types:
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.4",
"version": "12.0.0-beta.5",
"description": "The official TypeScript library for the Conductor API",
"author": "Conductor <support@conductor.is>",
"types": "dist/index.d.ts",
Expand Down
102 changes: 72 additions & 30 deletions src/resources/qbd/employees.ts
Original file line number Diff line number Diff line change
Expand Up @@ -779,23 +779,30 @@ export namespace Employee {
accrualStartDate: string | null;

/**
* The number of sick hours the employee will accrue per accrual period.
* The number of sick hours the employee will accrue per accrual period, in ISO
* 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is
* represented as PT1H30M.
*/
hoursAccruedPerPeriod: string | null;

/**
* The total number of sick hours currently available for the employee to use.
* Defaults to 0.
* The total number of sick hours currently available for the employee to use, in
* ISO 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30
* minutes is represented as PT1H30M. Defaults to 0.
*/
hoursAvailable: string | null;

/**
* The number of sick hours the employee has used.
* The number of sick hours the employee has used, in ISO 8601 format for time
* intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented as
* PT1H30M.
*/
hoursUsed: string | null;

/**
* The maximum number of sick hours the employee can accrue.
* The maximum number of sick hours the employee can accrue, in ISO 8601 format for
* time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented as
* PT1H30M.
*/
maximumHours: string | null;

Expand Down Expand Up @@ -823,23 +830,30 @@ export namespace Employee {
accrualStartDate: string | null;

/**
* The number of vacation hours the employee will accrue per accrual period.
* The number of vacation hours the employee will accrue per accrual period, in ISO
* 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is
* represented as PT1H30M.
*/
hoursAccruedPerPeriod: string | null;

/**
* The total number of vacation hours currently available for the employee to use.
* Defaults to 0.
* The total number of vacation hours currently available for the employee to use,
* in ISO 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30
* minutes is represented as PT1H30M. Defaults to 0.
*/
hoursAvailable: string | null;

/**
* The number of vacation hours the employee has used.
* The number of vacation hours the employee has used, in ISO 8601 format for time
* intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented as
* PT1H30M.
*/
hoursUsed: string | null;

/**
* The maximum number of vacation hours the employee can accrue.
* The maximum number of vacation hours the employee can accrue, in ISO 8601 format
* for time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented
* as PT1H30M.
*/
maximumHours: string | null;

Expand Down Expand Up @@ -1448,23 +1462,30 @@ export namespace EmployeeCreateParams {
accrualStartDate?: string;

/**
* The number of sick hours the employee will accrue per accrual period.
* The number of sick hours the employee will accrue per accrual period, in ISO
* 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is
* represented as PT1H30M.
*/
hoursAccruedPerPeriod?: string;

/**
* The total number of sick hours currently available for the employee to use.
* Defaults to 0.
* The total number of sick hours currently available for the employee to use, in
* ISO 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30
* minutes is represented as PT1H30M. Defaults to 0.
*/
hoursAvailable?: string;

/**
* The number of sick hours the employee has used.
* The number of sick hours the employee has used, in ISO 8601 format for time
* intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented as
* PT1H30M.
*/
hoursUsed?: string;

/**
* The maximum number of sick hours the employee can accrue.
* The maximum number of sick hours the employee can accrue, in ISO 8601 format for
* time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented as
* PT1H30M.
*/
maximumHours?: string;

Expand Down Expand Up @@ -1492,23 +1513,30 @@ export namespace EmployeeCreateParams {
accrualStartDate?: string;

/**
* The number of vacation hours the employee will accrue per accrual period.
* The number of vacation hours the employee will accrue per accrual period, in ISO
* 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is
* represented as PT1H30M.
*/
hoursAccruedPerPeriod?: string;

/**
* The total number of vacation hours currently available for the employee to use.
* Defaults to 0.
* The total number of vacation hours currently available for the employee to use,
* in ISO 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30
* minutes is represented as PT1H30M. Defaults to 0.
*/
hoursAvailable?: string;

/**
* The number of vacation hours the employee has used.
* The number of vacation hours the employee has used, in ISO 8601 format for time
* intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented as
* PT1H30M.
*/
hoursUsed?: string;

/**
* The maximum number of vacation hours the employee can accrue.
* The maximum number of vacation hours the employee can accrue, in ISO 8601 format
* for time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented
* as PT1H30M.
*/
maximumHours?: string;

Expand Down Expand Up @@ -2095,23 +2123,30 @@ export namespace EmployeeUpdateParams {
accrualStartDate?: string;

/**
* The number of sick hours the employee will accrue per accrual period.
* The number of sick hours the employee will accrue per accrual period, in ISO
* 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is
* represented as PT1H30M.
*/
hoursAccruedPerPeriod?: string;

/**
* The total number of sick hours currently available for the employee to use.
* Defaults to 0.
* The total number of sick hours currently available for the employee to use, in
* ISO 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30
* minutes is represented as PT1H30M. Defaults to 0.
*/
hoursAvailable?: string;

/**
* The number of sick hours the employee has used.
* The number of sick hours the employee has used, in ISO 8601 format for time
* intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented as
* PT1H30M.
*/
hoursUsed?: string;

/**
* The maximum number of sick hours the employee can accrue.
* The maximum number of sick hours the employee can accrue, in ISO 8601 format for
* time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented as
* PT1H30M.
*/
maximumHours?: string;

Expand Down Expand Up @@ -2139,23 +2174,30 @@ export namespace EmployeeUpdateParams {
accrualStartDate?: string;

/**
* The number of vacation hours the employee will accrue per accrual period.
* The number of vacation hours the employee will accrue per accrual period, in ISO
* 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is
* represented as PT1H30M.
*/
hoursAccruedPerPeriod?: string;

/**
* The total number of vacation hours currently available for the employee to use.
* Defaults to 0.
* The total number of vacation hours currently available for the employee to use,
* in ISO 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30
* minutes is represented as PT1H30M. Defaults to 0.
*/
hoursAvailable?: string;

/**
* The number of vacation hours the employee has used.
* The number of vacation hours the employee has used, in ISO 8601 format for time
* intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented as
* PT1H30M.
*/
hoursUsed?: string;

/**
* The maximum number of vacation hours the employee can accrue.
* The maximum number of vacation hours the employee can accrue, in ISO 8601 format
* for time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is represented
* as PT1H30M.
*/
maximumHours?: string;

Expand Down
11 changes: 11 additions & 0 deletions src/resources/qbd/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,17 @@ export {
type SubtotalItemUpdateParams,
type SubtotalItemListParams,
} from './subtotal-items';
export {
TimeTrackingActivitiesCursorPage,
TimeTrackingActivities,
type TimeTrackingActivity,
type TimeTrackingActivityDeleteResponse,
type TimeTrackingActivityCreateParams,
type TimeTrackingActivityRetrieveParams,
type TimeTrackingActivityUpdateParams,
type TimeTrackingActivityListParams,
type TimeTrackingActivityDeleteParams,
} from './time-tracking-activities';
export {
TransfersCursorPage,
Transfers,
Expand Down
Loading