diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4e5f9cd..301c10f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
None
+
+
+## [4.1.1] - 2025-02-18
+
+### Changed
+
+- Make statusCallbackURL property mandatory for CreateConference
+
## [4.1.0] - 2025-02-05
diff --git a/README.md b/README.md
index 483b23f..cfc632c 100644
--- a/README.md
+++ b/README.md
@@ -14,9 +14,9 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
## Installing
```sh
-npm install @freeclimb/sdk@4.1.0
+npm install @freeclimb/sdk@4.1.1
or
-yarn add @freeclimb/sdk@4.1.0
+yarn add @freeclimb/sdk@4.1.1
```
## Getting Started
diff --git a/__tests__/testValues.ts b/__tests__/testValues.ts
index 650dc39..9fe1344 100644
--- a/__tests__/testValues.ts
+++ b/__tests__/testValues.ts
@@ -214,6 +214,7 @@ export const requestBody = {
}),
createAConference: new CreateConferenceRequest({
alias: "TEST_CONFERENCE",
+ statusCallbackUrl: "https://test.com",
}),
filterLogs: new FilterLogsRequest({
pql: "TEST_PQL",
diff --git a/models/CreateConferenceRequest.ts b/models/CreateConferenceRequest.ts
index 630e528..95acc01 100644
--- a/models/CreateConferenceRequest.ts
+++ b/models/CreateConferenceRequest.ts
@@ -25,7 +25,7 @@ interface ArgumentsType {
playBeep?: PlayBeep;
record?: boolean;
waitUrl?: string;
- statusCallbackUrl?: string;
+ statusCallbackUrl: string;
}
export class CreateConferenceRequest {
/**
@@ -44,7 +44,7 @@ export class CreateConferenceRequest {
/**
* This URL is invoked when the status of the Conference changes. For more information, see **statusCallbackUrl** (below).
*/
- "statusCallbackUrl"?: string;
+ "statusCallbackUrl": string;
static readonly discriminator: string | undefined = undefined;
diff --git a/openapi.json b/openapi.json
index 0302013..901d7ea 100644
--- a/openapi.json
+++ b/openapi.json
@@ -3658,6 +3658,7 @@
},
"CreateConferenceRequest": {
"type": "object",
+ "required": ["statusCallbackUrl"],
"properties": {
"alias": {
"type": "string",
diff --git a/package.json b/package.json
index 6aace06..9a80aae 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@freeclimb/sdk",
- "version": "4.1.0",
+ "version": "4.1.1",
"description": "OpenAPI client for @freeclimb/sdk",
"author": "OpenAPI-Generator Contributors",
"keywords": [
@@ -37,7 +37,7 @@
"fast-xml-parser": "^4.5.0",
"form-data": "^2.5.0",
"json5": "^2.2.3",
- "jsonpath-plus": "^10.0.0",
+ "jsonpath-plus": "^10.3.0",
"moment": "^2.29.4",
"node-fetch": "^2.6.0",
"qs": "^6.11.1",
diff --git a/yarn.lock b/yarn.lock
index 4762fa5..a016285 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3063,7 +3063,7 @@ jsonc-parser@~2.2.1:
resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-2.2.1.tgz#db73cd59d78cce28723199466b2a03d1be1df2bc"
integrity sha512-o6/yDBYccGvTz1+QFevz6l6OBZ2+fMVu2JZ9CIhzsYRX4mjaK5IyX9eldUdCmga16zlgQxyrj5pt9kzuj2C02w==
-jsonpath-plus@^10.0.0, jsonpath-plus@^10.1.0:
+jsonpath-plus@^10.1.0:
version "10.2.0"
resolved "https://registry.yarnpkg.com/jsonpath-plus/-/jsonpath-plus-10.2.0.tgz#84d680544d9868579cc7c8f59bbe153a5aad54c4"
integrity sha512-T9V+8iNYKFL2n2rF+w02LBOT2JjDnTjioaNFrxRy0Bv1y/hNsqR/EBK7Ojy2ythRHwmz2cRIls+9JitQGZC/sw==
@@ -3072,6 +3072,15 @@ jsonpath-plus@^10.0.0, jsonpath-plus@^10.1.0:
"@jsep-plugin/regex" "^1.0.4"
jsep "^1.4.0"
+jsonpath-plus@^10.3.0:
+ version "10.3.0"
+ resolved "https://registry.yarnpkg.com/jsonpath-plus/-/jsonpath-plus-10.3.0.tgz#59e22e4fa2298c68dfcd70659bb47f0cad525238"
+ integrity sha512-8TNmfeTCk2Le33A3vRRwtuworG/L5RrgMvdjhKZxvyShO+mBu2fP50OWUjRLNtvw344DdDarFh9buFAZs5ujeA==
+ dependencies:
+ "@jsep-plugin/assignment" "^1.3.0"
+ "@jsep-plugin/regex" "^1.0.4"
+ jsep "^1.4.0"
+
jsonpath-plus@^7.2.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/jsonpath-plus/-/jsonpath-plus-7.2.0.tgz#7ad94e147b3ed42f7939c315d2b9ce490c5a3899"