@linqapp/sdk 0.12.2 → 0.14.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 (45) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/client.d.mts +4 -4
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +4 -4
  5. package/client.d.ts.map +1 -1
  6. package/client.js +2 -2
  7. package/client.mjs +2 -2
  8. package/package.json +1 -1
  9. package/resources/index.d.mts +1 -1
  10. package/resources/index.d.mts.map +1 -1
  11. package/resources/index.d.ts +1 -1
  12. package/resources/index.d.ts.map +1 -1
  13. package/resources/messages.d.mts +1 -4
  14. package/resources/messages.d.mts.map +1 -1
  15. package/resources/messages.d.ts +1 -4
  16. package/resources/messages.d.ts.map +1 -1
  17. package/resources/messages.js +1 -4
  18. package/resources/messages.js.map +1 -1
  19. package/resources/messages.mjs +1 -4
  20. package/resources/messages.mjs.map +1 -1
  21. package/resources/webhook-events.d.mts +2 -2
  22. package/resources/webhook-events.d.mts.map +1 -1
  23. package/resources/webhook-events.d.ts +2 -2
  24. package/resources/webhook-events.d.ts.map +1 -1
  25. package/resources/webhook-events.js +1 -1
  26. package/resources/webhook-events.mjs +1 -1
  27. package/resources/webhook-subscriptions.d.mts +2 -2
  28. package/resources/webhook-subscriptions.d.ts +2 -2
  29. package/resources/webhook-subscriptions.js +2 -2
  30. package/resources/webhook-subscriptions.mjs +2 -2
  31. package/resources/webhooks.d.mts +93 -93
  32. package/resources/webhooks.d.mts.map +1 -1
  33. package/resources/webhooks.d.ts +93 -93
  34. package/resources/webhooks.d.ts.map +1 -1
  35. package/src/client.ts +72 -72
  36. package/src/resources/index.ts +35 -35
  37. package/src/resources/messages.ts +1 -4
  38. package/src/resources/webhook-events.ts +9 -2
  39. package/src/resources/webhook-subscriptions.ts +2 -2
  40. package/src/resources/webhooks.ts +175 -161
  41. package/src/version.ts +1 -1
  42. package/version.d.mts +1 -1
  43. package/version.d.ts +1 -1
  44. package/version.js +1 -1
  45. package/version.mjs +1 -1
@@ -10,7 +10,7 @@ import { RequestOptions } from "../internal/request-options.js";
10
10
  * delivery status changes, reactions, typing indicators, and more.
11
11
  *
12
12
  * Failed deliveries (5xx, 429, network errors) are retried up to 10 times over
13
- * ~2 hours with exponential backoff. Each event includes a unique ID for
13
+ * ~25 minutes with exponential backoff. Each event includes a unique ID for
14
14
  * deduplication.
15
15
  *
16
16
  * ## Webhook Headers
@@ -114,7 +114,7 @@ export declare class WebhookSubscriptions extends APIResource {
114
114
  * - Signature is HMAC-SHA256 over `{timestamp}.{payload}` — see
115
115
  * [Webhook Events](/docs/webhook-events) for verification details
116
116
  * - Failed deliveries (5xx, 429, network errors) are retried up to 10 times over
117
- * ~2 hours with exponential backoff
117
+ * ~25 minutes with exponential backoff
118
118
  * - Client errors (4xx except 429) are not retried
119
119
  *
120
120
  * @example
@@ -13,7 +13,7 @@ const path_1 = require("../internal/utils/path.js");
13
13
  * delivery status changes, reactions, typing indicators, and more.
14
14
  *
15
15
  * Failed deliveries (5xx, 429, network errors) are retried up to 10 times over
16
- * ~2 hours with exponential backoff. Each event includes a unique ID for
16
+ * ~25 minutes with exponential backoff. Each event includes a unique ID for
17
17
  * deduplication.
18
18
  *
19
19
  * ## Webhook Headers
@@ -117,7 +117,7 @@ class WebhookSubscriptions extends resource_1.APIResource {
117
117
  * - Signature is HMAC-SHA256 over `{timestamp}.{payload}` — see
118
118
  * [Webhook Events](/docs/webhook-events) for verification details
119
119
  * - Failed deliveries (5xx, 429, network errors) are retried up to 10 times over
120
- * ~2 hours with exponential backoff
120
+ * ~25 minutes with exponential backoff
121
121
  * - Client errors (4xx except 429) are not retried
122
122
  *
123
123
  * @example
@@ -10,7 +10,7 @@ import { path } from "../internal/utils/path.mjs";
10
10
  * delivery status changes, reactions, typing indicators, and more.
11
11
  *
12
12
  * Failed deliveries (5xx, 429, network errors) are retried up to 10 times over
13
- * ~2 hours with exponential backoff. Each event includes a unique ID for
13
+ * ~25 minutes with exponential backoff. Each event includes a unique ID for
14
14
  * deduplication.
15
15
  *
16
16
  * ## Webhook Headers
@@ -114,7 +114,7 @@ export class WebhookSubscriptions extends APIResource {
114
114
  * - Signature is HMAC-SHA256 over `{timestamp}.{payload}` — see
115
115
  * [Webhook Events](/docs/webhook-events) for verification details
116
116
  * - Failed deliveries (5xx, 429, network errors) are retried up to 10 times over
117
- * ~2 hours with exponential backoff
117
+ * ~25 minutes with exponential backoff
118
118
  * - Client errors (4xx except 429) are not retried
119
119
  *
120
120
  * @example