@linqapp/sdk 0.16.2 → 0.16.3
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 +8 -0
- package/package.json +1 -1
- package/resources/chats/typing.d.mts +19 -6
- package/resources/chats/typing.d.mts.map +1 -1
- package/resources/chats/typing.d.ts +19 -6
- package/resources/chats/typing.d.ts.map +1 -1
- package/resources/chats/typing.js +19 -6
- package/resources/chats/typing.js.map +1 -1
- package/resources/chats/typing.mjs +19 -6
- package/resources/chats/typing.mjs.map +1 -1
- package/src/resources/chats/typing.ts +19 -6
- 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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.16.3 (2026-04-14)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.16.2...v0.16.3](https://github.com/linq-team/linq-node/compare/v0.16.2...v0.16.3)
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
* **openapi:** document typing indicator behavior and limitations ([efa2883](https://github.com/linq-team/linq-node/commit/efa28835343cb143c48a259518ea085bb1d79af2))
|
|
10
|
+
|
|
3
11
|
## 0.16.2 (2026-04-09)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.16.1...v0.16.2](https://github.com/linq-team/linq-node/compare/v0.16.1...v0.16.2)
|
package/package.json
CHANGED
|
@@ -23,8 +23,20 @@ export declare class Typing extends APIResource {
|
|
|
23
23
|
/**
|
|
24
24
|
* Send a typing indicator to show that someone is typing in the chat.
|
|
25
25
|
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
26
|
+
* ## Behavior & Limitations
|
|
27
|
+
*
|
|
28
|
+
* Typing indicators are best-effort signals with the following limitations:
|
|
29
|
+
*
|
|
30
|
+
* - **Active conversations only:** The recipient must have sent or received a
|
|
31
|
+
* message in this chat within the **last 5 minutes**. If the chat is inactive,
|
|
32
|
+
* the request is still accepted (`204`) but the indicator will not reach the
|
|
33
|
+
* recipient's device.
|
|
34
|
+
*
|
|
35
|
+
* - **No delivery guarantee:** Even for active chats, a `204` response only
|
|
36
|
+
* indicates the request was accepted for processing.
|
|
37
|
+
*
|
|
38
|
+
* - **Group chats not supported:** Attempting to start a typing indicator in a
|
|
39
|
+
* group chat will return a `403` error.
|
|
28
40
|
*
|
|
29
41
|
* @example
|
|
30
42
|
* ```ts
|
|
@@ -37,11 +49,12 @@ export declare class Typing extends APIResource {
|
|
|
37
49
|
/**
|
|
38
50
|
* Stop the typing indicator for the chat.
|
|
39
51
|
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
52
|
+
* Typing indicators are automatically stopped when a message is sent, so calling
|
|
53
|
+
* this endpoint after sending a message is unnecessary.
|
|
54
|
+
*
|
|
55
|
+
* See the `POST` endpoint above for behavior details and limitations.
|
|
42
56
|
*
|
|
43
|
-
* **Note:** Group
|
|
44
|
-
* to stop a typing indicator in a group chat will return a `403` error.
|
|
57
|
+
* **Note:** Group chats are not supported and will return a `403` error.
|
|
45
58
|
*
|
|
46
59
|
* @example
|
|
47
60
|
* ```ts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typing.d.mts","sourceRoot":"","sources":["../../src/resources/chats/typing.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OAEd,EAAE,cAAc,EAAE;AAGzB;;;;;;;;;;;;;;;;;GAiBG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC
|
|
1
|
+
{"version":3,"file":"typing.d.mts","sourceRoot":"","sources":["../../src/resources/chats/typing.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OAEd,EAAE,cAAc,EAAE;AAGzB;;;;;;;;;;;;;;;;;GAiBG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,KAAK,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAOjE;;;;;;;;;;;;;;;;OAgBG;IACH,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAMjE"}
|
|
@@ -23,8 +23,20 @@ export declare class Typing extends APIResource {
|
|
|
23
23
|
/**
|
|
24
24
|
* Send a typing indicator to show that someone is typing in the chat.
|
|
25
25
|
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
26
|
+
* ## Behavior & Limitations
|
|
27
|
+
*
|
|
28
|
+
* Typing indicators are best-effort signals with the following limitations:
|
|
29
|
+
*
|
|
30
|
+
* - **Active conversations only:** The recipient must have sent or received a
|
|
31
|
+
* message in this chat within the **last 5 minutes**. If the chat is inactive,
|
|
32
|
+
* the request is still accepted (`204`) but the indicator will not reach the
|
|
33
|
+
* recipient's device.
|
|
34
|
+
*
|
|
35
|
+
* - **No delivery guarantee:** Even for active chats, a `204` response only
|
|
36
|
+
* indicates the request was accepted for processing.
|
|
37
|
+
*
|
|
38
|
+
* - **Group chats not supported:** Attempting to start a typing indicator in a
|
|
39
|
+
* group chat will return a `403` error.
|
|
28
40
|
*
|
|
29
41
|
* @example
|
|
30
42
|
* ```ts
|
|
@@ -37,11 +49,12 @@ export declare class Typing extends APIResource {
|
|
|
37
49
|
/**
|
|
38
50
|
* Stop the typing indicator for the chat.
|
|
39
51
|
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
52
|
+
* Typing indicators are automatically stopped when a message is sent, so calling
|
|
53
|
+
* this endpoint after sending a message is unnecessary.
|
|
54
|
+
*
|
|
55
|
+
* See the `POST` endpoint above for behavior details and limitations.
|
|
42
56
|
*
|
|
43
|
-
* **Note:** Group
|
|
44
|
-
* to stop a typing indicator in a group chat will return a `403` error.
|
|
57
|
+
* **Note:** Group chats are not supported and will return a `403` error.
|
|
45
58
|
*
|
|
46
59
|
* @example
|
|
47
60
|
* ```ts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typing.d.ts","sourceRoot":"","sources":["../../src/resources/chats/typing.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OAEd,EAAE,cAAc,EAAE;AAGzB;;;;;;;;;;;;;;;;;GAiBG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC
|
|
1
|
+
{"version":3,"file":"typing.d.ts","sourceRoot":"","sources":["../../src/resources/chats/typing.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OAEd,EAAE,cAAc,EAAE;AAGzB;;;;;;;;;;;;;;;;;GAiBG;AACH,qBAAa,MAAO,SAAQ,WAAW;IACrC;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,KAAK,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAOjE;;;;;;;;;;;;;;;;OAgBG;IACH,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAMjE"}
|
|
@@ -27,8 +27,20 @@ class Typing extends resource_1.APIResource {
|
|
|
27
27
|
/**
|
|
28
28
|
* Send a typing indicator to show that someone is typing in the chat.
|
|
29
29
|
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
30
|
+
* ## Behavior & Limitations
|
|
31
|
+
*
|
|
32
|
+
* Typing indicators are best-effort signals with the following limitations:
|
|
33
|
+
*
|
|
34
|
+
* - **Active conversations only:** The recipient must have sent or received a
|
|
35
|
+
* message in this chat within the **last 5 minutes**. If the chat is inactive,
|
|
36
|
+
* the request is still accepted (`204`) but the indicator will not reach the
|
|
37
|
+
* recipient's device.
|
|
38
|
+
*
|
|
39
|
+
* - **No delivery guarantee:** Even for active chats, a `204` response only
|
|
40
|
+
* indicates the request was accepted for processing.
|
|
41
|
+
*
|
|
42
|
+
* - **Group chats not supported:** Attempting to start a typing indicator in a
|
|
43
|
+
* group chat will return a `403` error.
|
|
32
44
|
*
|
|
33
45
|
* @example
|
|
34
46
|
* ```ts
|
|
@@ -46,11 +58,12 @@ class Typing extends resource_1.APIResource {
|
|
|
46
58
|
/**
|
|
47
59
|
* Stop the typing indicator for the chat.
|
|
48
60
|
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
61
|
+
* Typing indicators are automatically stopped when a message is sent, so calling
|
|
62
|
+
* this endpoint after sending a message is unnecessary.
|
|
63
|
+
*
|
|
64
|
+
* See the `POST` endpoint above for behavior details and limitations.
|
|
51
65
|
*
|
|
52
|
-
* **Note:** Group
|
|
53
|
-
* to stop a typing indicator in a group chat will return a `403` error.
|
|
66
|
+
* **Note:** Group chats are not supported and will return a `403` error.
|
|
54
67
|
*
|
|
55
68
|
* @example
|
|
56
69
|
* ```ts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typing.js","sourceRoot":"","sources":["../../src/resources/chats/typing.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,qDAAkD;AAElD,uDAAsD;AAEtD,uDAAiD;AAEjD;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,MAAO,SAAQ,sBAAW;IACrC
|
|
1
|
+
{"version":3,"file":"typing.js","sourceRoot":"","sources":["../../src/resources/chats/typing.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,qDAAkD;AAElD,uDAAsD;AAEtD,uDAAiD;AAEjD;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,MAAO,SAAQ,sBAAW;IACrC;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,KAAK,CAAC,MAAc,EAAE,OAAwB;QAC5C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,aAAa,MAAM,SAAS,EAAE;YACzD,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;;;;;OAgBG;IACH,IAAI,CAAC,MAAc,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,aAAa,MAAM,SAAS,EAAE;YAC3D,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AAxDD,wBAwDC"}
|
|
@@ -24,8 +24,20 @@ export class Typing extends APIResource {
|
|
|
24
24
|
/**
|
|
25
25
|
* Send a typing indicator to show that someone is typing in the chat.
|
|
26
26
|
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
27
|
+
* ## Behavior & Limitations
|
|
28
|
+
*
|
|
29
|
+
* Typing indicators are best-effort signals with the following limitations:
|
|
30
|
+
*
|
|
31
|
+
* - **Active conversations only:** The recipient must have sent or received a
|
|
32
|
+
* message in this chat within the **last 5 minutes**. If the chat is inactive,
|
|
33
|
+
* the request is still accepted (`204`) but the indicator will not reach the
|
|
34
|
+
* recipient's device.
|
|
35
|
+
*
|
|
36
|
+
* - **No delivery guarantee:** Even for active chats, a `204` response only
|
|
37
|
+
* indicates the request was accepted for processing.
|
|
38
|
+
*
|
|
39
|
+
* - **Group chats not supported:** Attempting to start a typing indicator in a
|
|
40
|
+
* group chat will return a `403` error.
|
|
29
41
|
*
|
|
30
42
|
* @example
|
|
31
43
|
* ```ts
|
|
@@ -43,11 +55,12 @@ export class Typing extends APIResource {
|
|
|
43
55
|
/**
|
|
44
56
|
* Stop the typing indicator for the chat.
|
|
45
57
|
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
58
|
+
* Typing indicators are automatically stopped when a message is sent, so calling
|
|
59
|
+
* this endpoint after sending a message is unnecessary.
|
|
60
|
+
*
|
|
61
|
+
* See the `POST` endpoint above for behavior details and limitations.
|
|
48
62
|
*
|
|
49
|
-
* **Note:** Group
|
|
50
|
-
* to stop a typing indicator in a group chat will return a `403` error.
|
|
63
|
+
* **Note:** Group chats are not supported and will return a `403` error.
|
|
51
64
|
*
|
|
52
65
|
* @example
|
|
53
66
|
* ```ts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typing.mjs","sourceRoot":"","sources":["../../src/resources/chats/typing.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,EAAE,YAAY,EAAE;OAEhB,EAAE,IAAI,EAAE;AAEf;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,OAAO,MAAO,SAAQ,WAAW;IACrC
|
|
1
|
+
{"version":3,"file":"typing.mjs","sourceRoot":"","sources":["../../src/resources/chats/typing.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAEf,EAAE,YAAY,EAAE;OAEhB,EAAE,IAAI,EAAE;AAEf;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,OAAO,MAAO,SAAQ,WAAW;IACrC;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,KAAK,CAAC,MAAc,EAAE,OAAwB;QAC5C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,aAAa,MAAM,SAAS,EAAE;YACzD,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;;;;;OAgBG;IACH,IAAI,CAAC,MAAc,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,aAAa,MAAM,SAAS,EAAE;YAC3D,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF"}
|
|
@@ -28,8 +28,20 @@ export class Typing extends APIResource {
|
|
|
28
28
|
/**
|
|
29
29
|
* Send a typing indicator to show that someone is typing in the chat.
|
|
30
30
|
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
31
|
+
* ## Behavior & Limitations
|
|
32
|
+
*
|
|
33
|
+
* Typing indicators are best-effort signals with the following limitations:
|
|
34
|
+
*
|
|
35
|
+
* - **Active conversations only:** The recipient must have sent or received a
|
|
36
|
+
* message in this chat within the **last 5 minutes**. If the chat is inactive,
|
|
37
|
+
* the request is still accepted (`204`) but the indicator will not reach the
|
|
38
|
+
* recipient's device.
|
|
39
|
+
*
|
|
40
|
+
* - **No delivery guarantee:** Even for active chats, a `204` response only
|
|
41
|
+
* indicates the request was accepted for processing.
|
|
42
|
+
*
|
|
43
|
+
* - **Group chats not supported:** Attempting to start a typing indicator in a
|
|
44
|
+
* group chat will return a `403` error.
|
|
33
45
|
*
|
|
34
46
|
* @example
|
|
35
47
|
* ```ts
|
|
@@ -48,11 +60,12 @@ export class Typing extends APIResource {
|
|
|
48
60
|
/**
|
|
49
61
|
* Stop the typing indicator for the chat.
|
|
50
62
|
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
63
|
+
* Typing indicators are automatically stopped when a message is sent, so calling
|
|
64
|
+
* this endpoint after sending a message is unnecessary.
|
|
65
|
+
*
|
|
66
|
+
* See the `POST` endpoint above for behavior details and limitations.
|
|
53
67
|
*
|
|
54
|
-
* **Note:** Group
|
|
55
|
-
* to stop a typing indicator in a group chat will return a `403` error.
|
|
68
|
+
* **Note:** Group chats are not supported and will return a `403` error.
|
|
56
69
|
*
|
|
57
70
|
* @example
|
|
58
71
|
* ```ts
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.16.
|
|
1
|
+
export const VERSION = '0.16.3'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.16.
|
|
1
|
+
export declare const VERSION = "0.16.3";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.16.
|
|
1
|
+
export declare const VERSION = "0.16.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.16.
|
|
1
|
+
export const VERSION = '0.16.3'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|