yellowgrid-api-ts 3.2.281 → 3.2.283
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 +117 -117
- package/dist/api.d.ts +117 -117
- package/docs/TcxExtsEntity.md +8 -8
- package/docs/TcxNumbersEntity.md +3 -3
- package/docs/TcxOfficeHoursEntity.md +15 -15
- 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 +9 -9
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -9637,35 +9637,35 @@ export interface TcxExtsEntity {
|
|
|
9637
9637
|
/**
|
|
9638
9638
|
* id
|
|
9639
9639
|
*/
|
|
9640
|
-
'id'
|
|
9640
|
+
'id'?: number | null;
|
|
9641
9641
|
/**
|
|
9642
9642
|
* Extension Number
|
|
9643
9643
|
*/
|
|
9644
|
-
'extNo'
|
|
9644
|
+
'extNo'?: string | null;
|
|
9645
9645
|
/**
|
|
9646
9646
|
* First Name
|
|
9647
9647
|
*/
|
|
9648
|
-
'firstName'
|
|
9648
|
+
'firstName'?: string | null;
|
|
9649
9649
|
/**
|
|
9650
9650
|
* Last Name
|
|
9651
9651
|
*/
|
|
9652
|
-
'lastName'
|
|
9652
|
+
'lastName'?: string | null;
|
|
9653
9653
|
/**
|
|
9654
9654
|
* Email Address
|
|
9655
9655
|
*/
|
|
9656
|
-
'email'
|
|
9656
|
+
'email'?: string | null;
|
|
9657
9657
|
/**
|
|
9658
9658
|
* DDI
|
|
9659
9659
|
*/
|
|
9660
|
-
'ddi'
|
|
9660
|
+
'ddi'?: string | null;
|
|
9661
9661
|
/**
|
|
9662
9662
|
* Outbound CLI
|
|
9663
9663
|
*/
|
|
9664
|
-
'cli'
|
|
9664
|
+
'cli'?: string | null;
|
|
9665
9665
|
/**
|
|
9666
9666
|
* Recording Enabled
|
|
9667
9667
|
*/
|
|
9668
|
-
'recording'
|
|
9668
|
+
'recording'?: boolean | null;
|
|
9669
9669
|
}
|
|
9670
9670
|
/**
|
|
9671
9671
|
* 3CX Installation
|
|
@@ -10075,15 +10075,15 @@ export interface TcxNumbersEntity {
|
|
|
10075
10075
|
/**
|
|
10076
10076
|
* id
|
|
10077
10077
|
*/
|
|
10078
|
-
'id'
|
|
10078
|
+
'id'?: number | null;
|
|
10079
10079
|
/**
|
|
10080
10080
|
* Number
|
|
10081
10081
|
*/
|
|
10082
|
-
'number'
|
|
10082
|
+
'number'?: string | null;
|
|
10083
10083
|
/**
|
|
10084
10084
|
* Label
|
|
10085
10085
|
*/
|
|
10086
|
-
'label'
|
|
10086
|
+
'label'?: string | null;
|
|
10087
10087
|
}
|
|
10088
10088
|
/**
|
|
10089
10089
|
* 3CX Wizard Office Hours
|
|
@@ -10092,89 +10092,89 @@ export interface TcxOfficeHoursEntity {
|
|
|
10092
10092
|
/**
|
|
10093
10093
|
* id
|
|
10094
10094
|
*/
|
|
10095
|
-
'id'
|
|
10095
|
+
'id'?: number | null;
|
|
10096
10096
|
/**
|
|
10097
10097
|
* Monday Hours From
|
|
10098
10098
|
*/
|
|
10099
|
-
'mondayFrom'
|
|
10099
|
+
'mondayFrom'?: string | null;
|
|
10100
10100
|
/**
|
|
10101
10101
|
* Monday Hours To
|
|
10102
10102
|
*/
|
|
10103
|
-
'mondayTo'
|
|
10103
|
+
'mondayTo'?: string | null;
|
|
10104
10104
|
/**
|
|
10105
10105
|
* Tuesday Hours From
|
|
10106
10106
|
*/
|
|
10107
|
-
'tuesdayFrom'
|
|
10107
|
+
'tuesdayFrom'?: string | null;
|
|
10108
10108
|
/**
|
|
10109
10109
|
* Tuesday Hours To
|
|
10110
10110
|
*/
|
|
10111
|
-
'tuesdayTo'
|
|
10111
|
+
'tuesdayTo'?: string | null;
|
|
10112
10112
|
/**
|
|
10113
10113
|
* Wednesday Hours From
|
|
10114
10114
|
*/
|
|
10115
|
-
'wednesdayFrom'
|
|
10115
|
+
'wednesdayFrom'?: string | null;
|
|
10116
10116
|
/**
|
|
10117
10117
|
* Wednesday Hours To
|
|
10118
10118
|
*/
|
|
10119
|
-
'wednesdayTo'
|
|
10119
|
+
'wednesdayTo'?: string | null;
|
|
10120
10120
|
/**
|
|
10121
10121
|
* Thursday Hours From
|
|
10122
10122
|
*/
|
|
10123
|
-
'thursdayFrom'
|
|
10123
|
+
'thursdayFrom'?: string | null;
|
|
10124
10124
|
/**
|
|
10125
10125
|
* Thursday Hours To
|
|
10126
10126
|
*/
|
|
10127
|
-
'thursdayTo'
|
|
10127
|
+
'thursdayTo'?: string | null;
|
|
10128
10128
|
/**
|
|
10129
10129
|
* Friday Hours From
|
|
10130
10130
|
*/
|
|
10131
|
-
'fridayFrom'
|
|
10131
|
+
'fridayFrom'?: string | null;
|
|
10132
10132
|
/**
|
|
10133
10133
|
* Friday Hours To
|
|
10134
10134
|
*/
|
|
10135
|
-
'fridayTo'
|
|
10135
|
+
'fridayTo'?: string | null;
|
|
10136
10136
|
/**
|
|
10137
10137
|
* Saturday Hours From
|
|
10138
10138
|
*/
|
|
10139
|
-
'saturdayFrom'
|
|
10139
|
+
'saturdayFrom'?: string | null;
|
|
10140
10140
|
/**
|
|
10141
10141
|
* Saturday Hours To
|
|
10142
10142
|
*/
|
|
10143
|
-
'saturdayTo'
|
|
10143
|
+
'saturdayTo'?: string | null;
|
|
10144
10144
|
/**
|
|
10145
10145
|
* Sunday Hours From
|
|
10146
10146
|
*/
|
|
10147
|
-
'sundayFrom'
|
|
10147
|
+
'sundayFrom'?: string | null;
|
|
10148
10148
|
/**
|
|
10149
10149
|
* Sunday Hours To
|
|
10150
10150
|
*/
|
|
10151
|
-
'sundayTo'
|
|
10151
|
+
'sundayTo'?: string | null;
|
|
10152
10152
|
}
|
|
10153
10153
|
export interface TcxPhoneModel {
|
|
10154
10154
|
/**
|
|
10155
10155
|
* id
|
|
10156
10156
|
*/
|
|
10157
|
-
'id'
|
|
10157
|
+
'id'?: number | null;
|
|
10158
10158
|
/**
|
|
10159
10159
|
* Phone Model
|
|
10160
10160
|
*/
|
|
10161
|
-
'phone'
|
|
10161
|
+
'phone'?: string | null;
|
|
10162
10162
|
/**
|
|
10163
10163
|
* MAC Address
|
|
10164
10164
|
*/
|
|
10165
|
-
'mac'
|
|
10165
|
+
'mac'?: string | null;
|
|
10166
10166
|
/**
|
|
10167
10167
|
* SKU
|
|
10168
10168
|
*/
|
|
10169
|
-
'sku'
|
|
10169
|
+
'sku'?: string | null;
|
|
10170
10170
|
/**
|
|
10171
10171
|
* Extension Number
|
|
10172
10172
|
*/
|
|
10173
|
-
'extNo'
|
|
10173
|
+
'extNo'?: string | null;
|
|
10174
10174
|
/**
|
|
10175
10175
|
* SBC ID
|
|
10176
10176
|
*/
|
|
10177
|
-
'sbcId'
|
|
10177
|
+
'sbcId'?: string | null;
|
|
10178
10178
|
/**
|
|
10179
10179
|
* Phone exists on order
|
|
10180
10180
|
*/
|
|
@@ -10187,27 +10187,27 @@ export interface TcxPhonesEntity {
|
|
|
10187
10187
|
/**
|
|
10188
10188
|
* id
|
|
10189
10189
|
*/
|
|
10190
|
-
'id'
|
|
10190
|
+
'id'?: number | null;
|
|
10191
10191
|
/**
|
|
10192
10192
|
* Phone Model
|
|
10193
10193
|
*/
|
|
10194
|
-
'phone'
|
|
10194
|
+
'phone'?: string | null;
|
|
10195
10195
|
/**
|
|
10196
10196
|
* MAC Address
|
|
10197
10197
|
*/
|
|
10198
|
-
'mac'
|
|
10198
|
+
'mac'?: string | null;
|
|
10199
10199
|
/**
|
|
10200
10200
|
* SKU
|
|
10201
10201
|
*/
|
|
10202
|
-
'sku'
|
|
10202
|
+
'sku'?: string | null;
|
|
10203
10203
|
/**
|
|
10204
10204
|
* Extension Number
|
|
10205
10205
|
*/
|
|
10206
|
-
'extNo'
|
|
10206
|
+
'extNo'?: string | null;
|
|
10207
10207
|
/**
|
|
10208
10208
|
* SBC ID
|
|
10209
10209
|
*/
|
|
10210
|
-
'sbcId'
|
|
10210
|
+
'sbcId'?: string | null;
|
|
10211
10211
|
}
|
|
10212
10212
|
/**
|
|
10213
10213
|
* 3CX Remote Storage
|
|
@@ -10274,67 +10274,67 @@ export interface TcxSbcEntity {
|
|
|
10274
10274
|
/**
|
|
10275
10275
|
* id
|
|
10276
10276
|
*/
|
|
10277
|
-
'id'
|
|
10277
|
+
'id'?: number | null;
|
|
10278
10278
|
/**
|
|
10279
10279
|
* SBC ID
|
|
10280
10280
|
*/
|
|
10281
|
-
'sbcId'
|
|
10281
|
+
'sbcId'?: number | null;
|
|
10282
10282
|
/**
|
|
10283
10283
|
* 3CX URL
|
|
10284
10284
|
*/
|
|
10285
|
-
'tcxUrl'
|
|
10285
|
+
'tcxUrl'?: string | null;
|
|
10286
10286
|
/**
|
|
10287
10287
|
* 3CX SBC Auth Key
|
|
10288
10288
|
*/
|
|
10289
|
-
'tcxKey'
|
|
10289
|
+
'tcxKey'?: string | null;
|
|
10290
10290
|
/**
|
|
10291
10291
|
* Label
|
|
10292
10292
|
*/
|
|
10293
|
-
'label'
|
|
10293
|
+
'label'?: string | null;
|
|
10294
10294
|
/**
|
|
10295
10295
|
* IP Address
|
|
10296
10296
|
*/
|
|
10297
|
-
'ipAddress'
|
|
10297
|
+
'ipAddress'?: string | null;
|
|
10298
10298
|
/**
|
|
10299
10299
|
* Subnet Mask
|
|
10300
10300
|
*/
|
|
10301
|
-
'netmask'
|
|
10301
|
+
'netmask'?: string | null;
|
|
10302
10302
|
/**
|
|
10303
10303
|
* Default Gateway
|
|
10304
10304
|
*/
|
|
10305
|
-
'defaultGateway'
|
|
10305
|
+
'defaultGateway'?: string | null;
|
|
10306
10306
|
/**
|
|
10307
10307
|
* DNS 1
|
|
10308
10308
|
*/
|
|
10309
|
-
'dns1'
|
|
10309
|
+
'dns1'?: string | null;
|
|
10310
10310
|
/**
|
|
10311
10311
|
* DNS 2
|
|
10312
10312
|
*/
|
|
10313
|
-
'dns2'
|
|
10313
|
+
'dns2'?: string | null;
|
|
10314
10314
|
/**
|
|
10315
10315
|
* Site Address Line 1
|
|
10316
10316
|
*/
|
|
10317
|
-
'address1'
|
|
10317
|
+
'address1'?: string | null;
|
|
10318
10318
|
/**
|
|
10319
10319
|
* Site Address Line 2
|
|
10320
10320
|
*/
|
|
10321
|
-
'address2'
|
|
10321
|
+
'address2'?: string | null;
|
|
10322
10322
|
/**
|
|
10323
10323
|
* Site City
|
|
10324
10324
|
*/
|
|
10325
|
-
'city'
|
|
10325
|
+
'city'?: string | null;
|
|
10326
10326
|
/**
|
|
10327
10327
|
* Site Postal Code
|
|
10328
10328
|
*/
|
|
10329
|
-
'postalCode'
|
|
10329
|
+
'postalCode'?: string | null;
|
|
10330
10330
|
/**
|
|
10331
10331
|
* Site Primary Contact
|
|
10332
10332
|
*/
|
|
10333
|
-
'primaryContact'
|
|
10333
|
+
'primaryContact'?: string | null;
|
|
10334
10334
|
/**
|
|
10335
10335
|
* Site Technical Contact
|
|
10336
10336
|
*/
|
|
10337
|
-
'technicalContact'
|
|
10337
|
+
'technicalContact'?: string | null;
|
|
10338
10338
|
}
|
|
10339
10339
|
/**
|
|
10340
10340
|
* 3CX Wizard SBC
|
|
@@ -10343,67 +10343,67 @@ export interface TcxSbcModel {
|
|
|
10343
10343
|
/**
|
|
10344
10344
|
* id
|
|
10345
10345
|
*/
|
|
10346
|
-
'id'
|
|
10346
|
+
'id'?: number | null;
|
|
10347
10347
|
/**
|
|
10348
10348
|
* SBC ID
|
|
10349
10349
|
*/
|
|
10350
|
-
'sbcId'
|
|
10350
|
+
'sbcId'?: number | null;
|
|
10351
10351
|
/**
|
|
10352
10352
|
* 3CX URL
|
|
10353
10353
|
*/
|
|
10354
|
-
'tcxUrl'
|
|
10354
|
+
'tcxUrl'?: string | null;
|
|
10355
10355
|
/**
|
|
10356
10356
|
* 3CX SBC Auth Key
|
|
10357
10357
|
*/
|
|
10358
|
-
'tcxKey'
|
|
10358
|
+
'tcxKey'?: string | null;
|
|
10359
10359
|
/**
|
|
10360
10360
|
* Label
|
|
10361
10361
|
*/
|
|
10362
|
-
'label'
|
|
10362
|
+
'label'?: string | null;
|
|
10363
10363
|
/**
|
|
10364
10364
|
* IP Address
|
|
10365
10365
|
*/
|
|
10366
|
-
'ipAddress'
|
|
10366
|
+
'ipAddress'?: string | null;
|
|
10367
10367
|
/**
|
|
10368
10368
|
* Subnet Mask
|
|
10369
10369
|
*/
|
|
10370
|
-
'netmask'
|
|
10370
|
+
'netmask'?: string | null;
|
|
10371
10371
|
/**
|
|
10372
10372
|
* Default Gateway
|
|
10373
10373
|
*/
|
|
10374
|
-
'defaultGateway'
|
|
10374
|
+
'defaultGateway'?: string | null;
|
|
10375
10375
|
/**
|
|
10376
10376
|
* DNS 1
|
|
10377
10377
|
*/
|
|
10378
|
-
'dns1'
|
|
10378
|
+
'dns1'?: string | null;
|
|
10379
10379
|
/**
|
|
10380
10380
|
* DNS 2
|
|
10381
10381
|
*/
|
|
10382
|
-
'dns2'
|
|
10382
|
+
'dns2'?: string | null;
|
|
10383
10383
|
/**
|
|
10384
10384
|
* Site Address Line 1
|
|
10385
10385
|
*/
|
|
10386
|
-
'address1'
|
|
10386
|
+
'address1'?: string | null;
|
|
10387
10387
|
/**
|
|
10388
10388
|
* Site Address Line 2
|
|
10389
10389
|
*/
|
|
10390
|
-
'address2'
|
|
10390
|
+
'address2'?: string | null;
|
|
10391
10391
|
/**
|
|
10392
10392
|
* Site City
|
|
10393
10393
|
*/
|
|
10394
|
-
'city'
|
|
10394
|
+
'city'?: string | null;
|
|
10395
10395
|
/**
|
|
10396
10396
|
* Site Postal Code
|
|
10397
10397
|
*/
|
|
10398
|
-
'postalCode'
|
|
10398
|
+
'postalCode'?: string | null;
|
|
10399
10399
|
/**
|
|
10400
10400
|
* Site Primary Contact
|
|
10401
10401
|
*/
|
|
10402
|
-
'primaryContact'
|
|
10402
|
+
'primaryContact'?: string | null;
|
|
10403
10403
|
/**
|
|
10404
10404
|
* Site Technical Contact
|
|
10405
10405
|
*/
|
|
10406
|
-
'technicalContact'
|
|
10406
|
+
'technicalContact'?: string | null;
|
|
10407
10407
|
}
|
|
10408
10408
|
/**
|
|
10409
10409
|
* 3CX SBC Response
|
|
@@ -10425,7 +10425,7 @@ export interface TcxSetupEntity {
|
|
|
10425
10425
|
/**
|
|
10426
10426
|
* Creation Date
|
|
10427
10427
|
*/
|
|
10428
|
-
'creation'
|
|
10428
|
+
'creation'?: string | null;
|
|
10429
10429
|
/**
|
|
10430
10430
|
* Install Type
|
|
10431
10431
|
*/
|
|
@@ -10433,99 +10433,99 @@ export interface TcxSetupEntity {
|
|
|
10433
10433
|
/**
|
|
10434
10434
|
* 3CX Install Version
|
|
10435
10435
|
*/
|
|
10436
|
-
'installVersion'
|
|
10436
|
+
'installVersion'?: number | null;
|
|
10437
10437
|
/**
|
|
10438
10438
|
* Linked Order ID
|
|
10439
10439
|
*/
|
|
10440
|
-
'orderId'
|
|
10440
|
+
'orderId'?: number | null;
|
|
10441
10441
|
/**
|
|
10442
10442
|
* Customer ID
|
|
10443
10443
|
*/
|
|
10444
|
-
'customerId'
|
|
10444
|
+
'customerId'?: number | null;
|
|
10445
10445
|
/**
|
|
10446
10446
|
* 3CX System Owner Username
|
|
10447
10447
|
*/
|
|
10448
|
-
'username'
|
|
10448
|
+
'username'?: string | null;
|
|
10449
10449
|
/**
|
|
10450
10450
|
* 3CX System Owner Password
|
|
10451
10451
|
*/
|
|
10452
|
-
'password'
|
|
10452
|
+
'password'?: string | null;
|
|
10453
10453
|
/**
|
|
10454
10454
|
* Primary Contact Name
|
|
10455
10455
|
*/
|
|
10456
|
-
'primaryContactName'
|
|
10456
|
+
'primaryContactName'?: string | null;
|
|
10457
10457
|
/**
|
|
10458
10458
|
* Primary Contact Number
|
|
10459
10459
|
*/
|
|
10460
|
-
'primaryContactNumber'
|
|
10460
|
+
'primaryContactNumber'?: string | null;
|
|
10461
10461
|
/**
|
|
10462
10462
|
* Technical Contact Name
|
|
10463
10463
|
*/
|
|
10464
|
-
'technicalContactName'
|
|
10464
|
+
'technicalContactName'?: string | null;
|
|
10465
10465
|
/**
|
|
10466
10466
|
* Technical Contact Number
|
|
10467
10467
|
*/
|
|
10468
|
-
'technicalContactNumber'
|
|
10468
|
+
'technicalContactNumber'?: string | null;
|
|
10469
10469
|
/**
|
|
10470
10470
|
* Company Name
|
|
10471
10471
|
*/
|
|
10472
|
-
'companyName'
|
|
10472
|
+
'companyName'?: string | null;
|
|
10473
10473
|
/**
|
|
10474
10474
|
* 3CX Admin Email Address
|
|
10475
10475
|
*/
|
|
10476
|
-
'email'
|
|
10476
|
+
'email'?: string | null;
|
|
10477
10477
|
/**
|
|
10478
10478
|
* Contact Phone Number
|
|
10479
10479
|
*/
|
|
10480
|
-
'phone'
|
|
10480
|
+
'phone'?: string | null;
|
|
10481
10481
|
/**
|
|
10482
10482
|
* Additional Disk Space
|
|
10483
10483
|
*/
|
|
10484
|
-
'additionalDisk'
|
|
10484
|
+
'additionalDisk'?: number | null;
|
|
10485
10485
|
/**
|
|
10486
10486
|
* 3CX Licence Key
|
|
10487
10487
|
*/
|
|
10488
|
-
'licencekey'
|
|
10488
|
+
'licencekey'?: string | null;
|
|
10489
10489
|
/**
|
|
10490
10490
|
* 3CX Hostname
|
|
10491
10491
|
*/
|
|
10492
|
-
'hostname'
|
|
10492
|
+
'hostname'?: string | null;
|
|
10493
10493
|
/**
|
|
10494
10494
|
* 3CX DNS Suffix
|
|
10495
10495
|
*/
|
|
10496
|
-
'suffix'
|
|
10496
|
+
'suffix'?: string | null;
|
|
10497
10497
|
/**
|
|
10498
10498
|
* Extension Length
|
|
10499
10499
|
*/
|
|
10500
|
-
'extLength'
|
|
10500
|
+
'extLength'?: number | null;
|
|
10501
10501
|
/**
|
|
10502
10502
|
* Address Line 1
|
|
10503
10503
|
*/
|
|
10504
|
-
'address1'
|
|
10504
|
+
'address1'?: string | null;
|
|
10505
10505
|
/**
|
|
10506
10506
|
* Address Line 2
|
|
10507
10507
|
*/
|
|
10508
|
-
'address2'
|
|
10508
|
+
'address2'?: string | null;
|
|
10509
10509
|
/**
|
|
10510
10510
|
* City
|
|
10511
10511
|
*/
|
|
10512
|
-
'city'
|
|
10512
|
+
'city'?: string | null;
|
|
10513
10513
|
/**
|
|
10514
10514
|
* Postal Code
|
|
10515
10515
|
*/
|
|
10516
|
-
'postCode'
|
|
10516
|
+
'postCode'?: string | null;
|
|
10517
10517
|
/**
|
|
10518
10518
|
* Region
|
|
10519
10519
|
*/
|
|
10520
|
-
'region'
|
|
10520
|
+
'region'?: TcxSetupEntityRegionEnum | null;
|
|
10521
10521
|
/**
|
|
10522
10522
|
* Status
|
|
10523
10523
|
*/
|
|
10524
|
-
'status'
|
|
10524
|
+
'status'?: number | null;
|
|
10525
10525
|
/**
|
|
10526
10526
|
* Instance ID
|
|
10527
10527
|
*/
|
|
10528
|
-
'instanceId'
|
|
10528
|
+
'instanceId'?: string | null;
|
|
10529
10529
|
}
|
|
10530
10530
|
|
|
10531
10531
|
export const TcxSetupEntityInstallTypeEnum = {
|
|
@@ -10578,55 +10578,55 @@ export interface TcxSipTrunksEntity {
|
|
|
10578
10578
|
/**
|
|
10579
10579
|
* id
|
|
10580
10580
|
*/
|
|
10581
|
-
'id'
|
|
10581
|
+
'id'?: number | null;
|
|
10582
10582
|
/**
|
|
10583
10583
|
* Provider
|
|
10584
10584
|
*/
|
|
10585
|
-
'provider'
|
|
10585
|
+
'provider'?: string | null;
|
|
10586
10586
|
/**
|
|
10587
10587
|
* Service ID (YG Trunks Only)
|
|
10588
10588
|
*/
|
|
10589
|
-
'serviceId'
|
|
10589
|
+
'serviceId'?: number | null;
|
|
10590
10590
|
/**
|
|
10591
10591
|
* Auth Type
|
|
10592
10592
|
*/
|
|
10593
|
-
'authType'
|
|
10593
|
+
'authType'?: string | null;
|
|
10594
10594
|
/**
|
|
10595
10595
|
* Registrar Address
|
|
10596
10596
|
*/
|
|
10597
|
-
'server'
|
|
10597
|
+
'server'?: string | null;
|
|
10598
10598
|
/**
|
|
10599
10599
|
* Username
|
|
10600
10600
|
*/
|
|
10601
|
-
'username'
|
|
10601
|
+
'username'?: string | null;
|
|
10602
10602
|
/**
|
|
10603
10603
|
* Password
|
|
10604
10604
|
*/
|
|
10605
|
-
'password'
|
|
10605
|
+
'password'?: string | null;
|
|
10606
10606
|
/**
|
|
10607
10607
|
* Channels
|
|
10608
10608
|
*/
|
|
10609
|
-
'channels'
|
|
10609
|
+
'channels'?: number | null;
|
|
10610
10610
|
/**
|
|
10611
10611
|
* SIP Port
|
|
10612
10612
|
*/
|
|
10613
|
-
'port'
|
|
10613
|
+
'port'?: number | null;
|
|
10614
10614
|
/**
|
|
10615
10615
|
* Proxy Address
|
|
10616
10616
|
*/
|
|
10617
|
-
'proxy'
|
|
10617
|
+
'proxy'?: string | null;
|
|
10618
10618
|
/**
|
|
10619
10619
|
* Secondary Authentication Password
|
|
10620
10620
|
*/
|
|
10621
|
-
'password2'
|
|
10621
|
+
'password2'?: string | null;
|
|
10622
10622
|
/**
|
|
10623
10623
|
* Main Trunk Number
|
|
10624
10624
|
*/
|
|
10625
|
-
'number'
|
|
10625
|
+
'number'?: string | null;
|
|
10626
10626
|
/**
|
|
10627
10627
|
* PBX IP Address
|
|
10628
10628
|
*/
|
|
10629
|
-
'ipAddress'
|
|
10629
|
+
'ipAddress'?: string | null;
|
|
10630
10630
|
}
|
|
10631
10631
|
/**
|
|
10632
10632
|
* 3CX Template
|
|
@@ -10687,29 +10687,29 @@ export interface TcxWizardModel {
|
|
|
10687
10687
|
/**
|
|
10688
10688
|
* 3CX Installation Wizard ID
|
|
10689
10689
|
*/
|
|
10690
|
-
'id'
|
|
10691
|
-
'config'
|
|
10690
|
+
'id'?: number | null;
|
|
10691
|
+
'config'?: TcxWizardConfigModel | null;
|
|
10692
10692
|
/**
|
|
10693
10693
|
* 3CX Licence Key
|
|
10694
10694
|
*/
|
|
10695
|
-
'licenceKey'
|
|
10695
|
+
'licenceKey'?: string | null;
|
|
10696
10696
|
/**
|
|
10697
10697
|
* Install Type
|
|
10698
10698
|
*/
|
|
10699
|
-
'installType'
|
|
10699
|
+
'installType'?: TcxWizardModelInstallTypeEnum | null;
|
|
10700
10700
|
'backup'?: TcxBackupModel | null;
|
|
10701
|
-
'extensions'
|
|
10702
|
-
'numbers'
|
|
10701
|
+
'extensions'?: Array<TcxExtsEntity> | null;
|
|
10702
|
+
'numbers'?: Array<TcxNumbersEntity> | null;
|
|
10703
10703
|
'officeHours'?: TcxOfficeHoursEntity | null;
|
|
10704
|
-
'phones'
|
|
10705
|
-
'sbcs'
|
|
10704
|
+
'phones'?: Array<TcxPhoneModel> | null;
|
|
10705
|
+
'sbcs'?: Array<TcxSbcModel> | null;
|
|
10706
10706
|
'sipTrunk'?: TcxSipTrunksEntity | null;
|
|
10707
10707
|
'installationStatus'?: TcxWizardModelInstallationStatusEnum | null;
|
|
10708
10708
|
'setup'?: TcxSetupEntity | null;
|
|
10709
10709
|
/**
|
|
10710
10710
|
* End User Wizard View
|
|
10711
10711
|
*/
|
|
10712
|
-
'endUserView'
|
|
10712
|
+
'endUserView'?: boolean | null;
|
|
10713
10713
|
}
|
|
10714
10714
|
|
|
10715
10715
|
export const TcxWizardModelInstallTypeEnum = {
|