@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.
Files changed (41) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/core.d.ts.map +1 -1
  3. package/core.js +12 -6
  4. package/core.js.map +1 -1
  5. package/core.mjs +12 -6
  6. package/core.mjs.map +1 -1
  7. package/index.d.mts +6 -6
  8. package/index.d.ts +6 -6
  9. package/index.d.ts.map +1 -1
  10. package/package.json +1 -1
  11. package/pagination.d.ts.map +1 -1
  12. package/pagination.js +16 -2
  13. package/pagination.js.map +1 -1
  14. package/pagination.mjs +16 -2
  15. package/pagination.mjs.map +1 -1
  16. package/resources/access-tokens.d.ts +2 -2
  17. package/resources/account.d.ts +3 -3
  18. package/resources/connect/sessions.d.ts +2 -2
  19. package/resources/hris/employments.d.ts +1 -1
  20. package/resources/jobs/automated.d.ts +26 -6
  21. package/resources/jobs/automated.d.ts.map +1 -1
  22. package/resources/jobs/automated.js.map +1 -1
  23. package/resources/jobs/automated.mjs.map +1 -1
  24. package/resources/sandbox/connections/accounts.d.ts +4 -4
  25. package/resources/sandbox/connections/connections.d.ts +2 -2
  26. package/resources/webhooks.d.ts +2 -2
  27. package/src/core.ts +14 -6
  28. package/src/index.ts +6 -6
  29. package/src/pagination.ts +20 -2
  30. package/src/resources/access-tokens.ts +2 -2
  31. package/src/resources/account.ts +3 -3
  32. package/src/resources/connect/sessions.ts +2 -2
  33. package/src/resources/hris/employments.ts +1 -1
  34. package/src/resources/jobs/automated.ts +29 -6
  35. package/src/resources/sandbox/connections/accounts.ts +4 -4
  36. package/src/resources/sandbox/connections/connections.ts +2 -2
  37. package/src/resources/webhooks.ts +2 -2
  38. package/src/version.ts +1 -1
  39. package/version.d.ts +1 -1
  40. package/version.js +1 -1
  41. package/version.mjs +1 -1
@@ -29,7 +29,7 @@ export interface ConnectionCreateResponse {
29
29
  access_token: string;
30
30
 
31
31
  /**
32
- * @deprecated: [DEPRECATED] Use `connection_id` to associate a connection with an
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: [DEPRECATED] Use `connection_id` to associate a connection with an
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: [DEPRECATED] Unique Finch ID of the employer account used to make
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: [DEPRECATED] Unique Finch ID of the company for which data has been
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.15.0'; // x-release-please-version
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.15.0";
1
+ export declare const VERSION = "6.16.0";
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 = '6.15.0'; // x-release-please-version
4
+ exports.VERSION = '6.16.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '6.15.0'; // x-release-please-version
1
+ export const VERSION = '6.16.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map