yellowgrid-api-ts 3.2.69-dev.0 → 3.2.71-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 -1
- package/README.md +21 -2
- package/api.ts +1701 -203
- package/dist/api.d.ts +1017 -144
- 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 +16 -16
- package/docs/SIPTrunksApi.md +55 -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
|
|
@@ -8559,61 +8890,134 @@ export interface SupplierModel {
|
|
|
8559
8890
|
'xeroAccountNumber'?: string;
|
|
8560
8891
|
}
|
|
8561
8892
|
/**
|
|
8562
|
-
*
|
|
8893
|
+
* Telephony Support Ticket
|
|
8563
8894
|
* @export
|
|
8564
|
-
* @interface
|
|
8895
|
+
* @interface SupportTicketModel
|
|
8565
8896
|
*/
|
|
8566
|
-
export interface
|
|
8897
|
+
export interface SupportTicketModel {
|
|
8567
8898
|
/**
|
|
8568
|
-
*
|
|
8899
|
+
* Ticket ID
|
|
8569
8900
|
* @type {number}
|
|
8570
|
-
* @memberof
|
|
8901
|
+
* @memberof SupportTicketModel
|
|
8571
8902
|
*/
|
|
8572
8903
|
'id'?: number;
|
|
8573
8904
|
/**
|
|
8574
|
-
*
|
|
8905
|
+
* Ticket status
|
|
8575
8906
|
* @type {string}
|
|
8576
|
-
* @memberof
|
|
8907
|
+
* @memberof SupportTicketModel
|
|
8577
8908
|
*/
|
|
8578
|
-
'
|
|
8909
|
+
'status'?: string;
|
|
8579
8910
|
/**
|
|
8580
|
-
*
|
|
8581
|
-
* @type {
|
|
8582
|
-
* @memberof
|
|
8911
|
+
* Ticket status ID
|
|
8912
|
+
* @type {number}
|
|
8913
|
+
* @memberof SupportTicketModel
|
|
8583
8914
|
*/
|
|
8584
|
-
'
|
|
8915
|
+
'statusId'?: number;
|
|
8585
8916
|
/**
|
|
8586
|
-
*
|
|
8917
|
+
* Ticket subject
|
|
8587
8918
|
* @type {string}
|
|
8588
|
-
* @memberof
|
|
8919
|
+
* @memberof SupportTicketModel
|
|
8589
8920
|
*/
|
|
8590
|
-
'
|
|
8921
|
+
'subject'?: string;
|
|
8591
8922
|
/**
|
|
8592
|
-
*
|
|
8593
|
-
* @type {
|
|
8594
|
-
* @memberof
|
|
8923
|
+
* Support email address
|
|
8924
|
+
* @type {string}
|
|
8925
|
+
* @memberof SupportTicketModel
|
|
8595
8926
|
*/
|
|
8596
|
-
'
|
|
8927
|
+
'supportEmail'?: string | null;
|
|
8597
8928
|
/**
|
|
8598
|
-
*
|
|
8599
|
-
* @type {
|
|
8600
|
-
* @memberof
|
|
8929
|
+
* Recipient emails
|
|
8930
|
+
* @type {Array<string>}
|
|
8931
|
+
* @memberof SupportTicketModel
|
|
8601
8932
|
*/
|
|
8602
|
-
'
|
|
8933
|
+
'toEmails'?: Array<string>;
|
|
8603
8934
|
/**
|
|
8604
|
-
*
|
|
8605
|
-
* @type {
|
|
8606
|
-
* @memberof
|
|
8935
|
+
* Ticket description (HTML)
|
|
8936
|
+
* @type {string}
|
|
8937
|
+
* @memberof SupportTicketModel
|
|
8607
8938
|
*/
|
|
8608
|
-
'
|
|
8939
|
+
'description'?: string;
|
|
8609
8940
|
/**
|
|
8610
|
-
*
|
|
8611
|
-
* @type {
|
|
8612
|
-
* @memberof
|
|
8941
|
+
* Ticket description (plain text)
|
|
8942
|
+
* @type {string}
|
|
8943
|
+
* @memberof SupportTicketModel
|
|
8613
8944
|
*/
|
|
8614
|
-
'
|
|
8945
|
+
'descriptionText'?: string;
|
|
8615
8946
|
/**
|
|
8616
|
-
*
|
|
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
|
|
9017
|
+
*/
|
|
9018
|
+
'tunnelPort'?: number;
|
|
9019
|
+
/**
|
|
9020
|
+
* 3CX Wizard Build Schedule
|
|
8617
9021
|
* @type {string}
|
|
8618
9022
|
* @memberof TcxBackupEntity
|
|
8619
9023
|
*/
|
|
@@ -10644,79 +11048,6 @@ export interface TechSupportCompanySummaryDTO {
|
|
|
10644
11048
|
*/
|
|
10645
11049
|
'monthlyReportEmailAddress'?: string;
|
|
10646
11050
|
}
|
|
10647
|
-
/**
|
|
10648
|
-
* Telephony Support Ticket
|
|
10649
|
-
* @export
|
|
10650
|
-
* @interface TelephonySupportTicketModel
|
|
10651
|
-
*/
|
|
10652
|
-
export interface TelephonySupportTicketModel {
|
|
10653
|
-
/**
|
|
10654
|
-
* Ticket ID
|
|
10655
|
-
* @type {number}
|
|
10656
|
-
* @memberof TelephonySupportTicketModel
|
|
10657
|
-
*/
|
|
10658
|
-
'id'?: number;
|
|
10659
|
-
/**
|
|
10660
|
-
* Ticket status
|
|
10661
|
-
* @type {string}
|
|
10662
|
-
* @memberof TelephonySupportTicketModel
|
|
10663
|
-
*/
|
|
10664
|
-
'status'?: string;
|
|
10665
|
-
/**
|
|
10666
|
-
* Ticket status ID
|
|
10667
|
-
* @type {number}
|
|
10668
|
-
* @memberof TelephonySupportTicketModel
|
|
10669
|
-
*/
|
|
10670
|
-
'statusId'?: number;
|
|
10671
|
-
/**
|
|
10672
|
-
* Ticket subject
|
|
10673
|
-
* @type {string}
|
|
10674
|
-
* @memberof TelephonySupportTicketModel
|
|
10675
|
-
*/
|
|
10676
|
-
'subject'?: string;
|
|
10677
|
-
/**
|
|
10678
|
-
* Support email address
|
|
10679
|
-
* @type {string}
|
|
10680
|
-
* @memberof TelephonySupportTicketModel
|
|
10681
|
-
*/
|
|
10682
|
-
'supportEmail'?: string | null;
|
|
10683
|
-
/**
|
|
10684
|
-
* Recipient emails
|
|
10685
|
-
* @type {Array<string>}
|
|
10686
|
-
* @memberof TelephonySupportTicketModel
|
|
10687
|
-
*/
|
|
10688
|
-
'toEmails'?: Array<string>;
|
|
10689
|
-
/**
|
|
10690
|
-
* Ticket description (HTML)
|
|
10691
|
-
* @type {string}
|
|
10692
|
-
* @memberof TelephonySupportTicketModel
|
|
10693
|
-
*/
|
|
10694
|
-
'description'?: string;
|
|
10695
|
-
/**
|
|
10696
|
-
* Ticket description (plain text)
|
|
10697
|
-
* @type {string}
|
|
10698
|
-
* @memberof TelephonySupportTicketModel
|
|
10699
|
-
*/
|
|
10700
|
-
'descriptionText'?: string;
|
|
10701
|
-
/**
|
|
10702
|
-
* Creation timestamp
|
|
10703
|
-
* @type {string}
|
|
10704
|
-
* @memberof TelephonySupportTicketModel
|
|
10705
|
-
*/
|
|
10706
|
-
'createdAt'?: string;
|
|
10707
|
-
/**
|
|
10708
|
-
* Attachments
|
|
10709
|
-
* @type {Array<AttachmentModel>}
|
|
10710
|
-
* @memberof TelephonySupportTicketModel
|
|
10711
|
-
*/
|
|
10712
|
-
'attachments'?: Array<AttachmentModel>;
|
|
10713
|
-
/**
|
|
10714
|
-
* Conversations
|
|
10715
|
-
* @type {Array<ConversationModel>}
|
|
10716
|
-
* @memberof TelephonySupportTicketModel
|
|
10717
|
-
*/
|
|
10718
|
-
'conversations'?: Array<ConversationModel>;
|
|
10719
|
-
}
|
|
10720
11051
|
/**
|
|
10721
11052
|
* Ticket Summary Model
|
|
10722
11053
|
* @export
|
|
@@ -13849,6 +14180,14 @@ export declare const Class3CXMultiTenantApiAxiosParamCreator: (configuration?: C
|
|
|
13849
14180
|
* @throws {RequiredError}
|
|
13850
14181
|
*/
|
|
13851
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>;
|
|
13852
14191
|
/**
|
|
13853
14192
|
* Get 3CX Starter Bundle Tenant
|
|
13854
14193
|
* @summary Get 3CX MT Tenant
|
|
@@ -13914,6 +14253,14 @@ export declare const Class3CXMultiTenantApiFp: (configuration?: Configuration) =
|
|
|
13914
14253
|
* @throws {RequiredError}
|
|
13915
14254
|
*/
|
|
13916
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>>>;
|
|
13917
14264
|
/**
|
|
13918
14265
|
* Get 3CX Starter Bundle Tenant
|
|
13919
14266
|
* @summary Get 3CX MT Tenant
|
|
@@ -13979,6 +14326,14 @@ export declare const Class3CXMultiTenantApiFactory: (configuration?: Configurati
|
|
|
13979
14326
|
* @throws {RequiredError}
|
|
13980
14327
|
*/
|
|
13981
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>>;
|
|
13982
14337
|
/**
|
|
13983
14338
|
* Get 3CX Starter Bundle Tenant
|
|
13984
14339
|
* @summary Get 3CX MT Tenant
|
|
@@ -14047,6 +14402,15 @@ export declare class Class3CXMultiTenantApi extends BaseAPI {
|
|
|
14047
14402
|
* @memberof Class3CXMultiTenantApi
|
|
14048
14403
|
*/
|
|
14049
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, {}>>;
|
|
14050
14414
|
/**
|
|
14051
14415
|
* Get 3CX Starter Bundle Tenant
|
|
14052
14416
|
* @summary Get 3CX MT Tenant
|
|
@@ -14178,6 +14542,482 @@ export declare class MyPBXToolsApi extends BaseAPI {
|
|
|
14178
14542
|
*/
|
|
14179
14543
|
getGetRecording(licenceKey: string, fileName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetRecording200Response, any, {}>>;
|
|
14180
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
|
+
}
|
|
14181
15021
|
/**
|
|
14182
15022
|
* OAuth20Api - axios parameter creator
|
|
14183
15023
|
* @export
|
|
@@ -14482,6 +15322,8 @@ export declare const PostAccessTokenScopeEnum: {
|
|
|
14482
15322
|
readonly TcxWizard: "tcx_wizard";
|
|
14483
15323
|
readonly AccountsRead: "accounts.read";
|
|
14484
15324
|
readonly AccountsWrite: "accounts.write";
|
|
15325
|
+
readonly NumberPortingRead: "number_porting.read";
|
|
15326
|
+
readonly NumberPortingWrite: "number_porting.write";
|
|
14485
15327
|
readonly PricingRead: "pricing.read";
|
|
14486
15328
|
readonly OrdersRead: "orders.read";
|
|
14487
15329
|
readonly OrdersWrite: "orders.write";
|
|
@@ -14520,6 +15362,8 @@ export declare const PostAuthoriseScopeEnum: {
|
|
|
14520
15362
|
readonly TcxWizard: "tcx_wizard";
|
|
14521
15363
|
readonly AccountsRead: "accounts.read";
|
|
14522
15364
|
readonly AccountsWrite: "accounts.write";
|
|
15365
|
+
readonly NumberPortingRead: "number_porting.read";
|
|
15366
|
+
readonly NumberPortingWrite: "number_porting.write";
|
|
14523
15367
|
readonly PricingRead: "pricing.read";
|
|
14524
15368
|
readonly OrdersRead: "orders.read";
|
|
14525
15369
|
readonly OrdersWrite: "orders.write";
|
|
@@ -14545,23 +15389,23 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
14545
15389
|
*/
|
|
14546
15390
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14547
15391
|
/**
|
|
14548
|
-
* Delete
|
|
14549
|
-
* @summary Delete Shipment (Admin)
|
|
15392
|
+
* Delete Batch (Admin)
|
|
14550
15393
|
* @param {number} id Order ID
|
|
14551
15394
|
* @param {number} batchId Batch ID
|
|
14552
|
-
* @param {number} shipmentId Shipment ID
|
|
14553
15395
|
* @param {*} [options] Override http request option.
|
|
14554
15396
|
* @throws {RequiredError}
|
|
14555
15397
|
*/
|
|
14556
|
-
|
|
15398
|
+
deleteDeleteBatch: (id: number, batchId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14557
15399
|
/**
|
|
14558
|
-
* Delete
|
|
15400
|
+
* Delete Shipment (Admin)
|
|
15401
|
+
* @summary Delete Shipment (Admin)
|
|
14559
15402
|
* @param {number} id Order ID
|
|
14560
15403
|
* @param {number} batchId Batch ID
|
|
15404
|
+
* @param {number} shipmentId Shipment ID
|
|
14561
15405
|
* @param {*} [options] Override http request option.
|
|
14562
15406
|
* @throws {RequiredError}
|
|
14563
15407
|
*/
|
|
14564
|
-
|
|
15408
|
+
deleteDeleteShipment: (id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14565
15409
|
/**
|
|
14566
15410
|
* Delete Orders (Beta)
|
|
14567
15411
|
* @summary Delete Orders (Beta)
|
|
@@ -14757,23 +15601,23 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14757
15601
|
*/
|
|
14758
15602
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
14759
15603
|
/**
|
|
14760
|
-
* Delete
|
|
14761
|
-
* @summary Delete Shipment (Admin)
|
|
15604
|
+
* Delete Batch (Admin)
|
|
14762
15605
|
* @param {number} id Order ID
|
|
14763
15606
|
* @param {number} batchId Batch ID
|
|
14764
|
-
* @param {number} shipmentId Shipment ID
|
|
14765
15607
|
* @param {*} [options] Override http request option.
|
|
14766
15608
|
* @throws {RequiredError}
|
|
14767
15609
|
*/
|
|
14768
|
-
|
|
15610
|
+
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14769
15611
|
/**
|
|
14770
|
-
* Delete
|
|
15612
|
+
* Delete Shipment (Admin)
|
|
15613
|
+
* @summary Delete Shipment (Admin)
|
|
14771
15614
|
* @param {number} id Order ID
|
|
14772
15615
|
* @param {number} batchId Batch ID
|
|
15616
|
+
* @param {number} shipmentId Shipment ID
|
|
14773
15617
|
* @param {*} [options] Override http request option.
|
|
14774
15618
|
* @throws {RequiredError}
|
|
14775
15619
|
*/
|
|
14776
|
-
|
|
15620
|
+
deleteDeleteShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14777
15621
|
/**
|
|
14778
15622
|
* Delete Orders (Beta)
|
|
14779
15623
|
* @summary Delete Orders (Beta)
|
|
@@ -14865,7 +15709,7 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14865
15709
|
* @param {*} [options] Override http request option.
|
|
14866
15710
|
* @throws {RequiredError}
|
|
14867
15711
|
*/
|
|
14868
|
-
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
15712
|
+
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentDTO>>;
|
|
14869
15713
|
/**
|
|
14870
15714
|
* Create An Order (Beta)
|
|
14871
15715
|
* @summary Create An Order (Beta)
|
|
@@ -14969,23 +15813,23 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14969
15813
|
*/
|
|
14970
15814
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14971
15815
|
/**
|
|
14972
|
-
* Delete
|
|
14973
|
-
* @summary Delete Shipment (Admin)
|
|
15816
|
+
* Delete Batch (Admin)
|
|
14974
15817
|
* @param {number} id Order ID
|
|
14975
15818
|
* @param {number} batchId Batch ID
|
|
14976
|
-
* @param {number} shipmentId Shipment ID
|
|
14977
15819
|
* @param {*} [options] Override http request option.
|
|
14978
15820
|
* @throws {RequiredError}
|
|
14979
15821
|
*/
|
|
14980
|
-
|
|
15822
|
+
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14981
15823
|
/**
|
|
14982
|
-
* Delete
|
|
15824
|
+
* Delete Shipment (Admin)
|
|
15825
|
+
* @summary Delete Shipment (Admin)
|
|
14983
15826
|
* @param {number} id Order ID
|
|
14984
15827
|
* @param {number} batchId Batch ID
|
|
15828
|
+
* @param {number} shipmentId Shipment ID
|
|
14985
15829
|
* @param {*} [options] Override http request option.
|
|
14986
15830
|
* @throws {RequiredError}
|
|
14987
15831
|
*/
|
|
14988
|
-
|
|
15832
|
+
deleteDeleteShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14989
15833
|
/**
|
|
14990
15834
|
* Delete Orders (Beta)
|
|
14991
15835
|
* @summary Delete Orders (Beta)
|
|
@@ -15077,7 +15921,7 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
15077
15921
|
* @param {*} [options] Override http request option.
|
|
15078
15922
|
* @throws {RequiredError}
|
|
15079
15923
|
*/
|
|
15080
|
-
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
15924
|
+
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentDTO>;
|
|
15081
15925
|
/**
|
|
15082
15926
|
* Create An Order (Beta)
|
|
15083
15927
|
* @summary Create An Order (Beta)
|
|
@@ -15183,25 +16027,25 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
15183
16027
|
*/
|
|
15184
16028
|
export declare class OrdersApi extends BaseAPI {
|
|
15185
16029
|
/**
|
|
15186
|
-
* Delete
|
|
15187
|
-
* @summary Delete Shipment (Admin)
|
|
16030
|
+
* Delete Batch (Admin)
|
|
15188
16031
|
* @param {number} id Order ID
|
|
15189
16032
|
* @param {number} batchId Batch ID
|
|
15190
|
-
* @param {number} shipmentId Shipment ID
|
|
15191
16033
|
* @param {*} [options] Override http request option.
|
|
15192
16034
|
* @throws {RequiredError}
|
|
15193
16035
|
* @memberof OrdersApi
|
|
15194
16036
|
*/
|
|
15195
|
-
|
|
16037
|
+
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15196
16038
|
/**
|
|
15197
|
-
* Delete
|
|
16039
|
+
* Delete Shipment (Admin)
|
|
16040
|
+
* @summary Delete Shipment (Admin)
|
|
15198
16041
|
* @param {number} id Order ID
|
|
15199
16042
|
* @param {number} batchId Batch ID
|
|
16043
|
+
* @param {number} shipmentId Shipment ID
|
|
15200
16044
|
* @param {*} [options] Override http request option.
|
|
15201
16045
|
* @throws {RequiredError}
|
|
15202
16046
|
* @memberof OrdersApi
|
|
15203
16047
|
*/
|
|
15204
|
-
|
|
16048
|
+
deleteDeleteShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15205
16049
|
/**
|
|
15206
16050
|
* Delete Orders (Beta)
|
|
15207
16051
|
* @summary Delete Orders (Beta)
|
|
@@ -15303,7 +16147,7 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15303
16147
|
* @throws {RequiredError}
|
|
15304
16148
|
* @memberof OrdersApi
|
|
15305
16149
|
*/
|
|
15306
|
-
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
16150
|
+
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentDTO, any, {}>>;
|
|
15307
16151
|
/**
|
|
15308
16152
|
* Create An Order (Beta)
|
|
15309
16153
|
* @summary Create An Order (Beta)
|
|
@@ -16297,6 +17141,13 @@ export declare const SIPTrunksApiAxiosParamCreator: (configuration?: Configurati
|
|
|
16297
17141
|
* @throws {RequiredError}
|
|
16298
17142
|
*/
|
|
16299
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>;
|
|
16300
17151
|
/**
|
|
16301
17152
|
* Get UK National Area Codes
|
|
16302
17153
|
* @summary Get UK National Area Codes
|
|
@@ -16492,6 +17343,13 @@ export declare const SIPTrunksApiFp: (configuration?: Configuration) => {
|
|
|
16492
17343
|
* @throws {RequiredError}
|
|
16493
17344
|
*/
|
|
16494
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>>>;
|
|
16495
17353
|
/**
|
|
16496
17354
|
* Get UK National Area Codes
|
|
16497
17355
|
* @summary Get UK National Area Codes
|
|
@@ -16687,6 +17545,13 @@ export declare const SIPTrunksApiFactory: (configuration?: Configuration, basePa
|
|
|
16687
17545
|
* @throws {RequiredError}
|
|
16688
17546
|
*/
|
|
16689
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>>;
|
|
16690
17555
|
/**
|
|
16691
17556
|
* Get UK National Area Codes
|
|
16692
17557
|
* @summary Get UK National Area Codes
|
|
@@ -16887,6 +17752,14 @@ export declare class SIPTrunksApi extends BaseAPI {
|
|
|
16887
17752
|
* @memberof SIPTrunksApi
|
|
16888
17753
|
*/
|
|
16889
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, {}>>;
|
|
16890
17763
|
/**
|
|
16891
17764
|
* Get UK National Area Codes
|
|
16892
17765
|
* @summary Get UK National Area Codes
|
|
@@ -18500,14 +19373,14 @@ export declare const TicketsApiFp: (configuration?: Configuration) => {
|
|
|
18500
19373
|
* @param {*} [options] Override http request option.
|
|
18501
19374
|
* @throws {RequiredError}
|
|
18502
19375
|
*/
|
|
18503
|
-
getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19376
|
+
getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportTicketModel>>;
|
|
18504
19377
|
/**
|
|
18505
19378
|
* Close a telephony support ticket
|
|
18506
19379
|
* @param {number} id Ticket ID
|
|
18507
19380
|
* @param {*} [options] Override http request option.
|
|
18508
19381
|
* @throws {RequiredError}
|
|
18509
19382
|
*/
|
|
18510
|
-
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19383
|
+
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportTicketModel>>;
|
|
18511
19384
|
/**
|
|
18512
19385
|
* Create a new telephony support ticket
|
|
18513
19386
|
* @param {string} [subject] Ticket Subject
|
|
@@ -18516,7 +19389,7 @@ export declare const TicketsApiFp: (configuration?: Configuration) => {
|
|
|
18516
19389
|
* @param {*} [options] Override http request option.
|
|
18517
19390
|
* @throws {RequiredError}
|
|
18518
19391
|
*/
|
|
18519
|
-
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>>;
|
|
18520
19393
|
/**
|
|
18521
19394
|
* Reply to a telephony support ticket
|
|
18522
19395
|
* @param {number} id Ticket ID
|
|
@@ -18525,7 +19398,7 @@ export declare const TicketsApiFp: (configuration?: Configuration) => {
|
|
|
18525
19398
|
* @param {*} [options] Override http request option.
|
|
18526
19399
|
* @throws {RequiredError}
|
|
18527
19400
|
*/
|
|
18528
|
-
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>>;
|
|
18529
19402
|
};
|
|
18530
19403
|
/**
|
|
18531
19404
|
* TicketsApi - factory interface
|
|
@@ -18547,14 +19420,14 @@ export declare const TicketsApiFactory: (configuration?: Configuration, basePath
|
|
|
18547
19420
|
* @param {*} [options] Override http request option.
|
|
18548
19421
|
* @throws {RequiredError}
|
|
18549
19422
|
*/
|
|
18550
|
-
getGetTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19423
|
+
getGetTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
|
|
18551
19424
|
/**
|
|
18552
19425
|
* Close a telephony support ticket
|
|
18553
19426
|
* @param {number} id Ticket ID
|
|
18554
19427
|
* @param {*} [options] Override http request option.
|
|
18555
19428
|
* @throws {RequiredError}
|
|
18556
19429
|
*/
|
|
18557
|
-
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19430
|
+
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
|
|
18558
19431
|
/**
|
|
18559
19432
|
* Create a new telephony support ticket
|
|
18560
19433
|
* @param {string} [subject] Ticket Subject
|
|
@@ -18563,7 +19436,7 @@ export declare const TicketsApiFactory: (configuration?: Configuration, basePath
|
|
|
18563
19436
|
* @param {*} [options] Override http request option.
|
|
18564
19437
|
* @throws {RequiredError}
|
|
18565
19438
|
*/
|
|
18566
|
-
postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19439
|
+
postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
|
|
18567
19440
|
/**
|
|
18568
19441
|
* Reply to a telephony support ticket
|
|
18569
19442
|
* @param {number} id Ticket ID
|
|
@@ -18572,7 +19445,7 @@ export declare const TicketsApiFactory: (configuration?: Configuration, basePath
|
|
|
18572
19445
|
* @param {*} [options] Override http request option.
|
|
18573
19446
|
* @throws {RequiredError}
|
|
18574
19447
|
*/
|
|
18575
|
-
postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19448
|
+
postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
|
|
18576
19449
|
};
|
|
18577
19450
|
/**
|
|
18578
19451
|
* TicketsApi - object-oriented interface
|
|
@@ -18598,7 +19471,7 @@ export declare class TicketsApi extends BaseAPI {
|
|
|
18598
19471
|
* @throws {RequiredError}
|
|
18599
19472
|
* @memberof TicketsApi
|
|
18600
19473
|
*/
|
|
18601
|
-
getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19474
|
+
getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportTicketModel, any, {}>>;
|
|
18602
19475
|
/**
|
|
18603
19476
|
* Close a telephony support ticket
|
|
18604
19477
|
* @param {number} id Ticket ID
|
|
@@ -18606,7 +19479,7 @@ export declare class TicketsApi extends BaseAPI {
|
|
|
18606
19479
|
* @throws {RequiredError}
|
|
18607
19480
|
* @memberof TicketsApi
|
|
18608
19481
|
*/
|
|
18609
|
-
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
19482
|
+
patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportTicketModel, any, {}>>;
|
|
18610
19483
|
/**
|
|
18611
19484
|
* Create a new telephony support ticket
|
|
18612
19485
|
* @param {string} [subject] Ticket Subject
|
|
@@ -18616,7 +19489,7 @@ export declare class TicketsApi extends BaseAPI {
|
|
|
18616
19489
|
* @throws {RequiredError}
|
|
18617
19490
|
* @memberof TicketsApi
|
|
18618
19491
|
*/
|
|
18619
|
-
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, {}>>;
|
|
18620
19493
|
/**
|
|
18621
19494
|
* Reply to a telephony support ticket
|
|
18622
19495
|
* @param {number} id Ticket ID
|
|
@@ -18626,7 +19499,7 @@ export declare class TicketsApi extends BaseAPI {
|
|
|
18626
19499
|
* @throws {RequiredError}
|
|
18627
19500
|
* @memberof TicketsApi
|
|
18628
19501
|
*/
|
|
18629
|
-
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, {}>>;
|
|
18630
19503
|
}
|
|
18631
19504
|
/**
|
|
18632
19505
|
* WebhooksApi - axios parameter creator
|