@stream-io/node-sdk 0.7.30 → 0.7.32
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.
|
@@ -429,6 +429,7 @@ export interface AddCommentReactionResponse {
|
|
|
429
429
|
duration: string;
|
|
430
430
|
comment: CommentResponse;
|
|
431
431
|
reaction: FeedsReactionResponse;
|
|
432
|
+
notification_created?: boolean;
|
|
432
433
|
}
|
|
433
434
|
export interface AddCommentRequest {
|
|
434
435
|
comment?: string;
|
|
@@ -448,6 +449,7 @@ export interface AddCommentRequest {
|
|
|
448
449
|
export interface AddCommentResponse {
|
|
449
450
|
duration: string;
|
|
450
451
|
comment: CommentResponse;
|
|
452
|
+
notification_created?: boolean;
|
|
451
453
|
}
|
|
452
454
|
export interface AddCommentsBatchRequest {
|
|
453
455
|
comments: AddCommentRequest[];
|
|
@@ -473,6 +475,7 @@ export interface AddReactionResponse {
|
|
|
473
475
|
duration: string;
|
|
474
476
|
activity: ActivityResponse;
|
|
475
477
|
reaction: FeedsReactionResponse;
|
|
478
|
+
notification_created?: boolean;
|
|
476
479
|
}
|
|
477
480
|
export interface AggregatedActivityResponse {
|
|
478
481
|
activity_count: number;
|
|
@@ -6833,6 +6836,7 @@ export interface ShowChannelResponse {
|
|
|
6833
6836
|
export interface SingleFollowResponse {
|
|
6834
6837
|
duration: string;
|
|
6835
6838
|
follow: FollowResponse;
|
|
6839
|
+
notification_created?: boolean;
|
|
6836
6840
|
}
|
|
6837
6841
|
export interface SipInboundCredentials {
|
|
6838
6842
|
call_id: string;
|
|
@@ -7581,6 +7585,7 @@ export interface UpdateCommentRequest {
|
|
|
7581
7585
|
skip_enrich_url?: boolean;
|
|
7582
7586
|
skip_push?: boolean;
|
|
7583
7587
|
user_id?: string;
|
|
7588
|
+
attachments?: Attachment[];
|
|
7584
7589
|
custom?: Record<string, any>;
|
|
7585
7590
|
user?: UserRequest;
|
|
7586
7591
|
}
|
package/package.json
CHANGED
package/src/gen/models/index.ts
CHANGED
|
@@ -775,6 +775,8 @@ export interface AddCommentReactionResponse {
|
|
|
775
775
|
comment: CommentResponse;
|
|
776
776
|
|
|
777
777
|
reaction: FeedsReactionResponse;
|
|
778
|
+
|
|
779
|
+
notification_created?: boolean;
|
|
778
780
|
}
|
|
779
781
|
|
|
780
782
|
export interface AddCommentRequest {
|
|
@@ -809,6 +811,8 @@ export interface AddCommentResponse {
|
|
|
809
811
|
duration: string;
|
|
810
812
|
|
|
811
813
|
comment: CommentResponse;
|
|
814
|
+
|
|
815
|
+
notification_created?: boolean;
|
|
812
816
|
}
|
|
813
817
|
|
|
814
818
|
export interface AddCommentsBatchRequest {
|
|
@@ -849,6 +853,8 @@ export interface AddReactionResponse {
|
|
|
849
853
|
activity: ActivityResponse;
|
|
850
854
|
|
|
851
855
|
reaction: FeedsReactionResponse;
|
|
856
|
+
|
|
857
|
+
notification_created?: boolean;
|
|
852
858
|
}
|
|
853
859
|
|
|
854
860
|
export interface AggregatedActivityResponse {
|
|
@@ -11928,6 +11934,8 @@ export interface SingleFollowResponse {
|
|
|
11928
11934
|
duration: string;
|
|
11929
11935
|
|
|
11930
11936
|
follow: FollowResponse;
|
|
11937
|
+
|
|
11938
|
+
notification_created?: boolean;
|
|
11931
11939
|
}
|
|
11932
11940
|
|
|
11933
11941
|
export interface SipInboundCredentials {
|
|
@@ -13441,6 +13449,8 @@ export interface UpdateCommentRequest {
|
|
|
13441
13449
|
|
|
13442
13450
|
user_id?: string;
|
|
13443
13451
|
|
|
13452
|
+
attachments?: Attachment[];
|
|
13453
|
+
|
|
13444
13454
|
custom?: Record<string, any>;
|
|
13445
13455
|
|
|
13446
13456
|
user?: UserRequest;
|