Skip to content

Commit e619f60

Browse files
Generate SDK with OpenAPI Generator Version (#64)
Co-authored-by: DX-Bandwidth <[email protected]>
1 parent bcb7973 commit e619f60

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

bandwidth.yml

+11
Original file line numberDiff line numberDiff line change
@@ -3801,6 +3801,8 @@ components:
38013801
$ref: '#/components/schemas/diversion'
38023802
stirShaken:
38033803
$ref: '#/components/schemas/stirShaken'
3804+
uui:
3805+
$ref: '#/components/schemas/uui'
38043806
machineDetectionCompleteCallback:
38053807
type: object
38063808
description: >-
@@ -4435,6 +4437,15 @@ components:
44354437
type: string
44364438
description: (optional) A unique origination identifier.
44374439
example: 99759086-1335-11ed-9bcf-5f7d464e91af
4440+
uui:
4441+
type: string
4442+
description: >-
4443+
The value of the `User-To-User` header to send within the initial
4444+
`INVITE`. Must include the encoding parameter as specified in RFC 7433.
4445+
Only `base64`, `jwt` and `hex` encoding are currently allowed. This
4446+
value, including the encoding specifier, may not exceed 256 characters.
4447+
example: bXktdXVp
4448+
maxLength: 256
44384449
codeRequest:
44394450
type: object
44404451
properties:

models/initiate-callback.ts

+6
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,12 @@ export interface InitiateCallback {
101101
* @memberof InitiateCallback
102102
*/
103103
'stirShaken'?: StirShaken;
104+
/**
105+
* The value of the `User-To-User` header to send within the initial `INVITE`. Must include the encoding parameter as specified in RFC 7433. Only `base64`, `jwt` and `hex` encoding are currently allowed. This value, including the encoding specifier, may not exceed 256 characters.
106+
* @type {string}
107+
* @memberof InitiateCallback
108+
*/
109+
'uui'?: string;
104110
}
105111

106112

0 commit comments

Comments
 (0)