NTP-27557 | initialization error fix for missing user details (#42)

* NTP-27557 | initialization error fix for missing user details

* NTP-27557 | package bump

* Publish

 - @universal-call-sdk/adapter-ameyo@1.2.6
 - @universal-call-sdk/common@1.2.6
 - @universal-call-sdk/core@1.2.6

---------

Co-authored-by: varnit.goyal <varnit.goyal@navi.com>
This commit is contained in:
vivek bhadola
2025-01-29 13:43:15 +05:30
committed by GitHub
parent e8ed3578df
commit 5c659e22d8
7 changed files with 29 additions and 5 deletions

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.6 (2025-01-29)
**Note:** Version bump only for package @universal-call-sdk/adapter-ameyo
## 1.2.3 (2025-01-28)
**Note:** Version bump only for package @universal-call-sdk/adapter-ameyo

View File

@@ -95,7 +95,7 @@ class AmeyoAdapter implements IAdapter {
}
private validateInitializationOptions(options: AmeyoInitializationOptions): void {
if (!options.baseUrl || !options.eventListenerUrl || !options.userName || !options.password || !options.loginUrl) {
if (!options?.baseUrl || !options?.eventListenerUrl || !options?.loginUrl) {
throw new Error('Missing required initialization options');
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "@universal-call-sdk/adapter-ameyo",
"version": "1.2.3",
"version": "1.2.6",
"type": "module",
"scripts": {
"dev": "vite",
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
"@universal-call-sdk/common": "^1.2.4",
"@universal-call-sdk/common": "^1.2.6",
"uuid": "^11.0.3"
},
"devDependencies": {

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.6 (2025-01-29)
**Note:** Version bump only for package @universal-call-sdk/common
## 1.2.4 (2025-01-28)
**Note:** Version bump only for package @universal-call-sdk/common

View File

@@ -1,6 +1,6 @@
{
"name": "@universal-call-sdk/common",
"version": "1.2.4",
"version": "1.2.6",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 1.2.6 (2025-01-29)
**Note:** Version bump only for package @universal-call-sdk/core
## 1.2.4 (2025-01-28)
**Note:** Version bump only for package @universal-call-sdk/core

View File

@@ -1,6 +1,6 @@
{
"name": "@universal-call-sdk/core",
"version": "1.2.4",
"version": "1.2.6",
"type": "module",
"scripts": {
"dev": "vite",