yellowgrid-api-ts 3.2.280 → 3.2.282
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +101 -101
- package/dist/api.d.ts +101 -101
- package/docs/TcxExtsEntity.md +8 -8
- package/docs/TcxNumbersEntity.md +3 -3
- package/docs/TcxPhoneModel.md +6 -6
- package/docs/TcxPhonesEntity.md +6 -6
- package/docs/TcxSbcEntity.md +16 -16
- package/docs/TcxSbcModel.md +16 -16
- package/docs/TcxSetupEntity.md +25 -25
- package/docs/TcxSipTrunksEntity.md +13 -13
- package/docs/TcxWizardModel.md +8 -8
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -9457,35 +9457,35 @@ export interface TcxExtsEntity {
|
|
|
9457
9457
|
/**
|
|
9458
9458
|
* id
|
|
9459
9459
|
*/
|
|
9460
|
-
'id'
|
|
9460
|
+
'id'?: number | null;
|
|
9461
9461
|
/**
|
|
9462
9462
|
* Extension Number
|
|
9463
9463
|
*/
|
|
9464
|
-
'extNo'
|
|
9464
|
+
'extNo'?: string | null;
|
|
9465
9465
|
/**
|
|
9466
9466
|
* First Name
|
|
9467
9467
|
*/
|
|
9468
|
-
'firstName'
|
|
9468
|
+
'firstName'?: string | null;
|
|
9469
9469
|
/**
|
|
9470
9470
|
* Last Name
|
|
9471
9471
|
*/
|
|
9472
|
-
'lastName'
|
|
9472
|
+
'lastName'?: string | null;
|
|
9473
9473
|
/**
|
|
9474
9474
|
* Email Address
|
|
9475
9475
|
*/
|
|
9476
|
-
'email'
|
|
9476
|
+
'email'?: string | null;
|
|
9477
9477
|
/**
|
|
9478
9478
|
* DDI
|
|
9479
9479
|
*/
|
|
9480
|
-
'ddi'
|
|
9480
|
+
'ddi'?: string | null;
|
|
9481
9481
|
/**
|
|
9482
9482
|
* Outbound CLI
|
|
9483
9483
|
*/
|
|
9484
|
-
'cli'
|
|
9484
|
+
'cli'?: string | null;
|
|
9485
9485
|
/**
|
|
9486
9486
|
* Recording Enabled
|
|
9487
9487
|
*/
|
|
9488
|
-
'recording'
|
|
9488
|
+
'recording'?: boolean | null;
|
|
9489
9489
|
}
|
|
9490
9490
|
/**
|
|
9491
9491
|
* 3CX Installation
|
|
@@ -9892,15 +9892,15 @@ export interface TcxNumbersEntity {
|
|
|
9892
9892
|
/**
|
|
9893
9893
|
* id
|
|
9894
9894
|
*/
|
|
9895
|
-
'id'
|
|
9895
|
+
'id'?: number | null;
|
|
9896
9896
|
/**
|
|
9897
9897
|
* Number
|
|
9898
9898
|
*/
|
|
9899
|
-
'number'
|
|
9899
|
+
'number'?: string | null;
|
|
9900
9900
|
/**
|
|
9901
9901
|
* Label
|
|
9902
9902
|
*/
|
|
9903
|
-
'label'
|
|
9903
|
+
'label'?: string | null;
|
|
9904
9904
|
}
|
|
9905
9905
|
/**
|
|
9906
9906
|
* 3CX Wizard Office Hours
|
|
@@ -9971,27 +9971,27 @@ export interface TcxPhoneModel {
|
|
|
9971
9971
|
/**
|
|
9972
9972
|
* id
|
|
9973
9973
|
*/
|
|
9974
|
-
'id'
|
|
9974
|
+
'id'?: number | null;
|
|
9975
9975
|
/**
|
|
9976
9976
|
* Phone Model
|
|
9977
9977
|
*/
|
|
9978
|
-
'phone'
|
|
9978
|
+
'phone'?: string | null;
|
|
9979
9979
|
/**
|
|
9980
9980
|
* MAC Address
|
|
9981
9981
|
*/
|
|
9982
|
-
'mac'
|
|
9982
|
+
'mac'?: string | null;
|
|
9983
9983
|
/**
|
|
9984
9984
|
* SKU
|
|
9985
9985
|
*/
|
|
9986
|
-
'sku'
|
|
9986
|
+
'sku'?: string | null;
|
|
9987
9987
|
/**
|
|
9988
9988
|
* Extension Number
|
|
9989
9989
|
*/
|
|
9990
|
-
'extNo'
|
|
9990
|
+
'extNo'?: string | null;
|
|
9991
9991
|
/**
|
|
9992
9992
|
* SBC ID
|
|
9993
9993
|
*/
|
|
9994
|
-
'sbcId'
|
|
9994
|
+
'sbcId'?: string | null;
|
|
9995
9995
|
/**
|
|
9996
9996
|
* Phone exists on order
|
|
9997
9997
|
*/
|
|
@@ -10004,27 +10004,27 @@ export interface TcxPhonesEntity {
|
|
|
10004
10004
|
/**
|
|
10005
10005
|
* id
|
|
10006
10006
|
*/
|
|
10007
|
-
'id'
|
|
10007
|
+
'id'?: number | null;
|
|
10008
10008
|
/**
|
|
10009
10009
|
* Phone Model
|
|
10010
10010
|
*/
|
|
10011
|
-
'phone'
|
|
10011
|
+
'phone'?: string | null;
|
|
10012
10012
|
/**
|
|
10013
10013
|
* MAC Address
|
|
10014
10014
|
*/
|
|
10015
|
-
'mac'
|
|
10015
|
+
'mac'?: string | null;
|
|
10016
10016
|
/**
|
|
10017
10017
|
* SKU
|
|
10018
10018
|
*/
|
|
10019
|
-
'sku'
|
|
10019
|
+
'sku'?: string | null;
|
|
10020
10020
|
/**
|
|
10021
10021
|
* Extension Number
|
|
10022
10022
|
*/
|
|
10023
|
-
'extNo'
|
|
10023
|
+
'extNo'?: string | null;
|
|
10024
10024
|
/**
|
|
10025
10025
|
* SBC ID
|
|
10026
10026
|
*/
|
|
10027
|
-
'sbcId'
|
|
10027
|
+
'sbcId'?: string | null;
|
|
10028
10028
|
}
|
|
10029
10029
|
/**
|
|
10030
10030
|
* 3CX Remote Storage
|
|
@@ -10091,67 +10091,67 @@ export interface TcxSbcEntity {
|
|
|
10091
10091
|
/**
|
|
10092
10092
|
* id
|
|
10093
10093
|
*/
|
|
10094
|
-
'id'
|
|
10094
|
+
'id'?: number | null;
|
|
10095
10095
|
/**
|
|
10096
10096
|
* SBC ID
|
|
10097
10097
|
*/
|
|
10098
|
-
'sbcId'
|
|
10098
|
+
'sbcId'?: number | null;
|
|
10099
10099
|
/**
|
|
10100
10100
|
* 3CX URL
|
|
10101
10101
|
*/
|
|
10102
|
-
'tcxUrl'
|
|
10102
|
+
'tcxUrl'?: string | null;
|
|
10103
10103
|
/**
|
|
10104
10104
|
* 3CX SBC Auth Key
|
|
10105
10105
|
*/
|
|
10106
|
-
'tcxKey'
|
|
10106
|
+
'tcxKey'?: string | null;
|
|
10107
10107
|
/**
|
|
10108
10108
|
* Label
|
|
10109
10109
|
*/
|
|
10110
|
-
'label'
|
|
10110
|
+
'label'?: string | null;
|
|
10111
10111
|
/**
|
|
10112
10112
|
* IP Address
|
|
10113
10113
|
*/
|
|
10114
|
-
'ipAddress'
|
|
10114
|
+
'ipAddress'?: string | null;
|
|
10115
10115
|
/**
|
|
10116
10116
|
* Subnet Mask
|
|
10117
10117
|
*/
|
|
10118
|
-
'netmask'
|
|
10118
|
+
'netmask'?: string | null;
|
|
10119
10119
|
/**
|
|
10120
10120
|
* Default Gateway
|
|
10121
10121
|
*/
|
|
10122
|
-
'defaultGateway'
|
|
10122
|
+
'defaultGateway'?: string | null;
|
|
10123
10123
|
/**
|
|
10124
10124
|
* DNS 1
|
|
10125
10125
|
*/
|
|
10126
|
-
'dns1'
|
|
10126
|
+
'dns1'?: string | null;
|
|
10127
10127
|
/**
|
|
10128
10128
|
* DNS 2
|
|
10129
10129
|
*/
|
|
10130
|
-
'dns2'
|
|
10130
|
+
'dns2'?: string | null;
|
|
10131
10131
|
/**
|
|
10132
10132
|
* Site Address Line 1
|
|
10133
10133
|
*/
|
|
10134
|
-
'address1'
|
|
10134
|
+
'address1'?: string | null;
|
|
10135
10135
|
/**
|
|
10136
10136
|
* Site Address Line 2
|
|
10137
10137
|
*/
|
|
10138
|
-
'address2'
|
|
10138
|
+
'address2'?: string | null;
|
|
10139
10139
|
/**
|
|
10140
10140
|
* Site City
|
|
10141
10141
|
*/
|
|
10142
|
-
'city'
|
|
10142
|
+
'city'?: string | null;
|
|
10143
10143
|
/**
|
|
10144
10144
|
* Site Postal Code
|
|
10145
10145
|
*/
|
|
10146
|
-
'postalCode'
|
|
10146
|
+
'postalCode'?: string | null;
|
|
10147
10147
|
/**
|
|
10148
10148
|
* Site Primary Contact
|
|
10149
10149
|
*/
|
|
10150
|
-
'primaryContact'
|
|
10150
|
+
'primaryContact'?: string | null;
|
|
10151
10151
|
/**
|
|
10152
10152
|
* Site Technical Contact
|
|
10153
10153
|
*/
|
|
10154
|
-
'technicalContact'
|
|
10154
|
+
'technicalContact'?: string | null;
|
|
10155
10155
|
}
|
|
10156
10156
|
/**
|
|
10157
10157
|
* 3CX Wizard SBC
|
|
@@ -10160,67 +10160,67 @@ export interface TcxSbcModel {
|
|
|
10160
10160
|
/**
|
|
10161
10161
|
* id
|
|
10162
10162
|
*/
|
|
10163
|
-
'id'
|
|
10163
|
+
'id'?: number | null;
|
|
10164
10164
|
/**
|
|
10165
10165
|
* SBC ID
|
|
10166
10166
|
*/
|
|
10167
|
-
'sbcId'
|
|
10167
|
+
'sbcId'?: number | null;
|
|
10168
10168
|
/**
|
|
10169
10169
|
* 3CX URL
|
|
10170
10170
|
*/
|
|
10171
|
-
'tcxUrl'
|
|
10171
|
+
'tcxUrl'?: string | null;
|
|
10172
10172
|
/**
|
|
10173
10173
|
* 3CX SBC Auth Key
|
|
10174
10174
|
*/
|
|
10175
|
-
'tcxKey'
|
|
10175
|
+
'tcxKey'?: string | null;
|
|
10176
10176
|
/**
|
|
10177
10177
|
* Label
|
|
10178
10178
|
*/
|
|
10179
|
-
'label'
|
|
10179
|
+
'label'?: string | null;
|
|
10180
10180
|
/**
|
|
10181
10181
|
* IP Address
|
|
10182
10182
|
*/
|
|
10183
|
-
'ipAddress'
|
|
10183
|
+
'ipAddress'?: string | null;
|
|
10184
10184
|
/**
|
|
10185
10185
|
* Subnet Mask
|
|
10186
10186
|
*/
|
|
10187
|
-
'netmask'
|
|
10187
|
+
'netmask'?: string | null;
|
|
10188
10188
|
/**
|
|
10189
10189
|
* Default Gateway
|
|
10190
10190
|
*/
|
|
10191
|
-
'defaultGateway'
|
|
10191
|
+
'defaultGateway'?: string | null;
|
|
10192
10192
|
/**
|
|
10193
10193
|
* DNS 1
|
|
10194
10194
|
*/
|
|
10195
|
-
'dns1'
|
|
10195
|
+
'dns1'?: string | null;
|
|
10196
10196
|
/**
|
|
10197
10197
|
* DNS 2
|
|
10198
10198
|
*/
|
|
10199
|
-
'dns2'
|
|
10199
|
+
'dns2'?: string | null;
|
|
10200
10200
|
/**
|
|
10201
10201
|
* Site Address Line 1
|
|
10202
10202
|
*/
|
|
10203
|
-
'address1'
|
|
10203
|
+
'address1'?: string | null;
|
|
10204
10204
|
/**
|
|
10205
10205
|
* Site Address Line 2
|
|
10206
10206
|
*/
|
|
10207
|
-
'address2'
|
|
10207
|
+
'address2'?: string | null;
|
|
10208
10208
|
/**
|
|
10209
10209
|
* Site City
|
|
10210
10210
|
*/
|
|
10211
|
-
'city'
|
|
10211
|
+
'city'?: string | null;
|
|
10212
10212
|
/**
|
|
10213
10213
|
* Site Postal Code
|
|
10214
10214
|
*/
|
|
10215
|
-
'postalCode'
|
|
10215
|
+
'postalCode'?: string | null;
|
|
10216
10216
|
/**
|
|
10217
10217
|
* Site Primary Contact
|
|
10218
10218
|
*/
|
|
10219
|
-
'primaryContact'
|
|
10219
|
+
'primaryContact'?: string | null;
|
|
10220
10220
|
/**
|
|
10221
10221
|
* Site Technical Contact
|
|
10222
10222
|
*/
|
|
10223
|
-
'technicalContact'
|
|
10223
|
+
'technicalContact'?: string | null;
|
|
10224
10224
|
}
|
|
10225
10225
|
/**
|
|
10226
10226
|
* 3CX SBC Response
|
|
@@ -10242,7 +10242,7 @@ export interface TcxSetupEntity {
|
|
|
10242
10242
|
/**
|
|
10243
10243
|
* Creation Date
|
|
10244
10244
|
*/
|
|
10245
|
-
'creation'
|
|
10245
|
+
'creation'?: string | null;
|
|
10246
10246
|
/**
|
|
10247
10247
|
* Install Type
|
|
10248
10248
|
*/
|
|
@@ -10250,99 +10250,99 @@ export interface TcxSetupEntity {
|
|
|
10250
10250
|
/**
|
|
10251
10251
|
* 3CX Install Version
|
|
10252
10252
|
*/
|
|
10253
|
-
'installVersion'
|
|
10253
|
+
'installVersion'?: number | null;
|
|
10254
10254
|
/**
|
|
10255
10255
|
* Linked Order ID
|
|
10256
10256
|
*/
|
|
10257
|
-
'orderId'
|
|
10257
|
+
'orderId'?: number | null;
|
|
10258
10258
|
/**
|
|
10259
10259
|
* Customer ID
|
|
10260
10260
|
*/
|
|
10261
|
-
'customerId'
|
|
10261
|
+
'customerId'?: number | null;
|
|
10262
10262
|
/**
|
|
10263
10263
|
* 3CX System Owner Username
|
|
10264
10264
|
*/
|
|
10265
|
-
'username'
|
|
10265
|
+
'username'?: string | null;
|
|
10266
10266
|
/**
|
|
10267
10267
|
* 3CX System Owner Password
|
|
10268
10268
|
*/
|
|
10269
|
-
'password'
|
|
10269
|
+
'password'?: string | null;
|
|
10270
10270
|
/**
|
|
10271
10271
|
* Primary Contact Name
|
|
10272
10272
|
*/
|
|
10273
|
-
'primaryContactName'
|
|
10273
|
+
'primaryContactName'?: string | null;
|
|
10274
10274
|
/**
|
|
10275
10275
|
* Primary Contact Number
|
|
10276
10276
|
*/
|
|
10277
|
-
'primaryContactNumber'
|
|
10277
|
+
'primaryContactNumber'?: string | null;
|
|
10278
10278
|
/**
|
|
10279
10279
|
* Technical Contact Name
|
|
10280
10280
|
*/
|
|
10281
|
-
'technicalContactName'
|
|
10281
|
+
'technicalContactName'?: string | null;
|
|
10282
10282
|
/**
|
|
10283
10283
|
* Technical Contact Number
|
|
10284
10284
|
*/
|
|
10285
|
-
'technicalContactNumber'
|
|
10285
|
+
'technicalContactNumber'?: string | null;
|
|
10286
10286
|
/**
|
|
10287
10287
|
* Company Name
|
|
10288
10288
|
*/
|
|
10289
|
-
'companyName'
|
|
10289
|
+
'companyName'?: string | null;
|
|
10290
10290
|
/**
|
|
10291
10291
|
* 3CX Admin Email Address
|
|
10292
10292
|
*/
|
|
10293
|
-
'email'
|
|
10293
|
+
'email'?: string | null;
|
|
10294
10294
|
/**
|
|
10295
10295
|
* Contact Phone Number
|
|
10296
10296
|
*/
|
|
10297
|
-
'phone'
|
|
10297
|
+
'phone'?: string | null;
|
|
10298
10298
|
/**
|
|
10299
10299
|
* Additional Disk Space
|
|
10300
10300
|
*/
|
|
10301
|
-
'additionalDisk'
|
|
10301
|
+
'additionalDisk'?: number | null;
|
|
10302
10302
|
/**
|
|
10303
10303
|
* 3CX Licence Key
|
|
10304
10304
|
*/
|
|
10305
|
-
'licencekey'
|
|
10305
|
+
'licencekey'?: string | null;
|
|
10306
10306
|
/**
|
|
10307
10307
|
* 3CX Hostname
|
|
10308
10308
|
*/
|
|
10309
|
-
'hostname'
|
|
10309
|
+
'hostname'?: string | null;
|
|
10310
10310
|
/**
|
|
10311
10311
|
* 3CX DNS Suffix
|
|
10312
10312
|
*/
|
|
10313
|
-
'suffix'
|
|
10313
|
+
'suffix'?: string | null;
|
|
10314
10314
|
/**
|
|
10315
10315
|
* Extension Length
|
|
10316
10316
|
*/
|
|
10317
|
-
'extLength'
|
|
10317
|
+
'extLength'?: number | null;
|
|
10318
10318
|
/**
|
|
10319
10319
|
* Address Line 1
|
|
10320
10320
|
*/
|
|
10321
|
-
'address1'
|
|
10321
|
+
'address1'?: string | null;
|
|
10322
10322
|
/**
|
|
10323
10323
|
* Address Line 2
|
|
10324
10324
|
*/
|
|
10325
|
-
'address2'
|
|
10325
|
+
'address2'?: string | null;
|
|
10326
10326
|
/**
|
|
10327
10327
|
* City
|
|
10328
10328
|
*/
|
|
10329
|
-
'city'
|
|
10329
|
+
'city'?: string | null;
|
|
10330
10330
|
/**
|
|
10331
10331
|
* Postal Code
|
|
10332
10332
|
*/
|
|
10333
|
-
'postCode'
|
|
10333
|
+
'postCode'?: string | null;
|
|
10334
10334
|
/**
|
|
10335
10335
|
* Region
|
|
10336
10336
|
*/
|
|
10337
|
-
'region'
|
|
10337
|
+
'region'?: TcxSetupEntityRegionEnum | null;
|
|
10338
10338
|
/**
|
|
10339
10339
|
* Status
|
|
10340
10340
|
*/
|
|
10341
|
-
'status'
|
|
10341
|
+
'status'?: number | null;
|
|
10342
10342
|
/**
|
|
10343
10343
|
* Instance ID
|
|
10344
10344
|
*/
|
|
10345
|
-
'instanceId'
|
|
10345
|
+
'instanceId'?: string | null;
|
|
10346
10346
|
}
|
|
10347
10347
|
export declare const TcxSetupEntityInstallTypeEnum: {
|
|
10348
10348
|
readonly New: "new";
|
|
@@ -10391,55 +10391,55 @@ export interface TcxSipTrunksEntity {
|
|
|
10391
10391
|
/**
|
|
10392
10392
|
* id
|
|
10393
10393
|
*/
|
|
10394
|
-
'id'
|
|
10394
|
+
'id'?: number | null;
|
|
10395
10395
|
/**
|
|
10396
10396
|
* Provider
|
|
10397
10397
|
*/
|
|
10398
|
-
'provider'
|
|
10398
|
+
'provider'?: string | null;
|
|
10399
10399
|
/**
|
|
10400
10400
|
* Service ID (YG Trunks Only)
|
|
10401
10401
|
*/
|
|
10402
|
-
'serviceId'
|
|
10402
|
+
'serviceId'?: number | null;
|
|
10403
10403
|
/**
|
|
10404
10404
|
* Auth Type
|
|
10405
10405
|
*/
|
|
10406
|
-
'authType'
|
|
10406
|
+
'authType'?: string | null;
|
|
10407
10407
|
/**
|
|
10408
10408
|
* Registrar Address
|
|
10409
10409
|
*/
|
|
10410
|
-
'server'
|
|
10410
|
+
'server'?: string | null;
|
|
10411
10411
|
/**
|
|
10412
10412
|
* Username
|
|
10413
10413
|
*/
|
|
10414
|
-
'username'
|
|
10414
|
+
'username'?: string | null;
|
|
10415
10415
|
/**
|
|
10416
10416
|
* Password
|
|
10417
10417
|
*/
|
|
10418
|
-
'password'
|
|
10418
|
+
'password'?: string | null;
|
|
10419
10419
|
/**
|
|
10420
10420
|
* Channels
|
|
10421
10421
|
*/
|
|
10422
|
-
'channels'
|
|
10422
|
+
'channels'?: number | null;
|
|
10423
10423
|
/**
|
|
10424
10424
|
* SIP Port
|
|
10425
10425
|
*/
|
|
10426
|
-
'port'
|
|
10426
|
+
'port'?: number | null;
|
|
10427
10427
|
/**
|
|
10428
10428
|
* Proxy Address
|
|
10429
10429
|
*/
|
|
10430
|
-
'proxy'
|
|
10430
|
+
'proxy'?: string | null;
|
|
10431
10431
|
/**
|
|
10432
10432
|
* Secondary Authentication Password
|
|
10433
10433
|
*/
|
|
10434
|
-
'password2'
|
|
10434
|
+
'password2'?: string | null;
|
|
10435
10435
|
/**
|
|
10436
10436
|
* Main Trunk Number
|
|
10437
10437
|
*/
|
|
10438
|
-
'number'
|
|
10438
|
+
'number'?: string | null;
|
|
10439
10439
|
/**
|
|
10440
10440
|
* PBX IP Address
|
|
10441
10441
|
*/
|
|
10442
|
-
'ipAddress'
|
|
10442
|
+
'ipAddress'?: string | null;
|
|
10443
10443
|
}
|
|
10444
10444
|
/**
|
|
10445
10445
|
* 3CX Template
|
|
@@ -10500,22 +10500,22 @@ export interface TcxWizardModel {
|
|
|
10500
10500
|
/**
|
|
10501
10501
|
* 3CX Installation Wizard ID
|
|
10502
10502
|
*/
|
|
10503
|
-
'id'
|
|
10504
|
-
'config'
|
|
10503
|
+
'id'?: number | null;
|
|
10504
|
+
'config'?: TcxWizardConfigModel | null;
|
|
10505
10505
|
/**
|
|
10506
10506
|
* 3CX Licence Key
|
|
10507
10507
|
*/
|
|
10508
|
-
'licenceKey'
|
|
10508
|
+
'licenceKey'?: string | null;
|
|
10509
10509
|
/**
|
|
10510
10510
|
* Install Type
|
|
10511
10511
|
*/
|
|
10512
|
-
'installType'
|
|
10512
|
+
'installType'?: TcxWizardModelInstallTypeEnum | null;
|
|
10513
10513
|
'backup'?: TcxBackupModel | null;
|
|
10514
|
-
'extensions'
|
|
10515
|
-
'numbers'
|
|
10514
|
+
'extensions'?: Array<TcxExtsEntity> | null;
|
|
10515
|
+
'numbers'?: Array<TcxNumbersEntity> | null;
|
|
10516
10516
|
'officeHours'?: TcxOfficeHoursEntity | null;
|
|
10517
|
-
'phones'
|
|
10518
|
-
'sbcs'
|
|
10517
|
+
'phones'?: Array<TcxPhoneModel> | null;
|
|
10518
|
+
'sbcs'?: Array<TcxSbcModel> | null;
|
|
10519
10519
|
'sipTrunk'?: TcxSipTrunksEntity | null;
|
|
10520
10520
|
'installationStatus'?: TcxWizardModelInstallationStatusEnum | null;
|
|
10521
10521
|
'setup'?: TcxSetupEntity | null;
|
package/docs/TcxExtsEntity.md
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**id** | **number** | id | [default to undefined]
|
|
10
|
-
**extNo** | **string** | Extension Number | [default to undefined]
|
|
11
|
-
**firstName** | **string** | First Name | [default to undefined]
|
|
12
|
-
**lastName** | **string** | Last Name | [default to undefined]
|
|
13
|
-
**email** | **string** | Email Address | [default to undefined]
|
|
14
|
-
**ddi** | **string** | DDI | [default to undefined]
|
|
15
|
-
**cli** | **string** | Outbound CLI | [default to undefined]
|
|
16
|
-
**recording** | **boolean** | Recording Enabled | [default to undefined]
|
|
9
|
+
**id** | **number** | id | [optional] [default to undefined]
|
|
10
|
+
**extNo** | **string** | Extension Number | [optional] [default to undefined]
|
|
11
|
+
**firstName** | **string** | First Name | [optional] [default to undefined]
|
|
12
|
+
**lastName** | **string** | Last Name | [optional] [default to undefined]
|
|
13
|
+
**email** | **string** | Email Address | [optional] [default to undefined]
|
|
14
|
+
**ddi** | **string** | DDI | [optional] [default to undefined]
|
|
15
|
+
**cli** | **string** | Outbound CLI | [optional] [default to undefined]
|
|
16
|
+
**recording** | **boolean** | Recording Enabled | [optional] [default to undefined]
|
|
17
17
|
|
|
18
18
|
## Example
|
|
19
19
|
|
package/docs/TcxNumbersEntity.md
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**id** | **number** | id | [default to undefined]
|
|
10
|
-
**number** | **string** | Number | [default to undefined]
|
|
11
|
-
**label** | **string** | Label | [default to undefined]
|
|
9
|
+
**id** | **number** | id | [optional] [default to undefined]
|
|
10
|
+
**number** | **string** | Number | [optional] [default to undefined]
|
|
11
|
+
**label** | **string** | Label | [optional] [default to undefined]
|
|
12
12
|
|
|
13
13
|
## Example
|
|
14
14
|
|
package/docs/TcxPhoneModel.md
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**id** | **number** | id | [default to undefined]
|
|
9
|
-
**phone** | **string** | Phone Model | [default to undefined]
|
|
10
|
-
**mac** | **string** | MAC Address | [default to undefined]
|
|
11
|
-
**sku** | **string** | SKU | [default to undefined]
|
|
12
|
-
**extNo** | **string** | Extension Number | [default to undefined]
|
|
13
|
-
**sbcId** | **string** | SBC ID | [default to undefined]
|
|
8
|
+
**id** | **number** | id | [optional] [default to undefined]
|
|
9
|
+
**phone** | **string** | Phone Model | [optional] [default to undefined]
|
|
10
|
+
**mac** | **string** | MAC Address | [optional] [default to undefined]
|
|
11
|
+
**sku** | **string** | SKU | [optional] [default to undefined]
|
|
12
|
+
**extNo** | **string** | Extension Number | [optional] [default to undefined]
|
|
13
|
+
**sbcId** | **string** | SBC ID | [optional] [default to undefined]
|
|
14
14
|
**fromOrder** | **boolean** | Phone exists on order | [optional] [default to undefined]
|
|
15
15
|
|
|
16
16
|
## Example
|
package/docs/TcxPhonesEntity.md
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**id** | **number** | id | [default to undefined]
|
|
10
|
-
**phone** | **string** | Phone Model | [default to undefined]
|
|
11
|
-
**mac** | **string** | MAC Address | [default to undefined]
|
|
12
|
-
**sku** | **string** | SKU | [default to undefined]
|
|
13
|
-
**extNo** | **string** | Extension Number | [default to undefined]
|
|
14
|
-
**sbcId** | **string** | SBC ID | [default to undefined]
|
|
9
|
+
**id** | **number** | id | [optional] [default to undefined]
|
|
10
|
+
**phone** | **string** | Phone Model | [optional] [default to undefined]
|
|
11
|
+
**mac** | **string** | MAC Address | [optional] [default to undefined]
|
|
12
|
+
**sku** | **string** | SKU | [optional] [default to undefined]
|
|
13
|
+
**extNo** | **string** | Extension Number | [optional] [default to undefined]
|
|
14
|
+
**sbcId** | **string** | SBC ID | [optional] [default to undefined]
|
|
15
15
|
|
|
16
16
|
## Example
|
|
17
17
|
|
package/docs/TcxSbcEntity.md
CHANGED
|
@@ -6,22 +6,22 @@
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
-
**id** | **number** | id | [default to undefined]
|
|
10
|
-
**sbcId** | **number** | SBC ID | [default to undefined]
|
|
11
|
-
**tcxUrl** | **string** | 3CX URL | [default to undefined]
|
|
12
|
-
**tcxKey** | **string** | 3CX SBC Auth Key | [default to undefined]
|
|
13
|
-
**label** | **string** | Label | [default to undefined]
|
|
14
|
-
**ipAddress** | **string** | IP Address | [default to undefined]
|
|
15
|
-
**netmask** | **string** | Subnet Mask | [default to undefined]
|
|
16
|
-
**defaultGateway** | **string** | Default Gateway | [default to undefined]
|
|
17
|
-
**dns1** | **string** | DNS 1 | [default to undefined]
|
|
18
|
-
**dns2** | **string** | DNS 2 | [default to undefined]
|
|
19
|
-
**address1** | **string** | Site Address Line 1 | [default to undefined]
|
|
20
|
-
**address2** | **string** | Site Address Line 2 | [default to undefined]
|
|
21
|
-
**city** | **string** | Site City | [default to undefined]
|
|
22
|
-
**postalCode** | **string** | Site Postal Code | [default to undefined]
|
|
23
|
-
**primaryContact** | **string** | Site Primary Contact | [default to undefined]
|
|
24
|
-
**technicalContact** | **string** | Site Technical Contact | [default to undefined]
|
|
9
|
+
**id** | **number** | id | [optional] [default to undefined]
|
|
10
|
+
**sbcId** | **number** | SBC ID | [optional] [default to undefined]
|
|
11
|
+
**tcxUrl** | **string** | 3CX URL | [optional] [default to undefined]
|
|
12
|
+
**tcxKey** | **string** | 3CX SBC Auth Key | [optional] [default to undefined]
|
|
13
|
+
**label** | **string** | Label | [optional] [default to undefined]
|
|
14
|
+
**ipAddress** | **string** | IP Address | [optional] [default to undefined]
|
|
15
|
+
**netmask** | **string** | Subnet Mask | [optional] [default to undefined]
|
|
16
|
+
**defaultGateway** | **string** | Default Gateway | [optional] [default to undefined]
|
|
17
|
+
**dns1** | **string** | DNS 1 | [optional] [default to undefined]
|
|
18
|
+
**dns2** | **string** | DNS 2 | [optional] [default to undefined]
|
|
19
|
+
**address1** | **string** | Site Address Line 1 | [optional] [default to undefined]
|
|
20
|
+
**address2** | **string** | Site Address Line 2 | [optional] [default to undefined]
|
|
21
|
+
**city** | **string** | Site City | [optional] [default to undefined]
|
|
22
|
+
**postalCode** | **string** | Site Postal Code | [optional] [default to undefined]
|
|
23
|
+
**primaryContact** | **string** | Site Primary Contact | [optional] [default to undefined]
|
|
24
|
+
**technicalContact** | **string** | Site Technical Contact | [optional] [default to undefined]
|
|
25
25
|
|
|
26
26
|
## Example
|
|
27
27
|
|