Skip to content

Commit 5552252

Browse files
authored
Merge pull request #71 from FreeClimbAPI/VCSWP-22701
Resolve VCSWP-22701
2 parents 5cb4de0 + 8093d64 commit 5552252

File tree

177 files changed

+756
-740
lines changed

Some content is hidden

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

177 files changed

+756
-740
lines changed

.openapi-generator/FILES

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ models/StartRecordCall.ts
147147
models/TFN.ts
148148
models/TerminateConference.ts
149149
models/TranscribeUtterance.ts
150-
models/TranscribeUtteranceRecord.ts
150+
models/TranscribeUtteranceAllOf.ts
151+
models/TranscribeUtteranceAllOfRecord.ts
151152
models/Unpark.ts
152153
models/UpdateCallRequest.ts
153154
models/UpdateCallRequestStatus.ts

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
99

1010
None
1111

12+
<a name="3.6.1"></a>
13+
14+
## [3.6.1] - 2024-07-31
15+
16+
### Changed
17+
18+
- Manual changes removed and handled by code generation
19+
1220
<a name="3.6.0"></a>
1321

1422
## [3.6.0] - 2024-07-05

DefaultApi.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2308,12 +2308,12 @@ const apiInstance = new freeclimb.DefaultApi(configuration);
23082308

23092309
let body:freeclimb.DefaultApiListConferenceRecordingsRequest = {
23102310

2311+
// string | Show only Recordings made during the conference with this ID.
2312+
conferenceId: "conferenceId_example",
2313+
23112314
// string | Show only Recordings made during the Call with this ID. (optional)
23122315
callId: "callId_example",
23132316

2314-
// string | Show only Recordings made during the conference with this ID. (optional)
2315-
conferenceId: "conferenceId_example",
2316-
23172317
// string | Only show Recordings created on this date, formatted as *YYYY-MM-DD*. (optional)
23182318
dateCreated: "dateCreated_example",
23192319

@@ -2329,8 +2329,8 @@ apiInstance.listConferenceRecordings(body).then((data:any) => {
23292329

23302330
Name | Type | Description | Notes
23312331
------------- | ------------- | ------------- | -------------
2332+
**conferenceId** | [**string**] | Show only Recordings made during the conference with this ID. | defaults to undefined
23322333
**callId** | [**string**] | Show only Recordings made during the Call with this ID. | (optional) defaults to undefined
2333-
**conferenceId** | [**string**] | Show only Recordings made during the conference with this ID. | (optional) defaults to undefined
23342334
**dateCreated** | [**string**] | Only show Recordings created on this date, formatted as *YYYY-MM-DD*. | (optional) defaults to undefined
23352335

23362336

@@ -2891,7 +2891,6 @@ Name | Type | Description | Notes
28912891
# **makeAWebrtcJwt**
28922892
> string makeAWebrtcJwt(createWebRTCToken)
28932893
2894-
Make a JWT for WebRTC calling
28952894

28962895
### Example
28972896

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ For more information, please visit [https://www.freeclimb.com/support/](https://
1414
## Installing
1515

1616
```sh
17-
npm install @freeclimb/[email protected].0
17+
npm install @freeclimb/[email protected].1
1818
or
19-
yarn add @freeclimb/[email protected].0
19+
yarn add @freeclimb/[email protected].1
2020
```
2121

2222
## Getting Started

__tests__/generatedTests/AddToConference.spec.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { describe, expect, it } from "@jest/globals";
33

44
describe('AddToConference', () => {
55
let model: freeclimb.AddToConference = new freeclimb.AddToConference({
6+
67
allowCallControl: true,
78
callControlSequence: "test_callControlSequence",
89
callControlUrl: "test_callControlUrl",
@@ -13,13 +14,7 @@ describe('AddToConference', () => {
1314
startConfOnEnter: true,
1415
talk: true,
1516
})
16-
describe(".command", () => {
17-
it('resolves to particular value on initialization', () => {
18-
const value = "test_command"
19-
model.command = value
20-
expect(model.command).toBe(value)
21-
})
22-
})
17+
2318
describe(".allowCallControl", () => {
2419
it('resolves to particular value on initialization', () => {
2520
const value = true

__tests__/generatedTests/CallResult.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ describe('CallResult', () => {
7171
describe(".from", () => {
7272
it('resolves to particular value on initialization', () => {
7373
const value = "test_from"
74-
expect(model._from).toBe(value)
74+
expect(model._from).toStrictEqual(value)
7575
})
7676
})
7777
describe(".to", () => {

__tests__/generatedTests/CallResultAllOf.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ describe('CallResultAllOf', () => {
4343
describe(".from", () => {
4444
it('resolves to particular value on initialization', () => {
4545
const value = "test_from"
46-
expect(model._from).toBe(value)
46+
expect(model._from).toStrictEqual(value)
4747
})
4848
})
4949
describe(".to", () => {

__tests__/generatedTests/CreateConference.spec.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { describe, expect, it } from "@jest/globals";
33

44
describe('CreateConference', () => {
55
let model: freeclimb.CreateConference = new freeclimb.CreateConference({
6+
67
actionUrl: "https://123.abc",
78
alias: true,
89

@@ -11,13 +12,7 @@ describe('CreateConference', () => {
1112
statusCallbackUrl: "test_statusCallbackUrl",
1213
waitUrl: "test_waitUrl",
1314
})
14-
describe(".command", () => {
15-
it('resolves to particular value on initialization', () => {
16-
const value = "test_command"
17-
model.command = value
18-
expect(model.command).toBe(value)
19-
})
20-
})
15+
2116
describe(".actionUrl", () => {
2217
it('resolves to particular value on initialization', () => {
2318
const value = "https://123.abc"
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import * as freeclimb from '../../index'
2+
import { describe, expect, it } from "@jest/globals";
3+
4+
describe('CreateWebRTCToken', () => {
5+
let model: freeclimb.CreateWebRTCToken = new freeclimb.CreateWebRTCToken({
6+
to: "test_to",
7+
_from: "test_from",
8+
uses: 1,
9+
})
10+
describe(".to", () => {
11+
it('resolves to particular value on initialization', () => {
12+
const value = "test_to"
13+
expect(model.to).toBe(value)
14+
})
15+
})
16+
describe(".from", () => {
17+
it('resolves to particular value on initialization', () => {
18+
const value = "test_from"
19+
expect(model._from).toStrictEqual(value)
20+
})
21+
})
22+
describe(".uses", () => {
23+
it('resolves to particular value on initialization', () => {
24+
const value = 1
25+
expect(model.uses).toBe(value)
26+
})
27+
})
28+
})

__tests__/generatedTests/Dequeue.spec.ts

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)