@linqapp/sdk 0.34.0 → 0.35.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 (54) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/client.d.mts +11 -0
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +11 -0
  5. package/client.d.ts.map +1 -1
  6. package/client.js +11 -0
  7. package/client.js.map +1 -1
  8. package/client.mjs +11 -0
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/attachments.d.mts +2 -1
  12. package/resources/attachments.d.mts.map +1 -1
  13. package/resources/attachments.d.ts +2 -1
  14. package/resources/attachments.d.ts.map +1 -1
  15. package/resources/blocked-handles.d.mts +99 -0
  16. package/resources/blocked-handles.d.mts.map +1 -0
  17. package/resources/blocked-handles.d.ts +99 -0
  18. package/resources/blocked-handles.d.ts.map +1 -0
  19. package/resources/blocked-handles.js +69 -0
  20. package/resources/blocked-handles.js.map +1 -0
  21. package/resources/blocked-handles.mjs +65 -0
  22. package/resources/blocked-handles.mjs.map +1 -0
  23. package/resources/chats/chats.d.mts +16 -16
  24. package/resources/chats/chats.d.ts +16 -16
  25. package/resources/index.d.mts +1 -0
  26. package/resources/index.d.mts.map +1 -1
  27. package/resources/index.d.ts +1 -0
  28. package/resources/index.d.ts.map +1 -1
  29. package/resources/index.js +3 -1
  30. package/resources/index.js.map +1 -1
  31. package/resources/index.mjs +1 -0
  32. package/resources/index.mjs.map +1 -1
  33. package/resources/messages/messages.d.mts +39 -0
  34. package/resources/messages/messages.d.mts.map +1 -1
  35. package/resources/messages/messages.d.ts +39 -0
  36. package/resources/messages/messages.d.ts.map +1 -1
  37. package/resources/messages/messages.js.map +1 -1
  38. package/resources/messages/messages.mjs.map +1 -1
  39. package/resources/webhooks.d.mts +50 -27
  40. package/resources/webhooks.d.mts.map +1 -1
  41. package/resources/webhooks.d.ts +50 -27
  42. package/resources/webhooks.d.ts.map +1 -1
  43. package/src/client.ts +27 -0
  44. package/src/resources/attachments.ts +2 -1
  45. package/src/resources/blocked-handles.ts +129 -0
  46. package/src/resources/chats/chats.ts +16 -16
  47. package/src/resources/index.ts +8 -0
  48. package/src/resources/messages/messages.ts +41 -0
  49. package/src/resources/webhooks.ts +53 -27
  50. package/src/version.ts +1 -1
  51. package/version.d.mts +1 -1
  52. package/version.d.ts +1 -1
  53. package/version.js +1 -1
  54. package/version.mjs +1 -1
@@ -0,0 +1,99 @@
1
+ import { APIResource } from "../core/resource.mjs";
2
+ import { APIPromise } from "../core/api-promise.mjs";
3
+ import { RequestOptions } from "../internal/request-options.mjs";
4
+ /**
5
+ * Block handles — phone numbers, email addresses, SMS short codes, or
6
+ * sender IDs. Inbound messages from a blocked handle are dropped before
7
+ * they reach your webhooks, and direct sends to a blocked handle are
8
+ * rejected with `403` (error code `2026`). Group sends that include
9
+ * unblocked members are not restricted.
10
+ */
11
+ export declare class BlockedHandles extends APIResource {
12
+ /**
13
+ * Returns all handles you have blocked. Inbound messages from a blocked handle are
14
+ * dropped and produce no webhooks, and direct sends to a blocked handle are
15
+ * rejected with `403` (error code `2026`). Group sends that include unblocked
16
+ * members are not restricted.
17
+ *
18
+ * @example
19
+ * ```ts
20
+ * const blockedHandles = await client.blockedHandles.list();
21
+ * ```
22
+ */
23
+ list(options?: RequestOptions): APIPromise<BlockedHandleListResponse>;
24
+ /**
25
+ * Blocks a handle — an E.164 phone number, an email address (iMessage sender), an
26
+ * SMS short code (e.g. `262966`), or an alphanumeric sender ID. Inbound messages
27
+ * from it are dropped and produce no webhooks, and direct sends to it are rejected
28
+ * with `403` (error code `2026`); group sends that include unblocked members are
29
+ * not restricted. Blocking is idempotent — re-blocking an already blocked handle
30
+ * returns the existing entry.
31
+ *
32
+ * @example
33
+ * ```ts
34
+ * const response = await client.blockedHandles.block({
35
+ * handle: '+12025551234',
36
+ * reason: 'spam',
37
+ * });
38
+ * ```
39
+ */
40
+ block(body: BlockedHandleBlockParams, options?: RequestOptions): APIPromise<BlockedHandleBlockResponse>;
41
+ /**
42
+ * Removes a handle from your blocklist. Inbound messages from it will be delivered
43
+ * again and sends to it are allowed again. The handle goes in the request body,
44
+ * mirroring block — no URL encoding needed.
45
+ *
46
+ * @example
47
+ * ```ts
48
+ * await client.blockedHandles.unblock({
49
+ * handle: '+12025551234',
50
+ * });
51
+ * ```
52
+ */
53
+ unblock(body: BlockedHandleUnblockParams, options?: RequestOptions): APIPromise<void>;
54
+ }
55
+ export interface BlockedHandleEntry {
56
+ /**
57
+ * When the handle was blocked
58
+ */
59
+ blocked_at: string;
60
+ /**
61
+ * The blocked handle, normalized (E.164 phone, lowercased email, short code, or
62
+ * sender ID)
63
+ */
64
+ handle: string;
65
+ /**
66
+ * Optional note recorded when the handle was blocked
67
+ */
68
+ reason?: string;
69
+ }
70
+ export interface BlockedHandleListResponse {
71
+ /**
72
+ * All handles blocked by the partner, newest first
73
+ */
74
+ blocked_handles: Array<BlockedHandleEntry>;
75
+ }
76
+ export interface BlockedHandleBlockResponse {
77
+ blocked_handle: BlockedHandleEntry;
78
+ }
79
+ export interface BlockedHandleBlockParams {
80
+ /**
81
+ * The handle to block: an E.164 phone number, an email address, an SMS short code
82
+ * (3-8 digits), or an alphanumeric sender ID.
83
+ */
84
+ handle: string;
85
+ /**
86
+ * Optional free-text note on why the handle was blocked
87
+ */
88
+ reason?: string;
89
+ }
90
+ export interface BlockedHandleUnblockParams {
91
+ /**
92
+ * The handle to unblock
93
+ */
94
+ handle: string;
95
+ }
96
+ export declare namespace BlockedHandles {
97
+ export { type BlockedHandleEntry as BlockedHandleEntry, type BlockedHandleListResponse as BlockedHandleListResponse, type BlockedHandleBlockResponse as BlockedHandleBlockResponse, type BlockedHandleBlockParams as BlockedHandleBlockParams, type BlockedHandleUnblockParams as BlockedHandleUnblockParams, };
98
+ }
99
+ //# sourceMappingURL=blocked-handles.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"blocked-handles.d.mts","sourceRoot":"","sources":["../src/resources/blocked-handles.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAC/C,OAAO,EAAE,UAAU,EAAE,gCAA4B;AAEjD,OAAO,EAAE,cAAc,EAAE,wCAAoC;AAE7D;;;;;;GAMG;AACH,qBAAa,cAAe,SAAQ,WAAW;IAC7C;;;;;;;;;;OAUG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,yBAAyB,CAAC;IAIrE;;;;;;;;;;;;;;;OAeG;IACH,KAAK,CAAC,IAAI,EAAE,wBAAwB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,0BAA0B,CAAC;IAIvG;;;;;;;;;;;OAWG;IACH,OAAO,CAAC,IAAI,EAAE,0BAA0B,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAOtF;AAED,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,eAAe,EAAE,KAAK,CAAC,kBAAkB,CAAC,CAAC;CAC5C;AAED,MAAM,WAAW,0BAA0B;IACzC,cAAc,EAAE,kBAAkB,CAAC;CACpC;AAED,MAAM,WAAW,wBAAwB;IACvC;;;OAGG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,0BAA0B;IACzC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,CAAC,OAAO,WAAW,cAAc,CAAC;IACtC,OAAO,EACL,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,0BAA0B,IAAI,0BAA0B,GAC9D,CAAC;CACH"}
@@ -0,0 +1,99 @@
1
+ import { APIResource } from "../core/resource.js";
2
+ import { APIPromise } from "../core/api-promise.js";
3
+ import { RequestOptions } from "../internal/request-options.js";
4
+ /**
5
+ * Block handles — phone numbers, email addresses, SMS short codes, or
6
+ * sender IDs. Inbound messages from a blocked handle are dropped before
7
+ * they reach your webhooks, and direct sends to a blocked handle are
8
+ * rejected with `403` (error code `2026`). Group sends that include
9
+ * unblocked members are not restricted.
10
+ */
11
+ export declare class BlockedHandles extends APIResource {
12
+ /**
13
+ * Returns all handles you have blocked. Inbound messages from a blocked handle are
14
+ * dropped and produce no webhooks, and direct sends to a blocked handle are
15
+ * rejected with `403` (error code `2026`). Group sends that include unblocked
16
+ * members are not restricted.
17
+ *
18
+ * @example
19
+ * ```ts
20
+ * const blockedHandles = await client.blockedHandles.list();
21
+ * ```
22
+ */
23
+ list(options?: RequestOptions): APIPromise<BlockedHandleListResponse>;
24
+ /**
25
+ * Blocks a handle — an E.164 phone number, an email address (iMessage sender), an
26
+ * SMS short code (e.g. `262966`), or an alphanumeric sender ID. Inbound messages
27
+ * from it are dropped and produce no webhooks, and direct sends to it are rejected
28
+ * with `403` (error code `2026`); group sends that include unblocked members are
29
+ * not restricted. Blocking is idempotent — re-blocking an already blocked handle
30
+ * returns the existing entry.
31
+ *
32
+ * @example
33
+ * ```ts
34
+ * const response = await client.blockedHandles.block({
35
+ * handle: '+12025551234',
36
+ * reason: 'spam',
37
+ * });
38
+ * ```
39
+ */
40
+ block(body: BlockedHandleBlockParams, options?: RequestOptions): APIPromise<BlockedHandleBlockResponse>;
41
+ /**
42
+ * Removes a handle from your blocklist. Inbound messages from it will be delivered
43
+ * again and sends to it are allowed again. The handle goes in the request body,
44
+ * mirroring block — no URL encoding needed.
45
+ *
46
+ * @example
47
+ * ```ts
48
+ * await client.blockedHandles.unblock({
49
+ * handle: '+12025551234',
50
+ * });
51
+ * ```
52
+ */
53
+ unblock(body: BlockedHandleUnblockParams, options?: RequestOptions): APIPromise<void>;
54
+ }
55
+ export interface BlockedHandleEntry {
56
+ /**
57
+ * When the handle was blocked
58
+ */
59
+ blocked_at: string;
60
+ /**
61
+ * The blocked handle, normalized (E.164 phone, lowercased email, short code, or
62
+ * sender ID)
63
+ */
64
+ handle: string;
65
+ /**
66
+ * Optional note recorded when the handle was blocked
67
+ */
68
+ reason?: string;
69
+ }
70
+ export interface BlockedHandleListResponse {
71
+ /**
72
+ * All handles blocked by the partner, newest first
73
+ */
74
+ blocked_handles: Array<BlockedHandleEntry>;
75
+ }
76
+ export interface BlockedHandleBlockResponse {
77
+ blocked_handle: BlockedHandleEntry;
78
+ }
79
+ export interface BlockedHandleBlockParams {
80
+ /**
81
+ * The handle to block: an E.164 phone number, an email address, an SMS short code
82
+ * (3-8 digits), or an alphanumeric sender ID.
83
+ */
84
+ handle: string;
85
+ /**
86
+ * Optional free-text note on why the handle was blocked
87
+ */
88
+ reason?: string;
89
+ }
90
+ export interface BlockedHandleUnblockParams {
91
+ /**
92
+ * The handle to unblock
93
+ */
94
+ handle: string;
95
+ }
96
+ export declare namespace BlockedHandles {
97
+ export { type BlockedHandleEntry as BlockedHandleEntry, type BlockedHandleListResponse as BlockedHandleListResponse, type BlockedHandleBlockResponse as BlockedHandleBlockResponse, type BlockedHandleBlockParams as BlockedHandleBlockParams, type BlockedHandleUnblockParams as BlockedHandleUnblockParams, };
98
+ }
99
+ //# sourceMappingURL=blocked-handles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"blocked-handles.d.ts","sourceRoot":"","sources":["../src/resources/blocked-handles.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,4BAAyB;AAC/C,OAAO,EAAE,UAAU,EAAE,+BAA4B;AAEjD,OAAO,EAAE,cAAc,EAAE,uCAAoC;AAE7D;;;;;;GAMG;AACH,qBAAa,cAAe,SAAQ,WAAW;IAC7C;;;;;;;;;;OAUG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,yBAAyB,CAAC;IAIrE;;;;;;;;;;;;;;;OAeG;IACH,KAAK,CAAC,IAAI,EAAE,wBAAwB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,0BAA0B,CAAC;IAIvG;;;;;;;;;;;OAWG;IACH,OAAO,CAAC,IAAI,EAAE,0BAA0B,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAOtF;AAED,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,eAAe,EAAE,KAAK,CAAC,kBAAkB,CAAC,CAAC;CAC5C;AAED,MAAM,WAAW,0BAA0B;IACzC,cAAc,EAAE,kBAAkB,CAAC;CACpC;AAED,MAAM,WAAW,wBAAwB;IACvC;;;OAGG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,0BAA0B;IACzC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,CAAC,OAAO,WAAW,cAAc,CAAC;IACtC,OAAO,EACL,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,0BAA0B,IAAI,0BAA0B,GAC9D,CAAC;CACH"}
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.BlockedHandles = void 0;
5
+ const resource_1 = require("../core/resource.js");
6
+ const headers_1 = require("../internal/headers.js");
7
+ /**
8
+ * Block handles — phone numbers, email addresses, SMS short codes, or
9
+ * sender IDs. Inbound messages from a blocked handle are dropped before
10
+ * they reach your webhooks, and direct sends to a blocked handle are
11
+ * rejected with `403` (error code `2026`). Group sends that include
12
+ * unblocked members are not restricted.
13
+ */
14
+ class BlockedHandles extends resource_1.APIResource {
15
+ /**
16
+ * Returns all handles you have blocked. Inbound messages from a blocked handle are
17
+ * dropped and produce no webhooks, and direct sends to a blocked handle are
18
+ * rejected with `403` (error code `2026`). Group sends that include unblocked
19
+ * members are not restricted.
20
+ *
21
+ * @example
22
+ * ```ts
23
+ * const blockedHandles = await client.blockedHandles.list();
24
+ * ```
25
+ */
26
+ list(options) {
27
+ return this._client.get('/v3/blocked_handles', options);
28
+ }
29
+ /**
30
+ * Blocks a handle — an E.164 phone number, an email address (iMessage sender), an
31
+ * SMS short code (e.g. `262966`), or an alphanumeric sender ID. Inbound messages
32
+ * from it are dropped and produce no webhooks, and direct sends to it are rejected
33
+ * with `403` (error code `2026`); group sends that include unblocked members are
34
+ * not restricted. Blocking is idempotent — re-blocking an already blocked handle
35
+ * returns the existing entry.
36
+ *
37
+ * @example
38
+ * ```ts
39
+ * const response = await client.blockedHandles.block({
40
+ * handle: '+12025551234',
41
+ * reason: 'spam',
42
+ * });
43
+ * ```
44
+ */
45
+ block(body, options) {
46
+ return this._client.post('/v3/blocked_handles', { body, ...options });
47
+ }
48
+ /**
49
+ * Removes a handle from your blocklist. Inbound messages from it will be delivered
50
+ * again and sends to it are allowed again. The handle goes in the request body,
51
+ * mirroring block — no URL encoding needed.
52
+ *
53
+ * @example
54
+ * ```ts
55
+ * await client.blockedHandles.unblock({
56
+ * handle: '+12025551234',
57
+ * });
58
+ * ```
59
+ */
60
+ unblock(body, options) {
61
+ return this._client.delete('/v3/blocked_handles', {
62
+ body,
63
+ ...options,
64
+ headers: (0, headers_1.buildHeaders)([{ Accept: '*/*' }, options?.headers]),
65
+ });
66
+ }
67
+ }
68
+ exports.BlockedHandles = BlockedHandles;
69
+ //# sourceMappingURL=blocked-handles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"blocked-handles.js","sourceRoot":"","sources":["../src/resources/blocked-handles.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAE/C,oDAAmD;AAGnD;;;;;;GAMG;AACH,MAAa,cAAe,SAAQ,sBAAW;IAC7C;;;;;;;;;;OAUG;IACH,IAAI,CAAC,OAAwB;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,qBAAqB,EAAE,OAAO,CAAC,CAAC;IAC1D,CAAC;IAED;;;;;;;;;;;;;;;OAeG;IACH,KAAK,CAAC,IAA8B,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,qBAAqB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACxE,CAAC;IAED;;;;;;;;;;;OAWG;IACH,OAAO,CAAC,IAAgC,EAAE,OAAwB;QAChE,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,qBAAqB,EAAE;YAChD,IAAI;YACJ,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;AAvDD,wCAuDC"}
@@ -0,0 +1,65 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+ import { APIResource } from "../core/resource.mjs";
3
+ import { buildHeaders } from "../internal/headers.mjs";
4
+ /**
5
+ * Block handles — phone numbers, email addresses, SMS short codes, or
6
+ * sender IDs. Inbound messages from a blocked handle are dropped before
7
+ * they reach your webhooks, and direct sends to a blocked handle are
8
+ * rejected with `403` (error code `2026`). Group sends that include
9
+ * unblocked members are not restricted.
10
+ */
11
+ export class BlockedHandles extends APIResource {
12
+ /**
13
+ * Returns all handles you have blocked. Inbound messages from a blocked handle are
14
+ * dropped and produce no webhooks, and direct sends to a blocked handle are
15
+ * rejected with `403` (error code `2026`). Group sends that include unblocked
16
+ * members are not restricted.
17
+ *
18
+ * @example
19
+ * ```ts
20
+ * const blockedHandles = await client.blockedHandles.list();
21
+ * ```
22
+ */
23
+ list(options) {
24
+ return this._client.get('/v3/blocked_handles', options);
25
+ }
26
+ /**
27
+ * Blocks a handle — an E.164 phone number, an email address (iMessage sender), an
28
+ * SMS short code (e.g. `262966`), or an alphanumeric sender ID. Inbound messages
29
+ * from it are dropped and produce no webhooks, and direct sends to it are rejected
30
+ * with `403` (error code `2026`); group sends that include unblocked members are
31
+ * not restricted. Blocking is idempotent — re-blocking an already blocked handle
32
+ * returns the existing entry.
33
+ *
34
+ * @example
35
+ * ```ts
36
+ * const response = await client.blockedHandles.block({
37
+ * handle: '+12025551234',
38
+ * reason: 'spam',
39
+ * });
40
+ * ```
41
+ */
42
+ block(body, options) {
43
+ return this._client.post('/v3/blocked_handles', { body, ...options });
44
+ }
45
+ /**
46
+ * Removes a handle from your blocklist. Inbound messages from it will be delivered
47
+ * again and sends to it are allowed again. The handle goes in the request body,
48
+ * mirroring block — no URL encoding needed.
49
+ *
50
+ * @example
51
+ * ```ts
52
+ * await client.blockedHandles.unblock({
53
+ * handle: '+12025551234',
54
+ * });
55
+ * ```
56
+ */
57
+ unblock(body, options) {
58
+ return this._client.delete('/v3/blocked_handles', {
59
+ body,
60
+ ...options,
61
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
62
+ });
63
+ }
64
+ }
65
+ //# sourceMappingURL=blocked-handles.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"blocked-handles.mjs","sourceRoot":"","sources":["../src/resources/blocked-handles.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAE/C,OAAO,EAAE,YAAY,EAAE,gCAA4B;AAGnD;;;;;;GAMG;AACH,MAAM,OAAO,cAAe,SAAQ,WAAW;IAC7C;;;;;;;;;;OAUG;IACH,IAAI,CAAC,OAAwB;QAC3B,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,qBAAqB,EAAE,OAAO,CAAC,CAAC;IAC1D,CAAC;IAED;;;;;;;;;;;;;;;OAeG;IACH,KAAK,CAAC,IAA8B,EAAE,OAAwB;QAC5D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,qBAAqB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACxE,CAAC;IAED;;;;;;;;;;;OAWG;IACH,OAAO,CAAC,IAAgC,EAAE,OAAwB;QAChE,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,qBAAqB,EAAE;YAChD,IAAI;YACJ,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"}
@@ -326,14 +326,14 @@ export declare namespace Chat {
326
326
  * [Chat Health guide](/guides/chats/chat-health) for what each value means and how
327
327
  * to react. `doc_url` deep-links to the relevant section.
328
328
  *
329
- * `OPTED_OUT` is terminal — the recipient sent `STOP`, `UNSUBSCRIBE`, `OPTOUT`,
330
- * `CANCEL`, `END`, or `QUIT`. The keyword must be the whole trimmed message, never
331
- * part of a longer one: `STOP` counts, `please stop` does not. Most keywords must
332
- * match exactly, including case. `OPT OUT` is the exception — it matches in any
333
- * casing, with or without the space or a hyphen, so `opt out`, `Opt-Out` and
334
- * `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP`,
335
- * or if they keep replying on the chatsustained two-way conversation is treated
336
- * as a sign the stop keyword was a false positive.
329
+ * `OPTED_OUT` — the recipient sent `STOP`, `UNSUBSCRIBE`, `OPTOUT`, `CANCEL`,
330
+ * `END`, or `QUIT`. The keyword must be the whole trimmed message, never part of a
331
+ * longer one: `STOP` counts, `please stop` does not. Most keywords must match
332
+ * exactly, including case. `OPT OUT` is the exception — it matches in any casing,
333
+ * with or without the space or a hyphen, so `opt out`, `Opt-Out` and `optout` all
334
+ * count. It clears as soon as they reply again: any later message from them that
335
+ * is not itself an opt-out keyword opts them back in immediately a reply in any
336
+ * conversation with you counts, the same way the block does.
337
337
  *
338
338
  * Linq enforces this: while a recipient is opted out, every send to them is
339
339
  * rejected with `403` (error code `2024`) before the message is queued, across
@@ -769,14 +769,14 @@ export declare namespace ChatCreateResponse {
769
769
  * [Chat Health guide](/guides/chats/chat-health) for what each value means and how
770
770
  * to react. `doc_url` deep-links to the relevant section.
771
771
  *
772
- * `OPTED_OUT` is terminal — the recipient sent `STOP`, `UNSUBSCRIBE`, `OPTOUT`,
773
- * `CANCEL`, `END`, or `QUIT`. The keyword must be the whole trimmed message, never
774
- * part of a longer one: `STOP` counts, `please stop` does not. Most keywords must
775
- * match exactly, including case. `OPT OUT` is the exception — it matches in any
776
- * casing, with or without the space or a hyphen, so `opt out`, `Opt-Out` and
777
- * `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP`,
778
- * or if they keep replying on the chatsustained two-way conversation is treated
779
- * as a sign the stop keyword was a false positive.
772
+ * `OPTED_OUT` — the recipient sent `STOP`, `UNSUBSCRIBE`, `OPTOUT`, `CANCEL`,
773
+ * `END`, or `QUIT`. The keyword must be the whole trimmed message, never part of a
774
+ * longer one: `STOP` counts, `please stop` does not. Most keywords must match
775
+ * exactly, including case. `OPT OUT` is the exception — it matches in any casing,
776
+ * with or without the space or a hyphen, so `opt out`, `Opt-Out` and `optout` all
777
+ * count. It clears as soon as they reply again: any later message from them that
778
+ * is not itself an opt-out keyword opts them back in immediately a reply in any
779
+ * conversation with you counts, the same way the block does.
780
780
  *
781
781
  * Linq enforces this: while a recipient is opted out, every send to them is
782
782
  * rejected with `403` (error code `2024`) before the message is queued, across
@@ -326,14 +326,14 @@ export declare namespace Chat {
326
326
  * [Chat Health guide](/guides/chats/chat-health) for what each value means and how
327
327
  * to react. `doc_url` deep-links to the relevant section.
328
328
  *
329
- * `OPTED_OUT` is terminal — the recipient sent `STOP`, `UNSUBSCRIBE`, `OPTOUT`,
330
- * `CANCEL`, `END`, or `QUIT`. The keyword must be the whole trimmed message, never
331
- * part of a longer one: `STOP` counts, `please stop` does not. Most keywords must
332
- * match exactly, including case. `OPT OUT` is the exception — it matches in any
333
- * casing, with or without the space or a hyphen, so `opt out`, `Opt-Out` and
334
- * `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP`,
335
- * or if they keep replying on the chatsustained two-way conversation is treated
336
- * as a sign the stop keyword was a false positive.
329
+ * `OPTED_OUT` — the recipient sent `STOP`, `UNSUBSCRIBE`, `OPTOUT`, `CANCEL`,
330
+ * `END`, or `QUIT`. The keyword must be the whole trimmed message, never part of a
331
+ * longer one: `STOP` counts, `please stop` does not. Most keywords must match
332
+ * exactly, including case. `OPT OUT` is the exception — it matches in any casing,
333
+ * with or without the space or a hyphen, so `opt out`, `Opt-Out` and `optout` all
334
+ * count. It clears as soon as they reply again: any later message from them that
335
+ * is not itself an opt-out keyword opts them back in immediately a reply in any
336
+ * conversation with you counts, the same way the block does.
337
337
  *
338
338
  * Linq enforces this: while a recipient is opted out, every send to them is
339
339
  * rejected with `403` (error code `2024`) before the message is queued, across
@@ -769,14 +769,14 @@ export declare namespace ChatCreateResponse {
769
769
  * [Chat Health guide](/guides/chats/chat-health) for what each value means and how
770
770
  * to react. `doc_url` deep-links to the relevant section.
771
771
  *
772
- * `OPTED_OUT` is terminal — the recipient sent `STOP`, `UNSUBSCRIBE`, `OPTOUT`,
773
- * `CANCEL`, `END`, or `QUIT`. The keyword must be the whole trimmed message, never
774
- * part of a longer one: `STOP` counts, `please stop` does not. Most keywords must
775
- * match exactly, including case. `OPT OUT` is the exception — it matches in any
776
- * casing, with or without the space or a hyphen, so `opt out`, `Opt-Out` and
777
- * `optout` all count. It clears if they later send `START`, `OPTIN`, or `UNSTOP`,
778
- * or if they keep replying on the chatsustained two-way conversation is treated
779
- * as a sign the stop keyword was a false positive.
772
+ * `OPTED_OUT` — the recipient sent `STOP`, `UNSUBSCRIBE`, `OPTOUT`, `CANCEL`,
773
+ * `END`, or `QUIT`. The keyword must be the whole trimmed message, never part of a
774
+ * longer one: `STOP` counts, `please stop` does not. Most keywords must match
775
+ * exactly, including case. `OPT OUT` is the exception — it matches in any casing,
776
+ * with or without the space or a hyphen, so `opt out`, `Opt-Out` and `optout` all
777
+ * count. It clears as soon as they reply again: any later message from them that
778
+ * is not itself an opt-out keyword opts them back in immediately a reply in any
779
+ * conversation with you counts, the same way the block does.
780
780
  *
781
781
  * Linq enforces this: while a recipient is opted out, every send to them is
782
782
  * rejected with `403` (error code `2024`) before the message is queued, across
@@ -1,6 +1,7 @@
1
1
  export * from "./shared.mjs";
2
2
  export { Attachments, type SupportedContentType, type AttachmentCreateResponse, type AttachmentRetrieveResponse, type AttachmentCreateParams, } from "./attachments.mjs";
3
3
  export { AvailableNumber, type AvailableNumberRetrieveResponse, type AvailableNumberRetrieveParams, } from "./available-number.mjs";
4
+ export { BlockedHandles, type BlockedHandleEntry, type BlockedHandleListResponse, type BlockedHandleBlockResponse, type BlockedHandleBlockParams, type BlockedHandleUnblockParams, } from "./blocked-handles.mjs";
4
5
  export { Capability, type HandleCheck, type HandleCheckResponse, type CapabilityCheckIMessageParams, type CapabilityCheckRCSParams, } from "./capability.mjs";
5
6
  export { Chats, type Chat, type LinkPart, type MediaPart, type MessageContent, type TextPart, type ChatCreateResponse, type ChatUpdateResponse, type ChatLeaveChatResponse, type ChatSendVoicememoResponse, type ChatCreateParams, type ChatUpdateParams, type ChatListChatsParams, type ChatSendVoicememoParams, type ChatsListChatsPagination, } from "./chats/chats.mjs";
6
7
  export { ContactCard, type SetContactCard, type ContactCardRetrieveResponse, type ContactCardCreateParams, type ContactCardRetrieveParams, type ContactCardUpdateParams, } from "./contact-card.mjs";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,7 @@
1
1
  export * from "./shared.js";
2
2
  export { Attachments, type SupportedContentType, type AttachmentCreateResponse, type AttachmentRetrieveResponse, type AttachmentCreateParams, } from "./attachments.js";
3
3
  export { AvailableNumber, type AvailableNumberRetrieveResponse, type AvailableNumberRetrieveParams, } from "./available-number.js";
4
+ export { BlockedHandles, type BlockedHandleEntry, type BlockedHandleListResponse, type BlockedHandleBlockResponse, type BlockedHandleBlockParams, type BlockedHandleUnblockParams, } from "./blocked-handles.js";
4
5
  export { Capability, type HandleCheck, type HandleCheckResponse, type CapabilityCheckIMessageParams, type CapabilityCheckRCSParams, } from "./capability.js";
5
6
  export { Chats, type Chat, type LinkPart, type MediaPart, type MessageContent, type TextPart, type ChatCreateResponse, type ChatUpdateResponse, type ChatLeaveChatResponse, type ChatSendVoicememoResponse, type ChatCreateParams, type ChatUpdateParams, type ChatListChatsParams, type ChatSendVoicememoParams, type ChatsListChatsPagination, } from "./chats/chats.js";
6
7
  export { ContactCard, type SetContactCard, type ContactCardRetrieveResponse, type ContactCardCreateParams, type ContactCardRetrieveParams, type ContactCardUpdateParams, } from "./contact-card.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"AAEA,4BAAyB;AACzB,OAAO,EACL,WAAW,EACX,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,0BAA0B,EAC/B,KAAK,sBAAsB,GAC5B,yBAAsB;AACvB,OAAO,EACL,eAAe,EACf,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,GACnC,8BAA2B;AAC5B,OAAO,EACL,UAAU,EACV,KAAK,WAAW,EAChB,KAAK,mBAAmB,EACxB,KAAK,6BAA6B,EAClC,KAAK,wBAAwB,GAC9B,wBAAqB;AACtB,OAAO,EACL,KAAK,EACL,KAAK,IAAI,EACT,KAAK,QAAQ,EACb,KAAK,SAAS,EACd,KAAK,cAAc,EACnB,KAAK,QAAQ,EACb,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,EACvB,KAAK,qBAAqB,EAC1B,KAAK,yBAAyB,EAC9B,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,mBAAmB,EACxB,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,GAC9B,yBAAsB;AACvB,OAAO,EACL,WAAW,EACX,KAAK,cAAc,EACnB,KAAK,2BAA2B,EAChC,KAAK,uBAAuB,EAC5B,KAAK,yBAAyB,EAC9B,KAAK,uBAAuB,GAC7B,0BAAuB;AACxB,OAAO,EAAE,WAAW,EAAE,KAAK,0BAA0B,EAAE,KAAK,sBAAsB,EAAE,yBAAsB;AAC1G,OAAO,EACL,QAAQ,EACR,KAAK,OAAO,EACZ,KAAK,aAAa,EAClB,KAAK,OAAO,EACZ,KAAK,qBAAqB,EAC1B,KAAK,0BAA0B,EAC/B,KAAK,4BAA4B,EACjC,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,EACxB,KAAK,wBAAwB,EAC7B,KAAK,+BAA+B,EACpC,KAAK,0BAA0B,EAC/B,KAAK,8BAA8B,GACpC,+BAA4B;AAC7B,OAAO,EACL,cAAc,EACd,KAAK,uBAAuB,EAC5B,KAAK,yBAAyB,GAC/B,6BAA0B;AAC3B,OAAO,EACL,gBAAgB,EAChB,KAAK,eAAe,EACpB,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,GAClC,+BAA4B;AAC7B,OAAO,EACL,eAAe,EACf,KAAK,cAAc,EACnB,KAAK,0BAA0B,EAC/B,KAAK,0BAA0B,EAC/B,KAAK,wBAAwB,GAC9B,8BAA2B;AAC5B,OAAO,EACL,QAAQ,EACR,KAAK,OAAO,EACZ,KAAK,0BAA0B,EAC/B,KAAK,mBAAmB,GACzB,sBAAmB;AACpB,OAAO,EACL,YAAY,EACZ,KAAK,yBAAyB,EAC9B,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,GAC7B,2BAAwB;AACzB,OAAO,EAAE,YAAY,EAAE,KAAK,uBAAuB,EAAE,0BAAuB;AAC5E,OAAO,EAAE,aAAa,EAAE,KAAK,gBAAgB,EAAE,KAAK,wBAAwB,EAAE,4BAAyB;AACvG,OAAO,EACL,oBAAoB,EACpB,KAAK,mBAAmB,EACxB,KAAK,iCAAiC,EACtC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,GACrC,mCAAgC;AACjC,OAAO,EACL,QAAQ,EACR,KAAK,cAAc,EACnB,KAAK,cAAc,EACnB,KAAK,iBAAiB,EACtB,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,EAC5B,KAAK,2BAA2B,EAChC,KAAK,uBAAuB,EAC5B,KAAK,4BAA4B,EACjC,KAAK,yBAAyB,EAC9B,KAAK,yBAAyB,EAC9B,KAAK,yBAAyB,EAC9B,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EACjC,KAAK,8BAA8B,EACnC,KAAK,uBAAuB,EAC5B,KAAK,gCAAgC,EACrC,KAAK,gCAAgC,EACrC,KAAK,qCAAqC,EAC1C,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAC3C,KAAK,sCAAsC,EAC3C,KAAK,oCAAoC,EACzC,KAAK,kBAAkB,GACxB,sBAAmB"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"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"}
@@ -1,13 +1,15 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.Webhooks = exports.WebhookSubscriptions = exports.WebhookEvents = exports.Phonenumbers = exports.PhoneNumbers = exports.Payments = exports.PaymentRequests = exports.PaymentProviders = exports.PaymentHandles = exports.Messages = exports.Experiences = exports.ContactCard = exports.Chats = exports.Capability = exports.AvailableNumber = exports.Attachments = void 0;
4
+ exports.Webhooks = exports.WebhookSubscriptions = exports.WebhookEvents = exports.Phonenumbers = exports.PhoneNumbers = exports.Payments = exports.PaymentRequests = exports.PaymentProviders = exports.PaymentHandles = exports.Messages = exports.Experiences = exports.ContactCard = exports.Chats = exports.Capability = exports.BlockedHandles = exports.AvailableNumber = exports.Attachments = void 0;
5
5
  const tslib_1 = require("../internal/tslib.js");
6
6
  tslib_1.__exportStar(require("./shared.js"), exports);
7
7
  var attachments_1 = require("./attachments.js");
8
8
  Object.defineProperty(exports, "Attachments", { enumerable: true, get: function () { return attachments_1.Attachments; } });
9
9
  var available_number_1 = require("./available-number.js");
10
10
  Object.defineProperty(exports, "AvailableNumber", { enumerable: true, get: function () { return available_number_1.AvailableNumber; } });
11
+ var blocked_handles_1 = require("./blocked-handles.js");
12
+ Object.defineProperty(exports, "BlockedHandles", { enumerable: true, get: function () { return blocked_handles_1.BlockedHandles; } });
11
13
  var capability_1 = require("./capability.js");
12
14
  Object.defineProperty(exports, "Capability", { enumerable: true, get: function () { return capability_1.Capability; } });
13
15
  var chats_1 = require("./chats/chats.js");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,sDAAyB;AACzB,gDAMuB;AALrB,0GAAA,WAAW,OAAA;AAMb,0DAI4B;AAH1B,mHAAA,eAAe,OAAA;AAIjB,8CAMsB;AALpB,wGAAA,UAAU,OAAA;AAMZ,0CAgBuB;AAfrB,8FAAA,KAAK,OAAA;AAgBP,kDAOwB;AANtB,2GAAA,WAAW,OAAA;AAOb,gDAA0G;AAAjG,0GAAA,WAAW,OAAA;AACpB,mDAc6B;AAb3B,oGAAA,QAAQ,OAAA;AAcV,wDAI2B;AAHzB,iHAAA,cAAc,OAAA;AAIhB,4DAK6B;AAJ3B,qHAAA,gBAAgB,OAAA;AAKlB,0DAM4B;AAL1B,mHAAA,eAAe,OAAA;AAMjB,0CAKoB;AAJlB,oGAAA,QAAQ,OAAA;AAKV,oDAKyB;AAJvB,6GAAA,YAAY,OAAA;AAKd,kDAA4E;AAAnE,4GAAA,YAAY,OAAA;AACrB,sDAAuG;AAA9F,+GAAA,aAAa,OAAA;AACtB,oEAOiC;AAN/B,6HAAA,oBAAoB,OAAA;AAOtB,0CA2BoB;AA1BlB,oGAAA,QAAQ,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,sDAAyB;AACzB,gDAMuB;AALrB,0GAAA,WAAW,OAAA;AAMb,0DAI4B;AAH1B,mHAAA,eAAe,OAAA;AAIjB,wDAO2B;AANzB,iHAAA,cAAc,OAAA;AAOhB,8CAMsB;AALpB,wGAAA,UAAU,OAAA;AAMZ,0CAgBuB;AAfrB,8FAAA,KAAK,OAAA;AAgBP,kDAOwB;AANtB,2GAAA,WAAW,OAAA;AAOb,gDAA0G;AAAjG,0GAAA,WAAW,OAAA;AACpB,mDAc6B;AAb3B,oGAAA,QAAQ,OAAA;AAcV,wDAI2B;AAHzB,iHAAA,cAAc,OAAA;AAIhB,4DAK6B;AAJ3B,qHAAA,gBAAgB,OAAA;AAKlB,0DAM4B;AAL1B,mHAAA,eAAe,OAAA;AAMjB,0CAKoB;AAJlB,oGAAA,QAAQ,OAAA;AAKV,oDAKyB;AAJvB,6GAAA,YAAY,OAAA;AAKd,kDAA4E;AAAnE,4GAAA,YAAY,OAAA;AACrB,sDAAuG;AAA9F,+GAAA,aAAa,OAAA;AACtB,oEAOiC;AAN/B,6HAAA,oBAAoB,OAAA;AAOtB,0CA2BoB;AA1BlB,oGAAA,QAAQ,OAAA"}
@@ -2,6 +2,7 @@
2
2
  export * from "./shared.mjs";
3
3
  export { Attachments, } from "./attachments.mjs";
4
4
  export { AvailableNumber, } from "./available-number.mjs";
5
+ export { BlockedHandles, } from "./blocked-handles.mjs";
5
6
  export { Capability, } from "./capability.mjs";
6
7
  export { Chats, } from "./chats/chats.mjs";
7
8
  export { ContactCard, } from "./contact-card.mjs";
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,6BAAyB;AACzB,OAAO,EACL,WAAW,GAKZ,0BAAsB;AACvB,OAAO,EACL,eAAe,GAGhB,+BAA2B;AAC5B,OAAO,EACL,UAAU,GAKX,yBAAqB;AACtB,OAAO,EACL,KAAK,GAeN,0BAAsB;AACvB,OAAO,EACL,WAAW,GAMZ,2BAAuB;AACxB,OAAO,EAAE,WAAW,EAAgE,0BAAsB;AAC1G,OAAO,EACL,QAAQ,GAaT,gCAA4B;AAC7B,OAAO,EACL,cAAc,GAGf,8BAA0B;AAC3B,OAAO,EACL,gBAAgB,GAIjB,gCAA4B;AAC7B,OAAO,EACL,eAAe,GAKhB,+BAA2B;AAC5B,OAAO,EACL,QAAQ,GAIT,uBAAmB;AACpB,OAAO,EACL,YAAY,GAIb,4BAAwB;AACzB,OAAO,EAAE,YAAY,EAAgC,2BAAuB;AAC5E,OAAO,EAAE,aAAa,EAAwD,6BAAyB;AACvG,OAAO,EACL,oBAAoB,GAMrB,oCAAgC;AACjC,OAAO,EACL,QAAQ,GA0BT,uBAAmB"}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,6BAAyB;AACzB,OAAO,EACL,WAAW,GAKZ,0BAAsB;AACvB,OAAO,EACL,eAAe,GAGhB,+BAA2B;AAC5B,OAAO,EACL,cAAc,GAMf,8BAA0B;AAC3B,OAAO,EACL,UAAU,GAKX,yBAAqB;AACtB,OAAO,EACL,KAAK,GAeN,0BAAsB;AACvB,OAAO,EACL,WAAW,GAMZ,2BAAuB;AACxB,OAAO,EAAE,WAAW,EAAgE,0BAAsB;AAC1G,OAAO,EACL,QAAQ,GAaT,gCAA4B;AAC7B,OAAO,EACL,cAAc,GAGf,8BAA0B;AAC3B,OAAO,EACL,gBAAgB,GAIjB,gCAA4B;AAC7B,OAAO,EACL,eAAe,GAKhB,+BAA2B;AAC5B,OAAO,EACL,QAAQ,GAIT,uBAAmB;AACpB,OAAO,EACL,YAAY,GAIb,4BAAwB;AACzB,OAAO,EAAE,YAAY,EAAgC,2BAAuB;AAC5E,OAAO,EAAE,aAAa,EAAwD,6BAAyB;AACvG,OAAO,EACL,oBAAoB,GAMrB,oCAAgC;AACjC,OAAO,EACL,QAAQ,GA0BT,uBAAmB"}
@@ -712,6 +712,15 @@ export interface MessageUpdateAppCardParams {
712
712
  * rejected.
713
713
  */
714
714
  layout: MessageUpdateAppCardParams.Layout;
715
+ /**
716
+ * Invokes an action on an experience — a third party that renders inside Linq's
717
+ * iMessage app. Linq resolves the recipient's connection, mints any session the
718
+ * action needs, composes the card and sends it; none of that is visible to you.
719
+ *
720
+ * Call `GET /v3/experiences/{experience}` for the actions you may invoke and the
721
+ * fields each accepts.
722
+ */
723
+ action?: MessageUpdateAppCardParams.Action;
715
724
  /**
716
725
  * Text shown on surfaces that cannot render the card (notifications, lock screen).
717
726
  * Defaults to the caption when omitted.
@@ -731,6 +740,8 @@ export interface MessageUpdateAppCardParams {
731
740
  interactive?: boolean;
732
741
  /**
733
742
  * URL the recipient's app opens when they tap the updated card.
743
+ *
744
+ * Mutually exclusive with `action` and `raw_payload_data`.
734
745
  */
735
746
  url?: string;
736
747
  }
@@ -787,6 +798,34 @@ export declare namespace MessageUpdateAppCardParams {
787
798
  */
788
799
  trailing_subcaption?: string;
789
800
  }
801
+ /**
802
+ * Invokes an action on an experience — a third party that renders inside Linq's
803
+ * iMessage app. Linq resolves the recipient's connection, mints any session the
804
+ * action needs, composes the card and sends it; none of that is visible to you.
805
+ *
806
+ * Call `GET /v3/experiences/{experience}` for the actions you may invoke and the
807
+ * fields each accepts.
808
+ */
809
+ interface Action {
810
+ /**
811
+ * Which of its actions, e.g. `attach_card`.
812
+ */
813
+ action: string;
814
+ /**
815
+ * The experience to invoke, e.g. `agentcard`.
816
+ */
817
+ experience: string;
818
+ /**
819
+ * Values for the fields this action exposes. Keys are exactly the field names
820
+ * listed for the action — no mapping, no nesting.
821
+ *
822
+ * Display copy only, except a `url`-type field — that value sets the destination,
823
+ * and must be an absolute `https` URL.
824
+ */
825
+ params?: {
826
+ [key: string]: unknown;
827
+ };
828
+ }
790
829
  }
791
830
  export declare namespace Messages {
792
831
  export { type Message as Message, type MessageEffect as MessageEffect, type ReplyTo as ReplyTo, type MessageCreateResponse as MessageCreateResponse, type MessageAddReactionResponse as MessageAddReactionResponse, type MessageUpdateAppCardResponse as MessageUpdateAppCardResponse, type MessagesListMessagesPagination as MessagesListMessagesPagination, type MessageCreateParams as MessageCreateParams, type MessageUpdateParams as MessageUpdateParams, type MessageAddReactionParams as MessageAddReactionParams, type MessageListMessagesThreadParams as MessageListMessagesThreadParams, type MessageUpdateAppCardParams as MessageUpdateAppCardParams, };
@@ -1 +1 @@
1
- {"version":3,"file":"messages.d.mts","sourceRoot":"","sources":["../../src/resources/messages/messages.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,gCAA4B;AAClD,OAAO,KAAK,MAAM,sBAAkB;AACpC,OAAO,KAAK,QAAQ,2BAAuB;AAC3C,OAAO,KAAK,WAAW,8BAA0B;AACjD,OAAO,KAAK,OAAO,mBAAe;AAClC,OAAO,EAAE,IAAI,EAAE,oBAAoB,EAAE,cAAc,EAAE,mBAAe;AACpE,OAAO,EAAE,UAAU,EAAE,mCAA+B;AACpD,OAAO,EACL,sBAAsB,EACtB,KAAK,4BAA4B,EACjC,WAAW,EACZ,kCAA8B;AAE/B,OAAO,EAAE,cAAc,EAAE,2CAAuC;AAGhE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2DG;AACH,qBAAa,QAAS,SAAQ,WAAW;IACvC,IAAI,EAAE,OAAO,CAAC,IAAI,CAAkC;IAEpD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAoEG;IACH,MAAM,CAAC,MAAM,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,qBAAqB,CAAC;IAYhG;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,OAAO,CAAC;IAI1E;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,OAAO,CAAC;IAInG;;;;;;;;;;;;OAYG;IACH,MAAM,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAOrE;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,WAAW,CACT,SAAS,EAAE,MAAM,EACjB,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,0BAA0B,CAAC;IAIzC;;;;;;;;;;;;;;;;;OAiBG;IACH,kBAAkB,CAChB,SAAS,EAAE,MAAM,EACjB,KAAK,GAAE,+BAA+B,GAAG,IAAI,GAAG,SAAc,EAC9D,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,8BAA8B,EAAE,OAAO,CAAC;IAOvD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAmCG;IACH,aAAa,CACX,SAAS,EAAE,MAAM,EACjB,IAAI,EAAE,0BAA0B,EAChC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,4BAA4B,CAAC;CAG5C;AAED,MAAM,MAAM,8BAA8B,GAAG,sBAAsB,CAAC,OAAO,CAAC,CAAC;AAE7E,MAAM,WAAW,OAAO;IACtB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,eAAe,EAAE,SAAS,GAAG,QAAQ,GAAG,MAAM,GAAG,WAAW,GAAG,UAAU,GAAG,MAAM,GAAG,QAAQ,CAAC;IAE9F;;;;OAIG;IACH,YAAY,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,UAAU,EAAE,OAAO,CAAC;IAEpB;;;OAGG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE7B;;OAEG;IACH,MAAM,CAAC,EAAE,aAAa,GAAG,IAAI,CAAC;IAE9B;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAErB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,UAAU,GAAG,IAAI,CAAC;IAEvC;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CACT,MAAM,CAAC,gBAAgB,GACvB,MAAM,CAAC,iBAAiB,GACxB,MAAM,CAAC,gBAAgB,GACvB,OAAO,CAAC,uBAAuB,CAClC,GAAG,IAAI,CAAC;IAET;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,WAAW,GAAG,IAAI,CAAC;IAE9C;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExB;;;;;;;OAOG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IAE1B;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,WAAW,GAAG,IAAI,CAAC;CACrC;AAED,yBAAiB,OAAO,CAAC;IACvB;;OAEG;IACH,UAAiB,uBAAuB;QACtC;;WAEG;QACH,GAAG,EAAE,uBAAuB,CAAC,GAAG,CAAC;QAEjC;;;;;;;;;;;;;;;WAeG;QACH,MAAM,EAAE,uBAAuB,CAAC,MAAM,CAAC;QAEvC;;WAEG;QACH,SAAS,EAAE,KAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;QAEzC;;WAEG;QACH,IAAI,EAAE,cAAc,CAAC;QAErB;;WAEG;QACH,GAAG,EAAE,MAAM,CAAC;QAEZ;;WAEG;QACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;KAC/B;IAED,UAAiB,uBAAuB,CAAC;QACvC;;WAEG;QACH,UAAiB,GAAG;YAClB;;eAEG;YACH,SAAS,EAAE,MAAM,CAAC;YAElB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;YAEb;;eAEG;YACH,OAAO,EAAE,MAAM,CAAC;YAEhB;;;eAGG;YACH,YAAY,CAAC,EAAE,MAAM,CAAC;SACvB;QAED;;;;;;;;;;;;;;;WAeG;QACH,UAAiB,MAAM;YACrB;;eAEG;YACH,OAAO,CAAC,EAAE,MAAM,CAAC;YAEjB;;;eAGG;YACH,cAAc,CAAC,EAAE,MAAM,CAAC;YAExB;;;eAGG;YACH,WAAW,CAAC,EAAE,MAAM,CAAC;YAErB;;;;;;eAMG;YACH,SAAS,CAAC,EAAE,MAAM,CAAC;YAEnB;;eAEG;YACH,UAAU,CAAC,EAAE,MAAM,CAAC;YAEpB;;eAEG;YACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;YAE1B;;eAEG;YACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;SAC9B;KACF;CACF;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,IAAI,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,gBAAgB,EAAE,OAAO,CAAC;IAE1B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,cAAc,EAAE,qBAAqB,CAAC,aAAa,CAAC;IAEpD;;OAEG;IACH,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;IAElC;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,OAAO,EAAE,WAAW,CAAC,WAAW,CAAC;IAEjC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC,WAAW,CAAC;IAE5B;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC;AAED,yBAAiB,qBAAqB,CAAC;IACrC;;OAEG;IACH,UAAiB,aAAa;QAC5B;;;;;WAKG;QACH,MAAM,EAAE,oBAAoB,GAAG,iBAAiB,GAAG,kBAAkB,CAAC;QAEtE;;WAEG;QACH,oBAAoB,EAAE,OAAO,CAAC;KAC/B;CACF;AAED,MAAM,WAAW,0BAA0B;IACzC,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC3C;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,OAAO,EAAE,WAAW,CAAC,WAAW,CAAC;CAClC;AAED,MAAM,WAAW,mBAAmB;IAClC;;;;;;;;;OASG;IACH,OAAO,EAAE,QAAQ,CAAC,cAAc,CAAC;IAEjC;;;;OAIG;IACH,EAAE,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAElB;;;;;;;;;OASG;IACH,oBAAoB,CAAC,EAAE,mBAAmB,CAAC,mBAAmB,CAAC;IAE/D;;;;;;;;;;;;;;OAcG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAE7B;;;;;OAKG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,yBAAiB,mBAAmB,CAAC;IACnC;;;;;;;;OAQG;IACH,UAAiB,mBAAmB;QAClC;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;KACd;CACF;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,wBAAwB;IACvC;;OAEG;IACH,SAAS,EAAE,KAAK,GAAG,QAAQ,CAAC;IAE5B;;;;;OAKG;IACH,IAAI,EAAE,MAAM,CAAC,YAAY,CAAC;IAE1B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,+BAAgC,SAAQ,4BAA4B;IACnF;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,0BAA0B;IACzC;;;;;;;;;;;;;;;OAeG;IACH,MAAM,EAAE,0BAA0B,CAAC,MAAM,CAAC;IAE1C;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;;;;;;;;OAUG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,yBAAiB,0BAA0B,CAAC;IAC1C;;;;;;;;;;;;;;;OAeG;IACH,UAAiB,MAAM;QACrB;;WAEG;QACH,OAAO,CAAC,EAAE,MAAM,CAAC;QAEjB;;;WAGG;QACH,cAAc,CAAC,EAAE,MAAM,CAAC;QAExB;;;WAGG;QACH,WAAW,CAAC,EAAE,MAAM,CAAC;QAErB;;;;;;WAMG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,UAAU,CAAC,EAAE,MAAM,CAAC;QAEpB;;WAEG;QACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;QAE1B;;WAEG;QACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;KAC9B;CACF;AAID,MAAM,CAAC,OAAO,WAAW,QAAQ,CAAC;IAChC,OAAO,EACL,KAAK,OAAO,IAAI,OAAO,EACvB,KAAK,aAAa,IAAI,aAAa,EACnC,KAAK,OAAO,IAAI,OAAO,EACvB,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,8BAA8B,IAAI,8BAA8B,EACrE,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,0BAA0B,IAAI,0BAA0B,GAC9D,CAAC;IAEF,OAAO,EACL,IAAI,IAAI,IAAI,EACZ,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,cAAc,IAAI,cAAc,GACtC,CAAC;CACH"}
1
+ {"version":3,"file":"messages.d.mts","sourceRoot":"","sources":["../../src/resources/messages/messages.ts"],"names":[],"mappings":"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"}