yellowgrid-api-ts 3.2.251-dev.0 → 3.2.252-dev.0
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/.openapi-generator/FILES +5 -0
- package/README.md +14 -0
- package/api.ts +882 -137
- package/dist/api.d.ts +516 -117
- package/dist/api.js +784 -47
- package/docs/Class3CXInstallationWizardApi.md +384 -0
- package/docs/Class3CXIntegrationsApi.md +52 -0
- package/docs/EngineeredWizardRequestModel.md +23 -0
- package/docs/OAuth20Api.md +1 -1
- package/docs/OrdersApi.md +59 -0
- package/docs/SearchSchoolModel.md +35 -0
- package/docs/TcxEngineerTaskDTO.md +29 -0
- package/docs/TcxEngineeringDTO.md +37 -0
- 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/TcxSummaryDTO.md +21 -0
- package/docs/TcxWizardModel.md +11 -9
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1299,6 +1299,9 @@ export declare const AuditLogEntityTypeEnum: {
|
|
|
1299
1299
|
readonly Pops3cxBackup: "pops_3cx_backup";
|
|
1300
1300
|
readonly Pops3cxBilling: "pops_3cx_billing";
|
|
1301
1301
|
readonly PopsDeadLicences: "pops_dead_licences";
|
|
1302
|
+
readonly Pops3cxEngineering: "pops_3cx_engineering";
|
|
1303
|
+
readonly Pops3cxEngineerTaskDefinitions: "pops_3cx_engineer_task_definitions";
|
|
1304
|
+
readonly Pops3cxEngineerTasks: "pops_3cx_engineer_tasks";
|
|
1302
1305
|
readonly Pops3cxExts: "pops_3cx_exts";
|
|
1303
1306
|
readonly PopsHostingPricing: "pops_hosting_pricing";
|
|
1304
1307
|
readonly Pops3cxKeys: "pops_3cx_keys";
|
|
@@ -3070,6 +3073,19 @@ export interface EmailRequestModel {
|
|
|
3070
3073
|
*/
|
|
3071
3074
|
'email': string;
|
|
3072
3075
|
}
|
|
3076
|
+
/**
|
|
3077
|
+
* Engineered Wizard Request
|
|
3078
|
+
*/
|
|
3079
|
+
export interface EngineeredWizardRequestModel {
|
|
3080
|
+
/**
|
|
3081
|
+
* Customer Name
|
|
3082
|
+
*/
|
|
3083
|
+
'customer': string;
|
|
3084
|
+
/**
|
|
3085
|
+
* Engineer ID
|
|
3086
|
+
*/
|
|
3087
|
+
'engineerId': number;
|
|
3088
|
+
}
|
|
3073
3089
|
/**
|
|
3074
3090
|
* Service Event DTO
|
|
3075
3091
|
*/
|
|
@@ -7282,6 +7298,43 @@ export declare const SdrReferenceType: {
|
|
|
7282
7298
|
readonly Crm: "CRM";
|
|
7283
7299
|
};
|
|
7284
7300
|
export type SdrReferenceType = typeof SdrReferenceType[keyof typeof SdrReferenceType];
|
|
7301
|
+
/**
|
|
7302
|
+
* EdTechPro School Information
|
|
7303
|
+
*/
|
|
7304
|
+
export interface SearchSchoolModel {
|
|
7305
|
+
/**
|
|
7306
|
+
* School ID
|
|
7307
|
+
*/
|
|
7308
|
+
'id': number;
|
|
7309
|
+
/**
|
|
7310
|
+
* URN Number
|
|
7311
|
+
*/
|
|
7312
|
+
'urn': string;
|
|
7313
|
+
/**
|
|
7314
|
+
* DFE Code
|
|
7315
|
+
*/
|
|
7316
|
+
'dfe': string;
|
|
7317
|
+
/**
|
|
7318
|
+
* School Name
|
|
7319
|
+
*/
|
|
7320
|
+
'name': string;
|
|
7321
|
+
/**
|
|
7322
|
+
* Phase of Education
|
|
7323
|
+
*/
|
|
7324
|
+
'phaseOfEducation': string;
|
|
7325
|
+
/**
|
|
7326
|
+
* Text Display
|
|
7327
|
+
*/
|
|
7328
|
+
'text': string;
|
|
7329
|
+
/**
|
|
7330
|
+
* MIS
|
|
7331
|
+
*/
|
|
7332
|
+
'mis': string;
|
|
7333
|
+
/**
|
|
7334
|
+
* Address
|
|
7335
|
+
*/
|
|
7336
|
+
'address': string;
|
|
7337
|
+
}
|
|
7285
7338
|
/**
|
|
7286
7339
|
* Serial Number Request
|
|
7287
7340
|
*/
|
|
@@ -9450,6 +9503,72 @@ export interface TcxDeadLicenceEntity {
|
|
|
9450
9503
|
*/
|
|
9451
9504
|
'date': string;
|
|
9452
9505
|
}
|
|
9506
|
+
/**
|
|
9507
|
+
* 3CX Engineer Task
|
|
9508
|
+
*/
|
|
9509
|
+
export interface TcxEngineerTaskDTO {
|
|
9510
|
+
/**
|
|
9511
|
+
* Task ID
|
|
9512
|
+
*/
|
|
9513
|
+
'taskId': number;
|
|
9514
|
+
/**
|
|
9515
|
+
* Title
|
|
9516
|
+
*/
|
|
9517
|
+
'title': string;
|
|
9518
|
+
/**
|
|
9519
|
+
* Description
|
|
9520
|
+
*/
|
|
9521
|
+
'description': string;
|
|
9522
|
+
/**
|
|
9523
|
+
* Completion Status
|
|
9524
|
+
*/
|
|
9525
|
+
'complete': number;
|
|
9526
|
+
/**
|
|
9527
|
+
* Note
|
|
9528
|
+
*/
|
|
9529
|
+
'note': string;
|
|
9530
|
+
}
|
|
9531
|
+
/**
|
|
9532
|
+
* 3CX Engineering
|
|
9533
|
+
*/
|
|
9534
|
+
export interface TcxEngineeringDTO {
|
|
9535
|
+
/**
|
|
9536
|
+
* Engineering ID
|
|
9537
|
+
*/
|
|
9538
|
+
'id': number;
|
|
9539
|
+
/**
|
|
9540
|
+
* Wizard ID
|
|
9541
|
+
*/
|
|
9542
|
+
'wizardId': number;
|
|
9543
|
+
/**
|
|
9544
|
+
* Engineer ID
|
|
9545
|
+
*/
|
|
9546
|
+
'engineerId': number;
|
|
9547
|
+
/**
|
|
9548
|
+
* Engineer Name
|
|
9549
|
+
*/
|
|
9550
|
+
'engineerName': string;
|
|
9551
|
+
/**
|
|
9552
|
+
* Ticket URL
|
|
9553
|
+
*/
|
|
9554
|
+
'ticketUrl': string;
|
|
9555
|
+
/**
|
|
9556
|
+
* Date Time
|
|
9557
|
+
*/
|
|
9558
|
+
'goLiveDate'?: string | null;
|
|
9559
|
+
/**
|
|
9560
|
+
* Spec
|
|
9561
|
+
*/
|
|
9562
|
+
'spec'?: string | null;
|
|
9563
|
+
/**
|
|
9564
|
+
* Note
|
|
9565
|
+
*/
|
|
9566
|
+
'note'?: string | null;
|
|
9567
|
+
/**
|
|
9568
|
+
* Tasks
|
|
9569
|
+
*/
|
|
9570
|
+
'tasks': Array<TcxEngineerTaskDTO>;
|
|
9571
|
+
}
|
|
9453
9572
|
/**
|
|
9454
9573
|
* 3CX Wizard Extension
|
|
9455
9574
|
*/
|
|
@@ -9457,35 +9576,35 @@ export interface TcxExtsEntity {
|
|
|
9457
9576
|
/**
|
|
9458
9577
|
* id
|
|
9459
9578
|
*/
|
|
9460
|
-
'id'
|
|
9579
|
+
'id'?: number | null;
|
|
9461
9580
|
/**
|
|
9462
9581
|
* Extension Number
|
|
9463
9582
|
*/
|
|
9464
|
-
'extNo'
|
|
9583
|
+
'extNo'?: string | null;
|
|
9465
9584
|
/**
|
|
9466
9585
|
* First Name
|
|
9467
9586
|
*/
|
|
9468
|
-
'firstName'
|
|
9587
|
+
'firstName'?: string | null;
|
|
9469
9588
|
/**
|
|
9470
9589
|
* Last Name
|
|
9471
9590
|
*/
|
|
9472
|
-
'lastName'
|
|
9591
|
+
'lastName'?: string | null;
|
|
9473
9592
|
/**
|
|
9474
9593
|
* Email Address
|
|
9475
9594
|
*/
|
|
9476
|
-
'email'
|
|
9595
|
+
'email'?: string | null;
|
|
9477
9596
|
/**
|
|
9478
9597
|
* DDI
|
|
9479
9598
|
*/
|
|
9480
|
-
'ddi'
|
|
9599
|
+
'ddi'?: string | null;
|
|
9481
9600
|
/**
|
|
9482
9601
|
* Outbound CLI
|
|
9483
9602
|
*/
|
|
9484
|
-
'cli'
|
|
9603
|
+
'cli'?: string | null;
|
|
9485
9604
|
/**
|
|
9486
9605
|
* Recording Enabled
|
|
9487
9606
|
*/
|
|
9488
|
-
'recording'
|
|
9607
|
+
'recording'?: boolean | null;
|
|
9489
9608
|
}
|
|
9490
9609
|
/**
|
|
9491
9610
|
* 3CX Installation
|
|
@@ -9892,15 +10011,15 @@ export interface TcxNumbersEntity {
|
|
|
9892
10011
|
/**
|
|
9893
10012
|
* id
|
|
9894
10013
|
*/
|
|
9895
|
-
'id'
|
|
10014
|
+
'id'?: number | null;
|
|
9896
10015
|
/**
|
|
9897
10016
|
* Number
|
|
9898
10017
|
*/
|
|
9899
|
-
'number'
|
|
10018
|
+
'number'?: string | null;
|
|
9900
10019
|
/**
|
|
9901
10020
|
* Label
|
|
9902
10021
|
*/
|
|
9903
|
-
'label'
|
|
10022
|
+
'label'?: string | null;
|
|
9904
10023
|
}
|
|
9905
10024
|
/**
|
|
9906
10025
|
* 3CX Wizard Office Hours
|
|
@@ -9909,89 +10028,89 @@ export interface TcxOfficeHoursEntity {
|
|
|
9909
10028
|
/**
|
|
9910
10029
|
* id
|
|
9911
10030
|
*/
|
|
9912
|
-
'id'
|
|
10031
|
+
'id'?: number | null;
|
|
9913
10032
|
/**
|
|
9914
10033
|
* Monday Hours From
|
|
9915
10034
|
*/
|
|
9916
|
-
'mondayFrom'
|
|
10035
|
+
'mondayFrom'?: string | null;
|
|
9917
10036
|
/**
|
|
9918
10037
|
* Monday Hours To
|
|
9919
10038
|
*/
|
|
9920
|
-
'mondayTo'
|
|
10039
|
+
'mondayTo'?: string | null;
|
|
9921
10040
|
/**
|
|
9922
10041
|
* Tuesday Hours From
|
|
9923
10042
|
*/
|
|
9924
|
-
'tuesdayFrom'
|
|
10043
|
+
'tuesdayFrom'?: string | null;
|
|
9925
10044
|
/**
|
|
9926
10045
|
* Tuesday Hours To
|
|
9927
10046
|
*/
|
|
9928
|
-
'tuesdayTo'
|
|
10047
|
+
'tuesdayTo'?: string | null;
|
|
9929
10048
|
/**
|
|
9930
10049
|
* Wednesday Hours From
|
|
9931
10050
|
*/
|
|
9932
|
-
'wednesdayFrom'
|
|
10051
|
+
'wednesdayFrom'?: string | null;
|
|
9933
10052
|
/**
|
|
9934
10053
|
* Wednesday Hours To
|
|
9935
10054
|
*/
|
|
9936
|
-
'wednesdayTo'
|
|
10055
|
+
'wednesdayTo'?: string | null;
|
|
9937
10056
|
/**
|
|
9938
10057
|
* Thursday Hours From
|
|
9939
10058
|
*/
|
|
9940
|
-
'thursdayFrom'
|
|
10059
|
+
'thursdayFrom'?: string | null;
|
|
9941
10060
|
/**
|
|
9942
10061
|
* Thursday Hours To
|
|
9943
10062
|
*/
|
|
9944
|
-
'thursdayTo'
|
|
10063
|
+
'thursdayTo'?: string | null;
|
|
9945
10064
|
/**
|
|
9946
10065
|
* Friday Hours From
|
|
9947
10066
|
*/
|
|
9948
|
-
'fridayFrom'
|
|
10067
|
+
'fridayFrom'?: string | null;
|
|
9949
10068
|
/**
|
|
9950
10069
|
* Friday Hours To
|
|
9951
10070
|
*/
|
|
9952
|
-
'fridayTo'
|
|
10071
|
+
'fridayTo'?: string | null;
|
|
9953
10072
|
/**
|
|
9954
10073
|
* Saturday Hours From
|
|
9955
10074
|
*/
|
|
9956
|
-
'saturdayFrom'
|
|
10075
|
+
'saturdayFrom'?: string | null;
|
|
9957
10076
|
/**
|
|
9958
10077
|
* Saturday Hours To
|
|
9959
10078
|
*/
|
|
9960
|
-
'saturdayTo'
|
|
10079
|
+
'saturdayTo'?: string | null;
|
|
9961
10080
|
/**
|
|
9962
10081
|
* Sunday Hours From
|
|
9963
10082
|
*/
|
|
9964
|
-
'sundayFrom'
|
|
10083
|
+
'sundayFrom'?: string | null;
|
|
9965
10084
|
/**
|
|
9966
10085
|
* Sunday Hours To
|
|
9967
10086
|
*/
|
|
9968
|
-
'sundayTo'
|
|
10087
|
+
'sundayTo'?: string | null;
|
|
9969
10088
|
}
|
|
9970
10089
|
export interface TcxPhoneModel {
|
|
9971
10090
|
/**
|
|
9972
10091
|
* id
|
|
9973
10092
|
*/
|
|
9974
|
-
'id'
|
|
10093
|
+
'id'?: number | null;
|
|
9975
10094
|
/**
|
|
9976
10095
|
* Phone Model
|
|
9977
10096
|
*/
|
|
9978
|
-
'phone'
|
|
10097
|
+
'phone'?: string | null;
|
|
9979
10098
|
/**
|
|
9980
10099
|
* MAC Address
|
|
9981
10100
|
*/
|
|
9982
|
-
'mac'
|
|
10101
|
+
'mac'?: string | null;
|
|
9983
10102
|
/**
|
|
9984
10103
|
* SKU
|
|
9985
10104
|
*/
|
|
9986
|
-
'sku'
|
|
10105
|
+
'sku'?: string | null;
|
|
9987
10106
|
/**
|
|
9988
10107
|
* Extension Number
|
|
9989
10108
|
*/
|
|
9990
|
-
'extNo'
|
|
10109
|
+
'extNo'?: string | null;
|
|
9991
10110
|
/**
|
|
9992
10111
|
* SBC ID
|
|
9993
10112
|
*/
|
|
9994
|
-
'sbcId'
|
|
10113
|
+
'sbcId'?: string | null;
|
|
9995
10114
|
/**
|
|
9996
10115
|
* Phone exists on order
|
|
9997
10116
|
*/
|
|
@@ -10004,27 +10123,27 @@ export interface TcxPhonesEntity {
|
|
|
10004
10123
|
/**
|
|
10005
10124
|
* id
|
|
10006
10125
|
*/
|
|
10007
|
-
'id'
|
|
10126
|
+
'id'?: number | null;
|
|
10008
10127
|
/**
|
|
10009
10128
|
* Phone Model
|
|
10010
10129
|
*/
|
|
10011
|
-
'phone'
|
|
10130
|
+
'phone'?: string | null;
|
|
10012
10131
|
/**
|
|
10013
10132
|
* MAC Address
|
|
10014
10133
|
*/
|
|
10015
|
-
'mac'
|
|
10134
|
+
'mac'?: string | null;
|
|
10016
10135
|
/**
|
|
10017
10136
|
* SKU
|
|
10018
10137
|
*/
|
|
10019
|
-
'sku'
|
|
10138
|
+
'sku'?: string | null;
|
|
10020
10139
|
/**
|
|
10021
10140
|
* Extension Number
|
|
10022
10141
|
*/
|
|
10023
|
-
'extNo'
|
|
10142
|
+
'extNo'?: string | null;
|
|
10024
10143
|
/**
|
|
10025
10144
|
* SBC ID
|
|
10026
10145
|
*/
|
|
10027
|
-
'sbcId'
|
|
10146
|
+
'sbcId'?: string | null;
|
|
10028
10147
|
}
|
|
10029
10148
|
/**
|
|
10030
10149
|
* 3CX Remote Storage
|
|
@@ -10091,67 +10210,67 @@ export interface TcxSbcEntity {
|
|
|
10091
10210
|
/**
|
|
10092
10211
|
* id
|
|
10093
10212
|
*/
|
|
10094
|
-
'id'
|
|
10213
|
+
'id'?: number | null;
|
|
10095
10214
|
/**
|
|
10096
10215
|
* SBC ID
|
|
10097
10216
|
*/
|
|
10098
|
-
'sbcId'
|
|
10217
|
+
'sbcId'?: number | null;
|
|
10099
10218
|
/**
|
|
10100
10219
|
* 3CX URL
|
|
10101
10220
|
*/
|
|
10102
|
-
'tcxUrl'
|
|
10221
|
+
'tcxUrl'?: string | null;
|
|
10103
10222
|
/**
|
|
10104
10223
|
* 3CX SBC Auth Key
|
|
10105
10224
|
*/
|
|
10106
|
-
'tcxKey'
|
|
10225
|
+
'tcxKey'?: string | null;
|
|
10107
10226
|
/**
|
|
10108
10227
|
* Label
|
|
10109
10228
|
*/
|
|
10110
|
-
'label'
|
|
10229
|
+
'label'?: string | null;
|
|
10111
10230
|
/**
|
|
10112
10231
|
* IP Address
|
|
10113
10232
|
*/
|
|
10114
|
-
'ipAddress'
|
|
10233
|
+
'ipAddress'?: string | null;
|
|
10115
10234
|
/**
|
|
10116
10235
|
* Subnet Mask
|
|
10117
10236
|
*/
|
|
10118
|
-
'netmask'
|
|
10237
|
+
'netmask'?: string | null;
|
|
10119
10238
|
/**
|
|
10120
10239
|
* Default Gateway
|
|
10121
10240
|
*/
|
|
10122
|
-
'defaultGateway'
|
|
10241
|
+
'defaultGateway'?: string | null;
|
|
10123
10242
|
/**
|
|
10124
10243
|
* DNS 1
|
|
10125
10244
|
*/
|
|
10126
|
-
'dns1'
|
|
10245
|
+
'dns1'?: string | null;
|
|
10127
10246
|
/**
|
|
10128
10247
|
* DNS 2
|
|
10129
10248
|
*/
|
|
10130
|
-
'dns2'
|
|
10249
|
+
'dns2'?: string | null;
|
|
10131
10250
|
/**
|
|
10132
10251
|
* Site Address Line 1
|
|
10133
10252
|
*/
|
|
10134
|
-
'address1'
|
|
10253
|
+
'address1'?: string | null;
|
|
10135
10254
|
/**
|
|
10136
10255
|
* Site Address Line 2
|
|
10137
10256
|
*/
|
|
10138
|
-
'address2'
|
|
10257
|
+
'address2'?: string | null;
|
|
10139
10258
|
/**
|
|
10140
10259
|
* Site City
|
|
10141
10260
|
*/
|
|
10142
|
-
'city'
|
|
10261
|
+
'city'?: string | null;
|
|
10143
10262
|
/**
|
|
10144
10263
|
* Site Postal Code
|
|
10145
10264
|
*/
|
|
10146
|
-
'postalCode'
|
|
10265
|
+
'postalCode'?: string | null;
|
|
10147
10266
|
/**
|
|
10148
10267
|
* Site Primary Contact
|
|
10149
10268
|
*/
|
|
10150
|
-
'primaryContact'
|
|
10269
|
+
'primaryContact'?: string | null;
|
|
10151
10270
|
/**
|
|
10152
10271
|
* Site Technical Contact
|
|
10153
10272
|
*/
|
|
10154
|
-
'technicalContact'
|
|
10273
|
+
'technicalContact'?: string | null;
|
|
10155
10274
|
}
|
|
10156
10275
|
/**
|
|
10157
10276
|
* 3CX Wizard SBC
|
|
@@ -10160,67 +10279,67 @@ export interface TcxSbcModel {
|
|
|
10160
10279
|
/**
|
|
10161
10280
|
* id
|
|
10162
10281
|
*/
|
|
10163
|
-
'id'
|
|
10282
|
+
'id'?: number | null;
|
|
10164
10283
|
/**
|
|
10165
10284
|
* SBC ID
|
|
10166
10285
|
*/
|
|
10167
|
-
'sbcId'
|
|
10286
|
+
'sbcId'?: number | null;
|
|
10168
10287
|
/**
|
|
10169
10288
|
* 3CX URL
|
|
10170
10289
|
*/
|
|
10171
|
-
'tcxUrl'
|
|
10290
|
+
'tcxUrl'?: string | null;
|
|
10172
10291
|
/**
|
|
10173
10292
|
* 3CX SBC Auth Key
|
|
10174
10293
|
*/
|
|
10175
|
-
'tcxKey'
|
|
10294
|
+
'tcxKey'?: string | null;
|
|
10176
10295
|
/**
|
|
10177
10296
|
* Label
|
|
10178
10297
|
*/
|
|
10179
|
-
'label'
|
|
10298
|
+
'label'?: string | null;
|
|
10180
10299
|
/**
|
|
10181
10300
|
* IP Address
|
|
10182
10301
|
*/
|
|
10183
|
-
'ipAddress'
|
|
10302
|
+
'ipAddress'?: string | null;
|
|
10184
10303
|
/**
|
|
10185
10304
|
* Subnet Mask
|
|
10186
10305
|
*/
|
|
10187
|
-
'netmask'
|
|
10306
|
+
'netmask'?: string | null;
|
|
10188
10307
|
/**
|
|
10189
10308
|
* Default Gateway
|
|
10190
10309
|
*/
|
|
10191
|
-
'defaultGateway'
|
|
10310
|
+
'defaultGateway'?: string | null;
|
|
10192
10311
|
/**
|
|
10193
10312
|
* DNS 1
|
|
10194
10313
|
*/
|
|
10195
|
-
'dns1'
|
|
10314
|
+
'dns1'?: string | null;
|
|
10196
10315
|
/**
|
|
10197
10316
|
* DNS 2
|
|
10198
10317
|
*/
|
|
10199
|
-
'dns2'
|
|
10318
|
+
'dns2'?: string | null;
|
|
10200
10319
|
/**
|
|
10201
10320
|
* Site Address Line 1
|
|
10202
10321
|
*/
|
|
10203
|
-
'address1'
|
|
10322
|
+
'address1'?: string | null;
|
|
10204
10323
|
/**
|
|
10205
10324
|
* Site Address Line 2
|
|
10206
10325
|
*/
|
|
10207
|
-
'address2'
|
|
10326
|
+
'address2'?: string | null;
|
|
10208
10327
|
/**
|
|
10209
10328
|
* Site City
|
|
10210
10329
|
*/
|
|
10211
|
-
'city'
|
|
10330
|
+
'city'?: string | null;
|
|
10212
10331
|
/**
|
|
10213
10332
|
* Site Postal Code
|
|
10214
10333
|
*/
|
|
10215
|
-
'postalCode'
|
|
10334
|
+
'postalCode'?: string | null;
|
|
10216
10335
|
/**
|
|
10217
10336
|
* Site Primary Contact
|
|
10218
10337
|
*/
|
|
10219
|
-
'primaryContact'
|
|
10338
|
+
'primaryContact'?: string | null;
|
|
10220
10339
|
/**
|
|
10221
10340
|
* Site Technical Contact
|
|
10222
10341
|
*/
|
|
10223
|
-
'technicalContact'
|
|
10342
|
+
'technicalContact'?: string | null;
|
|
10224
10343
|
}
|
|
10225
10344
|
/**
|
|
10226
10345
|
* 3CX SBC Response
|
|
@@ -10242,7 +10361,7 @@ export interface TcxSetupEntity {
|
|
|
10242
10361
|
/**
|
|
10243
10362
|
* Creation Date
|
|
10244
10363
|
*/
|
|
10245
|
-
'creation'
|
|
10364
|
+
'creation'?: string | null;
|
|
10246
10365
|
/**
|
|
10247
10366
|
* Install Type
|
|
10248
10367
|
*/
|
|
@@ -10250,99 +10369,99 @@ export interface TcxSetupEntity {
|
|
|
10250
10369
|
/**
|
|
10251
10370
|
* 3CX Install Version
|
|
10252
10371
|
*/
|
|
10253
|
-
'installVersion'
|
|
10372
|
+
'installVersion'?: number | null;
|
|
10254
10373
|
/**
|
|
10255
10374
|
* Linked Order ID
|
|
10256
10375
|
*/
|
|
10257
|
-
'orderId'
|
|
10376
|
+
'orderId'?: number | null;
|
|
10258
10377
|
/**
|
|
10259
10378
|
* Customer ID
|
|
10260
10379
|
*/
|
|
10261
|
-
'customerId'
|
|
10380
|
+
'customerId'?: number | null;
|
|
10262
10381
|
/**
|
|
10263
10382
|
* 3CX System Owner Username
|
|
10264
10383
|
*/
|
|
10265
|
-
'username'
|
|
10384
|
+
'username'?: string | null;
|
|
10266
10385
|
/**
|
|
10267
10386
|
* 3CX System Owner Password
|
|
10268
10387
|
*/
|
|
10269
|
-
'password'
|
|
10388
|
+
'password'?: string | null;
|
|
10270
10389
|
/**
|
|
10271
10390
|
* Primary Contact Name
|
|
10272
10391
|
*/
|
|
10273
|
-
'primaryContactName'
|
|
10392
|
+
'primaryContactName'?: string | null;
|
|
10274
10393
|
/**
|
|
10275
10394
|
* Primary Contact Number
|
|
10276
10395
|
*/
|
|
10277
|
-
'primaryContactNumber'
|
|
10396
|
+
'primaryContactNumber'?: string | null;
|
|
10278
10397
|
/**
|
|
10279
10398
|
* Technical Contact Name
|
|
10280
10399
|
*/
|
|
10281
|
-
'technicalContactName'
|
|
10400
|
+
'technicalContactName'?: string | null;
|
|
10282
10401
|
/**
|
|
10283
10402
|
* Technical Contact Number
|
|
10284
10403
|
*/
|
|
10285
|
-
'technicalContactNumber'
|
|
10404
|
+
'technicalContactNumber'?: string | null;
|
|
10286
10405
|
/**
|
|
10287
10406
|
* Company Name
|
|
10288
10407
|
*/
|
|
10289
|
-
'companyName'
|
|
10408
|
+
'companyName'?: string | null;
|
|
10290
10409
|
/**
|
|
10291
10410
|
* 3CX Admin Email Address
|
|
10292
10411
|
*/
|
|
10293
|
-
'email'
|
|
10412
|
+
'email'?: string | null;
|
|
10294
10413
|
/**
|
|
10295
10414
|
* Contact Phone Number
|
|
10296
10415
|
*/
|
|
10297
|
-
'phone'
|
|
10416
|
+
'phone'?: string | null;
|
|
10298
10417
|
/**
|
|
10299
10418
|
* Additional Disk Space
|
|
10300
10419
|
*/
|
|
10301
|
-
'additionalDisk'
|
|
10420
|
+
'additionalDisk'?: number | null;
|
|
10302
10421
|
/**
|
|
10303
10422
|
* 3CX Licence Key
|
|
10304
10423
|
*/
|
|
10305
|
-
'licencekey'
|
|
10424
|
+
'licencekey'?: string | null;
|
|
10306
10425
|
/**
|
|
10307
10426
|
* 3CX Hostname
|
|
10308
10427
|
*/
|
|
10309
|
-
'hostname'
|
|
10428
|
+
'hostname'?: string | null;
|
|
10310
10429
|
/**
|
|
10311
10430
|
* 3CX DNS Suffix
|
|
10312
10431
|
*/
|
|
10313
|
-
'suffix'
|
|
10432
|
+
'suffix'?: string | null;
|
|
10314
10433
|
/**
|
|
10315
10434
|
* Extension Length
|
|
10316
10435
|
*/
|
|
10317
|
-
'extLength'
|
|
10436
|
+
'extLength'?: number | null;
|
|
10318
10437
|
/**
|
|
10319
10438
|
* Address Line 1
|
|
10320
10439
|
*/
|
|
10321
|
-
'address1'
|
|
10440
|
+
'address1'?: string | null;
|
|
10322
10441
|
/**
|
|
10323
10442
|
* Address Line 2
|
|
10324
10443
|
*/
|
|
10325
|
-
'address2'
|
|
10444
|
+
'address2'?: string | null;
|
|
10326
10445
|
/**
|
|
10327
10446
|
* City
|
|
10328
10447
|
*/
|
|
10329
|
-
'city'
|
|
10448
|
+
'city'?: string | null;
|
|
10330
10449
|
/**
|
|
10331
10450
|
* Postal Code
|
|
10332
10451
|
*/
|
|
10333
|
-
'postCode'
|
|
10452
|
+
'postCode'?: string | null;
|
|
10334
10453
|
/**
|
|
10335
10454
|
* Region
|
|
10336
10455
|
*/
|
|
10337
|
-
'region'
|
|
10456
|
+
'region'?: TcxSetupEntityRegionEnum | null;
|
|
10338
10457
|
/**
|
|
10339
10458
|
* Status
|
|
10340
10459
|
*/
|
|
10341
|
-
'status'
|
|
10460
|
+
'status'?: number | null;
|
|
10342
10461
|
/**
|
|
10343
10462
|
* Instance ID
|
|
10344
10463
|
*/
|
|
10345
|
-
'instanceId'
|
|
10464
|
+
'instanceId'?: string | null;
|
|
10346
10465
|
}
|
|
10347
10466
|
export declare const TcxSetupEntityInstallTypeEnum: {
|
|
10348
10467
|
readonly New: "new";
|
|
@@ -10391,55 +10510,64 @@ export interface TcxSipTrunksEntity {
|
|
|
10391
10510
|
/**
|
|
10392
10511
|
* id
|
|
10393
10512
|
*/
|
|
10394
|
-
'id'
|
|
10513
|
+
'id'?: number | null;
|
|
10395
10514
|
/**
|
|
10396
10515
|
* Provider
|
|
10397
10516
|
*/
|
|
10398
|
-
'provider'
|
|
10517
|
+
'provider'?: string | null;
|
|
10399
10518
|
/**
|
|
10400
10519
|
* Service ID (YG Trunks Only)
|
|
10401
10520
|
*/
|
|
10402
|
-
'serviceId'
|
|
10521
|
+
'serviceId'?: number | null;
|
|
10403
10522
|
/**
|
|
10404
10523
|
* Auth Type
|
|
10405
10524
|
*/
|
|
10406
|
-
'authType'
|
|
10525
|
+
'authType'?: string | null;
|
|
10407
10526
|
/**
|
|
10408
10527
|
* Registrar Address
|
|
10409
10528
|
*/
|
|
10410
|
-
'server'
|
|
10529
|
+
'server'?: string | null;
|
|
10411
10530
|
/**
|
|
10412
10531
|
* Username
|
|
10413
10532
|
*/
|
|
10414
|
-
'username'
|
|
10533
|
+
'username'?: string | null;
|
|
10415
10534
|
/**
|
|
10416
10535
|
* Password
|
|
10417
10536
|
*/
|
|
10418
|
-
'password'
|
|
10537
|
+
'password'?: string | null;
|
|
10419
10538
|
/**
|
|
10420
10539
|
* Channels
|
|
10421
10540
|
*/
|
|
10422
|
-
'channels'
|
|
10541
|
+
'channels'?: number | null;
|
|
10423
10542
|
/**
|
|
10424
10543
|
* SIP Port
|
|
10425
10544
|
*/
|
|
10426
|
-
'port'
|
|
10545
|
+
'port'?: number | null;
|
|
10427
10546
|
/**
|
|
10428
10547
|
* Proxy Address
|
|
10429
10548
|
*/
|
|
10430
|
-
'proxy'
|
|
10549
|
+
'proxy'?: string | null;
|
|
10431
10550
|
/**
|
|
10432
10551
|
* Secondary Authentication Password
|
|
10433
10552
|
*/
|
|
10434
|
-
'password2'
|
|
10553
|
+
'password2'?: string | null;
|
|
10435
10554
|
/**
|
|
10436
10555
|
* Main Trunk Number
|
|
10437
10556
|
*/
|
|
10438
|
-
'number'
|
|
10557
|
+
'number'?: string | null;
|
|
10439
10558
|
/**
|
|
10440
10559
|
* PBX IP Address
|
|
10441
10560
|
*/
|
|
10442
|
-
'ipAddress'
|
|
10561
|
+
'ipAddress'?: string | null;
|
|
10562
|
+
}
|
|
10563
|
+
/**
|
|
10564
|
+
* 3CX Wizard Summary
|
|
10565
|
+
*/
|
|
10566
|
+
export interface TcxSummaryDTO {
|
|
10567
|
+
/**
|
|
10568
|
+
* Wizard ID
|
|
10569
|
+
*/
|
|
10570
|
+
'id': number;
|
|
10443
10571
|
}
|
|
10444
10572
|
/**
|
|
10445
10573
|
* 3CX Template
|
|
@@ -10500,29 +10628,30 @@ export interface TcxWizardModel {
|
|
|
10500
10628
|
/**
|
|
10501
10629
|
* 3CX Installation Wizard ID
|
|
10502
10630
|
*/
|
|
10503
|
-
'id'
|
|
10504
|
-
'config'
|
|
10631
|
+
'id'?: number | null;
|
|
10632
|
+
'config'?: TcxWizardConfigModel | null;
|
|
10505
10633
|
/**
|
|
10506
10634
|
* 3CX Licence Key
|
|
10507
10635
|
*/
|
|
10508
|
-
'licenceKey'
|
|
10636
|
+
'licenceKey'?: string | null;
|
|
10509
10637
|
/**
|
|
10510
10638
|
* Install Type
|
|
10511
10639
|
*/
|
|
10512
|
-
'installType'
|
|
10640
|
+
'installType'?: TcxWizardModelInstallTypeEnum | null;
|
|
10513
10641
|
'backup'?: TcxBackupModel | null;
|
|
10514
|
-
'extensions'
|
|
10515
|
-
'numbers'
|
|
10642
|
+
'extensions'?: Array<TcxExtsEntity> | null;
|
|
10643
|
+
'numbers'?: Array<TcxNumbersEntity> | null;
|
|
10516
10644
|
'officeHours'?: TcxOfficeHoursEntity | null;
|
|
10517
|
-
'phones'
|
|
10518
|
-
'sbcs'
|
|
10645
|
+
'phones'?: Array<TcxPhoneModel> | null;
|
|
10646
|
+
'sbcs'?: Array<TcxSbcModel> | null;
|
|
10519
10647
|
'sipTrunk'?: TcxSipTrunksEntity | null;
|
|
10520
10648
|
'installationStatus'?: TcxWizardModelInstallationStatusEnum | null;
|
|
10649
|
+
'engineering'?: string | null;
|
|
10521
10650
|
'setup'?: TcxSetupEntity | null;
|
|
10522
10651
|
/**
|
|
10523
10652
|
* End User Wizard View
|
|
10524
10653
|
*/
|
|
10525
|
-
'endUserView'
|
|
10654
|
+
'endUserView'?: boolean | null;
|
|
10526
10655
|
}
|
|
10527
10656
|
export declare const TcxWizardModelInstallTypeEnum: {
|
|
10528
10657
|
readonly New: "new";
|
|
@@ -15226,6 +15355,13 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
|
|
|
15226
15355
|
* @throws {RequiredError}
|
|
15227
15356
|
*/
|
|
15228
15357
|
getGetInstanceInstallStatus: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15358
|
+
/**
|
|
15359
|
+
* Get all items on the order linked to the wizard licence key
|
|
15360
|
+
* @summary Get all items on the order linked to this wizard\'s licence key
|
|
15361
|
+
* @param {*} [options] Override http request option.
|
|
15362
|
+
* @throws {RequiredError}
|
|
15363
|
+
*/
|
|
15364
|
+
getGetOrderItems: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15229
15365
|
/**
|
|
15230
15366
|
* Get PBX IP Address
|
|
15231
15367
|
* @summary Get PBX IP Address
|
|
@@ -15290,6 +15426,13 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
|
|
|
15290
15426
|
* @throws {RequiredError}
|
|
15291
15427
|
*/
|
|
15292
15428
|
patchAddSbcs: (tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15429
|
+
/**
|
|
15430
|
+
* Allocate Wizard Engineer
|
|
15431
|
+
* @param {number} engineerId Engineer ID
|
|
15432
|
+
* @param {*} [options] Override http request option.
|
|
15433
|
+
* @throws {RequiredError}
|
|
15434
|
+
*/
|
|
15435
|
+
patchAllocateEngineer: (engineerId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15293
15436
|
/**
|
|
15294
15437
|
* Update 3CX Installation Wizard
|
|
15295
15438
|
* @summary Update 3CX Installation Wizard
|
|
@@ -15298,6 +15441,43 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
|
|
|
15298
15441
|
* @throws {RequiredError}
|
|
15299
15442
|
*/
|
|
15300
15443
|
patchGetWizard: (tcxWizardModel?: TcxWizardModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15444
|
+
/**
|
|
15445
|
+
* Update Wizard Engineer Task Complete Status
|
|
15446
|
+
* @param {number} taskId Task ID
|
|
15447
|
+
* @param {PatchMarkEngineerTaskAsCompleteCompleteEnum} complete Complete Status
|
|
15448
|
+
* @param {*} [options] Override http request option.
|
|
15449
|
+
* @throws {RequiredError}
|
|
15450
|
+
*/
|
|
15451
|
+
patchMarkEngineerTaskAsComplete: (taskId: number, complete: PatchMarkEngineerTaskAsCompleteCompleteEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15452
|
+
/**
|
|
15453
|
+
* Update Wizard Engineer Task Note
|
|
15454
|
+
* @param {number} taskId Task ID
|
|
15455
|
+
* @param {string} note note
|
|
15456
|
+
* @param {*} [options] Override http request option.
|
|
15457
|
+
* @throws {RequiredError}
|
|
15458
|
+
*/
|
|
15459
|
+
patchUpdateEngineerTaskNote: (taskId: number, note: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15460
|
+
/**
|
|
15461
|
+
* Update Wizard Go Live Date
|
|
15462
|
+
* @param {string} goLiveDate Go Live Date
|
|
15463
|
+
* @param {*} [options] Override http request option.
|
|
15464
|
+
* @throws {RequiredError}
|
|
15465
|
+
*/
|
|
15466
|
+
patchUpdateGoLiveDate: (goLiveDate: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15467
|
+
/**
|
|
15468
|
+
* Update Wizard Engineer Note
|
|
15469
|
+
* @param {string} note Note
|
|
15470
|
+
* @param {*} [options] Override http request option.
|
|
15471
|
+
* @throws {RequiredError}
|
|
15472
|
+
*/
|
|
15473
|
+
patchUpdateNote: (note: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15474
|
+
/**
|
|
15475
|
+
* Update Wizard Engineer Spec
|
|
15476
|
+
* @param {string} spec Spec
|
|
15477
|
+
* @param {*} [options] Override http request option.
|
|
15478
|
+
* @throws {RequiredError}
|
|
15479
|
+
*/
|
|
15480
|
+
patchUpdateSpec: (spec: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15301
15481
|
/**
|
|
15302
15482
|
* Add Extensions To 3CX Installation Wizard
|
|
15303
15483
|
* @summary Add Extensions To 3CX Installation Wizard
|
|
@@ -15507,6 +15687,13 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
|
|
|
15507
15687
|
* @throws {RequiredError}
|
|
15508
15688
|
*/
|
|
15509
15689
|
getGetInstanceInstallStatus(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HostingChangeResponseModel>>;
|
|
15690
|
+
/**
|
|
15691
|
+
* Get all items on the order linked to the wizard licence key
|
|
15692
|
+
* @summary Get all items on the order linked to this wizard\'s licence key
|
|
15693
|
+
* @param {*} [options] Override http request option.
|
|
15694
|
+
* @throws {RequiredError}
|
|
15695
|
+
*/
|
|
15696
|
+
getGetOrderItems(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ItemEntity>>>;
|
|
15510
15697
|
/**
|
|
15511
15698
|
* Get PBX IP Address
|
|
15512
15699
|
* @summary Get PBX IP Address
|
|
@@ -15571,6 +15758,13 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
|
|
|
15571
15758
|
* @throws {RequiredError}
|
|
15572
15759
|
*/
|
|
15573
15760
|
patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcModel>>>;
|
|
15761
|
+
/**
|
|
15762
|
+
* Allocate Wizard Engineer
|
|
15763
|
+
* @param {number} engineerId Engineer ID
|
|
15764
|
+
* @param {*} [options] Override http request option.
|
|
15765
|
+
* @throws {RequiredError}
|
|
15766
|
+
*/
|
|
15767
|
+
patchAllocateEngineer(engineerId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15574
15768
|
/**
|
|
15575
15769
|
* Update 3CX Installation Wizard
|
|
15576
15770
|
* @summary Update 3CX Installation Wizard
|
|
@@ -15579,6 +15773,43 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
|
|
|
15579
15773
|
* @throws {RequiredError}
|
|
15580
15774
|
*/
|
|
15581
15775
|
patchGetWizard(tcxWizardModel?: TcxWizardModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxWizardModel>>;
|
|
15776
|
+
/**
|
|
15777
|
+
* Update Wizard Engineer Task Complete Status
|
|
15778
|
+
* @param {number} taskId Task ID
|
|
15779
|
+
* @param {PatchMarkEngineerTaskAsCompleteCompleteEnum} complete Complete Status
|
|
15780
|
+
* @param {*} [options] Override http request option.
|
|
15781
|
+
* @throws {RequiredError}
|
|
15782
|
+
*/
|
|
15783
|
+
patchMarkEngineerTaskAsComplete(taskId: number, complete: PatchMarkEngineerTaskAsCompleteCompleteEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15784
|
+
/**
|
|
15785
|
+
* Update Wizard Engineer Task Note
|
|
15786
|
+
* @param {number} taskId Task ID
|
|
15787
|
+
* @param {string} note note
|
|
15788
|
+
* @param {*} [options] Override http request option.
|
|
15789
|
+
* @throws {RequiredError}
|
|
15790
|
+
*/
|
|
15791
|
+
patchUpdateEngineerTaskNote(taskId: number, note: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15792
|
+
/**
|
|
15793
|
+
* Update Wizard Go Live Date
|
|
15794
|
+
* @param {string} goLiveDate Go Live Date
|
|
15795
|
+
* @param {*} [options] Override http request option.
|
|
15796
|
+
* @throws {RequiredError}
|
|
15797
|
+
*/
|
|
15798
|
+
patchUpdateGoLiveDate(goLiveDate: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15799
|
+
/**
|
|
15800
|
+
* Update Wizard Engineer Note
|
|
15801
|
+
* @param {string} note Note
|
|
15802
|
+
* @param {*} [options] Override http request option.
|
|
15803
|
+
* @throws {RequiredError}
|
|
15804
|
+
*/
|
|
15805
|
+
patchUpdateNote(note: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15806
|
+
/**
|
|
15807
|
+
* Update Wizard Engineer Spec
|
|
15808
|
+
* @param {string} spec Spec
|
|
15809
|
+
* @param {*} [options] Override http request option.
|
|
15810
|
+
* @throws {RequiredError}
|
|
15811
|
+
*/
|
|
15812
|
+
patchUpdateSpec(spec: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15582
15813
|
/**
|
|
15583
15814
|
* Add Extensions To 3CX Installation Wizard
|
|
15584
15815
|
* @summary Add Extensions To 3CX Installation Wizard
|
|
@@ -15788,6 +16019,13 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
|
|
|
15788
16019
|
* @throws {RequiredError}
|
|
15789
16020
|
*/
|
|
15790
16021
|
getGetInstanceInstallStatus(options?: RawAxiosRequestConfig): AxiosPromise<HostingChangeResponseModel>;
|
|
16022
|
+
/**
|
|
16023
|
+
* Get all items on the order linked to the wizard licence key
|
|
16024
|
+
* @summary Get all items on the order linked to this wizard\'s licence key
|
|
16025
|
+
* @param {*} [options] Override http request option.
|
|
16026
|
+
* @throws {RequiredError}
|
|
16027
|
+
*/
|
|
16028
|
+
getGetOrderItems(options?: RawAxiosRequestConfig): AxiosPromise<Array<ItemEntity>>;
|
|
15791
16029
|
/**
|
|
15792
16030
|
* Get PBX IP Address
|
|
15793
16031
|
* @summary Get PBX IP Address
|
|
@@ -15852,6 +16090,13 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
|
|
|
15852
16090
|
* @throws {RequiredError}
|
|
15853
16091
|
*/
|
|
15854
16092
|
patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcModel>>;
|
|
16093
|
+
/**
|
|
16094
|
+
* Allocate Wizard Engineer
|
|
16095
|
+
* @param {number} engineerId Engineer ID
|
|
16096
|
+
* @param {*} [options] Override http request option.
|
|
16097
|
+
* @throws {RequiredError}
|
|
16098
|
+
*/
|
|
16099
|
+
patchAllocateEngineer(engineerId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15855
16100
|
/**
|
|
15856
16101
|
* Update 3CX Installation Wizard
|
|
15857
16102
|
* @summary Update 3CX Installation Wizard
|
|
@@ -15860,6 +16105,43 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
|
|
|
15860
16105
|
* @throws {RequiredError}
|
|
15861
16106
|
*/
|
|
15862
16107
|
patchGetWizard(tcxWizardModel?: TcxWizardModel, options?: RawAxiosRequestConfig): AxiosPromise<TcxWizardModel>;
|
|
16108
|
+
/**
|
|
16109
|
+
* Update Wizard Engineer Task Complete Status
|
|
16110
|
+
* @param {number} taskId Task ID
|
|
16111
|
+
* @param {PatchMarkEngineerTaskAsCompleteCompleteEnum} complete Complete Status
|
|
16112
|
+
* @param {*} [options] Override http request option.
|
|
16113
|
+
* @throws {RequiredError}
|
|
16114
|
+
*/
|
|
16115
|
+
patchMarkEngineerTaskAsComplete(taskId: number, complete: PatchMarkEngineerTaskAsCompleteCompleteEnum, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
16116
|
+
/**
|
|
16117
|
+
* Update Wizard Engineer Task Note
|
|
16118
|
+
* @param {number} taskId Task ID
|
|
16119
|
+
* @param {string} note note
|
|
16120
|
+
* @param {*} [options] Override http request option.
|
|
16121
|
+
* @throws {RequiredError}
|
|
16122
|
+
*/
|
|
16123
|
+
patchUpdateEngineerTaskNote(taskId: number, note: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
16124
|
+
/**
|
|
16125
|
+
* Update Wizard Go Live Date
|
|
16126
|
+
* @param {string} goLiveDate Go Live Date
|
|
16127
|
+
* @param {*} [options] Override http request option.
|
|
16128
|
+
* @throws {RequiredError}
|
|
16129
|
+
*/
|
|
16130
|
+
patchUpdateGoLiveDate(goLiveDate: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
16131
|
+
/**
|
|
16132
|
+
* Update Wizard Engineer Note
|
|
16133
|
+
* @param {string} note Note
|
|
16134
|
+
* @param {*} [options] Override http request option.
|
|
16135
|
+
* @throws {RequiredError}
|
|
16136
|
+
*/
|
|
16137
|
+
patchUpdateNote(note: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
16138
|
+
/**
|
|
16139
|
+
* Update Wizard Engineer Spec
|
|
16140
|
+
* @param {string} spec Spec
|
|
16141
|
+
* @param {*} [options] Override http request option.
|
|
16142
|
+
* @throws {RequiredError}
|
|
16143
|
+
*/
|
|
16144
|
+
patchUpdateSpec(spec: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15863
16145
|
/**
|
|
15864
16146
|
* Add Extensions To 3CX Installation Wizard
|
|
15865
16147
|
* @summary Add Extensions To 3CX Installation Wizard
|
|
@@ -16069,6 +16351,13 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
|
|
|
16069
16351
|
* @throws {RequiredError}
|
|
16070
16352
|
*/
|
|
16071
16353
|
getGetInstanceInstallStatus(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HostingChangeResponseModel, any, {}>>;
|
|
16354
|
+
/**
|
|
16355
|
+
* Get all items on the order linked to the wizard licence key
|
|
16356
|
+
* @summary Get all items on the order linked to this wizard\'s licence key
|
|
16357
|
+
* @param {*} [options] Override http request option.
|
|
16358
|
+
* @throws {RequiredError}
|
|
16359
|
+
*/
|
|
16360
|
+
getGetOrderItems(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ItemEntity[], any, {}>>;
|
|
16072
16361
|
/**
|
|
16073
16362
|
* Get PBX IP Address
|
|
16074
16363
|
* @summary Get PBX IP Address
|
|
@@ -16133,6 +16422,13 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
|
|
|
16133
16422
|
* @throws {RequiredError}
|
|
16134
16423
|
*/
|
|
16135
16424
|
patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxSbcModel[], any, {}>>;
|
|
16425
|
+
/**
|
|
16426
|
+
* Allocate Wizard Engineer
|
|
16427
|
+
* @param {number} engineerId Engineer ID
|
|
16428
|
+
* @param {*} [options] Override http request option.
|
|
16429
|
+
* @throws {RequiredError}
|
|
16430
|
+
*/
|
|
16431
|
+
patchAllocateEngineer(engineerId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16136
16432
|
/**
|
|
16137
16433
|
* Update 3CX Installation Wizard
|
|
16138
16434
|
* @summary Update 3CX Installation Wizard
|
|
@@ -16141,6 +16437,43 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
|
|
|
16141
16437
|
* @throws {RequiredError}
|
|
16142
16438
|
*/
|
|
16143
16439
|
patchGetWizard(tcxWizardModel?: TcxWizardModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxWizardModel, any, {}>>;
|
|
16440
|
+
/**
|
|
16441
|
+
* Update Wizard Engineer Task Complete Status
|
|
16442
|
+
* @param {number} taskId Task ID
|
|
16443
|
+
* @param {PatchMarkEngineerTaskAsCompleteCompleteEnum} complete Complete Status
|
|
16444
|
+
* @param {*} [options] Override http request option.
|
|
16445
|
+
* @throws {RequiredError}
|
|
16446
|
+
*/
|
|
16447
|
+
patchMarkEngineerTaskAsComplete(taskId: number, complete: PatchMarkEngineerTaskAsCompleteCompleteEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16448
|
+
/**
|
|
16449
|
+
* Update Wizard Engineer Task Note
|
|
16450
|
+
* @param {number} taskId Task ID
|
|
16451
|
+
* @param {string} note note
|
|
16452
|
+
* @param {*} [options] Override http request option.
|
|
16453
|
+
* @throws {RequiredError}
|
|
16454
|
+
*/
|
|
16455
|
+
patchUpdateEngineerTaskNote(taskId: number, note: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16456
|
+
/**
|
|
16457
|
+
* Update Wizard Go Live Date
|
|
16458
|
+
* @param {string} goLiveDate Go Live Date
|
|
16459
|
+
* @param {*} [options] Override http request option.
|
|
16460
|
+
* @throws {RequiredError}
|
|
16461
|
+
*/
|
|
16462
|
+
patchUpdateGoLiveDate(goLiveDate: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16463
|
+
/**
|
|
16464
|
+
* Update Wizard Engineer Note
|
|
16465
|
+
* @param {string} note Note
|
|
16466
|
+
* @param {*} [options] Override http request option.
|
|
16467
|
+
* @throws {RequiredError}
|
|
16468
|
+
*/
|
|
16469
|
+
patchUpdateNote(note: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16470
|
+
/**
|
|
16471
|
+
* Update Wizard Engineer Spec
|
|
16472
|
+
* @param {string} spec Spec
|
|
16473
|
+
* @param {*} [options] Override http request option.
|
|
16474
|
+
* @throws {RequiredError}
|
|
16475
|
+
*/
|
|
16476
|
+
patchUpdateSpec(spec: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16144
16477
|
/**
|
|
16145
16478
|
* Add Extensions To 3CX Installation Wizard
|
|
16146
16479
|
* @summary Add Extensions To 3CX Installation Wizard
|
|
@@ -16252,6 +16585,11 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
|
|
|
16252
16585
|
*/
|
|
16253
16586
|
postUploadBackup(backup: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxBackupModel, any, {}>>;
|
|
16254
16587
|
}
|
|
16588
|
+
export declare const PatchMarkEngineerTaskAsCompleteCompleteEnum: {
|
|
16589
|
+
readonly True: "true";
|
|
16590
|
+
readonly False: "false";
|
|
16591
|
+
};
|
|
16592
|
+
export type PatchMarkEngineerTaskAsCompleteCompleteEnum = typeof PatchMarkEngineerTaskAsCompleteCompleteEnum[keyof typeof PatchMarkEngineerTaskAsCompleteCompleteEnum];
|
|
16255
16593
|
/**
|
|
16256
16594
|
* Class3CXInstallationsApi - axios parameter creator
|
|
16257
16595
|
*/
|
|
@@ -17057,6 +17395,13 @@ export declare const Class3CXIntegrationsApiAxiosParamCreator: (configuration?:
|
|
|
17057
17395
|
* @throws {RequiredError}
|
|
17058
17396
|
*/
|
|
17059
17397
|
getGetTrusts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17398
|
+
/**
|
|
17399
|
+
* Seach EdTechPro Schools
|
|
17400
|
+
* @param {string} search School Name, Dfe code or URN
|
|
17401
|
+
* @param {*} [options] Override http request option.
|
|
17402
|
+
* @throws {RequiredError}
|
|
17403
|
+
*/
|
|
17404
|
+
getSearchSchools: (search: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17060
17405
|
/**
|
|
17061
17406
|
* Update EdTechPro School Order Reference
|
|
17062
17407
|
* @param {number} clientId ETP Client ID
|
|
@@ -17108,6 +17453,13 @@ export declare const Class3CXIntegrationsApiFp: (configuration?: Configuration)
|
|
|
17108
17453
|
* @throws {RequiredError}
|
|
17109
17454
|
*/
|
|
17110
17455
|
getGetTrusts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EdTechProClientEntity>>>;
|
|
17456
|
+
/**
|
|
17457
|
+
* Seach EdTechPro Schools
|
|
17458
|
+
* @param {string} search School Name, Dfe code or URN
|
|
17459
|
+
* @param {*} [options] Override http request option.
|
|
17460
|
+
* @throws {RequiredError}
|
|
17461
|
+
*/
|
|
17462
|
+
getSearchSchools(search: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchSchoolModel>>>;
|
|
17111
17463
|
/**
|
|
17112
17464
|
* Update EdTechPro School Order Reference
|
|
17113
17465
|
* @param {number} clientId ETP Client ID
|
|
@@ -17159,6 +17511,13 @@ export declare const Class3CXIntegrationsApiFactory: (configuration?: Configurat
|
|
|
17159
17511
|
* @throws {RequiredError}
|
|
17160
17512
|
*/
|
|
17161
17513
|
getGetTrusts(options?: RawAxiosRequestConfig): AxiosPromise<Array<EdTechProClientEntity>>;
|
|
17514
|
+
/**
|
|
17515
|
+
* Seach EdTechPro Schools
|
|
17516
|
+
* @param {string} search School Name, Dfe code or URN
|
|
17517
|
+
* @param {*} [options] Override http request option.
|
|
17518
|
+
* @throws {RequiredError}
|
|
17519
|
+
*/
|
|
17520
|
+
getSearchSchools(search: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<SearchSchoolModel>>;
|
|
17162
17521
|
/**
|
|
17163
17522
|
* Update EdTechPro School Order Reference
|
|
17164
17523
|
* @param {number} clientId ETP Client ID
|
|
@@ -17210,6 +17569,13 @@ export declare class Class3CXIntegrationsApi extends BaseAPI {
|
|
|
17210
17569
|
* @throws {RequiredError}
|
|
17211
17570
|
*/
|
|
17212
17571
|
getGetTrusts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EdTechProClientEntity[], any, {}>>;
|
|
17572
|
+
/**
|
|
17573
|
+
* Seach EdTechPro Schools
|
|
17574
|
+
* @param {string} search School Name, Dfe code or URN
|
|
17575
|
+
* @param {*} [options] Override http request option.
|
|
17576
|
+
* @throws {RequiredError}
|
|
17577
|
+
*/
|
|
17578
|
+
getSearchSchools(search: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchSchoolModel[], any, {}>>;
|
|
17213
17579
|
/**
|
|
17214
17580
|
* Update EdTechPro School Order Reference
|
|
17215
17581
|
* @param {number} clientId ETP Client ID
|
|
@@ -18502,6 +18868,7 @@ export declare const PostAccessTokenScopeEnum: {
|
|
|
18502
18868
|
export type PostAccessTokenScopeEnum = typeof PostAccessTokenScopeEnum[keyof typeof PostAccessTokenScopeEnum];
|
|
18503
18869
|
export declare const PostAccessTokenTokenExchangeTypeEnum: {
|
|
18504
18870
|
readonly TcxWizard: "tcx_wizard";
|
|
18871
|
+
readonly TcxWizardAdmin: "tcx_wizard_admin";
|
|
18505
18872
|
readonly Portal: "portal";
|
|
18506
18873
|
};
|
|
18507
18874
|
export type PostAccessTokenTokenExchangeTypeEnum = typeof PostAccessTokenTokenExchangeTypeEnum[keyof typeof PostAccessTokenTokenExchangeTypeEnum];
|
|
@@ -18705,6 +19072,14 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
18705
19072
|
* @throws {RequiredError}
|
|
18706
19073
|
*/
|
|
18707
19074
|
postCreateShipment: (id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19075
|
+
/**
|
|
19076
|
+
* Create Engineered Wizard
|
|
19077
|
+
* @param {number} id Order ID
|
|
19078
|
+
* @param {EngineeredWizardRequestModel} [engineeredWizardRequestModel] Engineered Wizard Request
|
|
19079
|
+
* @param {*} [options] Override http request option.
|
|
19080
|
+
* @throws {RequiredError}
|
|
19081
|
+
*/
|
|
19082
|
+
postCreateWizardFromOrder: (id: number, engineeredWizardRequestModel?: EngineeredWizardRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18708
19083
|
/**
|
|
18709
19084
|
* Create An Order (Beta)
|
|
18710
19085
|
* @summary Create An Order (Beta)
|
|
@@ -19007,6 +19382,14 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
19007
19382
|
* @throws {RequiredError}
|
|
19008
19383
|
*/
|
|
19009
19384
|
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentDTO>>;
|
|
19385
|
+
/**
|
|
19386
|
+
* Create Engineered Wizard
|
|
19387
|
+
* @param {number} id Order ID
|
|
19388
|
+
* @param {EngineeredWizardRequestModel} [engineeredWizardRequestModel] Engineered Wizard Request
|
|
19389
|
+
* @param {*} [options] Override http request option.
|
|
19390
|
+
* @throws {RequiredError}
|
|
19391
|
+
*/
|
|
19392
|
+
postCreateWizardFromOrder(id: number, engineeredWizardRequestModel?: EngineeredWizardRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxWizardModel>>;
|
|
19010
19393
|
/**
|
|
19011
19394
|
* Create An Order (Beta)
|
|
19012
19395
|
* @summary Create An Order (Beta)
|
|
@@ -19309,6 +19692,14 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
19309
19692
|
* @throws {RequiredError}
|
|
19310
19693
|
*/
|
|
19311
19694
|
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentDTO>;
|
|
19695
|
+
/**
|
|
19696
|
+
* Create Engineered Wizard
|
|
19697
|
+
* @param {number} id Order ID
|
|
19698
|
+
* @param {EngineeredWizardRequestModel} [engineeredWizardRequestModel] Engineered Wizard Request
|
|
19699
|
+
* @param {*} [options] Override http request option.
|
|
19700
|
+
* @throws {RequiredError}
|
|
19701
|
+
*/
|
|
19702
|
+
postCreateWizardFromOrder(id: number, engineeredWizardRequestModel?: EngineeredWizardRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<TcxWizardModel>;
|
|
19312
19703
|
/**
|
|
19313
19704
|
* Create An Order (Beta)
|
|
19314
19705
|
* @summary Create An Order (Beta)
|
|
@@ -19611,6 +20002,14 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
19611
20002
|
* @throws {RequiredError}
|
|
19612
20003
|
*/
|
|
19613
20004
|
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentDTO, any, {}>>;
|
|
20005
|
+
/**
|
|
20006
|
+
* Create Engineered Wizard
|
|
20007
|
+
* @param {number} id Order ID
|
|
20008
|
+
* @param {EngineeredWizardRequestModel} [engineeredWizardRequestModel] Engineered Wizard Request
|
|
20009
|
+
* @param {*} [options] Override http request option.
|
|
20010
|
+
* @throws {RequiredError}
|
|
20011
|
+
*/
|
|
20012
|
+
postCreateWizardFromOrder(id: number, engineeredWizardRequestModel?: EngineeredWizardRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxWizardModel, any, {}>>;
|
|
19614
20013
|
/**
|
|
19615
20014
|
* Create An Order (Beta)
|
|
19616
20015
|
* @summary Create An Order (Beta)
|