yellowgrid-api-ts 3.2.232-dev.0 → 3.2.233-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.
Files changed (77) hide show
  1. package/api.ts +521 -443
  2. package/dist/api.d.ts +419 -425
  3. package/dist/api.js +276 -192
  4. package/docs/AbstractOrderRequestDTO.md +3 -3
  5. package/docs/AccountDetailedSummaryDTO.md +1 -1
  6. package/docs/AccountRequestModel.md +6 -6
  7. package/docs/AddressDTO.md +3 -3
  8. package/docs/AdminNumberPortDTO.md +11 -11
  9. package/docs/AdminOrderRequestDTO.md +3 -3
  10. package/docs/AdminRmaDTO.md +3 -3
  11. package/docs/AdminRmaItemDTO.md +2 -2
  12. package/docs/AdminUserModel.md +5 -5
  13. package/docs/AuthCodeResponseModel.md +2 -2
  14. package/docs/AxisDataDTO.md +2 -2
  15. package/docs/CreditNoteItemDTO.md +2 -2
  16. package/docs/CreditStatusDTO.md +3 -3
  17. package/docs/CrmActivityDTO.md +4 -4
  18. package/docs/CrmDateActivitiesDTO.md +1 -1
  19. package/docs/CustomerCoordinatesDTO.md +1 -1
  20. package/docs/CustomerOrderRequestDTO.md +3 -3
  21. package/docs/DetailedOrderRequestDTO.md +3 -3
  22. package/docs/DivertRequestModel.md +1 -1
  23. package/docs/DivertResponseModel.md +1 -1
  24. package/docs/EdTechProClientEntity.md +1 -1
  25. package/docs/EdTechProSchoolModel.md +2 -2
  26. package/docs/FreshdeskTicketEntity.md +1 -1
  27. package/docs/GraphDTO.md +1 -1
  28. package/docs/InstallationDetailsDTO.md +7 -7
  29. package/docs/ItemDiscountEntity.md +1 -1
  30. package/docs/ItemEntity.md +1 -1
  31. package/docs/NumberPortDTO.md +11 -11
  32. package/docs/NumberPortRangeDTO.md +5 -5
  33. package/docs/NumberPortRangeRequestDTO.md +4 -4
  34. package/docs/NumberPortingApi.md +69 -69
  35. package/docs/OAuth20Api.md +24 -24
  36. package/docs/OpayoRedirectDTO.md +5 -5
  37. package/docs/OrderDetailsDTO.md +6 -6
  38. package/docs/OrderEntity.md +2 -2
  39. package/docs/OrderRequestModel.md +7 -7
  40. package/docs/OrderResponseDTO.md +3 -3
  41. package/docs/OrderSummaryDTO.md +6 -6
  42. package/docs/OrderTotalModel.md +1 -1
  43. package/docs/PartnerDTO.md +2 -2
  44. package/docs/PasswordSenderDTO.md +7 -7
  45. package/docs/PostGenerateReport200Response.md +1 -1
  46. package/docs/PriceListItemModel.md +3 -3
  47. package/docs/ProductPriceListItemModel.md +3 -3
  48. package/docs/ProductSerialInfoModel.md +1 -1
  49. package/docs/ProspectDTO.md +3 -3
  50. package/docs/RecordingBackupAzureModel.md +1 -1
  51. package/docs/RecordingsBackupInfoDTO.md +2 -2
  52. package/docs/ReportRequestDTO.md +8 -8
  53. package/docs/RmaDTO.md +1 -1
  54. package/docs/RmaItemDTO.md +2 -2
  55. package/docs/RmaItemRequestDTO.md +2 -2
  56. package/docs/SbcDTO.md +8 -8
  57. package/docs/ScannedItemModel.md +4 -4
  58. package/docs/SeriesDTO.md +1 -1
  59. package/docs/ShipmentDTO.md +7 -7
  60. package/docs/ShipmentRequestDTO.md +2 -2
  61. package/docs/ShippingAddressDTO.md +8 -8
  62. package/docs/ShippingRequestDTO.md +2 -2
  63. package/docs/ShippingServiceModel.md +2 -2
  64. package/docs/SmsAccountEntity.md +1 -1
  65. package/docs/SmsPhoneNumberModel.md +1 -1
  66. package/docs/StockOrderModel.md +1 -1
  67. package/docs/StockProductPriceModel.md +1 -1
  68. package/docs/SupportTicketModel.md +1 -1
  69. package/docs/TcxInstallationModel.md +15 -15
  70. package/docs/TcxKeySummaryDTO.md +2 -2
  71. package/docs/TcxMultiTenantModel.md +7 -7
  72. package/docs/TcxSbcDTO.md +1 -1
  73. package/docs/TcxSetupEntity.md +1 -1
  74. package/docs/TcxWizardModel.md +5 -5
  75. package/docs/TicketSummaryModel.md +1 -1
  76. package/docs/UserEntity.md +2 -2
  77. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -20,7 +20,7 @@ export interface AbstractOrderRequestDTO {
20
20
  /**
21
21
  * Order Reference
22
22
  */
23
- 'orderReference'?: string | null;
23
+ 'orderReference': string | null;
24
24
  /**
25
25
  * Items
26
26
  */
@@ -29,11 +29,11 @@ export interface AbstractOrderRequestDTO {
29
29
  /**
30
30
  * Provisioning URL
31
31
  */
32
- 'provisioningUrl'?: string | null;
32
+ 'provisioningUrl': string | null;
33
33
  /**
34
34
  * Shipping Address
35
35
  */
36
- 'shippingAddress'?: AddressModel | null;
36
+ 'shippingAddress': AddressModel | null;
37
37
  /**
38
38
  * Part Ship Order
39
39
  */
@@ -249,7 +249,7 @@ export interface AccountDetailedSummaryDTO {
249
249
  /**
250
250
  * Balance (£)
251
251
  */
252
- 'balance'?: number | null;
252
+ 'balance': number | null;
253
253
  }
254
254
  /**
255
255
  * Account Finance DTO
@@ -320,7 +320,7 @@ export interface AccountRequestModel {
320
320
  /**
321
321
  * Address Line 2
322
322
  */
323
- 'addressLine2'?: string | null;
323
+ 'addressLine2': string | null;
324
324
  /**
325
325
  * Town/City
326
326
  */
@@ -336,15 +336,15 @@ export interface AccountRequestModel {
336
336
  /**
337
337
  * Company Registration Number
338
338
  */
339
- 'companyNumber'?: string | null;
339
+ 'companyNumber': string | null;
340
340
  /**
341
341
  * Preferred PBX
342
342
  */
343
- 'preferredPbx'?: string | null;
343
+ 'preferredPbx': string | null;
344
344
  /**
345
345
  * VAT Number
346
346
  */
347
- 'vatNumber'?: string | null;
347
+ 'vatNumber': string | null;
348
348
  /**
349
349
  * Email Address
350
350
  */
@@ -352,11 +352,11 @@ export interface AccountRequestModel {
352
352
  /**
353
353
  * Source
354
354
  */
355
- 'source'?: string | null;
355
+ 'source': string | null;
356
356
  /**
357
357
  * Credit Limit Required
358
358
  */
359
- 'creditRequired'?: number | null;
359
+ 'creditRequired': number | null;
360
360
  /**
361
361
  * Marketing Opt-In
362
362
  */
@@ -411,7 +411,7 @@ export interface AddressDTO {
411
411
  /**
412
412
  * Company
413
413
  */
414
- 'company'?: string | null;
414
+ 'company': string | null;
415
415
  /**
416
416
  * Address Line 1
417
417
  */
@@ -439,11 +439,11 @@ export interface AddressDTO {
439
439
  /**
440
440
  * Telephone
441
441
  */
442
- 'phone'?: string | null;
442
+ 'phone': string | null;
443
443
  /**
444
444
  * Name
445
445
  */
446
- 'name'?: string | null;
446
+ 'name': string | null;
447
447
  }
448
448
  /**
449
449
  * Order Address
@@ -555,43 +555,43 @@ export interface AdminNumberPortDTO {
555
555
  /**
556
556
  * Company Name
557
557
  */
558
- 'companyName'?: string | null;
558
+ 'companyName': string | null;
559
559
  /**
560
560
  * Address Line 1
561
561
  */
562
- 'addressLine1'?: string | null;
562
+ 'addressLine1': string | null;
563
563
  /**
564
564
  * Address Line 2
565
565
  */
566
- 'addressLine2'?: string | null;
566
+ 'addressLine2': string | null;
567
567
  /**
568
568
  * City
569
569
  */
570
- 'city'?: string | null;
570
+ 'city': string | null;
571
571
  /**
572
572
  * Post Code
573
573
  */
574
- 'postCode'?: string | null;
574
+ 'postCode': string | null;
575
575
  /**
576
576
  * Trunk ID
577
577
  */
578
- 'trunkId'?: number | null;
578
+ 'trunkId': number | null;
579
579
  /**
580
580
  * Starter Bundle ID
581
581
  */
582
- 'tenantId'?: string | null;
582
+ 'tenantId': string | null;
583
583
  /**
584
584
  * Requested Port Date
585
585
  */
586
- 'requestedPortDate'?: string | null;
586
+ 'requestedPortDate': string | null;
587
587
  /**
588
588
  * Port Date ASAP
589
589
  */
590
- 'asap'?: boolean | null;
590
+ 'asap': boolean | null;
591
591
  /**
592
592
  * Comment
593
593
  */
594
- 'comment'?: string | null;
594
+ 'comment': string | null;
595
595
  /**
596
596
  * Number Port ID
597
597
  */
@@ -623,7 +623,7 @@ export interface AdminNumberPortDTO {
623
623
  /**
624
624
  * Ticket ID
625
625
  */
626
- 'ticketId'?: number | null;
626
+ 'ticketId': number | null;
627
627
  /**
628
628
  * Notes
629
629
  */
@@ -644,7 +644,7 @@ export interface AdminOrderRequestDTO {
644
644
  /**
645
645
  * Order Reference
646
646
  */
647
- 'orderReference'?: string | null;
647
+ 'orderReference': string | null;
648
648
  /**
649
649
  * Items
650
650
  */
@@ -653,11 +653,11 @@ export interface AdminOrderRequestDTO {
653
653
  /**
654
654
  * Provisioning URL
655
655
  */
656
- 'provisioningUrl'?: string | null;
656
+ 'provisioningUrl': string | null;
657
657
  /**
658
658
  * Shipping Address
659
659
  */
660
- 'shippingAddress'?: AddressModel | null;
660
+ 'shippingAddress': AddressModel | null;
661
661
  /**
662
662
  * Part Ship Order
663
663
  */
@@ -752,10 +752,7 @@ export interface AdminRmaDTO {
752
752
  * RMA Approval Status
753
753
  */
754
754
  'approved': boolean;
755
- /**
756
- * RMA Return Address
757
- */
758
- 'address'?: AddressDTO | null;
755
+ 'address': AddressDTO;
759
756
  /**
760
757
  * Customer ID
761
758
  */
@@ -791,11 +788,11 @@ export interface AdminRmaDTO {
791
788
  /**
792
789
  * Collection Tracking URL
793
790
  */
794
- 'collectionTrackingUrl'?: string | null;
791
+ 'collectionTrackingUrl': string | null;
795
792
  /**
796
793
  * Return Tracking URL
797
794
  */
798
- 'returnTrackingUrl'?: string | null;
795
+ 'returnTrackingUrl': string | null;
799
796
  }
800
797
  export declare const AdminRmaDTOReasonEnum: {
801
798
  readonly NUMBER_1: 1;
@@ -837,11 +834,11 @@ export interface AdminRmaItemDTO {
837
834
  /**
838
835
  * RMA Item MAC Address
839
836
  */
840
- 'macAddress'?: string | null;
837
+ 'macAddress': string | null;
841
838
  /**
842
839
  * RMA Item Serial Number
843
840
  */
844
- 'serialNumber'?: string | null;
841
+ 'serialNumber': string | null;
845
842
  /**
846
843
  * RMA Item Received Status
847
844
  */
@@ -987,7 +984,7 @@ export interface AdminUserModel {
987
984
  /**
988
985
  * Avatar
989
986
  */
990
- 'avatar'?: string | null;
987
+ 'avatar': string | null;
991
988
  /**
992
989
  * Role
993
990
  */
@@ -995,19 +992,19 @@ export interface AdminUserModel {
995
992
  /**
996
993
  * Email
997
994
  */
998
- 'email'?: string | null;
995
+ 'email': string | null;
999
996
  /**
1000
997
  * Primary Colour
1001
998
  */
1002
- 'primaryHex'?: string | null;
999
+ 'primaryHex': string | null;
1003
1000
  /**
1004
1001
  * Secondary Colour
1005
1002
  */
1006
- 'secondaryHex'?: string | null;
1003
+ 'secondaryHex': string | null;
1007
1004
  /**
1008
1005
  * Scopes
1009
1006
  */
1010
- 'scopes'?: Array<string> | null;
1007
+ 'scopes': Array<string> | null;
1011
1008
  /**
1012
1009
  * Groups
1013
1010
  */
@@ -1314,11 +1311,11 @@ export interface AuthCodeResponseModel {
1314
1311
  /**
1315
1312
  * State
1316
1313
  */
1317
- 'state'?: string | null;
1314
+ 'state': string | null;
1318
1315
  /**
1319
1316
  * Redirect URI
1320
1317
  */
1321
- 'redirect_uri'?: string | null;
1318
+ 'redirect_uri': string | null;
1322
1319
  }
1323
1320
  /**
1324
1321
  * Graph Axis Data
@@ -1331,11 +1328,11 @@ export interface AxisDataDTO {
1331
1328
  /**
1332
1329
  * Data
1333
1330
  */
1334
- 'data'?: Array<string> | null;
1331
+ 'data': Array<string> | null;
1335
1332
  /**
1336
1333
  * Name
1337
1334
  */
1338
- 'name'?: string | null;
1335
+ 'name': string | null;
1339
1336
  }
1340
1337
  export declare const AxisDataDTOTypeEnum: {
1341
1338
  readonly Value: "value";
@@ -2031,11 +2028,11 @@ export interface CreditNoteItemDTO {
2031
2028
  /**
2032
2029
  * Quantity
2033
2030
  */
2034
- 'quantity'?: number | null;
2031
+ 'quantity': number | null;
2035
2032
  /**
2036
2033
  * Amount
2037
2034
  */
2038
- 'amount'?: number | null;
2035
+ 'amount': number | null;
2039
2036
  }
2040
2037
  /**
2041
2038
  * CreditNotesItemsEntity
@@ -2131,15 +2128,15 @@ export interface CreditStatusDTO {
2131
2128
  /**
2132
2129
  * Currency Code
2133
2130
  */
2134
- 'CurrencyCode'?: string | null;
2131
+ 'CurrencyCode': string | null;
2135
2132
  /**
2136
2133
  * Credit Limit
2137
2134
  */
2138
- 'CreditLimit'?: number | null;
2135
+ 'CreditLimit': number | null;
2139
2136
  /**
2140
2137
  * Credit
2141
2138
  */
2142
- 'Credit'?: number | null;
2139
+ 'Credit': number | null;
2143
2140
  }
2144
2141
  /**
2145
2142
  * CRM Activities Response
@@ -2165,7 +2162,7 @@ export interface CrmActivityDTO {
2165
2162
  /**
2166
2163
  * Activity Timestamp
2167
2164
  */
2168
- 'timestamp'?: string | null;
2165
+ 'timestamp': string | null;
2169
2166
  /**
2170
2167
  * Activity Title
2171
2168
  */
@@ -2177,15 +2174,15 @@ export interface CrmActivityDTO {
2177
2174
  /**
2178
2175
  * Activity User Name
2179
2176
  */
2180
- 'user'?: string | null;
2177
+ 'user': string | null;
2181
2178
  /**
2182
2179
  * Activity Contact Name
2183
2180
  */
2184
- 'contact'?: string | null;
2181
+ 'contact': string | null;
2185
2182
  /**
2186
2183
  * Activity Order ID
2187
2184
  */
2188
- 'orderId'?: number | null;
2185
+ 'orderId': number | null;
2189
2186
  }
2190
2187
  /**
2191
2188
  * CRM Contact
@@ -2227,7 +2224,7 @@ export interface CrmDateActivitiesDTO {
2227
2224
  /**
2228
2225
  * Date
2229
2226
  */
2230
- 'date'?: string | null;
2227
+ 'date': string | null;
2231
2228
  /**
2232
2229
  * Activities
2233
2230
  */
@@ -2380,7 +2377,7 @@ export interface CustomerCoordinatesDTO {
2380
2377
  /**
2381
2378
  * 3CX Reseller ID
2382
2379
  */
2383
- 'resellerId'?: string | null;
2380
+ 'resellerId': string | null;
2384
2381
  /**
2385
2382
  * Post Code
2386
2383
  */
@@ -2536,7 +2533,7 @@ export interface CustomerOrderRequestDTO {
2536
2533
  /**
2537
2534
  * Order Reference
2538
2535
  */
2539
- 'orderReference'?: string | null;
2536
+ 'orderReference': string | null;
2540
2537
  /**
2541
2538
  * Items
2542
2539
  */
@@ -2545,11 +2542,11 @@ export interface CustomerOrderRequestDTO {
2545
2542
  /**
2546
2543
  * Provisioning URL
2547
2544
  */
2548
- 'provisioningUrl'?: string | null;
2545
+ 'provisioningUrl': string | null;
2549
2546
  /**
2550
2547
  * Shipping Address
2551
2548
  */
2552
- 'shippingAddress'?: AddressModel | null;
2549
+ 'shippingAddress': AddressModel | null;
2553
2550
  /**
2554
2551
  * Part Ship Order
2555
2552
  */
@@ -2719,7 +2716,7 @@ export interface DetailedOrderRequestDTO {
2719
2716
  /**
2720
2717
  * Order Reference
2721
2718
  */
2722
- 'orderReference'?: string | null;
2719
+ 'orderReference': string | null;
2723
2720
  /**
2724
2721
  * Items
2725
2722
  */
@@ -2728,11 +2725,11 @@ export interface DetailedOrderRequestDTO {
2728
2725
  /**
2729
2726
  * Provisioning URL
2730
2727
  */
2731
- 'provisioningUrl'?: string | null;
2728
+ 'provisioningUrl': string | null;
2732
2729
  /**
2733
2730
  * Shipping Address
2734
2731
  */
2735
- 'shippingAddress'?: AddressModel | null;
2732
+ 'shippingAddress': AddressModel | null;
2736
2733
  /**
2737
2734
  * Part Ship Order
2738
2735
  */
@@ -2753,7 +2750,7 @@ export interface DivertRequestModel {
2753
2750
  /**
2754
2751
  * Destination
2755
2752
  */
2756
- 'destination'?: string | null;
2753
+ 'destination': string | null;
2757
2754
  }
2758
2755
  /**
2759
2756
  * Divert
@@ -2766,7 +2763,7 @@ export interface DivertResponseModel {
2766
2763
  /**
2767
2764
  * Divert Destination
2768
2765
  */
2769
- 'destination'?: string | null;
2766
+ 'destination': string | null;
2770
2767
  /**
2771
2768
  * Divert Status
2772
2769
  */
@@ -2800,7 +2797,7 @@ export interface EdTechProClientEntity {
2800
2797
  /**
2801
2798
  * Client API Key
2802
2799
  */
2803
- 'apiKey'?: string | null;
2800
+ 'apiKey': string | null;
2804
2801
  }
2805
2802
  /**
2806
2803
  * EdTechPro School
@@ -2829,7 +2826,7 @@ export interface EdTechProSchoolModel {
2829
2826
  /**
2830
2827
  * Order Reference
2831
2828
  */
2832
- 'orderReference'?: string | null;
2829
+ 'orderReference': string | null;
2833
2830
  /**
2834
2831
  * Creation Date
2835
2832
  */
@@ -2857,7 +2854,7 @@ export interface EdTechProSchoolModel {
2857
2854
  /**
2858
2855
  * API Key
2859
2856
  */
2860
- 'apiKey'?: string | null;
2857
+ 'apiKey': string | null;
2861
2858
  }
2862
2859
  /**
2863
2860
  * EdTechPro Schools
@@ -3133,7 +3130,7 @@ export interface FreshdeskTicketEntity {
3133
3130
  /**
3134
3131
  * status
3135
3132
  */
3136
- 'statusId'?: number | null;
3133
+ 'statusId': number | null;
3137
3134
  /**
3138
3135
  * lastUpdated
3139
3136
  */
@@ -3217,7 +3214,7 @@ export interface GraphDTO {
3217
3214
  /**
3218
3215
  * Currency
3219
3216
  */
3220
- 'currency'?: GraphDTOCurrencyEnum | null;
3217
+ 'currency': GraphDTOCurrencyEnum | null;
3221
3218
  /**
3222
3219
  * Locale
3223
3220
  */
@@ -3357,33 +3354,33 @@ export interface InstallationDetailsDTO {
3357
3354
  /**
3358
3355
  * PBX IP Address
3359
3356
  */
3360
- 'ipAddress'?: string | null;
3357
+ 'ipAddress': string | null;
3361
3358
  /**
3362
3359
  * PBX Failover IP Address
3363
3360
  */
3364
- 'failoverIpAddress'?: string | null;
3361
+ 'failoverIpAddress': string | null;
3365
3362
  /**
3366
3363
  * Instance ID
3367
3364
  */
3368
- 'instanceId'?: string | null;
3365
+ 'instanceId': string | null;
3369
3366
  /**
3370
3367
  * Project ID
3371
3368
  */
3372
- 'project'?: string | null;
3369
+ 'project': string | null;
3373
3370
  'sshKey': GenericFileModel;
3374
3371
  /**
3375
3372
  * Root Password
3376
3373
  */
3377
- 'osPassword'?: string | null;
3374
+ 'osPassword': string | null;
3378
3375
  'systemOwner': TcxUsersEntity;
3379
3376
  /**
3380
3377
  * Admin Email
3381
3378
  */
3382
- 'email'?: string | null;
3379
+ 'email': string | null;
3383
3380
  /**
3384
3381
  * 3CX Console URL
3385
3382
  */
3386
- 'url'?: string | null;
3383
+ 'url': string | null;
3387
3384
  'backup': RemoteStorageDTO;
3388
3385
  }
3389
3386
  /**
@@ -3807,7 +3804,7 @@ export interface ItemDiscountEntity {
3807
3804
  /**
3808
3805
  * type
3809
3806
  */
3810
- 'type'?: ItemDiscountEntityTypeEnum | null;
3807
+ 'type': ItemDiscountEntityTypeEnum | null;
3811
3808
  /**
3812
3809
  * description
3813
3810
  */
@@ -3914,7 +3911,7 @@ export interface ItemEntity {
3914
3911
  /**
3915
3912
  * 3CX Sales Code
3916
3913
  */
3917
- 'tcxSalesCode'?: string | null;
3914
+ 'tcxSalesCode': string | null;
3918
3915
  }
3919
3916
  /**
3920
3917
  * RMA Item Status Request Model
@@ -4088,43 +4085,43 @@ export interface NumberPortDTO {
4088
4085
  /**
4089
4086
  * Company Name
4090
4087
  */
4091
- 'companyName'?: string | null;
4088
+ 'companyName': string | null;
4092
4089
  /**
4093
4090
  * Address Line 1
4094
4091
  */
4095
- 'addressLine1'?: string | null;
4092
+ 'addressLine1': string | null;
4096
4093
  /**
4097
4094
  * Address Line 2
4098
4095
  */
4099
- 'addressLine2'?: string | null;
4096
+ 'addressLine2': string | null;
4100
4097
  /**
4101
4098
  * City
4102
4099
  */
4103
- 'city'?: string | null;
4100
+ 'city': string | null;
4104
4101
  /**
4105
4102
  * Post Code
4106
4103
  */
4107
- 'postCode'?: string | null;
4104
+ 'postCode': string | null;
4108
4105
  /**
4109
4106
  * Trunk ID
4110
4107
  */
4111
- 'trunkId'?: number | null;
4108
+ 'trunkId': number | null;
4112
4109
  /**
4113
4110
  * Starter Bundle ID
4114
4111
  */
4115
- 'tenantId'?: string | null;
4112
+ 'tenantId': string | null;
4116
4113
  /**
4117
4114
  * Requested Port Date
4118
4115
  */
4119
- 'requestedPortDate'?: string | null;
4116
+ 'requestedPortDate': string | null;
4120
4117
  /**
4121
4118
  * Port Date ASAP
4122
4119
  */
4123
- 'asap'?: boolean | null;
4120
+ 'asap': boolean | null;
4124
4121
  /**
4125
4122
  * Comment
4126
4123
  */
4127
- 'comment'?: string | null;
4124
+ 'comment': string | null;
4128
4125
  /**
4129
4126
  * Number Port ID
4130
4127
  */
@@ -4156,7 +4153,7 @@ export interface NumberPortDTO {
4156
4153
  /**
4157
4154
  * Ticket ID
4158
4155
  */
4159
- 'ticketId'?: number | null;
4156
+ 'ticketId': number | null;
4160
4157
  }
4161
4158
  /**
4162
4159
  * Number Port Note DTO
@@ -4190,19 +4187,19 @@ export interface NumberPortRangeDTO {
4190
4187
  /**
4191
4188
  * Range Start Number
4192
4189
  */
4193
- 'rangeStart'?: string | null;
4190
+ 'rangeStart': string | null;
4194
4191
  /**
4195
4192
  * Range End Number
4196
4193
  */
4197
- 'rangeEnd'?: string | null;
4194
+ 'rangeEnd': string | null;
4198
4195
  /**
4199
4196
  * Losing Communications Provider
4200
4197
  */
4201
- 'lcp'?: string | null;
4198
+ 'lcp': string | null;
4202
4199
  /**
4203
4200
  * Range Post Code
4204
4201
  */
4205
- 'postCode'?: string | null;
4202
+ 'postCode': string | null;
4206
4203
  /**
4207
4204
  * Number Port Range ID
4208
4205
  */
@@ -4214,7 +4211,7 @@ export interface NumberPortRangeDTO {
4214
4211
  /**
4215
4212
  * Range Holder
4216
4213
  */
4217
- 'rangeHolder'?: string | null;
4214
+ 'rangeHolder': string | null;
4218
4215
  }
4219
4216
  /**
4220
4217
  * NumberPortRangeDTO
@@ -4223,19 +4220,19 @@ export interface NumberPortRangeRequestDTO {
4223
4220
  /**
4224
4221
  * Range Start Number
4225
4222
  */
4226
- 'rangeStart'?: string | null;
4223
+ 'rangeStart': string | null;
4227
4224
  /**
4228
4225
  * Range End Number
4229
4226
  */
4230
- 'rangeEnd'?: string | null;
4227
+ 'rangeEnd': string | null;
4231
4228
  /**
4232
4229
  * Losing Communications Provider
4233
4230
  */
4234
- 'lcp'?: string | null;
4231
+ 'lcp': string | null;
4235
4232
  /**
4236
4233
  * Range Post Code
4237
4234
  */
4238
- 'postCode'?: string | null;
4235
+ 'postCode': string | null;
4239
4236
  }
4240
4237
  /**
4241
4238
  * Number Ports
@@ -4290,23 +4287,23 @@ export interface OpayoRedirectDTO {
4290
4287
  /**
4291
4288
  * acsUrl
4292
4289
  */
4293
- 'acsUrl'?: string | null;
4290
+ 'acsUrl': string | null;
4294
4291
  /**
4295
4292
  * paReq
4296
4293
  */
4297
- 'paReq'?: string | null;
4294
+ 'paReq': string | null;
4298
4295
  /**
4299
4296
  * Transaction ID
4300
4297
  */
4301
- 'transactionId'?: string | null;
4298
+ 'transactionId': string | null;
4302
4299
  /**
4303
4300
  * dsTranId
4304
4301
  */
4305
- 'dsTranId'?: string | null;
4302
+ 'dsTranId': string | null;
4306
4303
  /**
4307
4304
  * cReq
4308
4305
  */
4309
- 'cReq'?: string | null;
4306
+ 'cReq': string | null;
4310
4307
  }
4311
4308
  /**
4312
4309
  * Legacy Portal Order
@@ -4330,7 +4327,7 @@ export interface OrderDetailsDTO {
4330
4327
  /**
4331
4328
  * Reference
4332
4329
  */
4333
- 'reference'?: string | null;
4330
+ 'reference': string | null;
4334
4331
  /**
4335
4332
  * Invoice Number
4336
4333
  */
@@ -4338,7 +4335,7 @@ export interface OrderDetailsDTO {
4338
4335
  /**
4339
4336
  * Invoice ID
4340
4337
  */
4341
- 'invoiceId'?: string | null;
4338
+ 'invoiceId': string | null;
4342
4339
  /**
4343
4340
  * Date Time
4344
4341
  */
@@ -4356,7 +4353,7 @@ export interface OrderDetailsDTO {
4356
4353
  */
4357
4354
  'quote': boolean;
4358
4355
  'customer': AccountSummaryDTO;
4359
- 'shippingAddress'?: AddressModel | null;
4356
+ 'shippingAddress': AddressModel | null;
4360
4357
  /**
4361
4358
  * Items
4362
4359
  */
@@ -4368,12 +4365,12 @@ export interface OrderDetailsDTO {
4368
4365
  /**
4369
4366
  * Fulfillable
4370
4367
  */
4371
- 'fulfillable'?: boolean | null;
4368
+ 'fulfillable': boolean | null;
4372
4369
  /**
4373
4370
  * Provisioning URL
4374
4371
  */
4375
- 'provisioningUrl'?: string | null;
4376
- 'shippingService'?: ShippingServiceDTO | null;
4372
+ 'provisioningUrl': string | null;
4373
+ 'shippingService': ShippingServiceDTO | null;
4377
4374
  /**
4378
4375
  * Readonly
4379
4376
  */
@@ -4427,7 +4424,7 @@ export interface OrderEntity {
4427
4424
  /**
4428
4425
  * invoiceId
4429
4426
  */
4430
- 'invoiceId'?: string | null;
4427
+ 'invoiceId': string | null;
4431
4428
  /**
4432
4429
  * creditAccountId
4433
4430
  */
@@ -4639,7 +4636,7 @@ export interface OrderEntity {
4639
4636
  /**
4640
4637
  * fulfillable
4641
4638
  */
4642
- 'fulfillable'?: boolean | null;
4639
+ 'fulfillable': boolean | null;
4643
4640
  }
4644
4641
  /**
4645
4642
  * Order Item Details
@@ -4729,23 +4726,23 @@ export interface OrderRequestModel {
4729
4726
  /**
4730
4727
  * Client/Trust ID
4731
4728
  */
4732
- 'clientId'?: number | null;
4729
+ 'clientId': number | null;
4733
4730
  /**
4734
4731
  * Client/Trust Name
4735
4732
  */
4736
- 'clientName'?: string | null;
4733
+ 'clientName': string | null;
4737
4734
  /**
4738
4735
  * Client/Trust Contact Name
4739
4736
  */
4740
- 'clientContactName'?: string | null;
4737
+ 'clientContactName': string | null;
4741
4738
  /**
4742
4739
  * Client/Trust Contact Email
4743
4740
  */
4744
- 'clientContactEmail'?: string | null;
4741
+ 'clientContactEmail': string | null;
4745
4742
  /**
4746
4743
  * Agreed to Terms and Conditions
4747
4744
  */
4748
- 'terms'?: boolean | null;
4745
+ 'terms': boolean | null;
4749
4746
  /**
4750
4747
  * School Name
4751
4748
  */
@@ -4773,11 +4770,11 @@ export interface OrderRequestModel {
4773
4770
  /**
4774
4771
  * InstanceId
4775
4772
  */
4776
- 'instanceId'?: string | null;
4773
+ 'instanceId': string | null;
4777
4774
  /**
4778
4775
  * Order Reference
4779
4776
  */
4780
- 'orderReference'?: string | null;
4777
+ 'orderReference': string | null;
4781
4778
  }
4782
4779
  export declare const OrderRequestModelLicenceTypeEnum: {
4783
4780
  readonly Lite: "lite";
@@ -4796,15 +4793,15 @@ export interface OrderResponseDTO {
4796
4793
  /**
4797
4794
  * URL
4798
4795
  */
4799
- 'url'?: string | null;
4796
+ 'url': string | null;
4800
4797
  /**
4801
4798
  * Order ID
4802
4799
  */
4803
- 'orderID'?: string | null;
4800
+ 'orderID': string | null;
4804
4801
  /**
4805
4802
  * Unique ID
4806
4803
  */
4807
- 'uniqueID'?: string | null;
4804
+ 'uniqueID': string | null;
4808
4805
  }
4809
4806
  /**
4810
4807
  * Sales Orders
@@ -4838,7 +4835,7 @@ export interface OrderSummaryDTO {
4838
4835
  /**
4839
4836
  * Reference
4840
4837
  */
4841
- 'reference'?: string | null;
4838
+ 'reference': string | null;
4842
4839
  /**
4843
4840
  * Invoice Number
4844
4841
  */
@@ -4846,7 +4843,7 @@ export interface OrderSummaryDTO {
4846
4843
  /**
4847
4844
  * Invoice ID
4848
4845
  */
4849
- 'invoiceId'?: string | null;
4846
+ 'invoiceId': string | null;
4850
4847
  /**
4851
4848
  * Date Time
4852
4849
  */
@@ -4864,7 +4861,7 @@ export interface OrderSummaryDTO {
4864
4861
  */
4865
4862
  'quote': boolean;
4866
4863
  'customer': AccountSummaryDTO;
4867
- 'shippingAddress'?: AddressModel | null;
4864
+ 'shippingAddress': AddressModel | null;
4868
4865
  /**
4869
4866
  * Items
4870
4867
  */
@@ -4876,12 +4873,12 @@ export interface OrderSummaryDTO {
4876
4873
  /**
4877
4874
  * Fulfillable
4878
4875
  */
4879
- 'fulfillable'?: boolean | null;
4876
+ 'fulfillable': boolean | null;
4880
4877
  /**
4881
4878
  * Provisioning URL
4882
4879
  */
4883
- 'provisioningUrl'?: string | null;
4884
- 'shippingService'?: ShippingServiceDTO | null;
4880
+ 'provisioningUrl': string | null;
4881
+ 'shippingService': ShippingServiceDTO | null;
4885
4882
  /**
4886
4883
  * Readonly
4887
4884
  */
@@ -4922,7 +4919,7 @@ export interface OrderTotalModel {
4922
4919
  /**
4923
4920
  * Delivery
4924
4921
  */
4925
- 'delivery'?: number | null;
4922
+ 'delivery': number | null;
4926
4923
  }
4927
4924
  export declare const OrderTotalModelCurrencyEnum: {
4928
4925
  readonly Eur: "EUR";
@@ -5115,7 +5112,7 @@ export interface PartnerDTO {
5115
5112
  /**
5116
5113
  * 3CX Partner ID
5117
5114
  */
5118
- 'partnerId'?: string | null;
5115
+ 'partnerId': string | null;
5119
5116
  /**
5120
5117
  * 3CX Partner Company Name
5121
5118
  */
@@ -5159,7 +5156,7 @@ export interface PartnerDTO {
5159
5156
  /**
5160
5157
  * Customer
5161
5158
  */
5162
- 'customer'?: AccountSummaryDTO | null;
5159
+ 'customer': AccountSummaryDTO | null;
5163
5160
  }
5164
5161
  /**
5165
5162
  * Password Sender Request
@@ -5172,19 +5169,19 @@ export interface PasswordSenderDTO {
5172
5169
  /**
5173
5170
  * Password
5174
5171
  */
5175
- 'password'?: string | null;
5172
+ 'password': string | null;
5176
5173
  /**
5177
5174
  * Expiry Interval
5178
5175
  */
5179
- 'expiryInterval'?: number | null;
5176
+ 'expiryInterval': number | null;
5180
5177
  /**
5181
5178
  * Interval Type
5182
5179
  */
5183
- 'intervalType'?: PasswordSenderDTOIntervalTypeEnum | null;
5180
+ 'intervalType': PasswordSenderDTOIntervalTypeEnum | null;
5184
5181
  /**
5185
5182
  * Expiry
5186
5183
  */
5187
- 'expiry'?: string | null;
5184
+ 'expiry': string | null;
5188
5185
  /**
5189
5186
  * Recipient
5190
5187
  */
@@ -5192,15 +5189,15 @@ export interface PasswordSenderDTO {
5192
5189
  /**
5193
5190
  * URL
5194
5191
  */
5195
- 'url'?: string | null;
5192
+ 'url': string | null;
5196
5193
  /**
5197
5194
  * Description
5198
5195
  */
5199
- 'description'?: string | null;
5196
+ 'description': string | null;
5200
5197
  /**
5201
5198
  * Password URL
5202
5199
  */
5203
- 'passwordUrl'?: string | null;
5200
+ 'passwordUrl': string | null;
5204
5201
  }
5205
5202
  export declare const PasswordSenderDTOIntervalTypeEnum: {
5206
5203
  readonly Minute: "Minute";
@@ -5660,7 +5657,7 @@ export interface PriceListItemModel {
5660
5657
  /**
5661
5658
  * SKU
5662
5659
  */
5663
- 'sku'?: string | null;
5660
+ 'sku': string | null;
5664
5661
  /**
5665
5662
  * Price
5666
5663
  */
@@ -5668,11 +5665,11 @@ export interface PriceListItemModel {
5668
5665
  /**
5669
5666
  * RRP
5670
5667
  */
5671
- 'rrp'?: number | null;
5668
+ 'rrp': number | null;
5672
5669
  /**
5673
5670
  * Stock
5674
5671
  */
5675
- 'stock'?: number | null;
5672
+ 'stock': number | null;
5676
5673
  }
5677
5674
  /**
5678
5675
  * PrintersEntity
@@ -5829,7 +5826,7 @@ export interface ProductPriceListItemModel {
5829
5826
  /**
5830
5827
  * SKU
5831
5828
  */
5832
- 'sku'?: string | null;
5829
+ 'sku': string | null;
5833
5830
  /**
5834
5831
  * Price
5835
5832
  */
@@ -5837,11 +5834,11 @@ export interface ProductPriceListItemModel {
5837
5834
  /**
5838
5835
  * RRP
5839
5836
  */
5840
- 'rrp'?: number | null;
5837
+ 'rrp': number | null;
5841
5838
  /**
5842
5839
  * Stock
5843
5840
  */
5844
- 'stock'?: number | null;
5841
+ 'stock': number | null;
5845
5842
  /**
5846
5843
  * Brand
5847
5844
  */
@@ -5896,7 +5893,7 @@ export interface ProductSerialInfoModel {
5896
5893
  /**
5897
5894
  * Serial Prefix
5898
5895
  */
5899
- 'serial_prefixes'?: Array<string> | null;
5896
+ 'serial_prefixes': Array<string> | null;
5900
5897
  }
5901
5898
  /**
5902
5899
  * Product Summary
@@ -6040,15 +6037,15 @@ export interface ProspectDTO {
6040
6037
  /**
6041
6038
  * Telephone
6042
6039
  */
6043
- 'telephone'?: string | null;
6040
+ 'telephone': string | null;
6044
6041
  /**
6045
6042
  * Last Order Date
6046
6043
  */
6047
- 'lastOrderDate'?: string | null;
6044
+ 'lastOrderDate': string | null;
6048
6045
  /**
6049
6046
  * Call Back Date
6050
6047
  */
6051
- 'callbackDate'?: string | null;
6048
+ 'callbackDate': string | null;
6052
6049
  /**
6053
6050
  * Xero ID
6054
6051
  */
@@ -6270,7 +6267,7 @@ export interface RecordingBackupAzureModel {
6270
6267
  /**
6271
6268
  * Recordings Path
6272
6269
  */
6273
- 'recordings_path'?: string | null;
6270
+ 'recordings_path': string | null;
6274
6271
  }
6275
6272
  /**
6276
6273
  * Recordings Backup Info
@@ -6279,11 +6276,11 @@ export interface RecordingsBackupInfoDTO {
6279
6276
  /**
6280
6277
  * Azure Backup Storage
6281
6278
  */
6282
- 'backup'?: RecordingBackupAzureModel | null;
6279
+ 'backup': RecordingBackupAzureModel | null;
6283
6280
  /**
6284
6281
  * 3CX Remote Storage
6285
6282
  */
6286
- 'storage'?: TcxRemoteStorageModel | null;
6283
+ 'storage': TcxRemoteStorageModel | null;
6287
6284
  }
6288
6285
  export interface RecurringCharge {
6289
6286
  'createdDate'?: string;
@@ -6334,35 +6331,35 @@ export interface ReportRequestDTO {
6334
6331
  /**
6335
6332
  * Start
6336
6333
  */
6337
- 'start'?: string | null;
6334
+ 'start': string | null;
6338
6335
  /**
6339
6336
  * End
6340
6337
  */
6341
- 'end'?: string | null;
6338
+ 'end': string | null;
6342
6339
  /**
6343
6340
  * Month
6344
6341
  */
6345
- 'month'?: number | null;
6342
+ 'month': number | null;
6346
6343
  /**
6347
6344
  * Year
6348
6345
  */
6349
- 'year'?: number | null;
6346
+ 'year': number | null;
6350
6347
  /**
6351
6348
  * SKU
6352
6349
  */
6353
- 'sku'?: string | null;
6350
+ 'sku': string | null;
6354
6351
  /**
6355
6352
  * Price
6356
6353
  */
6357
- 'price'?: number | null;
6354
+ 'price': number | null;
6358
6355
  /**
6359
6356
  * Recipients
6360
6357
  */
6361
- 'recipients'?: Array<string> | null;
6358
+ 'recipients': Array<string> | null;
6362
6359
  /**
6363
6360
  * Graph Type
6364
6361
  */
6365
- 'graphType'?: ReportRequestDTOGraphTypeEnum | null;
6362
+ 'graphType': ReportRequestDTOGraphTypeEnum | null;
6366
6363
  }
6367
6364
  export declare const ReportRequestDTOReportEnum: {
6368
6365
  readonly _1: "1";
@@ -6505,10 +6502,7 @@ export interface RmaDTO {
6505
6502
  * RMA Approval Status
6506
6503
  */
6507
6504
  'approved': boolean;
6508
- /**
6509
- * RMA Return Address
6510
- */
6511
- 'address'?: AddressDTO | null;
6505
+ 'address': AddressDTO;
6512
6506
  /**
6513
6507
  * RMA Items
6514
6508
  */
@@ -6554,11 +6548,11 @@ export interface RmaItemDTO {
6554
6548
  /**
6555
6549
  * RMA Item MAC Address
6556
6550
  */
6557
- 'macAddress'?: string | null;
6551
+ 'macAddress': string | null;
6558
6552
  /**
6559
6553
  * RMA Item Serial Number
6560
6554
  */
6561
- 'serialNumber'?: string | null;
6555
+ 'serialNumber': string | null;
6562
6556
  /**
6563
6557
  * RMA Item Received Status
6564
6558
  */
@@ -6589,11 +6583,11 @@ export interface RmaItemRequestDTO {
6589
6583
  /**
6590
6584
  * RMA Item MAC Address
6591
6585
  */
6592
- 'macAddress'?: string | null;
6586
+ 'macAddress': string | null;
6593
6587
  /**
6594
6588
  * RMA Item Serial Number
6595
6589
  */
6596
- 'serialNumber'?: string | null;
6590
+ 'serialNumber': string | null;
6597
6591
  }
6598
6592
  /**
6599
6593
  * RMA Order
@@ -6862,35 +6856,35 @@ export interface SbcDTO {
6862
6856
  /**
6863
6857
  * No Config
6864
6858
  */
6865
- 'noConfig'?: boolean | null;
6859
+ 'noConfig': boolean | null;
6866
6860
  /**
6867
6861
  * DHCP
6868
6862
  */
6869
- 'dhcp'?: boolean | null;
6863
+ 'dhcp': boolean | null;
6870
6864
  /**
6871
6865
  * 3CX URL
6872
6866
  */
6873
- 'url'?: boolean | null;
6867
+ 'url': boolean | null;
6874
6868
  /**
6875
6869
  * 3CX SBC Auth Key
6876
6870
  */
6877
- 'authKey'?: boolean | null;
6871
+ 'authKey': boolean | null;
6878
6872
  /**
6879
6873
  * LAN IP Address
6880
6874
  */
6881
- 'ipAddress'?: boolean | null;
6875
+ 'ipAddress': boolean | null;
6882
6876
  /**
6883
6877
  * LAN Subnet Mask
6884
6878
  */
6885
- 'subnetMask'?: boolean | null;
6879
+ 'subnetMask': boolean | null;
6886
6880
  /**
6887
6881
  * LAN Default Gateway
6888
6882
  */
6889
- 'defaultGateway'?: boolean | null;
6883
+ 'defaultGateway': boolean | null;
6890
6884
  /**
6891
6885
  * DNS
6892
6886
  */
6893
- 'dns'?: boolean | null;
6887
+ 'dns': boolean | null;
6894
6888
  }
6895
6889
  /**
6896
6890
  * Item MAC & Serial Details
@@ -6899,15 +6893,15 @@ export interface ScannedItemModel {
6899
6893
  /**
6900
6894
  * Title
6901
6895
  */
6902
- 'title'?: string | null;
6896
+ 'title': string | null;
6903
6897
  /**
6904
6898
  * SKU
6905
6899
  */
6906
- 'sku'?: string | null;
6900
+ 'sku': string | null;
6907
6901
  /**
6908
6902
  * 3CX Label
6909
6903
  */
6910
- 'tcxLabel'?: string | null;
6904
+ 'tcxLabel': string | null;
6911
6905
  /**
6912
6906
  * Serial Numbers
6913
6907
  */
@@ -6915,7 +6909,7 @@ export interface ScannedItemModel {
6915
6909
  /**
6916
6910
  * MAC Address
6917
6911
  */
6918
- 'macAddress'?: string | null;
6912
+ 'macAddress': string | null;
6919
6913
  }
6920
6914
  /**
6921
6915
  * OAuth2 Scope
@@ -6992,7 +6986,7 @@ export interface SeriesDTO {
6992
6986
  /**
6993
6987
  * Stack
6994
6988
  */
6995
- 'stack'?: string | null;
6989
+ 'stack': string | null;
6996
6990
  /**
6997
6991
  * Data
6998
6992
  */
@@ -7123,27 +7117,27 @@ export interface ShipmentDTO {
7123
7117
  /**
7124
7118
  * ID
7125
7119
  */
7126
- 'id'?: number | null;
7120
+ 'id': number | null;
7127
7121
  /**
7128
7122
  * Batch ID
7129
7123
  */
7130
- 'batchId'?: number | null;
7124
+ 'batchId': number | null;
7131
7125
  /**
7132
7126
  * Courier
7133
7127
  */
7134
- 'courier'?: ShipmentDTOCourierEnum | null;
7128
+ 'courier': ShipmentDTOCourierEnum | null;
7135
7129
  /**
7136
7130
  * Courier Reference
7137
7131
  */
7138
- 'reference'?: string | null;
7132
+ 'reference': string | null;
7139
7133
  /**
7140
7134
  * Courier Tracking
7141
7135
  */
7142
- 'tracking'?: string | null;
7136
+ 'tracking': string | null;
7143
7137
  /**
7144
7138
  * Courier Tracking URL
7145
7139
  */
7146
- 'trackingUrl'?: string | null;
7140
+ 'trackingUrl': string | null;
7147
7141
  /**
7148
7142
  * Date Time
7149
7143
  */
@@ -7160,7 +7154,7 @@ export interface ShipmentDTO {
7160
7154
  /**
7161
7155
  * Boxes Shipped
7162
7156
  */
7163
- 'boxes'?: number | null;
7157
+ 'boxes': number | null;
7164
7158
  }
7165
7159
  export declare const ShipmentDTOCourierEnum: {
7166
7160
  readonly Dpd: "DPD";
@@ -7349,7 +7343,7 @@ export interface ShipmentRequestDTO {
7349
7343
  /**
7350
7344
  * Address
7351
7345
  */
7352
- 'address'?: AddressModel | null;
7346
+ 'address': AddressModel | null;
7353
7347
  /**
7354
7348
  * Scanned Lines
7355
7349
  */
@@ -7361,7 +7355,7 @@ export interface ShipmentRequestDTO {
7361
7355
  /**
7362
7356
  * Ship Date
7363
7357
  */
7364
- 'shipDate'?: string | null;
7358
+ 'shipDate': string | null;
7365
7359
  /**
7366
7360
  * Items
7367
7361
  */
@@ -7381,35 +7375,35 @@ export interface ShippingAddressDTO {
7381
7375
  /**
7382
7376
  * Ship Name
7383
7377
  */
7384
- 'shipName'?: string | null;
7378
+ 'shipName': string | null;
7385
7379
  /**
7386
7380
  * Ship Company
7387
7381
  */
7388
- 'shipCompany'?: string | null;
7382
+ 'shipCompany': string | null;
7389
7383
  /**
7390
7384
  * Ship Address Line 1
7391
7385
  */
7392
- 'shipAddress1'?: string | null;
7386
+ 'shipAddress1': string | null;
7393
7387
  /**
7394
7388
  * Ship Address Line 2
7395
7389
  */
7396
- 'shipAddress2'?: string | null;
7390
+ 'shipAddress2': string | null;
7397
7391
  /**
7398
7392
  * Ship City
7399
7393
  */
7400
- 'shipCity'?: string | null;
7394
+ 'shipCity': string | null;
7401
7395
  /**
7402
7396
  * Ship Region
7403
7397
  */
7404
- 'shipRegion'?: string | null;
7398
+ 'shipRegion': string | null;
7405
7399
  /**
7406
7400
  * Ship Post Code
7407
7401
  */
7408
- 'shipPostCode'?: string | null;
7402
+ 'shipPostCode': string | null;
7409
7403
  /**
7410
7404
  * Ship ISO
7411
7405
  */
7412
- 'shipIso'?: string | null;
7406
+ 'shipIso': string | null;
7413
7407
  }
7414
7408
  export interface ShippingConsignmentModel {
7415
7409
  'service': ShippingServiceModel;
@@ -7459,8 +7453,8 @@ export interface ShippingRequestDTO {
7459
7453
  /**
7460
7454
  * Printer
7461
7455
  */
7462
- 'printer'?: ShippingRequestDTOPrinterEnum | null;
7463
- 'shipment'?: ShipmentRequestDTO | null;
7456
+ 'printer': ShippingRequestDTOPrinterEnum | null;
7457
+ 'shipment': ShipmentRequestDTO | null;
7464
7458
  }
7465
7459
  export declare const ShippingRequestDTOCourierEnum: {
7466
7460
  readonly Dpd: "DPD";
@@ -7518,11 +7512,11 @@ export interface ShippingServiceModel {
7518
7512
  /**
7519
7513
  * Label
7520
7514
  */
7521
- 'label'?: string | null;
7515
+ 'label': string | null;
7522
7516
  /**
7523
7517
  * Price
7524
7518
  */
7525
- 'price'?: number | null;
7519
+ 'price': number | null;
7526
7520
  }
7527
7521
  export declare const ShippingServiceModelCourierEnum: {
7528
7522
  readonly Dpd: "DPD";
@@ -7723,7 +7717,7 @@ export interface SmsAccountEntity {
7723
7717
  /**
7724
7718
  * trunkId
7725
7719
  */
7726
- 'trunkId'?: number | null;
7720
+ 'trunkId': number | null;
7727
7721
  /**
7728
7722
  * name
7729
7723
  */
@@ -7824,7 +7818,7 @@ export interface SmsPhoneNumberModel {
7824
7818
  /**
7825
7819
  * status
7826
7820
  */
7827
- 'status'?: SmsPhoneNumberModelStatusEnum | null;
7821
+ 'status': SmsPhoneNumberModelStatusEnum | null;
7828
7822
  }
7829
7823
  export declare const SmsPhoneNumberModelStatusEnum: {
7830
7824
  readonly Queued: "queued";
@@ -8175,7 +8169,7 @@ export interface StockOrderModel {
8175
8169
  /**
8176
8170
  * Delivery Method
8177
8171
  */
8178
- 'deliveryMethod'?: StockOrderModelDeliveryMethodEnum | null;
8172
+ 'deliveryMethod': StockOrderModelDeliveryMethodEnum | null;
8179
8173
  /**
8180
8174
  * Delivery Cost
8181
8175
  */
@@ -8431,7 +8425,7 @@ export interface StockProductPriceModel {
8431
8425
  /**
8432
8426
  * Price (£)
8433
8427
  */
8434
- 'price'?: number | null;
8428
+ 'price': number | null;
8435
8429
  }
8436
8430
  /**
8437
8431
  * Stock Products
@@ -8836,7 +8830,7 @@ export interface SupportTicketModel {
8836
8830
  /**
8837
8831
  * Support email address
8838
8832
  */
8839
- 'supportEmail'?: string | null;
8833
+ 'supportEmail': string | null;
8840
8834
  /**
8841
8835
  * Recipient emails
8842
8836
  */
@@ -9192,15 +9186,15 @@ export interface TcxInstallationModel {
9192
9186
  /**
9193
9187
  * 3CX Licence Key
9194
9188
  */
9195
- 'licenceKey'?: string | null;
9189
+ 'licenceKey': string | null;
9196
9190
  /**
9197
9191
  * End User
9198
9192
  */
9199
- 'endUser'?: string | null;
9193
+ 'endUser': string | null;
9200
9194
  /**
9201
9195
  * Reseller
9202
9196
  */
9203
- 'reseller'?: string | null;
9197
+ 'reseller': string | null;
9204
9198
  /**
9205
9199
  * Company Name
9206
9200
  */
@@ -9216,7 +9210,7 @@ export interface TcxInstallationModel {
9216
9210
  /**
9217
9211
  * Install Type
9218
9212
  */
9219
- 'installType'?: string | null;
9213
+ 'installType': string | null;
9220
9214
  /**
9221
9215
  * Config Type
9222
9216
  */
@@ -9224,27 +9218,27 @@ export interface TcxInstallationModel {
9224
9218
  /**
9225
9219
  * FQDN
9226
9220
  */
9227
- 'fqdn'?: string | null;
9221
+ 'fqdn': string | null;
9228
9222
  /**
9229
9223
  * PBX IP Address
9230
9224
  */
9231
- 'ipAddress'?: string | null;
9225
+ 'ipAddress': string | null;
9232
9226
  /**
9233
9227
  * Failover IP Address
9234
9228
  */
9235
- 'reservedIpAddress'?: string | null;
9229
+ 'reservedIpAddress': string | null;
9236
9230
  /**
9237
9231
  * 3CX Console URL
9238
9232
  */
9239
- 'tcxUrl'?: string | null;
9233
+ 'tcxUrl': string | null;
9240
9234
  /**
9241
9235
  * Wizard URL
9242
9236
  */
9243
- 'wizardUrl'?: string | null;
9237
+ 'wizardUrl': string | null;
9244
9238
  /**
9245
9239
  * 3CX Credentials URL
9246
9240
  */
9247
- 'credentialsUrl'?: string | null;
9241
+ 'credentialsUrl': string | null;
9248
9242
  /**
9249
9243
  * Hosting Price
9250
9244
  */
@@ -9284,15 +9278,15 @@ export interface TcxInstallationModel {
9284
9278
  /**
9285
9279
  * 3CX Software Version
9286
9280
  */
9287
- 'version'?: string | null;
9281
+ 'version': string | null;
9288
9282
  /**
9289
9283
  * Recordings Disk Size
9290
9284
  */
9291
- 'disk'?: number | null;
9285
+ 'disk': number | null;
9292
9286
  /**
9293
9287
  * Instance Spec
9294
9288
  */
9295
- 'flavour'?: string | null;
9289
+ 'flavour': string | null;
9296
9290
  /**
9297
9291
  * Auto Failover
9298
9292
  */
@@ -9300,11 +9294,11 @@ export interface TcxInstallationModel {
9300
9294
  /**
9301
9295
  * Extensions in Use
9302
9296
  */
9303
- 'extensions'?: number | null;
9297
+ 'extensions': number | null;
9304
9298
  /**
9305
9299
  * Max Allowed Extensions
9306
9300
  */
9307
- 'maxExtensions'?: number | null;
9301
+ 'maxExtensions': number | null;
9308
9302
  }
9309
9303
  /**
9310
9304
  * 3CX Installations
@@ -9338,7 +9332,7 @@ export interface TcxKeySummaryDTO {
9338
9332
  /**
9339
9333
  * End User
9340
9334
  */
9341
- 'endUser'?: string | null;
9335
+ 'endUser': string | null;
9342
9336
  /**
9343
9337
  * Simultaneous Calls
9344
9338
  */
@@ -9350,7 +9344,7 @@ export interface TcxKeySummaryDTO {
9350
9344
  /**
9351
9345
  * Expiry Date
9352
9346
  */
9353
- 'expiry'?: string | null;
9347
+ 'expiry': string | null;
9354
9348
  }
9355
9349
  /**
9356
9350
  * TcxKeysEntity
@@ -9475,27 +9469,27 @@ export interface TcxMultiTenantModel {
9475
9469
  /**
9476
9470
  * Host Server
9477
9471
  */
9478
- 'server'?: string | null;
9472
+ 'server': string | null;
9479
9473
  /**
9480
9474
  * Tenant Reference
9481
9475
  */
9482
- 'reference'?: string | null;
9476
+ 'reference': string | null;
9483
9477
  /**
9484
9478
  * Tenant Package
9485
9479
  */
9486
- 'package'?: TcxMultiTenantModelPackageEnum | null;
9480
+ 'package': TcxMultiTenantModelPackageEnum | null;
9487
9481
  /**
9488
9482
  * Price Per User
9489
9483
  */
9490
- 'price'?: number | null;
9484
+ 'price': number | null;
9491
9485
  /**
9492
9486
  * Admin Username
9493
9487
  */
9494
- 'username'?: string | null;
9488
+ 'username': string | null;
9495
9489
  /**
9496
9490
  * Admin Password
9497
9491
  */
9498
- 'password'?: string | null;
9492
+ 'password': string | null;
9499
9493
  /**
9500
9494
  * Tenant Name
9501
9495
  */
@@ -9519,7 +9513,7 @@ export interface TcxMultiTenantModel {
9519
9513
  /**
9520
9514
  * Tenant Main Number
9521
9515
  */
9522
- 'mainNumber'?: string | null;
9516
+ 'mainNumber': string | null;
9523
9517
  /**
9524
9518
  * Tenant Numbers
9525
9519
  */
@@ -9740,7 +9734,7 @@ export interface TcxSbcDTO {
9740
9734
  /**
9741
9735
  * ID
9742
9736
  */
9743
- 'id'?: number | null;
9737
+ 'id': number | null;
9744
9738
  /**
9745
9739
  * LAN IP Address
9746
9740
  */
@@ -9932,7 +9926,7 @@ export interface TcxSetupEntity {
9932
9926
  /**
9933
9927
  * Install Type
9934
9928
  */
9935
- 'installType'?: TcxSetupEntityInstallTypeEnum | null;
9929
+ 'installType': TcxSetupEntityInstallTypeEnum | null;
9936
9930
  /**
9937
9931
  * 3CX Install Version
9938
9932
  */
@@ -10196,15 +10190,15 @@ export interface TcxWizardModel {
10196
10190
  * Install Type
10197
10191
  */
10198
10192
  'installType': TcxWizardModelInstallTypeEnum;
10199
- 'backup'?: TcxBackupModel | null;
10193
+ 'backup': TcxBackupModel | null;
10200
10194
  'extensions': Array<TcxExtsEntity>;
10201
10195
  'numbers': Array<TcxNumbersEntity>;
10202
- 'officeHours'?: TcxOfficeHoursEntity | null;
10196
+ 'officeHours': TcxOfficeHoursEntity | null;
10203
10197
  'phones': Array<TcxPhoneModel>;
10204
10198
  'sbcs': Array<TcxSbcModel>;
10205
- 'sipTrunk'?: TcxSipTrunksEntity | null;
10206
- 'installationStatus'?: TcxWizardModelInstallationStatusEnum | null;
10207
- 'setup'?: TcxSetupEntity | null;
10199
+ 'sipTrunk': TcxSipTrunksEntity | null;
10200
+ 'installationStatus': TcxWizardModelInstallationStatusEnum | null;
10201
+ 'setup': TcxSetupEntity | null;
10208
10202
  /**
10209
10203
  * End User Wizard View
10210
10204
  */
@@ -10284,7 +10278,7 @@ export interface TicketSummaryModel {
10284
10278
  /**
10285
10279
  * status
10286
10280
  */
10287
- 'statusId'?: number | null;
10281
+ 'statusId': number | null;
10288
10282
  /**
10289
10283
  * lastUpdated
10290
10284
  */
@@ -10467,11 +10461,11 @@ export interface UserEntity {
10467
10461
  /**
10468
10462
  * primaryHex
10469
10463
  */
10470
- 'primaryHex'?: number | null;
10464
+ 'primaryHex': number | null;
10471
10465
  /**
10472
10466
  * secondaryHex
10473
10467
  */
10474
- 'secondaryHex'?: number | null;
10468
+ 'secondaryHex': number | null;
10475
10469
  }
10476
10470
  /**
10477
10471
  * XeroLogEntity
@@ -16956,60 +16950,60 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
16956
16950
  postAddAdminNote: (id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16957
16951
  /**
16958
16952
  *
16953
+ * @param {string | null} companyName Company Name
16954
+ * @param {string | null} addressLine1 Address Line 1
16955
+ * @param {string | null} addressLine2 Address Line 2
16956
+ * @param {string | null} city City
16957
+ * @param {string | null} postCode Post Code
16958
+ * @param {number | null} trunkId Trunk ID
16959
+ * @param {string | null} tenantId Starter Bundle ID
16960
+ * @param {string | null} requestedPortDate Requested Port Date
16961
+ * @param {boolean | null} asap Port Date ASAP
16962
+ * @param {string | null} comment Comment
16959
16963
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
16960
16964
  * @param {File} cloa CLOA (only provide on submission)
16961
- * @param {string | null} [companyName] Company Name
16962
- * @param {string | null} [addressLine1] Address Line 1
16963
- * @param {string | null} [addressLine2] Address Line 2
16964
- * @param {string | null} [city] City
16965
- * @param {string | null} [postCode] Post Code
16966
- * @param {number | null} [trunkId] Trunk ID
16967
- * @param {string | null} [tenantId] Starter Bundle ID
16968
- * @param {string | null} [requestedPortDate] Requested Port Date
16969
- * @param {boolean | null} [asap] Port Date ASAP
16970
- * @param {string | null} [comment] Comment
16971
16965
  * @param {*} [options] Override http request option.
16972
16966
  * @throws {RequiredError}
16973
16967
  */
16974
- postCreateNumberPort: (numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16968
+ 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>;
16975
16969
  /**
16976
16970
  *
16977
16971
  * @param {number} id Number Port ID
16972
+ * @param {string | null} companyName Company Name
16973
+ * @param {string | null} addressLine1 Address Line 1
16974
+ * @param {string | null} addressLine2 Address Line 2
16975
+ * @param {string | null} city City
16976
+ * @param {string | null} postCode Post Code
16977
+ * @param {number | null} trunkId Trunk ID
16978
+ * @param {string | null} tenantId Starter Bundle ID
16979
+ * @param {string | null} requestedPortDate Requested Port Date
16980
+ * @param {boolean | null} asap Port Date ASAP
16981
+ * @param {string | null} comment Comment
16978
16982
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
16979
16983
  * @param {File} cloa CLOA (only provide on submission)
16980
- * @param {string | null} [companyName] Company Name
16981
- * @param {string | null} [addressLine1] Address Line 1
16982
- * @param {string | null} [addressLine2] Address Line 2
16983
- * @param {string | null} [city] City
16984
- * @param {string | null} [postCode] Post Code
16985
- * @param {number | null} [trunkId] Trunk ID
16986
- * @param {string | null} [tenantId] Starter Bundle ID
16987
- * @param {string | null} [requestedPortDate] Requested Port Date
16988
- * @param {boolean | null} [asap] Port Date ASAP
16989
- * @param {string | null} [comment] Comment
16990
16984
  * @param {*} [options] Override http request option.
16991
16985
  * @throws {RequiredError}
16992
16986
  */
16993
- postSubmitNumberPort: (id: number, numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16987
+ 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>;
16994
16988
  /**
16995
16989
  *
16996
16990
  * @param {number} id Number Port ID
16991
+ * @param {string | null} companyName Company Name
16992
+ * @param {string | null} addressLine1 Address Line 1
16993
+ * @param {string | null} addressLine2 Address Line 2
16994
+ * @param {string | null} city City
16995
+ * @param {string | null} postCode Post Code
16996
+ * @param {number | null} trunkId Trunk ID
16997
+ * @param {string | null} tenantId Starter Bundle ID
16998
+ * @param {string | null} requestedPortDate Requested Port Date
16999
+ * @param {boolean | null} asap Port Date ASAP
17000
+ * @param {string | null} comment Comment
16997
17001
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
16998
17002
  * @param {File} cloa CLOA (only provide on submission)
16999
- * @param {string | null} [companyName] Company Name
17000
- * @param {string | null} [addressLine1] Address Line 1
17001
- * @param {string | null} [addressLine2] Address Line 2
17002
- * @param {string | null} [city] City
17003
- * @param {string | null} [postCode] Post Code
17004
- * @param {number | null} [trunkId] Trunk ID
17005
- * @param {string | null} [tenantId] Starter Bundle ID
17006
- * @param {string | null} [requestedPortDate] Requested Port Date
17007
- * @param {boolean | null} [asap] Port Date ASAP
17008
- * @param {string | null} [comment] Comment
17009
17003
  * @param {*} [options] Override http request option.
17010
17004
  * @throws {RequiredError}
17011
17005
  */
17012
- postUpdateNumberPort: (id: number, numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17006
+ 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>;
17013
17007
  /**
17014
17008
  *
17015
17009
  * @param {number} id Number Port ID
@@ -17086,60 +17080,60 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
17086
17080
  postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminNumberPortDTO>>;
17087
17081
  /**
17088
17082
  *
17083
+ * @param {string | null} companyName Company Name
17084
+ * @param {string | null} addressLine1 Address Line 1
17085
+ * @param {string | null} addressLine2 Address Line 2
17086
+ * @param {string | null} city City
17087
+ * @param {string | null} postCode Post Code
17088
+ * @param {number | null} trunkId Trunk ID
17089
+ * @param {string | null} tenantId Starter Bundle ID
17090
+ * @param {string | null} requestedPortDate Requested Port Date
17091
+ * @param {boolean | null} asap Port Date ASAP
17092
+ * @param {string | null} comment Comment
17089
17093
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17090
17094
  * @param {File} cloa CLOA (only provide on submission)
17091
- * @param {string | null} [companyName] Company Name
17092
- * @param {string | null} [addressLine1] Address Line 1
17093
- * @param {string | null} [addressLine2] Address Line 2
17094
- * @param {string | null} [city] City
17095
- * @param {string | null} [postCode] Post Code
17096
- * @param {number | null} [trunkId] Trunk ID
17097
- * @param {string | null} [tenantId] Starter Bundle ID
17098
- * @param {string | null} [requestedPortDate] Requested Port Date
17099
- * @param {boolean | null} [asap] Port Date ASAP
17100
- * @param {string | null} [comment] Comment
17101
17095
  * @param {*} [options] Override http request option.
17102
17096
  * @throws {RequiredError}
17103
17097
  */
17104
- postCreateNumberPort(numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
17098
+ 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>>;
17105
17099
  /**
17106
17100
  *
17107
17101
  * @param {number} id Number Port ID
17102
+ * @param {string | null} companyName Company Name
17103
+ * @param {string | null} addressLine1 Address Line 1
17104
+ * @param {string | null} addressLine2 Address Line 2
17105
+ * @param {string | null} city City
17106
+ * @param {string | null} postCode Post Code
17107
+ * @param {number | null} trunkId Trunk ID
17108
+ * @param {string | null} tenantId Starter Bundle ID
17109
+ * @param {string | null} requestedPortDate Requested Port Date
17110
+ * @param {boolean | null} asap Port Date ASAP
17111
+ * @param {string | null} comment Comment
17108
17112
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17109
17113
  * @param {File} cloa CLOA (only provide on submission)
17110
- * @param {string | null} [companyName] Company Name
17111
- * @param {string | null} [addressLine1] Address Line 1
17112
- * @param {string | null} [addressLine2] Address Line 2
17113
- * @param {string | null} [city] City
17114
- * @param {string | null} [postCode] Post Code
17115
- * @param {number | null} [trunkId] Trunk ID
17116
- * @param {string | null} [tenantId] Starter Bundle ID
17117
- * @param {string | null} [requestedPortDate] Requested Port Date
17118
- * @param {boolean | null} [asap] Port Date ASAP
17119
- * @param {string | null} [comment] Comment
17120
17114
  * @param {*} [options] Override http request option.
17121
17115
  * @throws {RequiredError}
17122
17116
  */
17123
- postSubmitNumberPort(id: number, numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
17117
+ 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>>;
17124
17118
  /**
17125
17119
  *
17126
17120
  * @param {number} id Number Port ID
17121
+ * @param {string | null} companyName Company Name
17122
+ * @param {string | null} addressLine1 Address Line 1
17123
+ * @param {string | null} addressLine2 Address Line 2
17124
+ * @param {string | null} city City
17125
+ * @param {string | null} postCode Post Code
17126
+ * @param {number | null} trunkId Trunk ID
17127
+ * @param {string | null} tenantId Starter Bundle ID
17128
+ * @param {string | null} requestedPortDate Requested Port Date
17129
+ * @param {boolean | null} asap Port Date ASAP
17130
+ * @param {string | null} comment Comment
17127
17131
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17128
17132
  * @param {File} cloa CLOA (only provide on submission)
17129
- * @param {string | null} [companyName] Company Name
17130
- * @param {string | null} [addressLine1] Address Line 1
17131
- * @param {string | null} [addressLine2] Address Line 2
17132
- * @param {string | null} [city] City
17133
- * @param {string | null} [postCode] Post Code
17134
- * @param {number | null} [trunkId] Trunk ID
17135
- * @param {string | null} [tenantId] Starter Bundle ID
17136
- * @param {string | null} [requestedPortDate] Requested Port Date
17137
- * @param {boolean | null} [asap] Port Date ASAP
17138
- * @param {string | null} [comment] Comment
17139
17133
  * @param {*} [options] Override http request option.
17140
17134
  * @throws {RequiredError}
17141
17135
  */
17142
- postUpdateNumberPort(id: number, numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
17136
+ 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>>;
17143
17137
  /**
17144
17138
  *
17145
17139
  * @param {number} id Number Port ID
@@ -17216,60 +17210,60 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
17216
17210
  postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): AxiosPromise<AdminNumberPortDTO>;
17217
17211
  /**
17218
17212
  *
17213
+ * @param {string | null} companyName Company Name
17214
+ * @param {string | null} addressLine1 Address Line 1
17215
+ * @param {string | null} addressLine2 Address Line 2
17216
+ * @param {string | null} city City
17217
+ * @param {string | null} postCode Post Code
17218
+ * @param {number | null} trunkId Trunk ID
17219
+ * @param {string | null} tenantId Starter Bundle ID
17220
+ * @param {string | null} requestedPortDate Requested Port Date
17221
+ * @param {boolean | null} asap Port Date ASAP
17222
+ * @param {string | null} comment Comment
17219
17223
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17220
17224
  * @param {File} cloa CLOA (only provide on submission)
17221
- * @param {string | null} [companyName] Company Name
17222
- * @param {string | null} [addressLine1] Address Line 1
17223
- * @param {string | null} [addressLine2] Address Line 2
17224
- * @param {string | null} [city] City
17225
- * @param {string | null} [postCode] Post Code
17226
- * @param {number | null} [trunkId] Trunk ID
17227
- * @param {string | null} [tenantId] Starter Bundle ID
17228
- * @param {string | null} [requestedPortDate] Requested Port Date
17229
- * @param {boolean | null} [asap] Port Date ASAP
17230
- * @param {string | null} [comment] Comment
17231
17225
  * @param {*} [options] Override http request option.
17232
17226
  * @throws {RequiredError}
17233
17227
  */
17234
- postCreateNumberPort(numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
17228
+ 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>;
17235
17229
  /**
17236
17230
  *
17237
17231
  * @param {number} id Number Port ID
17232
+ * @param {string | null} companyName Company Name
17233
+ * @param {string | null} addressLine1 Address Line 1
17234
+ * @param {string | null} addressLine2 Address Line 2
17235
+ * @param {string | null} city City
17236
+ * @param {string | null} postCode Post Code
17237
+ * @param {number | null} trunkId Trunk ID
17238
+ * @param {string | null} tenantId Starter Bundle ID
17239
+ * @param {string | null} requestedPortDate Requested Port Date
17240
+ * @param {boolean | null} asap Port Date ASAP
17241
+ * @param {string | null} comment Comment
17238
17242
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17239
17243
  * @param {File} cloa CLOA (only provide on submission)
17240
- * @param {string | null} [companyName] Company Name
17241
- * @param {string | null} [addressLine1] Address Line 1
17242
- * @param {string | null} [addressLine2] Address Line 2
17243
- * @param {string | null} [city] City
17244
- * @param {string | null} [postCode] Post Code
17245
- * @param {number | null} [trunkId] Trunk ID
17246
- * @param {string | null} [tenantId] Starter Bundle ID
17247
- * @param {string | null} [requestedPortDate] Requested Port Date
17248
- * @param {boolean | null} [asap] Port Date ASAP
17249
- * @param {string | null} [comment] Comment
17250
17244
  * @param {*} [options] Override http request option.
17251
17245
  * @throws {RequiredError}
17252
17246
  */
17253
- postSubmitNumberPort(id: number, numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
17247
+ 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>;
17254
17248
  /**
17255
17249
  *
17256
17250
  * @param {number} id Number Port ID
17251
+ * @param {string | null} companyName Company Name
17252
+ * @param {string | null} addressLine1 Address Line 1
17253
+ * @param {string | null} addressLine2 Address Line 2
17254
+ * @param {string | null} city City
17255
+ * @param {string | null} postCode Post Code
17256
+ * @param {number | null} trunkId Trunk ID
17257
+ * @param {string | null} tenantId Starter Bundle ID
17258
+ * @param {string | null} requestedPortDate Requested Port Date
17259
+ * @param {boolean | null} asap Port Date ASAP
17260
+ * @param {string | null} comment Comment
17257
17261
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17258
17262
  * @param {File} cloa CLOA (only provide on submission)
17259
- * @param {string | null} [companyName] Company Name
17260
- * @param {string | null} [addressLine1] Address Line 1
17261
- * @param {string | null} [addressLine2] Address Line 2
17262
- * @param {string | null} [city] City
17263
- * @param {string | null} [postCode] Post Code
17264
- * @param {number | null} [trunkId] Trunk ID
17265
- * @param {string | null} [tenantId] Starter Bundle ID
17266
- * @param {string | null} [requestedPortDate] Requested Port Date
17267
- * @param {boolean | null} [asap] Port Date ASAP
17268
- * @param {string | null} [comment] Comment
17269
17263
  * @param {*} [options] Override http request option.
17270
17264
  * @throws {RequiredError}
17271
17265
  */
17272
- postUpdateNumberPort(id: number, numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
17266
+ 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>;
17273
17267
  /**
17274
17268
  *
17275
17269
  * @param {number} id Number Port ID
@@ -17346,60 +17340,60 @@ export declare class NumberPortingApi extends BaseAPI {
17346
17340
  postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminNumberPortDTO, any, {}>>;
17347
17341
  /**
17348
17342
  *
17343
+ * @param {string | null} companyName Company Name
17344
+ * @param {string | null} addressLine1 Address Line 1
17345
+ * @param {string | null} addressLine2 Address Line 2
17346
+ * @param {string | null} city City
17347
+ * @param {string | null} postCode Post Code
17348
+ * @param {number | null} trunkId Trunk ID
17349
+ * @param {string | null} tenantId Starter Bundle ID
17350
+ * @param {string | null} requestedPortDate Requested Port Date
17351
+ * @param {boolean | null} asap Port Date ASAP
17352
+ * @param {string | null} comment Comment
17349
17353
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17350
17354
  * @param {File} cloa CLOA (only provide on submission)
17351
- * @param {string | null} [companyName] Company Name
17352
- * @param {string | null} [addressLine1] Address Line 1
17353
- * @param {string | null} [addressLine2] Address Line 2
17354
- * @param {string | null} [city] City
17355
- * @param {string | null} [postCode] Post Code
17356
- * @param {number | null} [trunkId] Trunk ID
17357
- * @param {string | null} [tenantId] Starter Bundle ID
17358
- * @param {string | null} [requestedPortDate] Requested Port Date
17359
- * @param {boolean | null} [asap] Port Date ASAP
17360
- * @param {string | null} [comment] Comment
17361
17355
  * @param {*} [options] Override http request option.
17362
17356
  * @throws {RequiredError}
17363
17357
  */
17364
- postCreateNumberPort(numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
17358
+ 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, {}>>;
17365
17359
  /**
17366
17360
  *
17367
17361
  * @param {number} id Number Port ID
17362
+ * @param {string | null} companyName Company Name
17363
+ * @param {string | null} addressLine1 Address Line 1
17364
+ * @param {string | null} addressLine2 Address Line 2
17365
+ * @param {string | null} city City
17366
+ * @param {string | null} postCode Post Code
17367
+ * @param {number | null} trunkId Trunk ID
17368
+ * @param {string | null} tenantId Starter Bundle ID
17369
+ * @param {string | null} requestedPortDate Requested Port Date
17370
+ * @param {boolean | null} asap Port Date ASAP
17371
+ * @param {string | null} comment Comment
17368
17372
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17369
17373
  * @param {File} cloa CLOA (only provide on submission)
17370
- * @param {string | null} [companyName] Company Name
17371
- * @param {string | null} [addressLine1] Address Line 1
17372
- * @param {string | null} [addressLine2] Address Line 2
17373
- * @param {string | null} [city] City
17374
- * @param {string | null} [postCode] Post Code
17375
- * @param {number | null} [trunkId] Trunk ID
17376
- * @param {string | null} [tenantId] Starter Bundle ID
17377
- * @param {string | null} [requestedPortDate] Requested Port Date
17378
- * @param {boolean | null} [asap] Port Date ASAP
17379
- * @param {string | null} [comment] Comment
17380
17374
  * @param {*} [options] Override http request option.
17381
17375
  * @throws {RequiredError}
17382
17376
  */
17383
- postSubmitNumberPort(id: number, numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
17377
+ 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, {}>>;
17384
17378
  /**
17385
17379
  *
17386
17380
  * @param {number} id Number Port ID
17381
+ * @param {string | null} companyName Company Name
17382
+ * @param {string | null} addressLine1 Address Line 1
17383
+ * @param {string | null} addressLine2 Address Line 2
17384
+ * @param {string | null} city City
17385
+ * @param {string | null} postCode Post Code
17386
+ * @param {number | null} trunkId Trunk ID
17387
+ * @param {string | null} tenantId Starter Bundle ID
17388
+ * @param {string | null} requestedPortDate Requested Port Date
17389
+ * @param {boolean | null} asap Port Date ASAP
17390
+ * @param {string | null} comment Comment
17387
17391
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17388
17392
  * @param {File} cloa CLOA (only provide on submission)
17389
- * @param {string | null} [companyName] Company Name
17390
- * @param {string | null} [addressLine1] Address Line 1
17391
- * @param {string | null} [addressLine2] Address Line 2
17392
- * @param {string | null} [city] City
17393
- * @param {string | null} [postCode] Post Code
17394
- * @param {number | null} [trunkId] Trunk ID
17395
- * @param {string | null} [tenantId] Starter Bundle ID
17396
- * @param {string | null} [requestedPortDate] Requested Port Date
17397
- * @param {boolean | null} [asap] Port Date ASAP
17398
- * @param {string | null} [comment] Comment
17399
17393
  * @param {*} [options] Override http request option.
17400
17394
  * @throws {RequiredError}
17401
17395
  */
17402
- postUpdateNumberPort(id: number, numberRanges: Array<NumberPortRangeRequestDTO>, cloa: File, 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, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
17396
+ 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, {}>>;
17403
17397
  /**
17404
17398
  *
17405
17399
  * @param {number} id Number Port ID
@@ -17430,22 +17424,22 @@ export declare const OAuth20ApiAxiosParamCreator: (configuration?: Configuration
17430
17424
  /**
17431
17425
  * Get an OAuth 2.0 access token
17432
17426
  * @summary Validates client credentials and returns access token
17433
- * @param {string | null} [clientId] OAuth 2.0 Client ID
17434
- * @param {string | null} [clientSecret] OAuth 2.0 Client Secret
17435
- * @param {PostAccessTokenGrantTypeEnum} [grantType] OAuth 2.0 Grant Type
17436
- * @param {PostAccessTokenScopeEnum} [scope] OAuth 2.0 Scope
17437
- * @param {string | null} [redirectUri] OAuth 2.0 Redirect URI
17438
- * @param {string | null} [code] OAuth 2.0 Auth Code
17439
- * @param {string | null} [refreshToken] OAuth 2.0 Refresh Token
17440
- * @param {string | null} [codeVerifier] OAuth 2.0 Code Verifier
17441
- * @param {string | null} [token] OAuth 2.0 Token (Only used in Token Exchange)
17442
- * @param {PostAccessTokenTokenExchangeTypeEnum} [tokenExchangeType] Token Exchange Type (Only used in Token Exchange)
17443
- * @param {string | null} [licenceKey] 3CX Licence Key (Only used in Token Exchange)
17444
- * @param {boolean | null} [endUser] End User (Only used in Token Exchange)
17427
+ * @param {string | null} clientId OAuth 2.0 Client ID
17428
+ * @param {string | null} clientSecret OAuth 2.0 Client Secret
17429
+ * @param {PostAccessTokenGrantTypeEnum} grantType OAuth 2.0 Grant Type
17430
+ * @param {PostAccessTokenScopeEnum} scope OAuth 2.0 Scope
17431
+ * @param {string | null} redirectUri OAuth 2.0 Redirect URI
17432
+ * @param {string | null} code OAuth 2.0 Auth Code
17433
+ * @param {string | null} refreshToken OAuth 2.0 Refresh Token
17434
+ * @param {string | null} codeVerifier OAuth 2.0 Code Verifier
17435
+ * @param {string | null} token OAuth 2.0 Token (Only used in Token Exchange)
17436
+ * @param {PostAccessTokenTokenExchangeTypeEnum} tokenExchangeType Token Exchange Type (Only used in Token Exchange)
17437
+ * @param {string | null} licenceKey 3CX Licence Key (Only used in Token Exchange)
17438
+ * @param {boolean | null} endUser End User (Only used in Token Exchange)
17445
17439
  * @param {*} [options] Override http request option.
17446
17440
  * @throws {RequiredError}
17447
17441
  */
17448
- postAccessToken: (clientId?: string | null, clientSecret?: string | null, grantType?: PostAccessTokenGrantTypeEnum, scope?: PostAccessTokenScopeEnum, redirectUri?: string | null, code?: string | null, refreshToken?: string | null, codeVerifier?: string | null, token?: string | null, tokenExchangeType?: PostAccessTokenTokenExchangeTypeEnum, licenceKey?: string | null, endUser?: boolean | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17442
+ postAccessToken: (clientId: string | null, clientSecret: string | null, grantType: PostAccessTokenGrantTypeEnum, scope: PostAccessTokenScopeEnum, redirectUri: string | null, code: string | null, refreshToken: string | null, codeVerifier: string | null, token: string | null, tokenExchangeType: PostAccessTokenTokenExchangeTypeEnum, licenceKey: string | null, endUser: boolean | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17449
17443
  /**
17450
17444
  * Get an OAuth 2.0 auth code
17451
17445
  * @summary Get OAuth2.0 Auth Code
@@ -17503,22 +17497,22 @@ export declare const OAuth20ApiFp: (configuration?: Configuration) => {
17503
17497
  /**
17504
17498
  * Get an OAuth 2.0 access token
17505
17499
  * @summary Validates client credentials and returns access token
17506
- * @param {string | null} [clientId] OAuth 2.0 Client ID
17507
- * @param {string | null} [clientSecret] OAuth 2.0 Client Secret
17508
- * @param {PostAccessTokenGrantTypeEnum} [grantType] OAuth 2.0 Grant Type
17509
- * @param {PostAccessTokenScopeEnum} [scope] OAuth 2.0 Scope
17510
- * @param {string | null} [redirectUri] OAuth 2.0 Redirect URI
17511
- * @param {string | null} [code] OAuth 2.0 Auth Code
17512
- * @param {string | null} [refreshToken] OAuth 2.0 Refresh Token
17513
- * @param {string | null} [codeVerifier] OAuth 2.0 Code Verifier
17514
- * @param {string | null} [token] OAuth 2.0 Token (Only used in Token Exchange)
17515
- * @param {PostAccessTokenTokenExchangeTypeEnum} [tokenExchangeType] Token Exchange Type (Only used in Token Exchange)
17516
- * @param {string | null} [licenceKey] 3CX Licence Key (Only used in Token Exchange)
17517
- * @param {boolean | null} [endUser] End User (Only used in Token Exchange)
17500
+ * @param {string | null} clientId OAuth 2.0 Client ID
17501
+ * @param {string | null} clientSecret OAuth 2.0 Client Secret
17502
+ * @param {PostAccessTokenGrantTypeEnum} grantType OAuth 2.0 Grant Type
17503
+ * @param {PostAccessTokenScopeEnum} scope OAuth 2.0 Scope
17504
+ * @param {string | null} redirectUri OAuth 2.0 Redirect URI
17505
+ * @param {string | null} code OAuth 2.0 Auth Code
17506
+ * @param {string | null} refreshToken OAuth 2.0 Refresh Token
17507
+ * @param {string | null} codeVerifier OAuth 2.0 Code Verifier
17508
+ * @param {string | null} token OAuth 2.0 Token (Only used in Token Exchange)
17509
+ * @param {PostAccessTokenTokenExchangeTypeEnum} tokenExchangeType Token Exchange Type (Only used in Token Exchange)
17510
+ * @param {string | null} licenceKey 3CX Licence Key (Only used in Token Exchange)
17511
+ * @param {boolean | null} endUser End User (Only used in Token Exchange)
17518
17512
  * @param {*} [options] Override http request option.
17519
17513
  * @throws {RequiredError}
17520
17514
  */
17521
- postAccessToken(clientId?: string | null, clientSecret?: string | null, grantType?: PostAccessTokenGrantTypeEnum, scope?: PostAccessTokenScopeEnum, redirectUri?: string | null, code?: string | null, refreshToken?: string | null, codeVerifier?: string | null, token?: string | null, tokenExchangeType?: PostAccessTokenTokenExchangeTypeEnum, licenceKey?: string | null, endUser?: boolean | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TokenResponseModel>>;
17515
+ postAccessToken(clientId: string | null, clientSecret: string | null, grantType: PostAccessTokenGrantTypeEnum, scope: PostAccessTokenScopeEnum, redirectUri: string | null, code: string | null, refreshToken: string | null, codeVerifier: string | null, token: string | null, tokenExchangeType: PostAccessTokenTokenExchangeTypeEnum, licenceKey: string | null, endUser: boolean | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TokenResponseModel>>;
17522
17516
  /**
17523
17517
  * Get an OAuth 2.0 auth code
17524
17518
  * @summary Get OAuth2.0 Auth Code
@@ -17576,22 +17570,22 @@ export declare const OAuth20ApiFactory: (configuration?: Configuration, basePath
17576
17570
  /**
17577
17571
  * Get an OAuth 2.0 access token
17578
17572
  * @summary Validates client credentials and returns access token
17579
- * @param {string | null} [clientId] OAuth 2.0 Client ID
17580
- * @param {string | null} [clientSecret] OAuth 2.0 Client Secret
17581
- * @param {PostAccessTokenGrantTypeEnum} [grantType] OAuth 2.0 Grant Type
17582
- * @param {PostAccessTokenScopeEnum} [scope] OAuth 2.0 Scope
17583
- * @param {string | null} [redirectUri] OAuth 2.0 Redirect URI
17584
- * @param {string | null} [code] OAuth 2.0 Auth Code
17585
- * @param {string | null} [refreshToken] OAuth 2.0 Refresh Token
17586
- * @param {string | null} [codeVerifier] OAuth 2.0 Code Verifier
17587
- * @param {string | null} [token] OAuth 2.0 Token (Only used in Token Exchange)
17588
- * @param {PostAccessTokenTokenExchangeTypeEnum} [tokenExchangeType] Token Exchange Type (Only used in Token Exchange)
17589
- * @param {string | null} [licenceKey] 3CX Licence Key (Only used in Token Exchange)
17590
- * @param {boolean | null} [endUser] End User (Only used in Token Exchange)
17573
+ * @param {string | null} clientId OAuth 2.0 Client ID
17574
+ * @param {string | null} clientSecret OAuth 2.0 Client Secret
17575
+ * @param {PostAccessTokenGrantTypeEnum} grantType OAuth 2.0 Grant Type
17576
+ * @param {PostAccessTokenScopeEnum} scope OAuth 2.0 Scope
17577
+ * @param {string | null} redirectUri OAuth 2.0 Redirect URI
17578
+ * @param {string | null} code OAuth 2.0 Auth Code
17579
+ * @param {string | null} refreshToken OAuth 2.0 Refresh Token
17580
+ * @param {string | null} codeVerifier OAuth 2.0 Code Verifier
17581
+ * @param {string | null} token OAuth 2.0 Token (Only used in Token Exchange)
17582
+ * @param {PostAccessTokenTokenExchangeTypeEnum} tokenExchangeType Token Exchange Type (Only used in Token Exchange)
17583
+ * @param {string | null} licenceKey 3CX Licence Key (Only used in Token Exchange)
17584
+ * @param {boolean | null} endUser End User (Only used in Token Exchange)
17591
17585
  * @param {*} [options] Override http request option.
17592
17586
  * @throws {RequiredError}
17593
17587
  */
17594
- postAccessToken(clientId?: string | null, clientSecret?: string | null, grantType?: PostAccessTokenGrantTypeEnum, scope?: PostAccessTokenScopeEnum, redirectUri?: string | null, code?: string | null, refreshToken?: string | null, codeVerifier?: string | null, token?: string | null, tokenExchangeType?: PostAccessTokenTokenExchangeTypeEnum, licenceKey?: string | null, endUser?: boolean | null, options?: RawAxiosRequestConfig): AxiosPromise<TokenResponseModel>;
17588
+ postAccessToken(clientId: string | null, clientSecret: string | null, grantType: PostAccessTokenGrantTypeEnum, scope: PostAccessTokenScopeEnum, redirectUri: string | null, code: string | null, refreshToken: string | null, codeVerifier: string | null, token: string | null, tokenExchangeType: PostAccessTokenTokenExchangeTypeEnum, licenceKey: string | null, endUser: boolean | null, options?: RawAxiosRequestConfig): AxiosPromise<TokenResponseModel>;
17595
17589
  /**
17596
17590
  * Get an OAuth 2.0 auth code
17597
17591
  * @summary Get OAuth2.0 Auth Code
@@ -17649,22 +17643,22 @@ export declare class OAuth20Api extends BaseAPI {
17649
17643
  /**
17650
17644
  * Get an OAuth 2.0 access token
17651
17645
  * @summary Validates client credentials and returns access token
17652
- * @param {string | null} [clientId] OAuth 2.0 Client ID
17653
- * @param {string | null} [clientSecret] OAuth 2.0 Client Secret
17654
- * @param {PostAccessTokenGrantTypeEnum} [grantType] OAuth 2.0 Grant Type
17655
- * @param {PostAccessTokenScopeEnum} [scope] OAuth 2.0 Scope
17656
- * @param {string | null} [redirectUri] OAuth 2.0 Redirect URI
17657
- * @param {string | null} [code] OAuth 2.0 Auth Code
17658
- * @param {string | null} [refreshToken] OAuth 2.0 Refresh Token
17659
- * @param {string | null} [codeVerifier] OAuth 2.0 Code Verifier
17660
- * @param {string | null} [token] OAuth 2.0 Token (Only used in Token Exchange)
17661
- * @param {PostAccessTokenTokenExchangeTypeEnum} [tokenExchangeType] Token Exchange Type (Only used in Token Exchange)
17662
- * @param {string | null} [licenceKey] 3CX Licence Key (Only used in Token Exchange)
17663
- * @param {boolean | null} [endUser] End User (Only used in Token Exchange)
17664
- * @param {*} [options] Override http request option.
17665
- * @throws {RequiredError}
17666
- */
17667
- postAccessToken(clientId?: string | null, clientSecret?: string | null, grantType?: PostAccessTokenGrantTypeEnum, scope?: PostAccessTokenScopeEnum, redirectUri?: string | null, code?: string | null, refreshToken?: string | null, codeVerifier?: string | null, token?: string | null, tokenExchangeType?: PostAccessTokenTokenExchangeTypeEnum, licenceKey?: string | null, endUser?: boolean | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TokenResponseModel, any, {}>>;
17646
+ * @param {string | null} clientId OAuth 2.0 Client ID
17647
+ * @param {string | null} clientSecret OAuth 2.0 Client Secret
17648
+ * @param {PostAccessTokenGrantTypeEnum} grantType OAuth 2.0 Grant Type
17649
+ * @param {PostAccessTokenScopeEnum} scope OAuth 2.0 Scope
17650
+ * @param {string | null} redirectUri OAuth 2.0 Redirect URI
17651
+ * @param {string | null} code OAuth 2.0 Auth Code
17652
+ * @param {string | null} refreshToken OAuth 2.0 Refresh Token
17653
+ * @param {string | null} codeVerifier OAuth 2.0 Code Verifier
17654
+ * @param {string | null} token OAuth 2.0 Token (Only used in Token Exchange)
17655
+ * @param {PostAccessTokenTokenExchangeTypeEnum} tokenExchangeType Token Exchange Type (Only used in Token Exchange)
17656
+ * @param {string | null} licenceKey 3CX Licence Key (Only used in Token Exchange)
17657
+ * @param {boolean | null} endUser End User (Only used in Token Exchange)
17658
+ * @param {*} [options] Override http request option.
17659
+ * @throws {RequiredError}
17660
+ */
17661
+ postAccessToken(clientId: string | null, clientSecret: string | null, grantType: PostAccessTokenGrantTypeEnum, scope: PostAccessTokenScopeEnum, redirectUri: string | null, code: string | null, refreshToken: string | null, codeVerifier: string | null, token: string | null, tokenExchangeType: PostAccessTokenTokenExchangeTypeEnum, licenceKey: string | null, endUser: boolean | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TokenResponseModel, any, {}>>;
17668
17662
  /**
17669
17663
  * Get an OAuth 2.0 auth code
17670
17664
  * @summary Get OAuth2.0 Auth Code