@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.
- package/CHANGELOG.md +27 -0
- package/client.d.mts +4 -4
- package/client.d.mts.map +1 -1
- package/client.d.ts +4 -4
- package/client.d.ts.map +1 -1
- package/client.js +2 -2
- package/client.mjs +2 -2
- package/package.json +1 -1
- package/resources/index.d.mts +1 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/messages.d.mts +1 -4
- package/resources/messages.d.mts.map +1 -1
- package/resources/messages.d.ts +1 -4
- package/resources/messages.d.ts.map +1 -1
- package/resources/messages.js +1 -4
- package/resources/messages.js.map +1 -1
- package/resources/messages.mjs +1 -4
- package/resources/messages.mjs.map +1 -1
- package/resources/webhook-events.d.mts +2 -2
- package/resources/webhook-events.d.mts.map +1 -1
- package/resources/webhook-events.d.ts +2 -2
- package/resources/webhook-events.d.ts.map +1 -1
- package/resources/webhook-events.js +1 -1
- package/resources/webhook-events.mjs +1 -1
- package/resources/webhook-subscriptions.d.mts +2 -2
- package/resources/webhook-subscriptions.d.ts +2 -2
- package/resources/webhook-subscriptions.js +2 -2
- package/resources/webhook-subscriptions.mjs +2 -2
- package/resources/webhooks.d.mts +93 -93
- package/resources/webhooks.d.mts.map +1 -1
- package/resources/webhooks.d.ts +93 -93
- package/resources/webhooks.d.ts.map +1 -1
- package/src/client.ts +72 -72
- package/src/resources/index.ts +35 -35
- package/src/resources/messages.ts +1 -4
- package/src/resources/webhook-events.ts +9 -2
- package/src/resources/webhook-subscriptions.ts +2 -2
- package/src/resources/webhooks.ts +175 -161
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- 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
|
-
* ~
|
|
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
|
-
* ~
|
|
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
|
-
* ~
|
|
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
|
-
* ~
|
|
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
|
-
* ~
|
|
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
|
-
* ~
|
|
117
|
+
* ~25 minutes with exponential backoff
|
|
118
118
|
* - Client errors (4xx except 429) are not retried
|
|
119
119
|
*
|
|
120
120
|
* @example
|