stream-chat-angular 4.49.0 → 4.49.1

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.
@@ -83,7 +83,6 @@ export declare const en: {
83
83
  'Sending links is not allowed in this conversation': string;
84
84
  "You can't send messages in this channel": string;
85
85
  "You can't send thread replies in this channel": string;
86
- 'Unsupported file type: {{type}}': string;
87
86
  'Message not found': string;
88
87
  'No chats here yet\u2026': string;
89
88
  'user is typing': string;
@@ -1 +1 @@
1
- export declare const version = "4.49.0";
1
+ export declare const version = "4.49.1";
@@ -356,7 +356,7 @@
356
356
  return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
357
357
  }
358
358
 
359
- var version = '4.49.0';
359
+ var version = '4.49.1';
360
360
 
361
361
  /**
362
362
  * The `NotificationService` can be used to add or remove notifications. By default the [`NotificationList`](../components/NotificationListComponent.mdx) component displays the currently active notifications.
@@ -2925,7 +2925,7 @@
2925
2925
  'Error unmuting a user ...': 'Error unmuting a user ...',
2926
2926
  'Error uploading file': 'Error uploading file "{{ name }}"',
2927
2927
  'Error uploading file, maximum file size exceeded': 'Error uploading "{{ name }}", maximum file size {{ limit }} exceeded',
2928
- 'Error uploading file, extension not supported': 'Error uploading "{{ name }}", extension {{ ext }} not supported',
2928
+ 'Error uploading file, extension not supported': 'Error uploading "{{ name }}", type {{ ext }} not supported',
2929
2929
  'Error deleting attachment': 'Error deleting attachment',
2930
2930
  'Error · Unsent': "Message couldn't be sent",
2931
2931
  'Error: {{ errorMessage }}': 'Error: {{ errorMessage }}',
@@ -2985,7 +2985,6 @@
2985
2985
  'Sending links is not allowed in this conversation': 'Sending links is not allowed in this conversation',
2986
2986
  "You can't send messages in this channel": "You can't send messages in this channel",
2987
2987
  "You can't send thread replies in this channel": "You can't send thread replies in this channel",
2988
- 'Unsupported file type: {{type}}': 'Unsupported file type: {{type}}',
2989
2988
  'Message not found': 'Message not found',
2990
2989
  'No chats here yet…': 'No chats here yet…',
2991
2990
  'user is typing': '{{ user }} is typing',
@@ -4441,7 +4440,7 @@
4441
4440
  hasBlockedMimeType ||
4442
4441
  hasNotAllowedExtension ||
4443
4442
  hasNotAllowedMimeType) {
4444
- _this.notificationService.addTemporaryNotification('streamChat.Unsupported file type: {{type}}', undefined, undefined, { type: f.type });
4443
+ _this.notificationService.addTemporaryNotification('streamChat.Error uploading file, extension not supported', undefined, undefined, { name: f.name, ext: f.type });
4445
4444
  isValid = false;
4446
4445
  }
4447
4446
  });