@webitel/ui-sdk 25.10.78 → 25.10.79
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.
- package/package.json +1 -1
- package/src/locale/en/en.js +3 -0
- package/src/locale/es/es.js +3 -0
- package/src/locale/kz/kz.js +3 -0
- package/src/locale/pl/pl.js +3 -0
- package/src/locale/ro/ro.js +3 -0
- package/src/locale/ru/ru.js +3 -0
- package/src/locale/uk/uk.js +3 -0
- package/src/locale/uz/uz.js +3 -0
- package/src/locale/vi/vi.js +3 -0
- package/types/locale/en/en.d.ts +3 -0
- package/types/locale/es/es.d.ts +3 -0
- package/types/locale/i18n.d.ts +27 -0
- package/types/locale/index.d.ts +27 -0
- package/types/locale/kz/kz.d.ts +3 -0
- package/types/locale/pl/pl.d.ts +3 -0
- package/types/locale/ro/ro.d.ts +3 -0
- package/types/locale/ru/ru.d.ts +3 -0
- package/types/locale/uk/uk.d.ts +3 -0
- package/types/locale/uz/uz.d.ts +3 -0
- package/types/locale/vi/vi.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "25.10.
|
|
3
|
+
"version": "25.10.79",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
|
package/src/locale/en/en.js
CHANGED
|
@@ -770,6 +770,9 @@ export default deepmerge({
|
|
|
770
770
|
create: ({ named }) => `The ${named('entity').toLowerCase()} was saved`,
|
|
771
771
|
delete: ({ named }) => `The ${named('entity').toLowerCase()} was deleted`,
|
|
772
772
|
},
|
|
773
|
+
info: {
|
|
774
|
+
passwordExpirationMessage: 'Your password will expire in { days } days'
|
|
775
|
+
}
|
|
773
776
|
},
|
|
774
777
|
errorNotifications: {
|
|
775
778
|
chatHistoryApi: 'There was an error loading the chat history',
|
package/src/locale/es/es.js
CHANGED
|
@@ -761,6 +761,9 @@ export default {
|
|
|
761
761
|
delete: ({ named }) =>
|
|
762
762
|
`El ${named('entity').toLowerCase()} fue eliminado`,
|
|
763
763
|
},
|
|
764
|
+
info: {
|
|
765
|
+
passwordExpirationMessage: 'Tu contraseña expirará en { days } días'
|
|
766
|
+
}
|
|
764
767
|
},
|
|
765
768
|
errorNotifications: {
|
|
766
769
|
chatHistoryApi: 'Hubo un error al cargar el historial del chat',
|
package/src/locale/kz/kz.js
CHANGED
|
@@ -763,6 +763,9 @@ export default {
|
|
|
763
763
|
create: ({ named }) => `${named('entity').toLowerCase()} сақталды`,
|
|
764
764
|
delete: ({ named }) => `${named('entity').toLowerCase()} жойылды`,
|
|
765
765
|
},
|
|
766
|
+
info: {
|
|
767
|
+
passwordExpirationMessage: 'Сіздің құпия сөзіңіз { days } күннен кейін мерзімі аяқталады'
|
|
768
|
+
}
|
|
766
769
|
},
|
|
767
770
|
errorNotifications: {
|
|
768
771
|
chatHistoryApi: 'Чат тарихын жүктеу кезінде қате орын алды',
|
package/src/locale/pl/pl.js
CHANGED
|
@@ -763,6 +763,9 @@ export default {
|
|
|
763
763
|
create: ({ named }) => `${named('entity').toLowerCase()} został zapisany`,
|
|
764
764
|
delete: ({ named }) => `${named('entity').toLowerCase()} został usunięty`,
|
|
765
765
|
},
|
|
766
|
+
info: {
|
|
767
|
+
passwordExpirationMessage: 'Twoje hasło wygaśnie za { days } dni'
|
|
768
|
+
}
|
|
766
769
|
},
|
|
767
770
|
errorNotifications: {
|
|
768
771
|
chatHistoryApi: 'Wystąpił błąd podczas ładowania historii czatu',
|
package/src/locale/ro/ro.js
CHANGED
|
@@ -765,6 +765,9 @@ export default {
|
|
|
765
765
|
create: ({ named }) => `${named('entity').toLowerCase()} a fost salvat`,
|
|
766
766
|
delete: ({ named }) => `${named('entity').toLowerCase()} a fost șters`,
|
|
767
767
|
},
|
|
768
|
+
info: {
|
|
769
|
+
passwordExpirationMessage: 'Parola ta va expira în { days } zile'
|
|
770
|
+
}
|
|
768
771
|
},
|
|
769
772
|
errorNotifications: {
|
|
770
773
|
chatHistoryApi: 'A apărut o eroare la încărcarea istoricului chat-ului',
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -759,6 +759,9 @@ export default {
|
|
|
759
759
|
create: ({ named }) => `${named('entity')} был сохранён`,
|
|
760
760
|
delete: ({ named }) => `${named('entity')} был удалён`,
|
|
761
761
|
},
|
|
762
|
+
info: {
|
|
763
|
+
passwordExpirationMessage: 'Ваш пароль истечёт через { days } дн(я/ей)'
|
|
764
|
+
}
|
|
762
765
|
},
|
|
763
766
|
errorNotifications: {
|
|
764
767
|
chatHistoryApi: 'Произошла ошибка загрузки истории чата',
|
package/src/locale/uk/uk.js
CHANGED
|
@@ -758,6 +758,9 @@ export default {
|
|
|
758
758
|
create: ({ named }) => `${named('entity')} було збережено`,
|
|
759
759
|
delete: ({ named }) => `${named('entity')} було видалено`,
|
|
760
760
|
},
|
|
761
|
+
info: {
|
|
762
|
+
passwordExpirationMessage: 'Пароль спливе через { days } дн(і/ів)'
|
|
763
|
+
}
|
|
761
764
|
},
|
|
762
765
|
errorNotifications: {
|
|
763
766
|
chatHistoryApi: 'Сталася помилка завантаження історії чату',
|
package/src/locale/uz/uz.js
CHANGED
|
@@ -765,6 +765,9 @@ export default {
|
|
|
765
765
|
create: ({ named }) => `${named('entity').toLowerCase()} saqlandi`,
|
|
766
766
|
delete: ({ named }) => `${named('entity').toLowerCase()} o'chirildi`,
|
|
767
767
|
},
|
|
768
|
+
info: {
|
|
769
|
+
passwordExpirationMessage: 'Parolingiz { days } kundan keyin amal qilishdan chiqadi'
|
|
770
|
+
}
|
|
768
771
|
},
|
|
769
772
|
errorNotifications: {
|
|
770
773
|
chatHistoryApi: 'Chat tarixini yuklashda xatolik yuz berdi',
|
package/src/locale/vi/vi.js
CHANGED
|
@@ -765,6 +765,9 @@ export default {
|
|
|
765
765
|
create: ({ named }) => `${named('entity').toLowerCase()} đã được lưu`,
|
|
766
766
|
delete: ({ named }) => `${named('entity').toLowerCase()} đã bị xóa`,
|
|
767
767
|
},
|
|
768
|
+
info: {
|
|
769
|
+
passwordExpirationMessage: 'Mật khẩu của bạn sẽ hết hạn sau { days } ngày'
|
|
770
|
+
}
|
|
768
771
|
},
|
|
769
772
|
errorNotifications: {
|
|
770
773
|
chatHistoryApi: 'Đã xảy ra lỗi khi tải lịch sử trò chuyện',
|
package/types/locale/en/en.d.ts
CHANGED
package/types/locale/es/es.d.ts
CHANGED
|
@@ -956,6 +956,9 @@ declare namespace _default {
|
|
|
956
956
|
export { _delete_2 as delete };
|
|
957
957
|
}
|
|
958
958
|
export { success_1 as success };
|
|
959
|
+
export namespace info {
|
|
960
|
+
let passwordExpirationMessage: string;
|
|
961
|
+
}
|
|
959
962
|
}
|
|
960
963
|
export namespace errorNotifications {
|
|
961
964
|
let chatHistoryApi: string;
|
package/types/locale/i18n.d.ts
CHANGED
|
@@ -728,6 +728,9 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
728
728
|
named: any;
|
|
729
729
|
}) => string;
|
|
730
730
|
};
|
|
731
|
+
info: {
|
|
732
|
+
passwordExpirationMessage: string;
|
|
733
|
+
};
|
|
731
734
|
};
|
|
732
735
|
errorNotifications: {
|
|
733
736
|
chatHistoryApi: string;
|
|
@@ -1620,6 +1623,9 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1620
1623
|
named: any;
|
|
1621
1624
|
}) => string;
|
|
1622
1625
|
};
|
|
1626
|
+
info: {
|
|
1627
|
+
passwordExpirationMessage: string;
|
|
1628
|
+
};
|
|
1623
1629
|
};
|
|
1624
1630
|
errorNotifications: {
|
|
1625
1631
|
chatHistoryApi: string;
|
|
@@ -2496,6 +2502,9 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2496
2502
|
named: any;
|
|
2497
2503
|
}) => string;
|
|
2498
2504
|
};
|
|
2505
|
+
info: {
|
|
2506
|
+
passwordExpirationMessage: string;
|
|
2507
|
+
};
|
|
2499
2508
|
};
|
|
2500
2509
|
errorNotifications: {
|
|
2501
2510
|
chatHistoryApi: string;
|
|
@@ -3374,6 +3383,9 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
3374
3383
|
named: any;
|
|
3375
3384
|
}) => string;
|
|
3376
3385
|
};
|
|
3386
|
+
info: {
|
|
3387
|
+
passwordExpirationMessage: string;
|
|
3388
|
+
};
|
|
3377
3389
|
};
|
|
3378
3390
|
errorNotifications: {
|
|
3379
3391
|
chatHistoryApi: string;
|
|
@@ -4250,6 +4262,9 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
4250
4262
|
named: any;
|
|
4251
4263
|
}) => string;
|
|
4252
4264
|
};
|
|
4265
|
+
info: {
|
|
4266
|
+
passwordExpirationMessage: string;
|
|
4267
|
+
};
|
|
4253
4268
|
};
|
|
4254
4269
|
errorNotifications: {
|
|
4255
4270
|
chatHistoryApi: string;
|
|
@@ -5128,6 +5143,9 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
5128
5143
|
named: any;
|
|
5129
5144
|
}) => string;
|
|
5130
5145
|
};
|
|
5146
|
+
info: {
|
|
5147
|
+
passwordExpirationMessage: string;
|
|
5148
|
+
};
|
|
5131
5149
|
};
|
|
5132
5150
|
errorNotifications: {
|
|
5133
5151
|
chatHistoryApi: string;
|
|
@@ -6006,6 +6024,9 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
6006
6024
|
named: any;
|
|
6007
6025
|
}) => string;
|
|
6008
6026
|
};
|
|
6027
|
+
info: {
|
|
6028
|
+
passwordExpirationMessage: string;
|
|
6029
|
+
};
|
|
6009
6030
|
};
|
|
6010
6031
|
errorNotifications: {
|
|
6011
6032
|
chatHistoryApi: string;
|
|
@@ -6884,6 +6905,9 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
6884
6905
|
named: any;
|
|
6885
6906
|
}) => string;
|
|
6886
6907
|
};
|
|
6908
|
+
info: {
|
|
6909
|
+
passwordExpirationMessage: string;
|
|
6910
|
+
};
|
|
6887
6911
|
};
|
|
6888
6912
|
errorNotifications: {
|
|
6889
6913
|
chatHistoryApi: string;
|
|
@@ -7762,6 +7786,9 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
7762
7786
|
named: any;
|
|
7763
7787
|
}) => string;
|
|
7764
7788
|
};
|
|
7789
|
+
info: {
|
|
7790
|
+
passwordExpirationMessage: string;
|
|
7791
|
+
};
|
|
7765
7792
|
};
|
|
7766
7793
|
errorNotifications: {
|
|
7767
7794
|
chatHistoryApi: string;
|
package/types/locale/index.d.ts
CHANGED
|
@@ -738,6 +738,9 @@ export declare const messages: {
|
|
|
738
738
|
named: any;
|
|
739
739
|
}) => string;
|
|
740
740
|
};
|
|
741
|
+
info: {
|
|
742
|
+
passwordExpirationMessage: string;
|
|
743
|
+
};
|
|
741
744
|
};
|
|
742
745
|
errorNotifications: {
|
|
743
746
|
chatHistoryApi: string;
|
|
@@ -1630,6 +1633,9 @@ export declare const messages: {
|
|
|
1630
1633
|
named: any;
|
|
1631
1634
|
}) => string;
|
|
1632
1635
|
};
|
|
1636
|
+
info: {
|
|
1637
|
+
passwordExpirationMessage: string;
|
|
1638
|
+
};
|
|
1633
1639
|
};
|
|
1634
1640
|
errorNotifications: {
|
|
1635
1641
|
chatHistoryApi: string;
|
|
@@ -2506,6 +2512,9 @@ export declare const messages: {
|
|
|
2506
2512
|
named: any;
|
|
2507
2513
|
}) => string;
|
|
2508
2514
|
};
|
|
2515
|
+
info: {
|
|
2516
|
+
passwordExpirationMessage: string;
|
|
2517
|
+
};
|
|
2509
2518
|
};
|
|
2510
2519
|
errorNotifications: {
|
|
2511
2520
|
chatHistoryApi: string;
|
|
@@ -3384,6 +3393,9 @@ export declare const messages: {
|
|
|
3384
3393
|
named: any;
|
|
3385
3394
|
}) => string;
|
|
3386
3395
|
};
|
|
3396
|
+
info: {
|
|
3397
|
+
passwordExpirationMessage: string;
|
|
3398
|
+
};
|
|
3387
3399
|
};
|
|
3388
3400
|
errorNotifications: {
|
|
3389
3401
|
chatHistoryApi: string;
|
|
@@ -4260,6 +4272,9 @@ export declare const messages: {
|
|
|
4260
4272
|
named: any;
|
|
4261
4273
|
}) => string;
|
|
4262
4274
|
};
|
|
4275
|
+
info: {
|
|
4276
|
+
passwordExpirationMessage: string;
|
|
4277
|
+
};
|
|
4263
4278
|
};
|
|
4264
4279
|
errorNotifications: {
|
|
4265
4280
|
chatHistoryApi: string;
|
|
@@ -5138,6 +5153,9 @@ export declare const messages: {
|
|
|
5138
5153
|
named: any;
|
|
5139
5154
|
}) => string;
|
|
5140
5155
|
};
|
|
5156
|
+
info: {
|
|
5157
|
+
passwordExpirationMessage: string;
|
|
5158
|
+
};
|
|
5141
5159
|
};
|
|
5142
5160
|
errorNotifications: {
|
|
5143
5161
|
chatHistoryApi: string;
|
|
@@ -6016,6 +6034,9 @@ export declare const messages: {
|
|
|
6016
6034
|
named: any;
|
|
6017
6035
|
}) => string;
|
|
6018
6036
|
};
|
|
6037
|
+
info: {
|
|
6038
|
+
passwordExpirationMessage: string;
|
|
6039
|
+
};
|
|
6019
6040
|
};
|
|
6020
6041
|
errorNotifications: {
|
|
6021
6042
|
chatHistoryApi: string;
|
|
@@ -6894,6 +6915,9 @@ export declare const messages: {
|
|
|
6894
6915
|
named: any;
|
|
6895
6916
|
}) => string;
|
|
6896
6917
|
};
|
|
6918
|
+
info: {
|
|
6919
|
+
passwordExpirationMessage: string;
|
|
6920
|
+
};
|
|
6897
6921
|
};
|
|
6898
6922
|
errorNotifications: {
|
|
6899
6923
|
chatHistoryApi: string;
|
|
@@ -7772,6 +7796,9 @@ export declare const messages: {
|
|
|
7772
7796
|
named: any;
|
|
7773
7797
|
}) => string;
|
|
7774
7798
|
};
|
|
7799
|
+
info: {
|
|
7800
|
+
passwordExpirationMessage: string;
|
|
7801
|
+
};
|
|
7775
7802
|
};
|
|
7776
7803
|
errorNotifications: {
|
|
7777
7804
|
chatHistoryApi: string;
|
package/types/locale/kz/kz.d.ts
CHANGED
|
@@ -956,6 +956,9 @@ declare namespace _default {
|
|
|
956
956
|
export { _delete_2 as delete };
|
|
957
957
|
}
|
|
958
958
|
export { success_1 as success };
|
|
959
|
+
export namespace info {
|
|
960
|
+
let passwordExpirationMessage: string;
|
|
961
|
+
}
|
|
959
962
|
}
|
|
960
963
|
export namespace errorNotifications {
|
|
961
964
|
let chatHistoryApi: string;
|
package/types/locale/pl/pl.d.ts
CHANGED
|
@@ -956,6 +956,9 @@ declare namespace _default {
|
|
|
956
956
|
export { _delete_2 as delete };
|
|
957
957
|
}
|
|
958
958
|
export { success_1 as success };
|
|
959
|
+
export namespace info {
|
|
960
|
+
let passwordExpirationMessage: string;
|
|
961
|
+
}
|
|
959
962
|
}
|
|
960
963
|
export namespace errorNotifications {
|
|
961
964
|
let chatHistoryApi: string;
|
package/types/locale/ro/ro.d.ts
CHANGED
|
@@ -956,6 +956,9 @@ declare namespace _default {
|
|
|
956
956
|
export { _delete_2 as delete };
|
|
957
957
|
}
|
|
958
958
|
export { success_1 as success };
|
|
959
|
+
export namespace info {
|
|
960
|
+
let passwordExpirationMessage: string;
|
|
961
|
+
}
|
|
959
962
|
}
|
|
960
963
|
export namespace errorNotifications {
|
|
961
964
|
let chatHistoryApi: string;
|
package/types/locale/ru/ru.d.ts
CHANGED
|
@@ -954,6 +954,9 @@ declare namespace _default {
|
|
|
954
954
|
export { _delete_2 as delete };
|
|
955
955
|
}
|
|
956
956
|
export { success_1 as success };
|
|
957
|
+
export namespace info {
|
|
958
|
+
let passwordExpirationMessage: string;
|
|
959
|
+
}
|
|
957
960
|
}
|
|
958
961
|
export namespace errorNotifications {
|
|
959
962
|
let chatHistoryApi: string;
|
package/types/locale/uk/uk.d.ts
CHANGED
|
@@ -954,6 +954,9 @@ declare namespace _default {
|
|
|
954
954
|
export { _delete_2 as delete };
|
|
955
955
|
}
|
|
956
956
|
export { success_1 as success };
|
|
957
|
+
export namespace info {
|
|
958
|
+
let passwordExpirationMessage: string;
|
|
959
|
+
}
|
|
957
960
|
}
|
|
958
961
|
export namespace errorNotifications {
|
|
959
962
|
let chatHistoryApi: string;
|
package/types/locale/uz/uz.d.ts
CHANGED
|
@@ -956,6 +956,9 @@ declare namespace _default {
|
|
|
956
956
|
export { _delete_2 as delete };
|
|
957
957
|
}
|
|
958
958
|
export { success_1 as success };
|
|
959
|
+
export namespace info {
|
|
960
|
+
let passwordExpirationMessage: string;
|
|
961
|
+
}
|
|
959
962
|
}
|
|
960
963
|
export namespace errorNotifications {
|
|
961
964
|
let chatHistoryApi: string;
|
package/types/locale/vi/vi.d.ts
CHANGED
|
@@ -956,6 +956,9 @@ declare namespace _default {
|
|
|
956
956
|
export { _delete_2 as delete };
|
|
957
957
|
}
|
|
958
958
|
export { success_1 as success };
|
|
959
|
+
export namespace info {
|
|
960
|
+
let passwordExpirationMessage: string;
|
|
961
|
+
}
|
|
959
962
|
}
|
|
960
963
|
export namespace errorNotifications {
|
|
961
964
|
let chatHistoryApi: string;
|