@stream-io/node-sdk 0.7.20 → 0.7.21
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.
|
@@ -284,6 +284,7 @@ export interface ActivityRequest {
|
|
|
284
284
|
parent_id?: string;
|
|
285
285
|
poll_id?: string;
|
|
286
286
|
restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
|
|
287
|
+
skip_enrich_url?: boolean;
|
|
287
288
|
text?: string;
|
|
288
289
|
user_id?: string;
|
|
289
290
|
visibility?: 'public' | 'private' | 'tag';
|
|
@@ -384,6 +385,7 @@ export interface AddActivityRequest {
|
|
|
384
385
|
parent_id?: string;
|
|
385
386
|
poll_id?: string;
|
|
386
387
|
restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
|
|
388
|
+
skip_enrich_url?: boolean;
|
|
387
389
|
text?: string;
|
|
388
390
|
user_id?: string;
|
|
389
391
|
visibility?: 'public' | 'private' | 'tag';
|
|
@@ -433,6 +435,7 @@ export interface AddCommentRequest {
|
|
|
433
435
|
create_notification_activity?: boolean;
|
|
434
436
|
id?: string;
|
|
435
437
|
parent_id?: string;
|
|
438
|
+
skip_enrich_url?: boolean;
|
|
436
439
|
skip_push?: boolean;
|
|
437
440
|
user_id?: string;
|
|
438
441
|
attachments?: Attachment[];
|
|
@@ -4781,6 +4784,7 @@ export interface NoiseCancellationSettings {
|
|
|
4781
4784
|
mode: 'available' | 'disabled' | 'auto-on';
|
|
4782
4785
|
}
|
|
4783
4786
|
export interface NotificationConfig {
|
|
4787
|
+
deduplication_window?: string;
|
|
4784
4788
|
track_read?: boolean;
|
|
4785
4789
|
track_seen?: boolean;
|
|
4786
4790
|
}
|
|
@@ -7138,6 +7142,7 @@ export interface UpdateActivityRequest {
|
|
|
7138
7142
|
expires_at?: Date;
|
|
7139
7143
|
poll_id?: string;
|
|
7140
7144
|
restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
|
|
7145
|
+
skip_enrich_url?: boolean;
|
|
7141
7146
|
text?: string;
|
|
7142
7147
|
user_id?: string;
|
|
7143
7148
|
visibility?: string;
|
|
@@ -7406,6 +7411,7 @@ export interface UpdateCommandResponse {
|
|
|
7406
7411
|
}
|
|
7407
7412
|
export interface UpdateCommentRequest {
|
|
7408
7413
|
comment?: string;
|
|
7414
|
+
skip_enrich_url?: boolean;
|
|
7409
7415
|
skip_push?: boolean;
|
|
7410
7416
|
user_id?: string;
|
|
7411
7417
|
custom?: Record<string, any>;
|
package/package.json
CHANGED
|
@@ -150,6 +150,7 @@ export class FeedsApi {
|
|
|
150
150
|
parent_id: request?.parent_id,
|
|
151
151
|
poll_id: request?.poll_id,
|
|
152
152
|
restrict_replies: request?.restrict_replies,
|
|
153
|
+
skip_enrich_url: request?.skip_enrich_url,
|
|
153
154
|
text: request?.text,
|
|
154
155
|
user_id: request?.user_id,
|
|
155
156
|
visibility: request?.visibility,
|
|
@@ -599,6 +600,7 @@ export class FeedsApi {
|
|
|
599
600
|
expires_at: request?.expires_at,
|
|
600
601
|
poll_id: request?.poll_id,
|
|
601
602
|
restrict_replies: request?.restrict_replies,
|
|
603
|
+
skip_enrich_url: request?.skip_enrich_url,
|
|
602
604
|
text: request?.text,
|
|
603
605
|
user_id: request?.user_id,
|
|
604
606
|
visibility: request?.visibility,
|
|
@@ -879,6 +881,7 @@ export class FeedsApi {
|
|
|
879
881
|
create_notification_activity: request?.create_notification_activity,
|
|
880
882
|
id: request?.id,
|
|
881
883
|
parent_id: request?.parent_id,
|
|
884
|
+
skip_enrich_url: request?.skip_enrich_url,
|
|
882
885
|
skip_push: request?.skip_push,
|
|
883
886
|
user_id: request?.user_id,
|
|
884
887
|
attachments: request?.attachments,
|
|
@@ -997,6 +1000,7 @@ export class FeedsApi {
|
|
|
997
1000
|
};
|
|
998
1001
|
const body = {
|
|
999
1002
|
comment: request?.comment,
|
|
1003
|
+
skip_enrich_url: request?.skip_enrich_url,
|
|
1000
1004
|
skip_push: request?.skip_push,
|
|
1001
1005
|
user_id: request?.user_id,
|
|
1002
1006
|
custom: request?.custom,
|
package/src/gen/models/index.ts
CHANGED
|
@@ -501,6 +501,8 @@ export interface ActivityRequest {
|
|
|
501
501
|
|
|
502
502
|
restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
|
|
503
503
|
|
|
504
|
+
skip_enrich_url?: boolean;
|
|
505
|
+
|
|
504
506
|
text?: string;
|
|
505
507
|
|
|
506
508
|
user_id?: string;
|
|
@@ -695,6 +697,8 @@ export interface AddActivityRequest {
|
|
|
695
697
|
|
|
696
698
|
restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
|
|
697
699
|
|
|
700
|
+
skip_enrich_url?: boolean;
|
|
701
|
+
|
|
698
702
|
text?: string;
|
|
699
703
|
|
|
700
704
|
user_id?: string;
|
|
@@ -781,6 +785,8 @@ export interface AddCommentRequest {
|
|
|
781
785
|
|
|
782
786
|
parent_id?: string;
|
|
783
787
|
|
|
788
|
+
skip_enrich_url?: boolean;
|
|
789
|
+
|
|
784
790
|
skip_push?: boolean;
|
|
785
791
|
|
|
786
792
|
user_id?: string;
|
|
@@ -8354,6 +8360,8 @@ export interface NoiseCancellationSettings {
|
|
|
8354
8360
|
}
|
|
8355
8361
|
|
|
8356
8362
|
export interface NotificationConfig {
|
|
8363
|
+
deduplication_window?: string;
|
|
8364
|
+
|
|
8357
8365
|
track_read?: boolean;
|
|
8358
8366
|
|
|
8359
8367
|
track_seen?: boolean;
|
|
@@ -12654,6 +12662,8 @@ export interface UpdateActivityRequest {
|
|
|
12654
12662
|
|
|
12655
12663
|
restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
|
|
12656
12664
|
|
|
12665
|
+
skip_enrich_url?: boolean;
|
|
12666
|
+
|
|
12657
12667
|
text?: string;
|
|
12658
12668
|
|
|
12659
12669
|
user_id?: string;
|
|
@@ -13138,6 +13148,8 @@ export interface UpdateCommandResponse {
|
|
|
13138
13148
|
export interface UpdateCommentRequest {
|
|
13139
13149
|
comment?: string;
|
|
13140
13150
|
|
|
13151
|
+
skip_enrich_url?: boolean;
|
|
13152
|
+
|
|
13141
13153
|
skip_push?: boolean;
|
|
13142
13154
|
|
|
13143
13155
|
user_id?: string;
|