Skip to content

Commit 8093d64

Browse files
author
Kate Brune
committed
add Set export
1 parent e14b93c commit 8093d64

File tree

9 files changed

+18
-7
lines changed

9 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ None
1515

1616
### Changed
1717

18-
- GetDigit initialTimeoutMS property type change from string to integer
18+
- Manual changes removed and handled by code generation
1919

2020
<a name="3.6.0"></a>
2121

DefaultApi.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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

apis/DefaultApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1982,7 +1982,6 @@ export class DefaultApiRequestFactory extends BaseAPIRequestFactory {
19821982

19831983
/**
19841984
* Make a JWT for WebRTC calling
1985-
* Make a JWT for WebRTC calling
19861985
19871986
* @param createWebRTCToken Information needed to craft a JWT compatible with the platforms WebRTC APIs
19881987
*/

models/SMSTenDLCCampaign.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* Do not edit the class manually.
1111
*/
1212

13+
import { Set } from './Set';
1314
import { HttpFile } from '../http/http';
1415

1516
export enum SMSTenDLCCampaignStatusEnum {

models/Set.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* This is a workaround
3+
*
4+
* openapi-generator typescript was adding 'Set' to tsImports, imports
5+
* on models that have fields that are arrays with "uniqueItems" set
6+
*/
7+
// @ts-ignore
8+
export { Set };

openapi.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2461,6 +2461,7 @@
24612461
"x-has-writer": true,
24622462
"description": "Current campaign status. Possible values: ACTIVE, EXPIRED. A newly created campaign defaults to ACTIVE status. ",
24632463
"x-enum-type": "SMSTenDLCCampaignStatusEnum",
2464+
"x-enum-type-c-sharp": "StatusEnum",
24642465
"enum": ["ACTIVE", "EXPIRED"],
24652466
"x-enum-varnames": ["ACTIVE", "EXPIRED"]
24662467
},
@@ -2704,6 +2705,7 @@
27042705
"x-has-writer": true,
27052706
"description": "Current campaign status. Possible values: ACTIVE, EXPIRED. A newly created campaign defaults to ACTIVE status. ",
27062707
"x-enum-type": "SMSTenDLCPartnerCampaignStatusEnum",
2708+
"x-enum-type-c-sharp": "StatusEnum",
27072709
"enum": ["ACTIVE", "EXPIRED"],
27082710
"x-enum-varnames": ["ACTIVE", "EXPIRED"]
27092711
},
@@ -3001,6 +3003,7 @@
30013003
"x-has-writer": true,
30023004
"description": "Entity type behind the brand. This is the form of business establishment.",
30033005
"x-enum-type": "SMSTenDLCBrandEntityTypeEnum",
3006+
"x-enum-type-c-sharp": "EntityTypeEnum",
30043007
"enum": [
30053008
"PRIVATE_PROFIT",
30063009
"PUBLIC_PROFIT",
@@ -3115,6 +3118,7 @@
31153118
"description": "(Required for public company) stock exchange.",
31163119
"example": "NASDAQ",
31173120
"x-enum-type": "SMSTenDLCBrandStockExchangeEnum",
3121+
"x-enum-type-c-sharp": "StockExchangeEnum",
31183122
"enum": [
31193123
"NONE",
31203124
"NASDAQ",
@@ -3190,6 +3194,7 @@
31903194
"x-has-writer": true,
31913195
"description": "Brand relationship to the CSP",
31923196
"x-enum-type": "SMSTenDLCBrandBrandRelationshipEnum",
3197+
"x-enum-type-c-sharp": "BrandRelationshipEnum",
31933198
"enum": [
31943199
"BASIC_ACCOUNT",
31953200
"SMALL_ACCOUNT",
@@ -3219,6 +3224,7 @@
32193224
"type": "string",
32203225
"x-has-writer": true,
32213226
"x-enum-type": "SMSTenDLCBrandAltBusinessIdTypeEnum",
3227+
"x-enum-type-c-sharp": "AltBusinessIdTypeEnum",
32223228
"enum": ["NONE", "DUNS", "GIIN", "LEI"],
32233229
"x-enum-varnames": ["NONE", "DUNS", "GIIN", "LEI"],
32243230
"description": "The type of the Alternative business identifier"
@@ -3252,6 +3258,7 @@
32523258
"x-has-writer": true,
32533259
"description": "TCR assessment of the brand identification status.",
32543260
"x-enum-type": "SMSTenDLCBrandIdentityStatusEnum",
3261+
"x-enum-type-c-sharp": "IdentityStatusEnum",
32553262
"enum": [
32563263
"SELF_DECLARED",
32573264
"UNVERIFIED",
@@ -3355,6 +3362,7 @@
33553362
"x-has-writer": true,
33563363
"description": "Current toll-free campaign registration status.Possible values: UNREGISTERED,INITIATED,PENDING,DECLINED,REGISTERED. A newly created campaign defaults to INITIATED status. ",
33573364
"x-enum-type": "SMSTollFreeCampaignRegistrationStatusEnum",
3365+
"x-enum-type-c-sharp": "RegistrationStatusEnum",
33583366
"enum": [
33593367
"UNREGISTERED",
33603368
"INITIATED",
@@ -4361,7 +4369,6 @@
43614369
"/Accounts/{accountId}/Calls/WebRTC/Token": {
43624370
"post": {
43634371
"summary": "Make a JWT for WebRTC calling",
4364-
"description": "Make a JWT for WebRTC calling",
43654372
"operationId": "make-a-webrtc-jwt",
43664373
"x-web-rtc": true,
43674374
"parameters": [

types/ObjectParamAPI.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,6 @@ export class ObjectDefaultApi {
15181518
}
15191519

15201520
/**
1521-
* Make a JWT for WebRTC calling
15221521
* Make a JWT for WebRTC calling
15231522
* @param param the request object
15241523
*/

types/ObservableAPI.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1384,7 +1384,6 @@ export class ObservableDefaultApi {
13841384

13851385
/**
13861386
* Make a JWT for WebRTC calling
1387-
* Make a JWT for WebRTC calling
13881387
13891388
* @param createWebRTCToken Information needed to craft a JWT compatible with the platforms WebRTC APIs
13901389

types/PromiseAPI.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,6 @@ export class PromiseDefaultApi {
750750

751751
/**
752752
* Make a JWT for WebRTC calling
753-
* Make a JWT for WebRTC calling
754753
755754
* @param createWebRTCToken Information needed to craft a JWT compatible with the platforms WebRTC APIs
756755

0 commit comments

Comments
 (0)