@stream-io/node-sdk 0.7.30 → 0.7.31

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.
@@ -7581,6 +7581,7 @@ export interface UpdateCommentRequest {
7581
7581
  skip_enrich_url?: boolean;
7582
7582
  skip_push?: boolean;
7583
7583
  user_id?: string;
7584
+ attachments?: Attachment[];
7584
7585
  custom?: Record<string, any>;
7585
7586
  user?: UserRequest;
7586
7587
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/node-sdk",
3
- "version": "0.7.30",
3
+ "version": "0.7.31",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
@@ -1007,6 +1007,7 @@ export class FeedsApi {
1007
1007
  skip_enrich_url: request?.skip_enrich_url,
1008
1008
  skip_push: request?.skip_push,
1009
1009
  user_id: request?.user_id,
1010
+ attachments: request?.attachments,
1010
1011
  custom: request?.custom,
1011
1012
  user: request?.user,
1012
1013
  };
@@ -13441,6 +13441,8 @@ export interface UpdateCommentRequest {
13441
13441
 
13442
13442
  user_id?: string;
13443
13443
 
13444
+ attachments?: Attachment[];
13445
+
13444
13446
  custom?: Record<string, any>;
13445
13447
 
13446
13448
  user?: UserRequest;