conductor-node 12.0.0-beta.7 → 12.0.0-beta.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 12.0.0-beta.9 (2025-02-24)
4
+
5
+ Full Changelog: [v12.0.0-beta.8...v12.0.0-beta.9](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.0.0-beta.8...v12.0.0-beta.9)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([#56](https://github.com/conductor-is/quickbooks-desktop-node/issues/56)) ([5ae43e7](https://github.com/conductor-is/quickbooks-desktop-node/commit/5ae43e734811448f8be026adc3a083987db14a56))
10
+ * **api:** api update ([#58](https://github.com/conductor-is/quickbooks-desktop-node/issues/58)) ([19059e8](https://github.com/conductor-is/quickbooks-desktop-node/commit/19059e8441810fe594960dbf3af995ea6ac9e4ca))
11
+
12
+ ## 12.0.0-beta.8 (2025-02-24)
13
+
14
+ 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)
15
+
16
+ ### Features
17
+
18
+ * **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))
19
+ * **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))
20
+
3
21
  ## 12.0.0-beta.7 (2025-02-23)
4
22
 
5
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)
package/README.md CHANGED
@@ -34,7 +34,7 @@ This repository contains the official Conductor **Node.js** library, which provi
34
34
 
35
35
  ## Documentation
36
36
 
37
- 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).
37
+ 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).
38
38
 
39
39
  ## Installation
40
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "12.0.0-beta.7",
3
+ "version": "12.0.0-beta.9",
4
4
  "description": "The official TypeScript library for the Conductor API",
5
5
  "author": "Conductor <support@conductor.is>",
6
6
  "types": "./index.d.ts",
@@ -2,20 +2,20 @@ import { APIResource } from "../resource.js";
2
2
  import * as Core from "../core.js";
3
3
  export declare class AuthSessions extends APIResource {
4
4
  /**
5
- * To launch the authentication flow, create an AuthSession and pass the returned
6
- * sessions `authFlowUrl` to the client for your end-user to visit in their
5
+ * To launch the authentication flow, create an auth session and pass the returned
6
+ * session's `authFlowUrl` to the client for your end-user to visit in their
7
7
  * browser.
8
8
  */
9
9
  create(body: AuthSessionCreateParams, options?: Core.RequestOptions): Core.APIPromise<AuthSession>;
10
10
  }
11
11
  export interface AuthSession {
12
12
  /**
13
- * The unique identifier for this AuthSession.
13
+ * The unique identifier for this auth session.
14
14
  */
15
15
  id: string;
16
16
  /**
17
17
  * The URL of the authentication flow that you will pass to your client for your
18
- * user to set up their IntegrationConnection.
18
+ * user to set up their integration connection.
19
19
  */
20
20
  authFlowUrl: string;
21
21
  /**
@@ -23,17 +23,17 @@ export interface AuthSession {
23
23
  */
24
24
  clientSecret: string;
25
25
  /**
26
- * The date and time when this AuthSession record was created.
26
+ * The date and time when this auth session record was created.
27
27
  */
28
28
  createdAt: string;
29
29
  /**
30
- * The ID of the EndUser for whom to create an IntegrationConnection.
30
+ * The ID of the end-user for whom to create an integration connection.
31
31
  */
32
32
  endUserId: string;
33
33
  /**
34
- * The date and time when this AuthSession expires. By default, this value is 30
34
+ * The date and time when this auth session expires. By default, this value is 30
35
35
  * minutes from creation. You can extend this time by setting `linkExpiryMins` when
36
- * [creating the AuthSession](/apis/auth-sessions/create).
36
+ * creating the auth session.
37
37
  */
38
38
  expiresAt: string;
39
39
  /**
@@ -49,16 +49,16 @@ export interface AuthSession {
49
49
  }
50
50
  export interface AuthSessionCreateParams {
51
51
  /**
52
- * The ID of the EndUser for whom to create the IntegrationConnection.
52
+ * The ID of the end-user for whom to create the integration connection.
53
53
  */
54
54
  endUserId: string;
55
55
  /**
56
- * Your Conductor publishable key, which we use to create the sessions
56
+ * Your Conductor publishable key, which we use to create the auth session's
57
57
  * `authFlowUrl`.
58
58
  */
59
59
  publishableKey: string;
60
60
  /**
61
- * The number of minutes after which the AuthSession will expire. Must be at least
61
+ * The number of minutes after which the auth session will expire. Must be at least
62
62
  * 15 minutes and no more than 7 days. If not provided, defaults to 30 minutes.
63
63
  */
64
64
  linkExpiryMins?: number;
@@ -5,8 +5,8 @@ exports.AuthSessions = void 0;
5
5
  const resource_1 = require("../resource.js");
6
6
  class AuthSessions extends resource_1.APIResource {
7
7
  /**
8
- * To launch the authentication flow, create an AuthSession and pass the returned
9
- * sessions `authFlowUrl` to the client for your end-user to visit in their
8
+ * To launch the authentication flow, create an auth session and pass the returned
9
+ * session's `authFlowUrl` to the client for your end-user to visit in their
10
10
  * browser.
11
11
  */
12
12
  create(body, options) {
@@ -2,8 +2,8 @@
2
2
  import { APIResource } from "../resource.mjs";
3
3
  export class AuthSessions extends APIResource {
4
4
  /**
5
- * To launch the authentication flow, create an AuthSession and pass the returned
6
- * sessions `authFlowUrl` to the client for your end-user to visit in their
5
+ * To launch the authentication flow, create an auth session and pass the returned
6
+ * session's `authFlowUrl` to the client for your end-user to visit in their
7
7
  * browser.
8
8
  */
9
9
  create(body, options) {
@@ -2,19 +2,19 @@ import { APIResource } from "../resource.js";
2
2
  import * as Core from "../core.js";
3
3
  export declare class EndUsers extends APIResource {
4
4
  /**
5
- * Creates an EndUser.
5
+ * Creates an end-user.
6
6
  */
7
7
  create(body: EndUserCreateParams, options?: Core.RequestOptions): Core.APIPromise<EndUser>;
8
8
  /**
9
- * Retrieves an EndUser object.
9
+ * Retrieves an end-user object.
10
10
  */
11
11
  retrieve(id: string, options?: Core.RequestOptions): Core.APIPromise<EndUser>;
12
12
  /**
13
- * Returns a list of your EndUsers.
13
+ * Returns a list of your end-users.
14
14
  */
15
15
  list(options?: Core.RequestOptions): Core.APIPromise<EndUserListResponse>;
16
16
  /**
17
- * Permanently deletes an EndUser object and all of its connections.
17
+ * Permanently deletes an end-user object and all of its connections.
18
18
  */
19
19
  delete(id: string, options?: Core.RequestOptions): Core.APIPromise<EndUserDeleteResponse>;
20
20
  /**
@@ -23,7 +23,7 @@ export declare class EndUsers extends APIResource {
23
23
  */
24
24
  passthrough(id: string, integrationSlug: 'quickbooks_desktop', body: EndUserPassthroughParams, options?: Core.RequestOptions): Core.APIPromise<EndUserPassthroughResponse>;
25
25
  /**
26
- * Checks whether the specified IntegrationConnection can connect and process
26
+ * Checks whether the specified integration connection can connect and process
27
27
  * requests end-to-end. This is useful for showing a "connection status" indicator
28
28
  * in your app.
29
29
  */
@@ -31,25 +31,25 @@ export declare class EndUsers extends APIResource {
31
31
  }
32
32
  export interface EndUser {
33
33
  /**
34
- * The unique identifier for this EndUser. You must save this value to your
34
+ * The unique identifier for this end-user. You must save this value to your
35
35
  * database because it is how you identify which of your users to receive your API
36
36
  * requests.
37
37
  */
38
38
  id: string;
39
39
  /**
40
- * The EndUser's company name that will be shown elsewhere in Conductor.
40
+ * The end-user's company name that will be shown elsewhere in Conductor.
41
41
  */
42
42
  companyName: string;
43
43
  /**
44
- * The date and time when this EndUser record was created.
44
+ * The date and time when this end-user record was created.
45
45
  */
46
46
  createdAt: string;
47
47
  /**
48
- * The EndUser's email address for identification purposes.
48
+ * The end-user's email address for identification purposes.
49
49
  */
50
50
  email: string;
51
51
  /**
52
- * The EndUser's IntegrationConnections.
52
+ * The end-user's integration connections.
53
53
  */
54
54
  integrationConnections: Array<EndUser.IntegrationConnection>;
55
55
  /**
@@ -57,7 +57,7 @@ export interface EndUser {
57
57
  */
58
58
  objectType: 'end_user';
59
59
  /**
60
- * The EndUser's unique identifier from your system. Maps users between your
60
+ * The end-user's unique identifier from your system. Maps users between your
61
61
  * database and Conductor.
62
62
  */
63
63
  sourceId: string;
@@ -65,11 +65,11 @@ export interface EndUser {
65
65
  export declare namespace EndUser {
66
66
  interface IntegrationConnection {
67
67
  /**
68
- * The unique identifier for this IntegrationConnection.
68
+ * The unique identifier for this integration connection.
69
69
  */
70
70
  id: string;
71
71
  /**
72
- * The date and time when this IntegrationConnection record was created.
72
+ * The date and time when this integration connection record was created.
73
73
  */
74
74
  createdAt: string;
75
75
  /**
@@ -77,13 +77,13 @@ export declare namespace EndUser {
77
77
  */
78
78
  integrationSlug: 'quickbooks_desktop';
79
79
  /**
80
- * The date and time of your last API request to this IntegrationConnection.
80
+ * The date and time of your last API request to this integration connection.
81
81
  */
82
82
  lastRequestAt: string | null;
83
83
  /**
84
- * The date and time of your last _successful_ API request to this
85
- * IntegrationConnection. A successful request means the integration fully
86
- * processed and returned a response without any errors end-to-end.
84
+ * The date and time of your last _successful_ API request to this integration
85
+ * connection. A successful request means the integration fully processed and
86
+ * returned a response without any errors end-to-end.
87
87
  */
88
88
  lastSuccessfulRequestAt: string | null;
89
89
  /**
@@ -94,7 +94,7 @@ export declare namespace EndUser {
94
94
  }
95
95
  export interface EndUserListResponse {
96
96
  /**
97
- * The array of EndUsers.
97
+ * The array of end-users.
98
98
  */
99
99
  data: Array<EndUser>;
100
100
  /**
@@ -108,11 +108,11 @@ export interface EndUserListResponse {
108
108
  }
109
109
  export interface EndUserDeleteResponse {
110
110
  /**
111
- * The ID of the deleted EndUser.
111
+ * The ID of the deleted end-user.
112
112
  */
113
113
  id: string;
114
114
  /**
115
- * Indicates whether the EndUser was deleted.
115
+ * Indicates whether the end-user was deleted.
116
116
  */
117
117
  deleted: boolean;
118
118
  /**
@@ -5,25 +5,25 @@ exports.EndUsers = void 0;
5
5
  const resource_1 = require("../resource.js");
6
6
  class EndUsers extends resource_1.APIResource {
7
7
  /**
8
- * Creates an EndUser.
8
+ * Creates an end-user.
9
9
  */
10
10
  create(body, options) {
11
11
  return this._client.post('/end-users', { body, ...options });
12
12
  }
13
13
  /**
14
- * Retrieves an EndUser object.
14
+ * Retrieves an end-user object.
15
15
  */
16
16
  retrieve(id, options) {
17
17
  return this._client.get(`/end-users/${id}`, options);
18
18
  }
19
19
  /**
20
- * Returns a list of your EndUsers.
20
+ * Returns a list of your end-users.
21
21
  */
22
22
  list(options) {
23
23
  return this._client.get('/end-users', options);
24
24
  }
25
25
  /**
26
- * Permanently deletes an EndUser object and all of its connections.
26
+ * Permanently deletes an end-user object and all of its connections.
27
27
  */
28
28
  delete(id, options) {
29
29
  return this._client.delete(`/end-users/${id}`, options);
@@ -36,7 +36,7 @@ class EndUsers extends resource_1.APIResource {
36
36
  return this._client.post(`/end-users/${id}/passthrough/${integrationSlug}`, { body, ...options });
37
37
  }
38
38
  /**
39
- * Checks whether the specified IntegrationConnection can connect and process
39
+ * Checks whether the specified integration connection can connect and process
40
40
  * requests end-to-end. This is useful for showing a "connection status" indicator
41
41
  * in your app.
42
42
  */
@@ -2,25 +2,25 @@
2
2
  import { APIResource } from "../resource.mjs";
3
3
  export class EndUsers extends APIResource {
4
4
  /**
5
- * Creates an EndUser.
5
+ * Creates an end-user.
6
6
  */
7
7
  create(body, options) {
8
8
  return this._client.post('/end-users', { body, ...options });
9
9
  }
10
10
  /**
11
- * Retrieves an EndUser object.
11
+ * Retrieves an end-user object.
12
12
  */
13
13
  retrieve(id, options) {
14
14
  return this._client.get(`/end-users/${id}`, options);
15
15
  }
16
16
  /**
17
- * Returns a list of your EndUsers.
17
+ * Returns a list of your end-users.
18
18
  */
19
19
  list(options) {
20
20
  return this._client.get('/end-users', options);
21
21
  }
22
22
  /**
23
- * Permanently deletes an EndUser object and all of its connections.
23
+ * Permanently deletes an end-user object and all of its connections.
24
24
  */
25
25
  delete(id, options) {
26
26
  return this._client.delete(`/end-users/${id}`, options);
@@ -33,7 +33,7 @@ export class EndUsers extends APIResource {
33
33
  return this._client.post(`/end-users/${id}/passthrough/${integrationSlug}`, { body, ...options });
34
34
  }
35
35
  /**
36
- * Checks whether the specified IntegrationConnection can connect and process
36
+ * Checks whether the specified integration connection can connect and process
37
37
  * requests end-to-end. This is useful for showing a "connection status" indicator
38
38
  * in your app.
39
39
  */
@@ -55,8 +55,8 @@ export interface TimeTrackingActivity {
55
55
  */
56
56
  createdAt: string;
57
57
  /**
58
- * The customer or customer-job to which this time could be billed. If
59
- * `billingStatus` is set to "billable", this field is required.
58
+ * The customer or customer-job to which this time tracking activity could be
59
+ * billed. If `billingStatus` is set to "billable", this field is required.
60
60
  */
61
61
  customer: TimeTrackingActivity.Customer | null;
62
62
  /**
@@ -153,8 +153,8 @@ export declare namespace TimeTrackingActivity {
153
153
  fullName: string | null;
154
154
  }
155
155
  /**
156
- * The customer or customer-job to which this time could be billed. If
157
- * `billingStatus` is set to "billable", this field is required.
156
+ * The customer or customer-job to which this time tracking activity could be
157
+ * billed. If `billingStatus` is set to "billable", this field is required.
158
158
  */
159
159
  interface Customer {
160
160
  /**
@@ -299,8 +299,9 @@ export interface TimeTrackingActivityCreateParams {
299
299
  */
300
300
  classId?: string;
301
301
  /**
302
- * Body param: The customer or customer-job to which this time could be billed. If
303
- * `billingStatus` is set to "billable", this field is required.
302
+ * Body param: The customer or customer-job to which this time tracking activity
303
+ * could be billed. If `billingStatus` is set to "billable", this field is
304
+ * required.
304
305
  */
305
306
  customerId?: string;
306
307
  /**
@@ -393,8 +394,9 @@ export interface TimeTrackingActivityUpdateParams {
393
394
  */
394
395
  classId?: string;
395
396
  /**
396
- * Body param: The customer or customer-job to which this time could be billed. If
397
- * `billingStatus` is set to "billable", this field is required.
397
+ * Body param: The customer or customer-job to which this time tracking activity
398
+ * could be billed. If `billingStatus` is set to "billable", this field is
399
+ * required.
398
400
  */
399
401
  customerId?: string;
400
402
  /**
@@ -431,6 +433,11 @@ export interface TimeTrackingActivityListParams extends CursorPageParams {
431
433
  * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
432
434
  */
433
435
  conductorEndUserId: string;
436
+ /**
437
+ * Query param: Filter for time tracking activities tracking the time of these
438
+ * employees, vendors, or persons on QuickBooks's "Other Names" list.
439
+ */
440
+ entityIds?: Array<string>;
434
441
  /**
435
442
  * Query param: Filter for specific time tracking activities by their
436
443
  * QuickBooks-assigned unique identifier(s).
@@ -442,11 +449,6 @@ export interface TimeTrackingActivityListParams extends CursorPageParams {
442
449
  * request will return an error.
443
450
  */
444
451
  ids?: Array<string>;
445
- /**
446
- * Query param: Filter for time tracking activities tracking the time of these
447
- * employees, vendors, or persons on QuickBooks's "Other Names" list.
448
- */
449
- timeTrackingEntityIds?: Array<string>;
450
452
  /**
451
453
  * Query param: Filter for time tracking activities created on or after this date,
452
454
  * in ISO 8601 format (YYYY-MM-DD).
@@ -1 +1 @@
1
- {"version":3,"file":"time-tracking-activities.d.ts","sourceRoot":"","sources":["../../src/resources/qbd/time-tracking-activities.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"time-tracking-activities.d.ts","sourceRoot":"","sources":["../../src/resources/qbd/time-tracking-activities.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,UAAU,EAAE,KAAK,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAErE,qBAAa,sBAAuB,SAAQ,WAAW;IACrD;;OAEG;IACH,MAAM,CACJ,MAAM,EAAE,gCAAgC,EACxC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC;IASxC;;OAEG;IACH,QAAQ,CACN,EAAE,EAAE,MAAM,EACV,MAAM,EAAE,kCAAkC,EAC1C,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC;IAQxC;;OAEG;IACH,MAAM,CACJ,EAAE,EAAE,MAAM,EACV,MAAM,EAAE,gCAAgC,EACxC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC;IASxC;;;OAGG;IACH,IAAI,CACF,MAAM,EAAE,8BAA8B,EACtC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,WAAW,CAAC,gCAAgC,EAAE,oBAAoB,CAAC;IAS3E;;;;OAIG;IACH,MAAM,CACJ,EAAE,EAAE,MAAM,EACV,MAAM,EAAE,gCAAgC,EACxC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,kCAAkC,CAAC;CAOvD;AAED,qBAAa,gCAAiC,SAAQ,UAAU,CAAC,oBAAoB,CAAC;CAAG;AAEzF,MAAM,WAAW,oBAAoB;IACnC;;;OAGG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;;;;;OAMG;IACH,aAAa,EAAE,UAAU,GAAG,iBAAiB,GAAG,cAAc,GAAG,IAAI,CAAC;IAEtE;;;;OAIG;IACH,KAAK,EAAE,oBAAoB,CAAC,KAAK,GAAG,IAAI,CAAC;IAEzC;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,QAAQ,EAAE,oBAAoB,CAAC,QAAQ,GAAG,IAAI,CAAC;IAE/C;;;;;;;;;;;OAWG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;;OAKG;IACH,MAAM,EAAE,oBAAoB,CAAC,MAAM,CAAC;IAEpC;;;;OAIG;IACH,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B;;OAEG;IACH,QAAQ,EAAE,OAAO,GAAG,IAAI,CAAC;IAEzB;;OAEG;IACH,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IAEpB;;OAEG;IACH,UAAU,EAAE,4BAA4B,CAAC;IAEzC;;;;;OAKG;IACH,eAAe,EAAE,oBAAoB,CAAC,eAAe,GAAG,IAAI,CAAC;IAE7D;;;;;OAKG;IACH,cAAc,EAAE,MAAM,CAAC;IAEvB;;;;;;;;OAQG;IACH,WAAW,EAAE,oBAAoB,CAAC,WAAW,GAAG,IAAI,CAAC;IAErD;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IAExB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,yBAAiB,oBAAoB,CAAC;IACpC;;;;OAIG;IACH,UAAiB,KAAK;QACpB;;;;WAIG;QACH,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;QAElB;;;;WAIG;QACH,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;KACzB;IAED;;;OAGG;IACH,UAAiB,QAAQ;QACvB;;;;WAIG;QACH,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;QAElB;;;;WAIG;QACH,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;KACzB;IAED;;;;;OAKG;IACH,UAAiB,MAAM;QACrB;;;;WAIG;QACH,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;QAElB;;;;WAIG;QACH,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;KACzB;IAED;;;;;OAKG;IACH,UAAiB,eAAe;QAC9B;;;;WAIG;QACH,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;QAElB;;;;WAIG;QACH,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;KACzB;IAED;;;;;;;;OAQG;IACH,UAAiB,WAAW;QAC1B;;;;WAIG;QACH,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;QAElB;;;;WAIG;QACH,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;KACzB;CACF;AAED,MAAM,WAAW,kCAAkC;IACjD;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,UAAU,EAAE,4BAA4B,CAAC;IAEzC;;;OAGG;IACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B;AAED,MAAM,WAAW,gCAAgC;IAC/C;;;;;;;;;;;OAWG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;;OAKG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,eAAe,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAE3B;;;;;;OAMG;IACH,aAAa,CAAC,EAAE,UAAU,GAAG,iBAAiB,GAAG,cAAc,CAAC;IAEhE;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;;OAOG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;;OAMG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B;;;;;;;;OAQG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,kCAAkC;IACjD;;;OAGG;IACH,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,gCAAgC;IAC/C;;;;;;;;;;;OAWG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;;;;;OAQG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;;OAKG;IACH,cAAc,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAE3B;;;;;;OAMG;IACH,aAAa,CAAC,EAAE,UAAU,GAAG,iBAAiB,GAAG,cAAc,CAAC;IAEhE;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;;OAMG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B;;;;;;;;OAQG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,8BAA+B,SAAQ,gBAAgB;IACtE;;;OAGG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAE3B;;;OAGG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAE1B;;;;;;;;;OASG;IACH,GAAG,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEpB;;;OAGG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,gCAAgC;IAC/C;;;OAGG;IACH,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAID,MAAM,CAAC,OAAO,WAAW,sBAAsB,CAAC;IAC9C,OAAO,EACL,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,kCAAkC,IAAI,kCAAkC,EAC7E,gCAAgC,IAAI,gCAAgC,EACpE,KAAK,gCAAgC,IAAI,gCAAgC,EACzE,KAAK,kCAAkC,IAAI,kCAAkC,EAC7E,KAAK,gCAAgC,IAAI,gCAAgC,EACzE,KAAK,8BAA8B,IAAI,8BAA8B,EACrE,KAAK,gCAAgC,IAAI,gCAAgC,GAC1E,CAAC;CACH"}
@@ -1 +1 @@
1
- {"version":3,"file":"time-tracking-activities.js","sourceRoot":"","sources":["../../src/resources/qbd/time-tracking-activities.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAE7C,oDAAqE;AAErE,MAAa,sBAAuB,SAAQ,sBAAW;IACrD;;OAEG;IACH,MAAM,CACJ,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,8CAA8C,EAAE;YACvE,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,QAAQ,CACN,EAAU,EACV,MAA0C,EAC1C,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC5E,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,EAAU,EACV,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC7E,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,IAAI,CACF,MAAsC,EACtC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAC5B,8CAA8C,EAC9C,gCAAgC,EAChC,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,EAAE,CACrG,CAAC;IACJ,CAAC;IAED;;;;OAIG;IACH,MAAM,CACJ,EAAU,EACV,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC/E,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;CACF;AA/ED,wDA+EC;AAED,MAAa,gCAAiC,SAAQ,uBAAgC;CAAG;AAAzF,4EAAyF;AAggBzF,sBAAsB,CAAC,gCAAgC,GAAG,gCAAgC,CAAC"}
1
+ {"version":3,"file":"time-tracking-activities.js","sourceRoot":"","sources":["../../src/resources/qbd/time-tracking-activities.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAE7C,oDAAqE;AAErE,MAAa,sBAAuB,SAAQ,sBAAW;IACrD;;OAEG;IACH,MAAM,CACJ,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,8CAA8C,EAAE;YACvE,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,QAAQ,CACN,EAAU,EACV,MAA0C,EAC1C,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC5E,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,EAAU,EACV,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC7E,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,IAAI,CACF,MAAsC,EACtC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAC5B,8CAA8C,EAC9C,gCAAgC,EAChC,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,EAAE,CACrG,CAAC;IACJ,CAAC;IAED;;;;OAIG;IACH,MAAM,CACJ,EAAU,EACV,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC/E,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;CACF;AA/ED,wDA+EC;AAED,MAAa,gCAAiC,SAAQ,uBAAgC;CAAG;AAAzF,4EAAyF;AAkgBzF,sBAAsB,CAAC,gCAAgC,GAAG,gCAAgC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"time-tracking-activities.mjs","sourceRoot":"","sources":["../../src/resources/qbd/time-tracking-activities.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,EAAE,UAAU,EAAyB;AAE5C,MAAM,OAAO,sBAAuB,SAAQ,WAAW;IACrD;;OAEG;IACH,MAAM,CACJ,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,8CAA8C,EAAE;YACvE,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,QAAQ,CACN,EAAU,EACV,MAA0C,EAC1C,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC5E,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,EAAU,EACV,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC7E,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,IAAI,CACF,MAAsC,EACtC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAC5B,8CAA8C,EAC9C,gCAAgC,EAChC,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,EAAE,CACrG,CAAC;IACJ,CAAC;IAED;;;;OAIG;IACH,MAAM,CACJ,EAAU,EACV,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC/E,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;CACF;AAED,MAAM,OAAO,gCAAiC,SAAQ,UAAgC;CAAG;AAggBzF,sBAAsB,CAAC,gCAAgC,GAAG,gCAAgC,CAAC"}
1
+ {"version":3,"file":"time-tracking-activities.mjs","sourceRoot":"","sources":["../../src/resources/qbd/time-tracking-activities.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,EAAE,UAAU,EAAyB;AAE5C,MAAM,OAAO,sBAAuB,SAAQ,WAAW;IACrD;;OAEG;IACH,MAAM,CACJ,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,8CAA8C,EAAE;YACvE,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,QAAQ,CACN,EAAU,EACV,MAA0C,EAC1C,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC5E,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,MAAM,CACJ,EAAU,EACV,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC7E,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,IAAI,CACF,MAAsC,EACtC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAC5B,8CAA8C,EAC9C,gCAAgC,EAChC,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,EAAE,CACrG,CAAC;IACJ,CAAC;IAED;;;;OAIG;IACH,MAAM,CACJ,EAAU,EACV,MAAwC,EACxC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE,EAAE,EAAE;YAC/E,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;CACF;AAED,MAAM,OAAO,gCAAiC,SAAQ,UAAgC;CAAG;AAkgBzF,sBAAsB,CAAC,gCAAgC,GAAG,gCAAgC,CAAC"}
@@ -5,8 +5,8 @@ import * as Core from '../core';
5
5
 
6
6
  export class AuthSessions extends APIResource {
7
7
  /**
8
- * To launch the authentication flow, create an AuthSession and pass the returned
9
- * sessions `authFlowUrl` to the client for your end-user to visit in their
8
+ * To launch the authentication flow, create an auth session and pass the returned
9
+ * session's `authFlowUrl` to the client for your end-user to visit in their
10
10
  * browser.
11
11
  */
12
12
  create(body: AuthSessionCreateParams, options?: Core.RequestOptions): Core.APIPromise<AuthSession> {
@@ -16,13 +16,13 @@ export class AuthSessions extends APIResource {
16
16
 
17
17
  export interface AuthSession {
18
18
  /**
19
- * The unique identifier for this AuthSession.
19
+ * The unique identifier for this auth session.
20
20
  */
21
21
  id: string;
22
22
 
23
23
  /**
24
24
  * The URL of the authentication flow that you will pass to your client for your
25
- * user to set up their IntegrationConnection.
25
+ * user to set up their integration connection.
26
26
  */
27
27
  authFlowUrl: string;
28
28
 
@@ -32,19 +32,19 @@ export interface AuthSession {
32
32
  clientSecret: string;
33
33
 
34
34
  /**
35
- * The date and time when this AuthSession record was created.
35
+ * The date and time when this auth session record was created.
36
36
  */
37
37
  createdAt: string;
38
38
 
39
39
  /**
40
- * The ID of the EndUser for whom to create an IntegrationConnection.
40
+ * The ID of the end-user for whom to create an integration connection.
41
41
  */
42
42
  endUserId: string;
43
43
 
44
44
  /**
45
- * The date and time when this AuthSession expires. By default, this value is 30
45
+ * The date and time when this auth session expires. By default, this value is 30
46
46
  * minutes from creation. You can extend this time by setting `linkExpiryMins` when
47
- * [creating the AuthSession](/apis/auth-sessions/create).
47
+ * creating the auth session.
48
48
  */
49
49
  expiresAt: string;
50
50
 
@@ -63,18 +63,18 @@ export interface AuthSession {
63
63
 
64
64
  export interface AuthSessionCreateParams {
65
65
  /**
66
- * The ID of the EndUser for whom to create the IntegrationConnection.
66
+ * The ID of the end-user for whom to create the integration connection.
67
67
  */
68
68
  endUserId: string;
69
69
 
70
70
  /**
71
- * Your Conductor publishable key, which we use to create the sessions
71
+ * Your Conductor publishable key, which we use to create the auth session's
72
72
  * `authFlowUrl`.
73
73
  */
74
74
  publishableKey: string;
75
75
 
76
76
  /**
77
- * The number of minutes after which the AuthSession will expire. Must be at least
77
+ * The number of minutes after which the auth session will expire. Must be at least
78
78
  * 15 minutes and no more than 7 days. If not provided, defaults to 30 minutes.
79
79
  */
80
80
  linkExpiryMins?: number;
@@ -5,28 +5,28 @@ import * as Core from '../core';
5
5
 
6
6
  export class EndUsers extends APIResource {
7
7
  /**
8
- * Creates an EndUser.
8
+ * Creates an end-user.
9
9
  */
10
10
  create(body: EndUserCreateParams, options?: Core.RequestOptions): Core.APIPromise<EndUser> {
11
11
  return this._client.post('/end-users', { body, ...options });
12
12
  }
13
13
 
14
14
  /**
15
- * Retrieves an EndUser object.
15
+ * Retrieves an end-user object.
16
16
  */
17
17
  retrieve(id: string, options?: Core.RequestOptions): Core.APIPromise<EndUser> {
18
18
  return this._client.get(`/end-users/${id}`, options);
19
19
  }
20
20
 
21
21
  /**
22
- * Returns a list of your EndUsers.
22
+ * Returns a list of your end-users.
23
23
  */
24
24
  list(options?: Core.RequestOptions): Core.APIPromise<EndUserListResponse> {
25
25
  return this._client.get('/end-users', options);
26
26
  }
27
27
 
28
28
  /**
29
- * Permanently deletes an EndUser object and all of its connections.
29
+ * Permanently deletes an end-user object and all of its connections.
30
30
  */
31
31
  delete(id: string, options?: Core.RequestOptions): Core.APIPromise<EndUserDeleteResponse> {
32
32
  return this._client.delete(`/end-users/${id}`, options);
@@ -46,7 +46,7 @@ export class EndUsers extends APIResource {
46
46
  }
47
47
 
48
48
  /**
49
- * Checks whether the specified IntegrationConnection can connect and process
49
+ * Checks whether the specified integration connection can connect and process
50
50
  * requests end-to-end. This is useful for showing a "connection status" indicator
51
51
  * in your app.
52
52
  */
@@ -61,29 +61,29 @@ export class EndUsers extends APIResource {
61
61
 
62
62
  export interface EndUser {
63
63
  /**
64
- * The unique identifier for this EndUser. You must save this value to your
64
+ * The unique identifier for this end-user. You must save this value to your
65
65
  * database because it is how you identify which of your users to receive your API
66
66
  * requests.
67
67
  */
68
68
  id: string;
69
69
 
70
70
  /**
71
- * The EndUser's company name that will be shown elsewhere in Conductor.
71
+ * The end-user's company name that will be shown elsewhere in Conductor.
72
72
  */
73
73
  companyName: string;
74
74
 
75
75
  /**
76
- * The date and time when this EndUser record was created.
76
+ * The date and time when this end-user record was created.
77
77
  */
78
78
  createdAt: string;
79
79
 
80
80
  /**
81
- * The EndUser's email address for identification purposes.
81
+ * The end-user's email address for identification purposes.
82
82
  */
83
83
  email: string;
84
84
 
85
85
  /**
86
- * The EndUser's IntegrationConnections.
86
+ * The end-user's integration connections.
87
87
  */
88
88
  integrationConnections: Array<EndUser.IntegrationConnection>;
89
89
 
@@ -93,7 +93,7 @@ export interface EndUser {
93
93
  objectType: 'end_user';
94
94
 
95
95
  /**
96
- * The EndUser's unique identifier from your system. Maps users between your
96
+ * The end-user's unique identifier from your system. Maps users between your
97
97
  * database and Conductor.
98
98
  */
99
99
  sourceId: string;
@@ -102,12 +102,12 @@ export interface EndUser {
102
102
  export namespace EndUser {
103
103
  export interface IntegrationConnection {
104
104
  /**
105
- * The unique identifier for this IntegrationConnection.
105
+ * The unique identifier for this integration connection.
106
106
  */
107
107
  id: string;
108
108
 
109
109
  /**
110
- * The date and time when this IntegrationConnection record was created.
110
+ * The date and time when this integration connection record was created.
111
111
  */
112
112
  createdAt: string;
113
113
 
@@ -117,14 +117,14 @@ export namespace EndUser {
117
117
  integrationSlug: 'quickbooks_desktop';
118
118
 
119
119
  /**
120
- * The date and time of your last API request to this IntegrationConnection.
120
+ * The date and time of your last API request to this integration connection.
121
121
  */
122
122
  lastRequestAt: string | null;
123
123
 
124
124
  /**
125
- * The date and time of your last _successful_ API request to this
126
- * IntegrationConnection. A successful request means the integration fully
127
- * processed and returned a response without any errors end-to-end.
125
+ * The date and time of your last _successful_ API request to this integration
126
+ * connection. A successful request means the integration fully processed and
127
+ * returned a response without any errors end-to-end.
128
128
  */
129
129
  lastSuccessfulRequestAt: string | null;
130
130
 
@@ -137,7 +137,7 @@ export namespace EndUser {
137
137
 
138
138
  export interface EndUserListResponse {
139
139
  /**
140
- * The array of EndUsers.
140
+ * The array of end-users.
141
141
  */
142
142
  data: Array<EndUser>;
143
143
 
@@ -154,12 +154,12 @@ export interface EndUserListResponse {
154
154
 
155
155
  export interface EndUserDeleteResponse {
156
156
  /**
157
- * The ID of the deleted EndUser.
157
+ * The ID of the deleted end-user.
158
158
  */
159
159
  id: string;
160
160
 
161
161
  /**
162
- * Indicates whether the EndUser was deleted.
162
+ * Indicates whether the end-user was deleted.
163
163
  */
164
164
  deleted: boolean;
165
165
 
@@ -118,8 +118,8 @@ export interface TimeTrackingActivity {
118
118
  createdAt: string;
119
119
 
120
120
  /**
121
- * The customer or customer-job to which this time could be billed. If
122
- * `billingStatus` is set to "billable", this field is required.
121
+ * The customer or customer-job to which this time tracking activity could be
122
+ * billed. If `billingStatus` is set to "billable", this field is required.
123
123
  */
124
124
  customer: TimeTrackingActivity.Customer | null;
125
125
 
@@ -230,8 +230,8 @@ export namespace TimeTrackingActivity {
230
230
  }
231
231
 
232
232
  /**
233
- * The customer or customer-job to which this time could be billed. If
234
- * `billingStatus` is set to "billable", this field is required.
233
+ * The customer or customer-job to which this time tracking activity could be
234
+ * billed. If `billingStatus` is set to "billable", this field is required.
235
235
  */
236
236
  export interface Customer {
237
237
  /**
@@ -394,8 +394,9 @@ export interface TimeTrackingActivityCreateParams {
394
394
  classId?: string;
395
395
 
396
396
  /**
397
- * Body param: The customer or customer-job to which this time could be billed. If
398
- * `billingStatus` is set to "billable", this field is required.
397
+ * Body param: The customer or customer-job to which this time tracking activity
398
+ * could be billed. If `billingStatus` is set to "billable", this field is
399
+ * required.
399
400
  */
400
401
  customerId?: string;
401
402
 
@@ -500,8 +501,9 @@ export interface TimeTrackingActivityUpdateParams {
500
501
  classId?: string;
501
502
 
502
503
  /**
503
- * Body param: The customer or customer-job to which this time could be billed. If
504
- * `billingStatus` is set to "billable", this field is required.
504
+ * Body param: The customer or customer-job to which this time tracking activity
505
+ * could be billed. If `billingStatus` is set to "billable", this field is
506
+ * required.
505
507
  */
506
508
  customerId?: string;
507
509
 
@@ -544,6 +546,12 @@ export interface TimeTrackingActivityListParams extends CursorPageParams {
544
546
  */
545
547
  conductorEndUserId: string;
546
548
 
549
+ /**
550
+ * Query param: Filter for time tracking activities tracking the time of these
551
+ * employees, vendors, or persons on QuickBooks's "Other Names" list.
552
+ */
553
+ entityIds?: Array<string>;
554
+
547
555
  /**
548
556
  * Query param: Filter for specific time tracking activities by their
549
557
  * QuickBooks-assigned unique identifier(s).
@@ -556,12 +564,6 @@ export interface TimeTrackingActivityListParams extends CursorPageParams {
556
564
  */
557
565
  ids?: Array<string>;
558
566
 
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
-
565
567
  /**
566
568
  * Query param: Filter for time tracking activities created on or after this date,
567
569
  * in ISO 8601 format (YYYY-MM-DD).
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '12.0.0-beta.7'; // x-release-please-version
1
+ export const VERSION = '12.0.0-beta.9'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "12.0.0-beta.7";
1
+ export declare const VERSION = "12.0.0-beta.9";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '12.0.0-beta.7'; // x-release-please-version
4
+ exports.VERSION = '12.0.0-beta.9'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '12.0.0-beta.7'; // x-release-please-version
1
+ export const VERSION = '12.0.0-beta.9'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map