@linqapp/sdk 0.50.0 → 0.51.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 +14 -0
- package/client.d.mts +39 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts +39 -0
- package/client.d.ts.map +1 -1
- package/client.js +39 -0
- package/client.js.map +1 -1
- package/client.mjs +39 -0
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/chats/chats.d.mts +1 -1
- package/resources/chats/chats.d.ts +1 -1
- package/resources/payment-requests.d.mts +89 -3
- package/resources/payment-requests.d.mts.map +1 -1
- package/resources/payment-requests.d.ts +89 -3
- package/resources/payment-requests.d.ts.map +1 -1
- package/resources/payment-requests.js +39 -0
- package/resources/payment-requests.js.map +1 -1
- package/resources/payment-requests.mjs +39 -0
- package/resources/payment-requests.mjs.map +1 -1
- package/resources/shared.d.mts +6 -45
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +6 -45
- package/resources/shared.d.ts.map +1 -1
- package/resources/webhooks.d.mts +6 -45
- package/resources/webhooks.d.mts.map +1 -1
- package/resources/webhooks.d.ts +6 -45
- package/resources/webhooks.d.ts.map +1 -1
- package/src/client.ts +39 -0
- package/src/resources/chats/chats.ts +1 -1
- package/src/resources/payment-requests.ts +97 -3
- package/src/resources/shared.ts +6 -49
- package/src/resources/webhooks.ts +6 -49
- 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
|
@@ -742,68 +742,25 @@ export interface SchemasTextPartResponse {
|
|
|
742
742
|
value: string;
|
|
743
743
|
|
|
744
744
|
/**
|
|
745
|
-
*
|
|
746
|
-
*
|
|
747
|
-
* mentions; this field shows only the first in `value` order, so it cannot be used
|
|
748
|
-
* to determine whether a given participant was mentioned. `null` when the part
|
|
749
|
-
* carries no mention.
|
|
745
|
+
* Handle (E.164 phone number or Apple ID email) of the @mentioned chat
|
|
746
|
+
* participant, as sent. `null` when the part carries no mention.
|
|
750
747
|
*/
|
|
751
748
|
mention?: string | null;
|
|
752
749
|
|
|
753
750
|
/**
|
|
754
|
-
*
|
|
755
|
-
* `
|
|
756
|
-
*
|
|
757
|
-
*
|
|
758
|
-
* 1; some emoji count as 2._
|
|
751
|
+
* Character range `[start, end)` in `value` highlighted as the mention, as sent.
|
|
752
|
+
* `null` when the send omitted it (the whole `value` is highlighted) or the part
|
|
753
|
+
* carries no mention. _Characters are measured as UTF-16 code units. Most
|
|
754
|
+
* characters count as 1; some emoji count as 2._
|
|
759
755
|
*/
|
|
760
756
|
mention_range?: Array<number> | null;
|
|
761
757
|
|
|
762
|
-
/**
|
|
763
|
-
* Every mention on this part, in the order they appear in `value`. `null` when the
|
|
764
|
-
* part carries no mention. A part can carry several mentions of different people —
|
|
765
|
-
* check `is_me` to tell whether this line was one of them.
|
|
766
|
-
*
|
|
767
|
-
* Only iMessage carries mentions. On a received message this is populated when the
|
|
768
|
-
* sender was on iMessage; SMS and RCS have no way to mark a mention, so a message
|
|
769
|
-
* from an SMS or RCS participant arrives as plain text with `mentions` null, even
|
|
770
|
-
* in a group where other participants are on iMessage.
|
|
771
|
-
*/
|
|
772
|
-
mentions?: Array<SchemasTextPartResponse.Mention> | null;
|
|
773
|
-
|
|
774
758
|
/**
|
|
775
759
|
* Text decorations applied to character ranges in the value
|
|
776
760
|
*/
|
|
777
761
|
text_decorations?: Array<Shared.TextDecoration> | null;
|
|
778
762
|
}
|
|
779
763
|
|
|
780
|
-
export namespace SchemasTextPartResponse {
|
|
781
|
-
/**
|
|
782
|
-
* One mention on a text part — who was mentioned, and which characters of `value`
|
|
783
|
-
* are the mention. A part carries one of these per mention, in the order they
|
|
784
|
-
* appear in the text, so a message naming two people has two entries.
|
|
785
|
-
*/
|
|
786
|
-
export interface Mention {
|
|
787
|
-
/**
|
|
788
|
-
* Address of the mentioned participant, exactly as the device recorded it — an
|
|
789
|
-
* E.164 phone number or an email address.
|
|
790
|
-
*/
|
|
791
|
-
handle: string;
|
|
792
|
-
|
|
793
|
-
/**
|
|
794
|
-
* Whether the mentioned participant is this line.
|
|
795
|
-
*/
|
|
796
|
-
is_me: boolean;
|
|
797
|
-
|
|
798
|
-
/**
|
|
799
|
-
* Character range `[start, end)` in `value` highlighted as this mention.
|
|
800
|
-
* _Characters are measured as UTF-16 code units. Most characters count as 1; some
|
|
801
|
-
* emoji count as 2._
|
|
802
|
-
*/
|
|
803
|
-
range: Array<number>;
|
|
804
|
-
}
|
|
805
|
-
}
|
|
806
|
-
|
|
807
764
|
/**
|
|
808
765
|
* Complete webhook payload for message.sent events (2026-02-03 format)
|
|
809
766
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.51.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.51.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.51.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.51.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|