Skip to content

Commit a4f6a27

Browse files
stainless-app[bot]DannyNemer
authored andcommitted
feat(api): api update (#54)
1 parent 39d226f commit a4f6a27

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 164
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-73901c6384e9bc200d699d9fc8e3d66a6968447ed9dc81de9c3e76ab855a7e7a.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-10f337363613795d73455c319c396fbd45bd29e52d1dd4d3345ab9063c124618.yml

src/resources/qbd/time-tracking-activities.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,12 @@ export interface TimeTrackingActivityListParams extends CursorPageParams {
544544
*/
545545
conductorEndUserId: string;
546546

547+
/**
548+
* Query param: Filter for time tracking activities tracking the time of these
549+
* employees, vendors, or persons on QuickBooks's "Other Names" list.
550+
*/
551+
entityIds?: Array<string>;
552+
547553
/**
548554
* Query param: Filter for specific time tracking activities by their
549555
* QuickBooks-assigned unique identifier(s).
@@ -556,12 +562,6 @@ export interface TimeTrackingActivityListParams extends CursorPageParams {
556562
*/
557563
ids?: Array<string>;
558564

559-
/**
560-
* Query param: Filter for time tracking activities tracking the time of these
561-
* employees, vendors, or persons on QuickBooks's "Other Names" list.
562-
*/
563-
timeTrackingEntityIds?: Array<string>;
564-
565565
/**
566566
* Query param: Filter for time tracking activities created on or after this date,
567567
* in ISO 8601 format (YYYY-MM-DD).

tests/api-resources/qbd/time-tracking-activities.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ describe('resource timeTrackingActivities', () => {
109109
const response = await client.qbd.timeTrackingActivities.list({
110110
conductorEndUserId: 'end_usr_1234567abcdefg',
111111
cursor: '12345678-abcd-abcd-example-1234567890ab',
112+
entityIds: ['80000001-1234567890'],
112113
ids: ['123ABC-1234567890'],
113114
limit: 150,
114-
timeTrackingEntityIds: ['80000001-1234567890'],
115115
transactionDateFrom: '2021-01-01',
116116
transactionDateTo: '2021-02-01',
117117
updatedAfter: '2021-01-01T12:34:56',

0 commit comments

Comments
 (0)