Skip to content

Commit 831bcc6

Browse files
0.2.7-beta.2
1 parent 0595217 commit 831bcc6

File tree

73 files changed

+761
-2847
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+761
-2847
lines changed

global.d.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ interface QBUser {
102102
last_request_at: string;
103103
external_user_id: null;
104104
facebook_id: string | null;
105-
blob_id: null;
105+
blob_id: number | string | null;
106106
custom_data: string | null;
107107
age_over16: boolean;
108108
allow_statistics_analysis: boolean;
@@ -214,7 +214,7 @@ interface QBChatNewMessage {
214214
dialog_id: QBChatDialog['_id'];
215215
notification_type?: string;
216216
sender_id?: QBUser['id'];
217-
qb_message_action?: string; // 'forward' 'reply'
217+
qb_message_action?: 'forward' | 'reply';
218218
origin_sender_name?: string;
219219
qb_original_messages?: string;
220220
};
@@ -238,7 +238,7 @@ interface QBChatMessage {
238238
/** Date ISO string */
239239
updated_at: string;
240240
notification_type?: string;
241-
qb_message_action?: string; // 'forward' 'reply'
241+
qb_message_action?: 'forward' | 'reply';
242242
origin_sender_name?: string;
243243
qb_original_messages?: string;
244244
}
@@ -249,7 +249,6 @@ interface QBMessageStatusParams {
249249
userId: QBUser['id'];
250250
}
251251

252-
253252
interface QBChatXMPPMessage {
254253
id: string;
255254
dialog_id: QBChatDialog['_id'];
@@ -611,7 +610,7 @@ interface QBUsersModule {
611610
interface QBGetUserMediaParams {
612611
audio: MediaStreamConstraints['audio'];
613612
video: MediaStreamConstraints['video'];
614-
/** Id attribute of HTMLVideoElement */
613+
/** id attribute of HTMLVideoElement */
615614
elemId?: string;
616615
options?: {
617616
muted?: boolean;

package-lock.json

Lines changed: 109 additions & 125 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quickblox-react-ui-kit",
3-
"version": "0.2.6-patch",
3+
"version": "0.2.7-beta.2",
44
"main": "dist/index-ui.js",
55
"license": "MIT",
66
"keywords": [
@@ -25,10 +25,10 @@
2525
"@types/react": "^18.0.26",
2626
"@types/react-dom": "^18.0.9",
2727
"classnames": "^2.3.2",
28-
"qb-ai-answer-assistant": "^0.1.0",
29-
"qb-ai-core": "^0.1.0",
30-
"qb-ai-rephrase": "^0.1.0",
31-
"qb-ai-translate": "^0.1.0",
28+
"qb-ai-answer-assistant": "^0.1.2",
29+
"qb-ai-core": "^0.1.3",
30+
"qb-ai-rephrase": "^0.1.2",
31+
"qb-ai-translate": "^0.1.2",
3232
"react": "^18.2.0",
3333
"react-dom": "^18.2.0",
3434
"react-router-dom": "^6.11.1",
@@ -89,7 +89,7 @@
8989
"test": "react-scripts test",
9090
"lint": "eslint ./src",
9191
"eject": "react-scripts eject",
92-
"prepublishOnly": "npm run build"
92+
"prepublishOnly": "npm run build:lib"
9393
},
9494
"lint-staged": {
9595
"src/**/*.{ts,tsx}": "eslint"

0 commit comments

Comments
 (0)