@tryfinch/finch-api 6.15.0 → 6.16.0
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 +31 -0
- package/core.d.ts.map +1 -1
- package/core.js +12 -6
- package/core.js.map +1 -1
- package/core.mjs +12 -6
- package/core.mjs.map +1 -1
- package/index.d.mts +6 -6
- package/index.d.ts +6 -6
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/pagination.d.ts.map +1 -1
- package/pagination.js +16 -2
- package/pagination.js.map +1 -1
- package/pagination.mjs +16 -2
- package/pagination.mjs.map +1 -1
- package/resources/access-tokens.d.ts +2 -2
- package/resources/account.d.ts +3 -3
- package/resources/connect/sessions.d.ts +2 -2
- package/resources/hris/employments.d.ts +1 -1
- package/resources/jobs/automated.d.ts +26 -6
- package/resources/jobs/automated.d.ts.map +1 -1
- package/resources/jobs/automated.js.map +1 -1
- package/resources/jobs/automated.mjs.map +1 -1
- package/resources/sandbox/connections/accounts.d.ts +4 -4
- package/resources/sandbox/connections/connections.d.ts +2 -2
- package/resources/webhooks.d.ts +2 -2
- package/src/core.ts +14 -6
- package/src/index.ts +6 -6
- package/src/pagination.ts +20 -2
- package/src/resources/access-tokens.ts +2 -2
- package/src/resources/account.ts +3 -3
- package/src/resources/connect/sessions.ts +2 -2
- package/src/resources/hris/employments.ts +1 -1
- package/src/resources/jobs/automated.ts +29 -6
- package/src/resources/sandbox/connections/accounts.ts +4 -4
- package/src/resources/sandbox/connections/connections.ts +2 -2
- package/src/resources/webhooks.ts +2 -2
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -29,7 +29,7 @@ export interface ConnectionCreateResponse {
|
|
|
29
29
|
access_token: string;
|
|
30
30
|
|
|
31
31
|
/**
|
|
32
|
-
* @deprecated
|
|
32
|
+
* @deprecated [DEPRECATED] Use `connection_id` to associate a connection with an
|
|
33
33
|
* access token
|
|
34
34
|
*/
|
|
35
35
|
account_id: string;
|
|
@@ -37,7 +37,7 @@ export interface ConnectionCreateResponse {
|
|
|
37
37
|
authentication_type: 'credential' | 'api_token' | 'oauth' | 'assisted';
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
|
-
* @deprecated
|
|
40
|
+
* @deprecated [DEPRECATED] Use `connection_id` to associate a connection with an
|
|
41
41
|
* access token
|
|
42
42
|
*/
|
|
43
43
|
company_id: string;
|
|
@@ -557,14 +557,14 @@ export namespace AccountUpdateEvent {
|
|
|
557
557
|
|
|
558
558
|
export interface BaseWebhookEvent {
|
|
559
559
|
/**
|
|
560
|
-
* @deprecated
|
|
560
|
+
* @deprecated [DEPRECATED] Unique Finch ID of the employer account used to make
|
|
561
561
|
* this connection. Use `connection_id` instead to identify the connection
|
|
562
562
|
* associated with this event.
|
|
563
563
|
*/
|
|
564
564
|
account_id: string;
|
|
565
565
|
|
|
566
566
|
/**
|
|
567
|
-
* @deprecated
|
|
567
|
+
* @deprecated [DEPRECATED] Unique Finch ID of the company for which data has been
|
|
568
568
|
* updated. Use `connection_id` instead to identify the connection associated with
|
|
569
569
|
* this event.
|
|
570
570
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '6.
|
|
1
|
+
export const VERSION = '6.16.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "6.
|
|
1
|
+
export declare const VERSION = "6.16.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '6.
|
|
1
|
+
export const VERSION = '6.16.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|