yellowgrid-api-ts 3.2.68-dev.0 → 3.2.70-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 +7 -2
- package/README.md +21 -2
- package/api.ts +1703 -199
- package/dist/api.d.ts +1018 -139
- package/dist/api.js +1379 -97
- package/dist/models/EventStatusEnum.d.ts +18 -0
- package/dist/models/EventStatusEnum.js +20 -0
- package/dist/models/PortStatusEnum.d.ts +18 -0
- package/dist/models/PortStatusEnum.js +20 -0
- package/docs/Class3CXMultiTenantApi.md +55 -0
- package/docs/NumberPortDTO.md +55 -0
- package/docs/NumberPortModel.md +51 -0
- package/docs/NumberPortRangeDTO.md +33 -0
- package/docs/NumberPortRangeRequestDTO.md +27 -0
- package/docs/NumberPortingApi.md +668 -0
- package/docs/NumberPortsModel.md +27 -0
- package/docs/OAuth20Api.md +3 -3
- package/docs/OrdersApi.md +14 -14
- package/docs/SIPTrunksApi.md +55 -0
- package/docs/ShipmentDTO.md +2 -0
- package/docs/SupportTicketModel.md +41 -0
- package/docs/TicketsApi.md +8 -8
- package/models/EventStatusEnum.ts +19 -0
- package/models/PortStatusEnum.ts +19 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1097,6 +1097,8 @@ export declare const AuditLogEntityTypeEnum: {
|
|
|
1097
1097
|
readonly PopsItemDiscounts: "pops_item_discounts";
|
|
1098
1098
|
readonly PopsItems: "pops_items";
|
|
1099
1099
|
readonly PopsLinkedOrders: "pops_linked_orders";
|
|
1100
|
+
readonly NumberPorts: "number_ports";
|
|
1101
|
+
readonly NumberPortRanges: "number_port_ranges";
|
|
1100
1102
|
readonly PopsOfflineInstances: "pops_offline_instances";
|
|
1101
1103
|
readonly PopsOrderedItems: "pops_ordered_items";
|
|
1102
1104
|
readonly PopsPrizes: "pops_prizes";
|
|
@@ -4092,6 +4094,335 @@ export interface NavigationModel {
|
|
|
4092
4094
|
*/
|
|
4093
4095
|
'openNewPage'?: boolean;
|
|
4094
4096
|
}
|
|
4097
|
+
/**
|
|
4098
|
+
* Number Port Response
|
|
4099
|
+
* @export
|
|
4100
|
+
* @interface NumberPortDTO
|
|
4101
|
+
*/
|
|
4102
|
+
export interface NumberPortDTO {
|
|
4103
|
+
/**
|
|
4104
|
+
* Company Name
|
|
4105
|
+
* @type {string}
|
|
4106
|
+
* @memberof NumberPortDTO
|
|
4107
|
+
*/
|
|
4108
|
+
'companyName'?: string | null;
|
|
4109
|
+
/**
|
|
4110
|
+
* Address Line 1
|
|
4111
|
+
* @type {string}
|
|
4112
|
+
* @memberof NumberPortDTO
|
|
4113
|
+
*/
|
|
4114
|
+
'addressLine1'?: string | null;
|
|
4115
|
+
/**
|
|
4116
|
+
* Address Line 2
|
|
4117
|
+
* @type {string}
|
|
4118
|
+
* @memberof NumberPortDTO
|
|
4119
|
+
*/
|
|
4120
|
+
'addressLine2'?: string | null;
|
|
4121
|
+
/**
|
|
4122
|
+
* City
|
|
4123
|
+
* @type {string}
|
|
4124
|
+
* @memberof NumberPortDTO
|
|
4125
|
+
*/
|
|
4126
|
+
'city'?: string | null;
|
|
4127
|
+
/**
|
|
4128
|
+
* Post Code
|
|
4129
|
+
* @type {string}
|
|
4130
|
+
* @memberof NumberPortDTO
|
|
4131
|
+
*/
|
|
4132
|
+
'postCode'?: string | null;
|
|
4133
|
+
/**
|
|
4134
|
+
* Trunk ID
|
|
4135
|
+
* @type {number}
|
|
4136
|
+
* @memberof NumberPortDTO
|
|
4137
|
+
*/
|
|
4138
|
+
'trunkId'?: number | null;
|
|
4139
|
+
/**
|
|
4140
|
+
* Starter Bundle ID
|
|
4141
|
+
* @type {string}
|
|
4142
|
+
* @memberof NumberPortDTO
|
|
4143
|
+
*/
|
|
4144
|
+
'tenantId'?: string | null;
|
|
4145
|
+
/**
|
|
4146
|
+
* Requested Port Date
|
|
4147
|
+
* @type {string}
|
|
4148
|
+
* @memberof NumberPortDTO
|
|
4149
|
+
*/
|
|
4150
|
+
'requestedPortDate'?: string | null;
|
|
4151
|
+
/**
|
|
4152
|
+
* Port Date ASAP
|
|
4153
|
+
* @type {boolean}
|
|
4154
|
+
* @memberof NumberPortDTO
|
|
4155
|
+
*/
|
|
4156
|
+
'asap'?: boolean | null;
|
|
4157
|
+
/**
|
|
4158
|
+
* Comment
|
|
4159
|
+
* @type {string}
|
|
4160
|
+
* @memberof NumberPortDTO
|
|
4161
|
+
*/
|
|
4162
|
+
'comment'?: string | null;
|
|
4163
|
+
/**
|
|
4164
|
+
* Number Port ID
|
|
4165
|
+
* @type {number}
|
|
4166
|
+
* @memberof NumberPortDTO
|
|
4167
|
+
*/
|
|
4168
|
+
'id'?: number;
|
|
4169
|
+
/**
|
|
4170
|
+
* Reseller ID
|
|
4171
|
+
* @type {number}
|
|
4172
|
+
* @memberof NumberPortDTO
|
|
4173
|
+
*/
|
|
4174
|
+
'customerId'?: number;
|
|
4175
|
+
/**
|
|
4176
|
+
* Customer Name
|
|
4177
|
+
* @type {string}
|
|
4178
|
+
* @memberof NumberPortDTO
|
|
4179
|
+
*/
|
|
4180
|
+
'customerName'?: string;
|
|
4181
|
+
/**
|
|
4182
|
+
* Porting Date
|
|
4183
|
+
* @type {string}
|
|
4184
|
+
* @memberof NumberPortDTO
|
|
4185
|
+
*/
|
|
4186
|
+
'portDate'?: string;
|
|
4187
|
+
/**
|
|
4188
|
+
* Number Ranges
|
|
4189
|
+
* @type {Array<NumberPortRangeDTO>}
|
|
4190
|
+
* @memberof NumberPortDTO
|
|
4191
|
+
*/
|
|
4192
|
+
'numberRanges'?: Array<NumberPortRangeDTO>;
|
|
4193
|
+
/**
|
|
4194
|
+
* Status
|
|
4195
|
+
* @type {number}
|
|
4196
|
+
* @memberof NumberPortDTO
|
|
4197
|
+
*/
|
|
4198
|
+
'status'?: number;
|
|
4199
|
+
/**
|
|
4200
|
+
* Status Text
|
|
4201
|
+
* @type {string}
|
|
4202
|
+
* @memberof NumberPortDTO
|
|
4203
|
+
*/
|
|
4204
|
+
'statusText'?: string;
|
|
4205
|
+
/**
|
|
4206
|
+
* Ticket ID
|
|
4207
|
+
* @type {number}
|
|
4208
|
+
* @memberof NumberPortDTO
|
|
4209
|
+
*/
|
|
4210
|
+
'ticketId'?: number | null;
|
|
4211
|
+
}
|
|
4212
|
+
/**
|
|
4213
|
+
* Number Port Model
|
|
4214
|
+
* @export
|
|
4215
|
+
* @interface NumberPortModel
|
|
4216
|
+
*/
|
|
4217
|
+
export interface NumberPortModel {
|
|
4218
|
+
/**
|
|
4219
|
+
* Number Port ID
|
|
4220
|
+
* @type {number}
|
|
4221
|
+
* @memberof NumberPortModel
|
|
4222
|
+
*/
|
|
4223
|
+
'id'?: number;
|
|
4224
|
+
/**
|
|
4225
|
+
* Customer ID
|
|
4226
|
+
* @type {number}
|
|
4227
|
+
* @memberof NumberPortModel
|
|
4228
|
+
*/
|
|
4229
|
+
'customerId'?: number;
|
|
4230
|
+
/**
|
|
4231
|
+
* End User
|
|
4232
|
+
* @type {string}
|
|
4233
|
+
* @memberof NumberPortModel
|
|
4234
|
+
*/
|
|
4235
|
+
'endUser'?: string | null;
|
|
4236
|
+
/**
|
|
4237
|
+
* Address Line 1
|
|
4238
|
+
* @type {string}
|
|
4239
|
+
* @memberof NumberPortModel
|
|
4240
|
+
*/
|
|
4241
|
+
'addressLine1'?: string | null;
|
|
4242
|
+
/**
|
|
4243
|
+
* Address Line 2
|
|
4244
|
+
* @type {string}
|
|
4245
|
+
* @memberof NumberPortModel
|
|
4246
|
+
*/
|
|
4247
|
+
'addressLine2'?: string | null;
|
|
4248
|
+
/**
|
|
4249
|
+
* City
|
|
4250
|
+
* @type {string}
|
|
4251
|
+
* @memberof NumberPortModel
|
|
4252
|
+
*/
|
|
4253
|
+
'city'?: string | null;
|
|
4254
|
+
/**
|
|
4255
|
+
* Post Code
|
|
4256
|
+
* @type {string}
|
|
4257
|
+
* @memberof NumberPortModel
|
|
4258
|
+
*/
|
|
4259
|
+
'postCode'?: string | null;
|
|
4260
|
+
/**
|
|
4261
|
+
* Trunk ID
|
|
4262
|
+
* @type {number}
|
|
4263
|
+
* @memberof NumberPortModel
|
|
4264
|
+
*/
|
|
4265
|
+
'trunkId'?: number | null;
|
|
4266
|
+
/**
|
|
4267
|
+
* Tenant ID
|
|
4268
|
+
* @type {string}
|
|
4269
|
+
* @memberof NumberPortModel
|
|
4270
|
+
*/
|
|
4271
|
+
'tenantId'?: string | null;
|
|
4272
|
+
/**
|
|
4273
|
+
* Requested Port Date
|
|
4274
|
+
* @type {string}
|
|
4275
|
+
* @memberof NumberPortModel
|
|
4276
|
+
*/
|
|
4277
|
+
'requestedPortDate'?: string | null;
|
|
4278
|
+
/**
|
|
4279
|
+
* Port Date
|
|
4280
|
+
* @type {string}
|
|
4281
|
+
* @memberof NumberPortModel
|
|
4282
|
+
*/
|
|
4283
|
+
'portDate'?: string | null;
|
|
4284
|
+
/**
|
|
4285
|
+
* Comment
|
|
4286
|
+
* @type {string}
|
|
4287
|
+
* @memberof NumberPortModel
|
|
4288
|
+
*/
|
|
4289
|
+
'comment'?: string | null;
|
|
4290
|
+
/**
|
|
4291
|
+
* Status
|
|
4292
|
+
* @type {number}
|
|
4293
|
+
* @memberof NumberPortModel
|
|
4294
|
+
*/
|
|
4295
|
+
'status'?: number | null;
|
|
4296
|
+
/**
|
|
4297
|
+
* Ticket ID
|
|
4298
|
+
* @type {number}
|
|
4299
|
+
* @memberof NumberPortModel
|
|
4300
|
+
*/
|
|
4301
|
+
'ticketId'?: number | null;
|
|
4302
|
+
/**
|
|
4303
|
+
* Number Port Ranges
|
|
4304
|
+
* @type {Array<any>}
|
|
4305
|
+
* @memberof NumberPortModel
|
|
4306
|
+
*/
|
|
4307
|
+
'ranges'?: Array<any>;
|
|
4308
|
+
/**
|
|
4309
|
+
* Customer Company Name
|
|
4310
|
+
* @type {string}
|
|
4311
|
+
* @memberof NumberPortModel
|
|
4312
|
+
*/
|
|
4313
|
+
'customerName'?: string;
|
|
4314
|
+
}
|
|
4315
|
+
/**
|
|
4316
|
+
* Number Port Range Response
|
|
4317
|
+
* @export
|
|
4318
|
+
* @interface NumberPortRangeDTO
|
|
4319
|
+
*/
|
|
4320
|
+
export interface NumberPortRangeDTO {
|
|
4321
|
+
/**
|
|
4322
|
+
* Range Start Number
|
|
4323
|
+
* @type {string}
|
|
4324
|
+
* @memberof NumberPortRangeDTO
|
|
4325
|
+
*/
|
|
4326
|
+
'rangeStart'?: string | null;
|
|
4327
|
+
/**
|
|
4328
|
+
* Range End Number
|
|
4329
|
+
* @type {string}
|
|
4330
|
+
* @memberof NumberPortRangeDTO
|
|
4331
|
+
*/
|
|
4332
|
+
'rangeEnd'?: string | null;
|
|
4333
|
+
/**
|
|
4334
|
+
* Losing Communications Provider
|
|
4335
|
+
* @type {string}
|
|
4336
|
+
* @memberof NumberPortRangeDTO
|
|
4337
|
+
*/
|
|
4338
|
+
'lcp'?: string | null;
|
|
4339
|
+
/**
|
|
4340
|
+
* Range Post Code
|
|
4341
|
+
* @type {string}
|
|
4342
|
+
* @memberof NumberPortRangeDTO
|
|
4343
|
+
*/
|
|
4344
|
+
'postCode'?: string | null;
|
|
4345
|
+
/**
|
|
4346
|
+
* Number Port Range ID
|
|
4347
|
+
* @type {number}
|
|
4348
|
+
* @memberof NumberPortRangeDTO
|
|
4349
|
+
*/
|
|
4350
|
+
'id'?: number;
|
|
4351
|
+
/**
|
|
4352
|
+
* Number Port ID
|
|
4353
|
+
* @type {number}
|
|
4354
|
+
* @memberof NumberPortRangeDTO
|
|
4355
|
+
*/
|
|
4356
|
+
'portId'?: number;
|
|
4357
|
+
/**
|
|
4358
|
+
* Range Holder
|
|
4359
|
+
* @type {string}
|
|
4360
|
+
* @memberof NumberPortRangeDTO
|
|
4361
|
+
*/
|
|
4362
|
+
'rangeHolder'?: string | null;
|
|
4363
|
+
}
|
|
4364
|
+
/**
|
|
4365
|
+
* NumberPortRangeDTO
|
|
4366
|
+
* @export
|
|
4367
|
+
* @interface NumberPortRangeRequestDTO
|
|
4368
|
+
*/
|
|
4369
|
+
export interface NumberPortRangeRequestDTO {
|
|
4370
|
+
/**
|
|
4371
|
+
* Range Start Number
|
|
4372
|
+
* @type {string}
|
|
4373
|
+
* @memberof NumberPortRangeRequestDTO
|
|
4374
|
+
*/
|
|
4375
|
+
'rangeStart'?: string | null;
|
|
4376
|
+
/**
|
|
4377
|
+
* Range End Number
|
|
4378
|
+
* @type {string}
|
|
4379
|
+
* @memberof NumberPortRangeRequestDTO
|
|
4380
|
+
*/
|
|
4381
|
+
'rangeEnd'?: string | null;
|
|
4382
|
+
/**
|
|
4383
|
+
* Losing Communications Provider
|
|
4384
|
+
* @type {string}
|
|
4385
|
+
* @memberof NumberPortRangeRequestDTO
|
|
4386
|
+
*/
|
|
4387
|
+
'lcp'?: string | null;
|
|
4388
|
+
/**
|
|
4389
|
+
* Range Post Code
|
|
4390
|
+
* @type {string}
|
|
4391
|
+
* @memberof NumberPortRangeRequestDTO
|
|
4392
|
+
*/
|
|
4393
|
+
'postCode'?: string | null;
|
|
4394
|
+
}
|
|
4395
|
+
/**
|
|
4396
|
+
* Number Ports
|
|
4397
|
+
* @export
|
|
4398
|
+
* @interface NumberPortsModel
|
|
4399
|
+
*/
|
|
4400
|
+
export interface NumberPortsModel {
|
|
4401
|
+
/**
|
|
4402
|
+
* Results
|
|
4403
|
+
* @type {Array<NumberPortDTO>}
|
|
4404
|
+
* @memberof NumberPortsModel
|
|
4405
|
+
*/
|
|
4406
|
+
'results'?: Array<NumberPortDTO>;
|
|
4407
|
+
/**
|
|
4408
|
+
* Page
|
|
4409
|
+
* @type {number}
|
|
4410
|
+
* @memberof NumberPortsModel
|
|
4411
|
+
*/
|
|
4412
|
+
'page'?: number;
|
|
4413
|
+
/**
|
|
4414
|
+
* Per Page
|
|
4415
|
+
* @type {number}
|
|
4416
|
+
* @memberof NumberPortsModel
|
|
4417
|
+
*/
|
|
4418
|
+
'perPage'?: number;
|
|
4419
|
+
/**
|
|
4420
|
+
* Total Results
|
|
4421
|
+
* @type {number}
|
|
4422
|
+
* @memberof NumberPortsModel
|
|
4423
|
+
*/
|
|
4424
|
+
'totalResults'?: number;
|
|
4425
|
+
}
|
|
4095
4426
|
/**
|
|
4096
4427
|
* OfflineInstancesEntity
|
|
4097
4428
|
* @export
|
|
@@ -6399,6 +6730,12 @@ export interface ShipmentDTO {
|
|
|
6399
6730
|
* @memberof ShipmentDTO
|
|
6400
6731
|
*/
|
|
6401
6732
|
'id'?: number | null;
|
|
6733
|
+
/**
|
|
6734
|
+
* Batch ID
|
|
6735
|
+
* @type {number}
|
|
6736
|
+
* @memberof ShipmentDTO
|
|
6737
|
+
*/
|
|
6738
|
+
'batchId'?: number | null;
|
|
6402
6739
|
/**
|
|
6403
6740
|
* Courier
|
|
6404
6741
|
* @type {string}
|
|
@@ -8553,57 +8890,130 @@ export interface SupplierModel {
|
|
|
8553
8890
|
'xeroAccountNumber'?: string;
|
|
8554
8891
|
}
|
|
8555
8892
|
/**
|
|
8556
|
-
*
|
|
8893
|
+
* Telephony Support Ticket
|
|
8557
8894
|
* @export
|
|
8558
|
-
* @interface
|
|
8895
|
+
* @interface SupportTicketModel
|
|
8559
8896
|
*/
|
|
8560
|
-
export interface
|
|
8897
|
+
export interface SupportTicketModel {
|
|
8561
8898
|
/**
|
|
8562
|
-
*
|
|
8899
|
+
* Ticket ID
|
|
8563
8900
|
* @type {number}
|
|
8564
|
-
* @memberof
|
|
8901
|
+
* @memberof SupportTicketModel
|
|
8565
8902
|
*/
|
|
8566
8903
|
'id'?: number;
|
|
8567
8904
|
/**
|
|
8568
|
-
*
|
|
8905
|
+
* Ticket status
|
|
8569
8906
|
* @type {string}
|
|
8570
|
-
* @memberof
|
|
8907
|
+
* @memberof SupportTicketModel
|
|
8571
8908
|
*/
|
|
8572
|
-
'
|
|
8909
|
+
'status'?: string;
|
|
8573
8910
|
/**
|
|
8574
|
-
*
|
|
8575
|
-
* @type {
|
|
8576
|
-
* @memberof
|
|
8911
|
+
* Ticket status ID
|
|
8912
|
+
* @type {number}
|
|
8913
|
+
* @memberof SupportTicketModel
|
|
8577
8914
|
*/
|
|
8578
|
-
'
|
|
8915
|
+
'statusId'?: number;
|
|
8579
8916
|
/**
|
|
8580
|
-
*
|
|
8917
|
+
* Ticket subject
|
|
8581
8918
|
* @type {string}
|
|
8582
|
-
* @memberof
|
|
8919
|
+
* @memberof SupportTicketModel
|
|
8583
8920
|
*/
|
|
8584
|
-
'
|
|
8921
|
+
'subject'?: string;
|
|
8585
8922
|
/**
|
|
8586
|
-
*
|
|
8587
|
-
* @type {
|
|
8588
|
-
* @memberof
|
|
8923
|
+
* Support email address
|
|
8924
|
+
* @type {string}
|
|
8925
|
+
* @memberof SupportTicketModel
|
|
8589
8926
|
*/
|
|
8590
|
-
'
|
|
8927
|
+
'supportEmail'?: string | null;
|
|
8591
8928
|
/**
|
|
8592
|
-
*
|
|
8593
|
-
* @type {
|
|
8594
|
-
* @memberof
|
|
8929
|
+
* Recipient emails
|
|
8930
|
+
* @type {Array<string>}
|
|
8931
|
+
* @memberof SupportTicketModel
|
|
8595
8932
|
*/
|
|
8596
|
-
'
|
|
8933
|
+
'toEmails'?: Array<string>;
|
|
8597
8934
|
/**
|
|
8598
|
-
*
|
|
8599
|
-
* @type {
|
|
8600
|
-
* @memberof
|
|
8935
|
+
* Ticket description (HTML)
|
|
8936
|
+
* @type {string}
|
|
8937
|
+
* @memberof SupportTicketModel
|
|
8601
8938
|
*/
|
|
8602
|
-
'
|
|
8939
|
+
'description'?: string;
|
|
8603
8940
|
/**
|
|
8604
|
-
*
|
|
8605
|
-
* @type {
|
|
8606
|
-
* @memberof
|
|
8941
|
+
* Ticket description (plain text)
|
|
8942
|
+
* @type {string}
|
|
8943
|
+
* @memberof SupportTicketModel
|
|
8944
|
+
*/
|
|
8945
|
+
'descriptionText'?: string;
|
|
8946
|
+
/**
|
|
8947
|
+
* Creation timestamp
|
|
8948
|
+
* @type {string}
|
|
8949
|
+
* @memberof SupportTicketModel
|
|
8950
|
+
*/
|
|
8951
|
+
'createdAt'?: string;
|
|
8952
|
+
/**
|
|
8953
|
+
* Attachments
|
|
8954
|
+
* @type {Array<AttachmentModel>}
|
|
8955
|
+
* @memberof SupportTicketModel
|
|
8956
|
+
*/
|
|
8957
|
+
'attachments'?: Array<AttachmentModel>;
|
|
8958
|
+
/**
|
|
8959
|
+
* Conversations
|
|
8960
|
+
* @type {Array<ConversationModel>}
|
|
8961
|
+
* @memberof SupportTicketModel
|
|
8962
|
+
*/
|
|
8963
|
+
'conversations'?: Array<ConversationModel>;
|
|
8964
|
+
}
|
|
8965
|
+
/**
|
|
8966
|
+
* 3CX Wizard Restore From Backup
|
|
8967
|
+
* @export
|
|
8968
|
+
* @interface TcxBackupEntity
|
|
8969
|
+
*/
|
|
8970
|
+
export interface TcxBackupEntity {
|
|
8971
|
+
/**
|
|
8972
|
+
* id
|
|
8973
|
+
* @type {number}
|
|
8974
|
+
* @memberof TcxBackupEntity
|
|
8975
|
+
*/
|
|
8976
|
+
'id'?: number;
|
|
8977
|
+
/**
|
|
8978
|
+
* Backup Filename
|
|
8979
|
+
* @type {string}
|
|
8980
|
+
* @memberof TcxBackupEntity
|
|
8981
|
+
*/
|
|
8982
|
+
'path'?: string;
|
|
8983
|
+
/**
|
|
8984
|
+
* password
|
|
8985
|
+
* @type {string}
|
|
8986
|
+
* @memberof TcxBackupEntity
|
|
8987
|
+
*/
|
|
8988
|
+
'password'?: string;
|
|
8989
|
+
/**
|
|
8990
|
+
* adminUsername
|
|
8991
|
+
* @type {string}
|
|
8992
|
+
* @memberof TcxBackupEntity
|
|
8993
|
+
*/
|
|
8994
|
+
'adminUsername'?: string;
|
|
8995
|
+
/**
|
|
8996
|
+
* HTTP Port
|
|
8997
|
+
* @type {number}
|
|
8998
|
+
* @memberof TcxBackupEntity
|
|
8999
|
+
*/
|
|
9000
|
+
'httpPort'?: number;
|
|
9001
|
+
/**
|
|
9002
|
+
* HTTPS Port
|
|
9003
|
+
* @type {number}
|
|
9004
|
+
* @memberof TcxBackupEntity
|
|
9005
|
+
*/
|
|
9006
|
+
'httpsPort'?: number;
|
|
9007
|
+
/**
|
|
9008
|
+
* SIP Port
|
|
9009
|
+
* @type {number}
|
|
9010
|
+
* @memberof TcxBackupEntity
|
|
9011
|
+
*/
|
|
9012
|
+
'sipPort'?: number;
|
|
9013
|
+
/**
|
|
9014
|
+
* 3CX Tunnel Port
|
|
9015
|
+
* @type {number}
|
|
9016
|
+
* @memberof TcxBackupEntity
|
|
8607
9017
|
*/
|
|
8608
9018
|
'tunnelPort'?: number;
|
|
8609
9019
|
/**
|
|
@@ -10638,79 +11048,6 @@ export interface TechSupportCompanySummaryDTO {
|
|
|
10638
11048
|
*/
|
|
10639
11049
|
'monthlyReportEmailAddress'?: string;
|
|
10640
11050
|
}
|
|
10641
|
-
/**
|
|
10642
|
-
* Telephony Support Ticket
|
|
10643
|
-
* @export
|
|
10644
|
-
* @interface TelephonySupportTicketModel
|
|
10645
|
-
*/
|
|
10646
|
-
export interface TelephonySupportTicketModel {
|
|
10647
|
-
/**
|
|
10648
|
-
* Ticket ID
|
|
10649
|
-
* @type {number}
|
|
10650
|
-
* @memberof TelephonySupportTicketModel
|
|
10651
|
-
*/
|
|
10652
|
-
'id'?: number;
|
|
10653
|
-
/**
|
|
10654
|
-
* Ticket status
|
|
10655
|
-
* @type {string}
|
|
10656
|
-
* @memberof TelephonySupportTicketModel
|
|
10657
|
-
*/
|
|
10658
|
-
'status'?: string;
|
|
10659
|
-
/**
|
|
10660
|
-
* Ticket status ID
|
|
10661
|
-
* @type {number}
|
|
10662
|
-
* @memberof TelephonySupportTicketModel
|
|
10663
|
-
*/
|
|
10664
|
-
'statusId'?: number;
|
|
10665
|
-
/**
|
|
10666
|
-
* Ticket subject
|
|
10667
|
-
* @type {string}
|
|
10668
|
-
* @memberof TelephonySupportTicketModel
|
|
10669
|
-
*/
|
|
10670
|
-
'subject'?: string;
|
|
10671
|
-
/**
|
|
10672
|
-
* Support email address
|
|
10673
|
-
* @type {string}
|
|
10674
|
-
* @memberof TelephonySupportTicketModel
|
|
10675
|
-
*/
|
|
10676
|
-
'supportEmail'?: string | null;
|
|
10677
|
-
/**
|
|
10678
|
-
* Recipient emails
|
|
10679
|
-
* @type {Array<string>}
|
|
10680
|
-
* @memberof TelephonySupportTicketModel
|
|
10681
|
-
*/
|
|
10682
|
-
'toEmails'?: Array<string>;
|
|
10683
|
-
/**
|
|
10684
|
-
* Ticket description (HTML)
|
|
10685
|
-
* @type {string}
|
|
10686
|
-
* @memberof TelephonySupportTicketModel
|
|
10687
|
-
*/
|
|
10688
|
-
'description'?: string;
|
|
10689
|
-
/**
|
|
10690
|
-
* Ticket description (plain text)
|
|
10691
|
-
* @type {string}
|
|
10692
|
-
* @memberof TelephonySupportTicketModel
|
|
10693
|
-
*/
|
|
10694
|
-
'descriptionText'?: string;
|
|
10695
|
-
/**
|
|
10696
|
-
* Creation timestamp
|
|
10697
|
-
* @type {string}
|
|
10698
|
-
* @memberof TelephonySupportTicketModel
|
|
10699
|
-
*/
|
|
10700
|
-
'createdAt'?: string;
|
|
10701
|
-
/**
|
|
10702
|
-
* Attachments
|
|
10703
|
-
* @type {Array<AttachmentModel>}
|
|
10704
|
-
* @memberof TelephonySupportTicketModel
|
|
10705
|
-
*/
|
|
10706
|
-
'attachments'?: Array<AttachmentModel>;
|
|
10707
|
-
/**
|
|
10708
|
-
* Conversations
|
|
10709
|
-
* @type {Array<ConversationModel>}
|
|
10710
|
-
* @memberof TelephonySupportTicketModel
|
|
10711
|
-
*/
|
|
10712
|
-
'conversations'?: Array<ConversationModel>;
|
|
10713
|
-
}
|
|
10714
11051
|
/**
|
|
10715
11052
|
* Ticket Summary Model
|
|
10716
11053
|
* @export
|
|
@@ -13843,6 +14180,14 @@ export declare const Class3CXMultiTenantApiAxiosParamCreator: (configuration?: C
|
|
|
13843
14180
|
* @throws {RequiredError}
|
|
13844
14181
|
*/
|
|
13845
14182
|
deleteGetTenant: (reference: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14183
|
+
/**
|
|
14184
|
+
* Get 3CX Starter Bundle Tenants
|
|
14185
|
+
* @summary Get 3CX MT Tenants
|
|
14186
|
+
* @param {number} customerId
|
|
14187
|
+
* @param {*} [options] Override http request option.
|
|
14188
|
+
* @throws {RequiredError}
|
|
14189
|
+
*/
|
|
14190
|
+
getGetAdminTenants: (customerId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13846
14191
|
/**
|
|
13847
14192
|
* Get 3CX Starter Bundle Tenant
|
|
13848
14193
|
* @summary Get 3CX MT Tenant
|
|
@@ -13908,6 +14253,14 @@ export declare const Class3CXMultiTenantApiFp: (configuration?: Configuration) =
|
|
|
13908
14253
|
* @throws {RequiredError}
|
|
13909
14254
|
*/
|
|
13910
14255
|
deleteGetTenant(reference: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14256
|
+
/**
|
|
14257
|
+
* Get 3CX Starter Bundle Tenants
|
|
14258
|
+
* @summary Get 3CX MT Tenants
|
|
14259
|
+
* @param {number} customerId
|
|
14260
|
+
* @param {*} [options] Override http request option.
|
|
14261
|
+
* @throws {RequiredError}
|
|
14262
|
+
*/
|
|
14263
|
+
getGetAdminTenants(customerId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxMultiTenantModel>>>;
|
|
13911
14264
|
/**
|
|
13912
14265
|
* Get 3CX Starter Bundle Tenant
|
|
13913
14266
|
* @summary Get 3CX MT Tenant
|
|
@@ -13973,6 +14326,14 @@ export declare const Class3CXMultiTenantApiFactory: (configuration?: Configurati
|
|
|
13973
14326
|
* @throws {RequiredError}
|
|
13974
14327
|
*/
|
|
13975
14328
|
deleteGetTenant(reference: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14329
|
+
/**
|
|
14330
|
+
* Get 3CX Starter Bundle Tenants
|
|
14331
|
+
* @summary Get 3CX MT Tenants
|
|
14332
|
+
* @param {number} customerId
|
|
14333
|
+
* @param {*} [options] Override http request option.
|
|
14334
|
+
* @throws {RequiredError}
|
|
14335
|
+
*/
|
|
14336
|
+
getGetAdminTenants(customerId: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxMultiTenantModel>>;
|
|
13976
14337
|
/**
|
|
13977
14338
|
* Get 3CX Starter Bundle Tenant
|
|
13978
14339
|
* @summary Get 3CX MT Tenant
|
|
@@ -14041,6 +14402,15 @@ export declare class Class3CXMultiTenantApi extends BaseAPI {
|
|
|
14041
14402
|
* @memberof Class3CXMultiTenantApi
|
|
14042
14403
|
*/
|
|
14043
14404
|
deleteGetTenant(reference: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14405
|
+
/**
|
|
14406
|
+
* Get 3CX Starter Bundle Tenants
|
|
14407
|
+
* @summary Get 3CX MT Tenants
|
|
14408
|
+
* @param {number} customerId
|
|
14409
|
+
* @param {*} [options] Override http request option.
|
|
14410
|
+
* @throws {RequiredError}
|
|
14411
|
+
* @memberof Class3CXMultiTenantApi
|
|
14412
|
+
*/
|
|
14413
|
+
getGetAdminTenants(customerId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxMultiTenantModel[], any, {}>>;
|
|
14044
14414
|
/**
|
|
14045
14415
|
* Get 3CX Starter Bundle Tenant
|
|
14046
14416
|
* @summary Get 3CX MT Tenant
|
|
@@ -14172,6 +14542,482 @@ export declare class MyPBXToolsApi extends BaseAPI {
|
|
|
14172
14542
|
*/
|
|
14173
14543
|
getGetRecording(licenceKey: string, fileName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetRecording200Response, any, {}>>;
|
|
14174
14544
|
}
|
|
14545
|
+
/**
|
|
14546
|
+
* NumberPortingApi - axios parameter creator
|
|
14547
|
+
* @export
|
|
14548
|
+
*/
|
|
14549
|
+
export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14550
|
+
/**
|
|
14551
|
+
*
|
|
14552
|
+
* @param {number} id Number Port ID
|
|
14553
|
+
* @param {*} [options] Override http request option.
|
|
14554
|
+
* @throws {RequiredError}
|
|
14555
|
+
*/
|
|
14556
|
+
deleteGetAdminNumberPort: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14557
|
+
/**
|
|
14558
|
+
*
|
|
14559
|
+
* @param {number} [pageSize] Number Of Results
|
|
14560
|
+
* @param {number} [page] Page Number
|
|
14561
|
+
* @param {string} [search] Search
|
|
14562
|
+
* @param {*} [options] Override http request option.
|
|
14563
|
+
* @throws {RequiredError}
|
|
14564
|
+
*/
|
|
14565
|
+
getCreateNumberPort: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14566
|
+
/**
|
|
14567
|
+
*
|
|
14568
|
+
* @param {number} id Number Port ID
|
|
14569
|
+
* @param {*} [options] Override http request option.
|
|
14570
|
+
* @throws {RequiredError}
|
|
14571
|
+
*/
|
|
14572
|
+
getGetAdminNumberPort: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14573
|
+
/**
|
|
14574
|
+
*
|
|
14575
|
+
* @param {number} [pageSize] Number Of Results
|
|
14576
|
+
* @param {number} [page] Page Number
|
|
14577
|
+
* @param {string} [search] Search
|
|
14578
|
+
* @param {*} [options] Override http request option.
|
|
14579
|
+
* @throws {RequiredError}
|
|
14580
|
+
*/
|
|
14581
|
+
getGetAdminNumberPorts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14582
|
+
/**
|
|
14583
|
+
*
|
|
14584
|
+
* @param {number} id Number Port ID
|
|
14585
|
+
* @param {*} [options] Override http request option.
|
|
14586
|
+
* @throws {RequiredError}
|
|
14587
|
+
*/
|
|
14588
|
+
getUpdateNumberPort: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14589
|
+
/**
|
|
14590
|
+
*
|
|
14591
|
+
* @param {number} id Number Port ID
|
|
14592
|
+
* @param {*} [options] Override http request option.
|
|
14593
|
+
* @throws {RequiredError}
|
|
14594
|
+
*/
|
|
14595
|
+
patchCloseAdminNumberPort: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14596
|
+
/**
|
|
14597
|
+
*
|
|
14598
|
+
* @param {string | null} [companyName] Company Name
|
|
14599
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14600
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14601
|
+
* @param {string | null} [city] City
|
|
14602
|
+
* @param {string | null} [postCode] Post Code
|
|
14603
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14604
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14605
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14606
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14607
|
+
* @param {string | null} [comment] Comment
|
|
14608
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14609
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14610
|
+
* @param {*} [options] Override http request option.
|
|
14611
|
+
* @throws {RequiredError}
|
|
14612
|
+
*/
|
|
14613
|
+
postCreateNumberPort: (companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14614
|
+
/**
|
|
14615
|
+
*
|
|
14616
|
+
* @param {number} id Number Port ID
|
|
14617
|
+
* @param {string | null} [companyName] Company Name
|
|
14618
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14619
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14620
|
+
* @param {string | null} [city] City
|
|
14621
|
+
* @param {string | null} [postCode] Post Code
|
|
14622
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14623
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14624
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14625
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14626
|
+
* @param {string | null} [comment] Comment
|
|
14627
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14628
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14629
|
+
* @param {*} [options] Override http request option.
|
|
14630
|
+
* @throws {RequiredError}
|
|
14631
|
+
*/
|
|
14632
|
+
postSubmitNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14633
|
+
/**
|
|
14634
|
+
*
|
|
14635
|
+
* @param {number} id Number Port ID
|
|
14636
|
+
* @param {string | null} [companyName] Company Name
|
|
14637
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14638
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14639
|
+
* @param {string | null} [city] City
|
|
14640
|
+
* @param {string | null} [postCode] Post Code
|
|
14641
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14642
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14643
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14644
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14645
|
+
* @param {string | null} [comment] Comment
|
|
14646
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14647
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14648
|
+
* @param {*} [options] Override http request option.
|
|
14649
|
+
* @throws {RequiredError}
|
|
14650
|
+
*/
|
|
14651
|
+
postUpdateNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14652
|
+
/**
|
|
14653
|
+
*
|
|
14654
|
+
* @param {number} id Number Port ID
|
|
14655
|
+
* @param {NumberPortDTO} numberPortDTO
|
|
14656
|
+
* @param {*} [options] Override http request option.
|
|
14657
|
+
* @throws {RequiredError}
|
|
14658
|
+
*/
|
|
14659
|
+
putGetAdminNumberPort: (id: number, numberPortDTO: NumberPortDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14660
|
+
};
|
|
14661
|
+
/**
|
|
14662
|
+
* NumberPortingApi - functional programming interface
|
|
14663
|
+
* @export
|
|
14664
|
+
*/
|
|
14665
|
+
export declare const NumberPortingApiFp: (configuration?: Configuration) => {
|
|
14666
|
+
/**
|
|
14667
|
+
*
|
|
14668
|
+
* @param {number} id Number Port ID
|
|
14669
|
+
* @param {*} [options] Override http request option.
|
|
14670
|
+
* @throws {RequiredError}
|
|
14671
|
+
*/
|
|
14672
|
+
deleteGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14673
|
+
/**
|
|
14674
|
+
*
|
|
14675
|
+
* @param {number} [pageSize] Number Of Results
|
|
14676
|
+
* @param {number} [page] Page Number
|
|
14677
|
+
* @param {string} [search] Search
|
|
14678
|
+
* @param {*} [options] Override http request option.
|
|
14679
|
+
* @throws {RequiredError}
|
|
14680
|
+
*/
|
|
14681
|
+
getCreateNumberPort(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortsModel>>;
|
|
14682
|
+
/**
|
|
14683
|
+
*
|
|
14684
|
+
* @param {number} id Number Port ID
|
|
14685
|
+
* @param {*} [options] Override http request option.
|
|
14686
|
+
* @throws {RequiredError}
|
|
14687
|
+
*/
|
|
14688
|
+
getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
|
|
14689
|
+
/**
|
|
14690
|
+
*
|
|
14691
|
+
* @param {number} [pageSize] Number Of Results
|
|
14692
|
+
* @param {number} [page] Page Number
|
|
14693
|
+
* @param {string} [search] Search
|
|
14694
|
+
* @param {*} [options] Override http request option.
|
|
14695
|
+
* @throws {RequiredError}
|
|
14696
|
+
*/
|
|
14697
|
+
getGetAdminNumberPorts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortsModel>>;
|
|
14698
|
+
/**
|
|
14699
|
+
*
|
|
14700
|
+
* @param {number} id Number Port ID
|
|
14701
|
+
* @param {*} [options] Override http request option.
|
|
14702
|
+
* @throws {RequiredError}
|
|
14703
|
+
*/
|
|
14704
|
+
getUpdateNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
|
|
14705
|
+
/**
|
|
14706
|
+
*
|
|
14707
|
+
* @param {number} id Number Port ID
|
|
14708
|
+
* @param {*} [options] Override http request option.
|
|
14709
|
+
* @throws {RequiredError}
|
|
14710
|
+
*/
|
|
14711
|
+
patchCloseAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
|
|
14712
|
+
/**
|
|
14713
|
+
*
|
|
14714
|
+
* @param {string | null} [companyName] Company Name
|
|
14715
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14716
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14717
|
+
* @param {string | null} [city] City
|
|
14718
|
+
* @param {string | null} [postCode] Post Code
|
|
14719
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14720
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14721
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14722
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14723
|
+
* @param {string | null} [comment] Comment
|
|
14724
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14725
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14726
|
+
* @param {*} [options] Override http request option.
|
|
14727
|
+
* @throws {RequiredError}
|
|
14728
|
+
*/
|
|
14729
|
+
postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
|
|
14730
|
+
/**
|
|
14731
|
+
*
|
|
14732
|
+
* @param {number} id Number Port ID
|
|
14733
|
+
* @param {string | null} [companyName] Company Name
|
|
14734
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14735
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14736
|
+
* @param {string | null} [city] City
|
|
14737
|
+
* @param {string | null} [postCode] Post Code
|
|
14738
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14739
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14740
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14741
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14742
|
+
* @param {string | null} [comment] Comment
|
|
14743
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14744
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14745
|
+
* @param {*} [options] Override http request option.
|
|
14746
|
+
* @throws {RequiredError}
|
|
14747
|
+
*/
|
|
14748
|
+
postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
|
|
14749
|
+
/**
|
|
14750
|
+
*
|
|
14751
|
+
* @param {number} id Number Port ID
|
|
14752
|
+
* @param {string | null} [companyName] Company Name
|
|
14753
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14754
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14755
|
+
* @param {string | null} [city] City
|
|
14756
|
+
* @param {string | null} [postCode] Post Code
|
|
14757
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14758
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14759
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14760
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14761
|
+
* @param {string | null} [comment] Comment
|
|
14762
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14763
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14764
|
+
* @param {*} [options] Override http request option.
|
|
14765
|
+
* @throws {RequiredError}
|
|
14766
|
+
*/
|
|
14767
|
+
postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
|
|
14768
|
+
/**
|
|
14769
|
+
*
|
|
14770
|
+
* @param {number} id Number Port ID
|
|
14771
|
+
* @param {NumberPortDTO} numberPortDTO
|
|
14772
|
+
* @param {*} [options] Override http request option.
|
|
14773
|
+
* @throws {RequiredError}
|
|
14774
|
+
*/
|
|
14775
|
+
putGetAdminNumberPort(id: number, numberPortDTO: NumberPortDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
|
|
14776
|
+
};
|
|
14777
|
+
/**
|
|
14778
|
+
* NumberPortingApi - factory interface
|
|
14779
|
+
* @export
|
|
14780
|
+
*/
|
|
14781
|
+
export declare const NumberPortingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14782
|
+
/**
|
|
14783
|
+
*
|
|
14784
|
+
* @param {number} id Number Port ID
|
|
14785
|
+
* @param {*} [options] Override http request option.
|
|
14786
|
+
* @throws {RequiredError}
|
|
14787
|
+
*/
|
|
14788
|
+
deleteGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14789
|
+
/**
|
|
14790
|
+
*
|
|
14791
|
+
* @param {number} [pageSize] Number Of Results
|
|
14792
|
+
* @param {number} [page] Page Number
|
|
14793
|
+
* @param {string} [search] Search
|
|
14794
|
+
* @param {*} [options] Override http request option.
|
|
14795
|
+
* @throws {RequiredError}
|
|
14796
|
+
*/
|
|
14797
|
+
getCreateNumberPort(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortsModel>;
|
|
14798
|
+
/**
|
|
14799
|
+
*
|
|
14800
|
+
* @param {number} id Number Port ID
|
|
14801
|
+
* @param {*} [options] Override http request option.
|
|
14802
|
+
* @throws {RequiredError}
|
|
14803
|
+
*/
|
|
14804
|
+
getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
|
|
14805
|
+
/**
|
|
14806
|
+
*
|
|
14807
|
+
* @param {number} [pageSize] Number Of Results
|
|
14808
|
+
* @param {number} [page] Page Number
|
|
14809
|
+
* @param {string} [search] Search
|
|
14810
|
+
* @param {*} [options] Override http request option.
|
|
14811
|
+
* @throws {RequiredError}
|
|
14812
|
+
*/
|
|
14813
|
+
getGetAdminNumberPorts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortsModel>;
|
|
14814
|
+
/**
|
|
14815
|
+
*
|
|
14816
|
+
* @param {number} id Number Port ID
|
|
14817
|
+
* @param {*} [options] Override http request option.
|
|
14818
|
+
* @throws {RequiredError}
|
|
14819
|
+
*/
|
|
14820
|
+
getUpdateNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
|
|
14821
|
+
/**
|
|
14822
|
+
*
|
|
14823
|
+
* @param {number} id Number Port ID
|
|
14824
|
+
* @param {*} [options] Override http request option.
|
|
14825
|
+
* @throws {RequiredError}
|
|
14826
|
+
*/
|
|
14827
|
+
patchCloseAdminNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
|
|
14828
|
+
/**
|
|
14829
|
+
*
|
|
14830
|
+
* @param {string | null} [companyName] Company Name
|
|
14831
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14832
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14833
|
+
* @param {string | null} [city] City
|
|
14834
|
+
* @param {string | null} [postCode] Post Code
|
|
14835
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14836
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14837
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14838
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14839
|
+
* @param {string | null} [comment] Comment
|
|
14840
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14841
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14842
|
+
* @param {*} [options] Override http request option.
|
|
14843
|
+
* @throws {RequiredError}
|
|
14844
|
+
*/
|
|
14845
|
+
postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
|
|
14846
|
+
/**
|
|
14847
|
+
*
|
|
14848
|
+
* @param {number} id Number Port ID
|
|
14849
|
+
* @param {string | null} [companyName] Company Name
|
|
14850
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14851
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14852
|
+
* @param {string | null} [city] City
|
|
14853
|
+
* @param {string | null} [postCode] Post Code
|
|
14854
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14855
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14856
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14857
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14858
|
+
* @param {string | null} [comment] Comment
|
|
14859
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14860
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14861
|
+
* @param {*} [options] Override http request option.
|
|
14862
|
+
* @throws {RequiredError}
|
|
14863
|
+
*/
|
|
14864
|
+
postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
|
|
14865
|
+
/**
|
|
14866
|
+
*
|
|
14867
|
+
* @param {number} id Number Port ID
|
|
14868
|
+
* @param {string | null} [companyName] Company Name
|
|
14869
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14870
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14871
|
+
* @param {string | null} [city] City
|
|
14872
|
+
* @param {string | null} [postCode] Post Code
|
|
14873
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14874
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14875
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14876
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14877
|
+
* @param {string | null} [comment] Comment
|
|
14878
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14879
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14880
|
+
* @param {*} [options] Override http request option.
|
|
14881
|
+
* @throws {RequiredError}
|
|
14882
|
+
*/
|
|
14883
|
+
postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
|
|
14884
|
+
/**
|
|
14885
|
+
*
|
|
14886
|
+
* @param {number} id Number Port ID
|
|
14887
|
+
* @param {NumberPortDTO} numberPortDTO
|
|
14888
|
+
* @param {*} [options] Override http request option.
|
|
14889
|
+
* @throws {RequiredError}
|
|
14890
|
+
*/
|
|
14891
|
+
putGetAdminNumberPort(id: number, numberPortDTO: NumberPortDTO, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
|
|
14892
|
+
};
|
|
14893
|
+
/**
|
|
14894
|
+
* NumberPortingApi - object-oriented interface
|
|
14895
|
+
* @export
|
|
14896
|
+
* @class NumberPortingApi
|
|
14897
|
+
* @extends {BaseAPI}
|
|
14898
|
+
*/
|
|
14899
|
+
export declare class NumberPortingApi extends BaseAPI {
|
|
14900
|
+
/**
|
|
14901
|
+
*
|
|
14902
|
+
* @param {number} id Number Port ID
|
|
14903
|
+
* @param {*} [options] Override http request option.
|
|
14904
|
+
* @throws {RequiredError}
|
|
14905
|
+
* @memberof NumberPortingApi
|
|
14906
|
+
*/
|
|
14907
|
+
deleteGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14908
|
+
/**
|
|
14909
|
+
*
|
|
14910
|
+
* @param {number} [pageSize] Number Of Results
|
|
14911
|
+
* @param {number} [page] Page Number
|
|
14912
|
+
* @param {string} [search] Search
|
|
14913
|
+
* @param {*} [options] Override http request option.
|
|
14914
|
+
* @throws {RequiredError}
|
|
14915
|
+
* @memberof NumberPortingApi
|
|
14916
|
+
*/
|
|
14917
|
+
getCreateNumberPort(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortsModel, any, {}>>;
|
|
14918
|
+
/**
|
|
14919
|
+
*
|
|
14920
|
+
* @param {number} id Number Port ID
|
|
14921
|
+
* @param {*} [options] Override http request option.
|
|
14922
|
+
* @throws {RequiredError}
|
|
14923
|
+
* @memberof NumberPortingApi
|
|
14924
|
+
*/
|
|
14925
|
+
getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
|
|
14926
|
+
/**
|
|
14927
|
+
*
|
|
14928
|
+
* @param {number} [pageSize] Number Of Results
|
|
14929
|
+
* @param {number} [page] Page Number
|
|
14930
|
+
* @param {string} [search] Search
|
|
14931
|
+
* @param {*} [options] Override http request option.
|
|
14932
|
+
* @throws {RequiredError}
|
|
14933
|
+
* @memberof NumberPortingApi
|
|
14934
|
+
*/
|
|
14935
|
+
getGetAdminNumberPorts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortsModel, any, {}>>;
|
|
14936
|
+
/**
|
|
14937
|
+
*
|
|
14938
|
+
* @param {number} id Number Port ID
|
|
14939
|
+
* @param {*} [options] Override http request option.
|
|
14940
|
+
* @throws {RequiredError}
|
|
14941
|
+
* @memberof NumberPortingApi
|
|
14942
|
+
*/
|
|
14943
|
+
getUpdateNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
|
|
14944
|
+
/**
|
|
14945
|
+
*
|
|
14946
|
+
* @param {number} id Number Port ID
|
|
14947
|
+
* @param {*} [options] Override http request option.
|
|
14948
|
+
* @throws {RequiredError}
|
|
14949
|
+
* @memberof NumberPortingApi
|
|
14950
|
+
*/
|
|
14951
|
+
patchCloseAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
|
|
14952
|
+
/**
|
|
14953
|
+
*
|
|
14954
|
+
* @param {string | null} [companyName] Company Name
|
|
14955
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14956
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14957
|
+
* @param {string | null} [city] City
|
|
14958
|
+
* @param {string | null} [postCode] Post Code
|
|
14959
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14960
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14961
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14962
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14963
|
+
* @param {string | null} [comment] Comment
|
|
14964
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14965
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14966
|
+
* @param {*} [options] Override http request option.
|
|
14967
|
+
* @throws {RequiredError}
|
|
14968
|
+
* @memberof NumberPortingApi
|
|
14969
|
+
*/
|
|
14970
|
+
postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
|
|
14971
|
+
/**
|
|
14972
|
+
*
|
|
14973
|
+
* @param {number} id Number Port ID
|
|
14974
|
+
* @param {string | null} [companyName] Company Name
|
|
14975
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14976
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14977
|
+
* @param {string | null} [city] City
|
|
14978
|
+
* @param {string | null} [postCode] Post Code
|
|
14979
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
14980
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
14981
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
14982
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
14983
|
+
* @param {string | null} [comment] Comment
|
|
14984
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
14985
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
14986
|
+
* @param {*} [options] Override http request option.
|
|
14987
|
+
* @throws {RequiredError}
|
|
14988
|
+
* @memberof NumberPortingApi
|
|
14989
|
+
*/
|
|
14990
|
+
postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
|
|
14991
|
+
/**
|
|
14992
|
+
*
|
|
14993
|
+
* @param {number} id Number Port ID
|
|
14994
|
+
* @param {string | null} [companyName] Company Name
|
|
14995
|
+
* @param {string | null} [addressLine1] Address Line 1
|
|
14996
|
+
* @param {string | null} [addressLine2] Address Line 2
|
|
14997
|
+
* @param {string | null} [city] City
|
|
14998
|
+
* @param {string | null} [postCode] Post Code
|
|
14999
|
+
* @param {number | null} [trunkId] Trunk ID
|
|
15000
|
+
* @param {string | null} [tenantId] Starter Bundle ID
|
|
15001
|
+
* @param {string | null} [requestedPortDate] Requested Port Date
|
|
15002
|
+
* @param {boolean | null} [asap] Port Date ASAP
|
|
15003
|
+
* @param {string | null} [comment] Comment
|
|
15004
|
+
* @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
|
|
15005
|
+
* @param {File} [cloa] CLOA (only provide on submission)
|
|
15006
|
+
* @param {*} [options] Override http request option.
|
|
15007
|
+
* @throws {RequiredError}
|
|
15008
|
+
* @memberof NumberPortingApi
|
|
15009
|
+
*/
|
|
15010
|
+
postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
|
|
15011
|
+
/**
|
|
15012
|
+
*
|
|
15013
|
+
* @param {number} id Number Port ID
|
|
15014
|
+
* @param {NumberPortDTO} numberPortDTO
|
|
15015
|
+
* @param {*} [options] Override http request option.
|
|
15016
|
+
* @throws {RequiredError}
|
|
15017
|
+
* @memberof NumberPortingApi
|
|
15018
|
+
*/
|
|
15019
|
+
putGetAdminNumberPort(id: number, numberPortDTO: NumberPortDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
|
|
15020
|
+
}
|
|
14175
15021
|
/**
|
|
14176
15022
|
* OAuth20Api - axios parameter creator
|
|
14177
15023
|
* @export
|
|
@@ -14476,6 +15322,8 @@ export declare const PostAccessTokenScopeEnum: {
|
|
|
14476
15322
|
readonly TcxWizard: "tcx_wizard";
|
|
14477
15323
|
readonly AccountsRead: "accounts.read";
|
|
14478
15324
|
readonly AccountsWrite: "accounts.write";
|
|
15325
|
+
readonly NumberPortingRead: "number_porting.read";
|
|
15326
|
+
readonly NumberPortingWrite: "number_porting.write";
|
|
14479
15327
|
readonly PricingRead: "pricing.read";
|
|
14480
15328
|
readonly OrdersRead: "orders.read";
|
|
14481
15329
|
readonly OrdersWrite: "orders.write";
|
|
@@ -14514,6 +15362,8 @@ export declare const PostAuthoriseScopeEnum: {
|
|
|
14514
15362
|
readonly TcxWizard: "tcx_wizard";
|
|
14515
15363
|
readonly AccountsRead: "accounts.read";
|
|
14516
15364
|
readonly AccountsWrite: "accounts.write";
|
|
15365
|
+
readonly NumberPortingRead: "number_porting.read";
|
|
15366
|
+
readonly NumberPortingWrite: "number_porting.write";
|
|
14517
15367
|
readonly PricingRead: "pricing.read";
|
|
14518
15368
|
readonly OrdersRead: "orders.read";
|
|
14519
15369
|
readonly OrdersWrite: "orders.write";
|
|
@@ -14539,23 +15389,23 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
14539
15389
|
*/
|
|
14540
15390
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14541
15391
|
/**
|
|
14542
|
-
* Delete
|
|
14543
|
-
* @summary Delete Shipment (Admin)
|
|
15392
|
+
* Delete Batch (Admin)
|
|
14544
15393
|
* @param {number} id Order ID
|
|
14545
15394
|
* @param {number} batchId Batch ID
|
|
14546
|
-
* @param {number} shipmentId Shipment ID
|
|
14547
15395
|
* @param {*} [options] Override http request option.
|
|
14548
15396
|
* @throws {RequiredError}
|
|
14549
15397
|
*/
|
|
14550
|
-
|
|
15398
|
+
deleteDeleteBatch: (id: number, batchId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14551
15399
|
/**
|
|
14552
|
-
* Delete
|
|
15400
|
+
* Delete Shipment (Admin)
|
|
15401
|
+
* @summary Delete Shipment (Admin)
|
|
14553
15402
|
* @param {number} id Order ID
|
|
14554
15403
|
* @param {number} batchId Batch ID
|
|
15404
|
+
* @param {number} shipmentId Shipment ID
|
|
14555
15405
|
* @param {*} [options] Override http request option.
|
|
14556
15406
|
* @throws {RequiredError}
|
|
14557
15407
|
*/
|
|
14558
|
-
|
|
15408
|
+
deleteDeleteShipment: (id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14559
15409
|
/**
|
|
14560
15410
|
* Delete Orders (Beta)
|
|
14561
15411
|
* @summary Delete Orders (Beta)
|
|
@@ -14751,23 +15601,23 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14751
15601
|
*/
|
|
14752
15602
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
14753
15603
|
/**
|
|
14754
|
-
* Delete
|
|
14755
|
-
* @summary Delete Shipment (Admin)
|
|
15604
|
+
* Delete Batch (Admin)
|
|
14756
15605
|
* @param {number} id Order ID
|
|
14757
15606
|
* @param {number} batchId Batch ID
|
|
14758
|
-
* @param {number} shipmentId Shipment ID
|
|
14759
15607
|
* @param {*} [options] Override http request option.
|
|
14760
15608
|
* @throws {RequiredError}
|
|
14761
15609
|
*/
|
|
14762
|
-
|
|
15610
|
+
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14763
15611
|
/**
|
|
14764
|
-
* Delete
|
|
15612
|
+
* Delete Shipment (Admin)
|
|
15613
|
+
* @summary Delete Shipment (Admin)
|
|
14765
15614
|
* @param {number} id Order ID
|
|
14766
15615
|
* @param {number} batchId Batch ID
|
|
15616
|
+
* @param {number} shipmentId Shipment ID
|
|
14767
15617
|
* @param {*} [options] Override http request option.
|
|
14768
15618
|
* @throws {RequiredError}
|
|
14769
15619
|
*/
|
|
14770
|
-
|
|
15620
|
+
deleteDeleteShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14771
15621
|
/**
|
|
14772
15622
|
* Delete Orders (Beta)
|
|
14773
15623
|
* @summary Delete Orders (Beta)
|
|
@@ -14963,23 +15813,23 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14963
15813
|
*/
|
|
14964
15814
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14965
15815
|
/**
|
|
14966
|
-
* Delete
|
|
14967
|
-
* @summary Delete Shipment (Admin)
|
|
15816
|
+
* Delete Batch (Admin)
|
|
14968
15817
|
* @param {number} id Order ID
|
|
14969
15818
|
* @param {number} batchId Batch ID
|
|
14970
|
-
* @param {number} shipmentId Shipment ID
|
|
14971
15819
|
* @param {*} [options] Override http request option.
|
|
14972
15820
|
* @throws {RequiredError}
|
|
14973
15821
|
*/
|
|
14974
|
-
|
|
15822
|
+
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14975
15823
|
/**
|
|
14976
|
-
* Delete
|
|
15824
|
+
* Delete Shipment (Admin)
|
|
15825
|
+
* @summary Delete Shipment (Admin)
|
|
14977
15826
|
* @param {number} id Order ID
|
|
14978
15827
|
* @param {number} batchId Batch ID
|
|
15828
|
+
* @param {number} shipmentId Shipment ID
|
|
14979
15829
|
* @param {*} [options] Override http request option.
|
|
14980
15830
|
* @throws {RequiredError}
|
|
14981
15831
|
*/
|
|
14982
|
-
|
|
15832
|
+
deleteDeleteShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14983
15833
|
/**
|
|
14984
15834
|
* Delete Orders (Beta)
|
|
14985
15835
|
* @summary Delete Orders (Beta)
|
|
@@ -15177,25 +16027,25 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
15177
16027
|
*/
|
|
15178
16028
|
export declare class OrdersApi extends BaseAPI {
|
|
15179
16029
|
/**
|
|
15180
|
-
* Delete
|
|
15181
|
-
* @summary Delete Shipment (Admin)
|
|
16030
|
+
* Delete Batch (Admin)
|
|
15182
16031
|
* @param {number} id Order ID
|
|
15183
16032
|
* @param {number} batchId Batch ID
|
|
15184
|
-
* @param {number} shipmentId Shipment ID
|
|
15185
16033
|
* @param {*} [options] Override http request option.
|
|
15186
16034
|
* @throws {RequiredError}
|
|
15187
16035
|
* @memberof OrdersApi
|
|
15188
16036
|
*/
|
|
15189
|
-
|
|
16037
|
+
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15190
16038
|
/**
|
|
15191
|
-
* Delete
|
|
16039
|
+
* Delete Shipment (Admin)
|
|
16040
|
+
* @summary Delete Shipment (Admin)
|
|
15192
16041
|
* @param {number} id Order ID
|
|
15193
16042
|
* @param {number} batchId Batch ID
|
|
16043
|
+
* @param {number} shipmentId Shipment ID
|
|
15194
16044
|
* @param {*} [options] Override http request option.
|
|
15195
16045
|
* @throws {RequiredError}
|
|
15196
16046
|
* @memberof OrdersApi
|
|
15197
16047
|
*/
|
|
15198
|
-
|
|
16048
|
+
deleteDeleteShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15199
16049
|
/**
|
|
15200
16050
|
* Delete Orders (Beta)
|
|
15201
16051
|
* @summary Delete Orders (Beta)
|
|
@@ -16291,6 +17141,13 @@ export declare const SIPTrunksApiAxiosParamCreator: (configuration?: Configurati
|
|
|
16291
17141
|
* @throws {RequiredError}
|
|
16292
17142
|
*/
|
|
16293
17143
|
getGetAddress: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17144
|
+
/**
|
|
17145
|
+
* Get SIP Trunks
|
|
17146
|
+
* @param {number} [customerId] Customer ID
|
|
17147
|
+
* @param {*} [options] Override http request option.
|
|
17148
|
+
* @throws {RequiredError}
|
|
17149
|
+
*/
|
|
17150
|
+
getGetAdminSipTrunks: (customerId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16294
17151
|
/**
|
|
16295
17152
|
* Get UK National Area Codes
|
|
16296
17153
|
* @summary Get UK National Area Codes
|
|
@@ -16486,6 +17343,13 @@ export declare const SIPTrunksApiFp: (configuration?: Configuration) => {
|
|
|
16486
17343
|
* @throws {RequiredError}
|
|
16487
17344
|
*/
|
|
16488
17345
|
getGetAddress(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressRequestModel>>;
|
|
17346
|
+
/**
|
|
17347
|
+
* Get SIP Trunks
|
|
17348
|
+
* @param {number} [customerId] Customer ID
|
|
17349
|
+
* @param {*} [options] Override http request option.
|
|
17350
|
+
* @throws {RequiredError}
|
|
17351
|
+
*/
|
|
17352
|
+
getGetAdminSipTrunks(customerId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SipTrunkEntity>>>;
|
|
16489
17353
|
/**
|
|
16490
17354
|
* Get UK National Area Codes
|
|
16491
17355
|
* @summary Get UK National Area Codes
|
|
@@ -16681,6 +17545,13 @@ export declare const SIPTrunksApiFactory: (configuration?: Configuration, basePa
|
|
|
16681
17545
|
* @throws {RequiredError}
|
|
16682
17546
|
*/
|
|
16683
17547
|
getGetAddress(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AddressRequestModel>;
|
|
17548
|
+
/**
|
|
17549
|
+
* Get SIP Trunks
|
|
17550
|
+
* @param {number} [customerId] Customer ID
|
|
17551
|
+
* @param {*} [options] Override http request option.
|
|
17552
|
+
* @throws {RequiredError}
|
|
17553
|
+
*/
|
|
17554
|
+
getGetAdminSipTrunks(customerId?: number, options?: RawAxiosRequestConfig): AxiosPromise<Array<SipTrunkEntity>>;
|
|
16684
17555
|
/**
|
|
16685
17556
|
* Get UK National Area Codes
|
|
16686
17557
|
* @summary Get UK National Area Codes
|
|
@@ -16881,6 +17752,14 @@ export declare class SIPTrunksApi extends BaseAPI {
|
|
|
16881
17752
|
* @memberof SIPTrunksApi
|
|
16882
17753
|
*/
|
|
16883
17754
|
getGetAddress(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddressRequestModel, any, {}>>;
|
|
17755
|
+
/**
|
|
17756
|
+
* Get SIP Trunks
|
|
17757
|
+
* @param {number} [customerId] Customer ID
|
|
17758
|
+
* @param {*} [options] Override http request option.
|
|
17759
|
+
* @throws {RequiredError}
|
|
17760
|
+
* @memberof SIPTrunksApi
|
|
17761
|
+
*/
|
|
17762
|
+
getGetAdminSipTrunks(customerId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SipTrunkEntity[], any, {}>>;
|
|
16884
17763
|
/**
|
|
16885
17764
|
* Get UK National Area Codes
|
|
16886
17765
|
* @summary Get UK National Area Codes
|
|
@@ -18494,14 +19373,14 @@ export declare const TicketsApiFp: (configuration?: Configuration) => {
|
|
|
18494
19373
|
* @param {*} [options] Override http request option.
|
|
18495
19374
|
* @throws {RequiredError}
|
|
18496
19375
|
*/
|
|
18497
|
-
getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19376
|
+
getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportTicketModel>>;
|
|
18498
19377
|
/**
|
|
18499
19378
|
* Close a telephony support ticket
|
|
18500
19379
|
* @param {number} id Ticket ID
|
|
18501
19380
|
* @param {*} [options] Override http request option.
|
|
18502
19381
|
* @throws {RequiredError}
|
|
18503
19382
|
*/
|
|
18504
|
-
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19383
|
+
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportTicketModel>>;
|
|
18505
19384
|
/**
|
|
18506
19385
|
* Create a new telephony support ticket
|
|
18507
19386
|
* @param {string} [subject] Ticket Subject
|
|
@@ -18510,7 +19389,7 @@ export declare const TicketsApiFp: (configuration?: Configuration) => {
|
|
|
18510
19389
|
* @param {*} [options] Override http request option.
|
|
18511
19390
|
* @throws {RequiredError}
|
|
18512
19391
|
*/
|
|
18513
|
-
postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19392
|
+
postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportTicketModel>>;
|
|
18514
19393
|
/**
|
|
18515
19394
|
* Reply to a telephony support ticket
|
|
18516
19395
|
* @param {number} id Ticket ID
|
|
@@ -18519,7 +19398,7 @@ export declare const TicketsApiFp: (configuration?: Configuration) => {
|
|
|
18519
19398
|
* @param {*} [options] Override http request option.
|
|
18520
19399
|
* @throws {RequiredError}
|
|
18521
19400
|
*/
|
|
18522
|
-
postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19401
|
+
postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportTicketModel>>;
|
|
18523
19402
|
};
|
|
18524
19403
|
/**
|
|
18525
19404
|
* TicketsApi - factory interface
|
|
@@ -18541,14 +19420,14 @@ export declare const TicketsApiFactory: (configuration?: Configuration, basePath
|
|
|
18541
19420
|
* @param {*} [options] Override http request option.
|
|
18542
19421
|
* @throws {RequiredError}
|
|
18543
19422
|
*/
|
|
18544
|
-
getGetTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19423
|
+
getGetTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
|
|
18545
19424
|
/**
|
|
18546
19425
|
* Close a telephony support ticket
|
|
18547
19426
|
* @param {number} id Ticket ID
|
|
18548
19427
|
* @param {*} [options] Override http request option.
|
|
18549
19428
|
* @throws {RequiredError}
|
|
18550
19429
|
*/
|
|
18551
|
-
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19430
|
+
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
|
|
18552
19431
|
/**
|
|
18553
19432
|
* Create a new telephony support ticket
|
|
18554
19433
|
* @param {string} [subject] Ticket Subject
|
|
@@ -18557,7 +19436,7 @@ export declare const TicketsApiFactory: (configuration?: Configuration, basePath
|
|
|
18557
19436
|
* @param {*} [options] Override http request option.
|
|
18558
19437
|
* @throws {RequiredError}
|
|
18559
19438
|
*/
|
|
18560
|
-
postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19439
|
+
postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
|
|
18561
19440
|
/**
|
|
18562
19441
|
* Reply to a telephony support ticket
|
|
18563
19442
|
* @param {number} id Ticket ID
|
|
@@ -18566,7 +19445,7 @@ export declare const TicketsApiFactory: (configuration?: Configuration, basePath
|
|
|
18566
19445
|
* @param {*} [options] Override http request option.
|
|
18567
19446
|
* @throws {RequiredError}
|
|
18568
19447
|
*/
|
|
18569
|
-
postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19448
|
+
postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
|
|
18570
19449
|
};
|
|
18571
19450
|
/**
|
|
18572
19451
|
* TicketsApi - object-oriented interface
|
|
@@ -18592,7 +19471,7 @@ export declare class TicketsApi extends BaseAPI {
|
|
|
18592
19471
|
* @throws {RequiredError}
|
|
18593
19472
|
* @memberof TicketsApi
|
|
18594
19473
|
*/
|
|
18595
|
-
getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19474
|
+
getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportTicketModel, any, {}>>;
|
|
18596
19475
|
/**
|
|
18597
19476
|
* Close a telephony support ticket
|
|
18598
19477
|
* @param {number} id Ticket ID
|
|
@@ -18600,7 +19479,7 @@ export declare class TicketsApi extends BaseAPI {
|
|
|
18600
19479
|
* @throws {RequiredError}
|
|
18601
19480
|
* @memberof TicketsApi
|
|
18602
19481
|
*/
|
|
18603
|
-
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19482
|
+
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportTicketModel, any, {}>>;
|
|
18604
19483
|
/**
|
|
18605
19484
|
* Create a new telephony support ticket
|
|
18606
19485
|
* @param {string} [subject] Ticket Subject
|
|
@@ -18610,7 +19489,7 @@ export declare class TicketsApi extends BaseAPI {
|
|
|
18610
19489
|
* @throws {RequiredError}
|
|
18611
19490
|
* @memberof TicketsApi
|
|
18612
19491
|
*/
|
|
18613
|
-
postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19492
|
+
postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportTicketModel, any, {}>>;
|
|
18614
19493
|
/**
|
|
18615
19494
|
* Reply to a telephony support ticket
|
|
18616
19495
|
* @param {number} id Ticket ID
|
|
@@ -18620,7 +19499,7 @@ export declare class TicketsApi extends BaseAPI {
|
|
|
18620
19499
|
* @throws {RequiredError}
|
|
18621
19500
|
* @memberof TicketsApi
|
|
18622
19501
|
*/
|
|
18623
|
-
postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19502
|
+
postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportTicketModel, any, {}>>;
|
|
18624
19503
|
}
|
|
18625
19504
|
/**
|
|
18626
19505
|
* WebhooksApi - axios parameter creator
|