yellowgrid-api-ts 3.2.233-dev.0 → 3.2.234-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 (76) hide show
  1. package/api.ts +435 -519
  2. package/dist/api.d.ts +417 -417
  3. package/dist/api.js +192 -276
  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 +2 -2
  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/RmaItemDTO.md +2 -2
  54. package/docs/RmaItemRequestDTO.md +2 -2
  55. package/docs/SbcDTO.md +8 -8
  56. package/docs/ScannedItemModel.md +4 -4
  57. package/docs/SeriesDTO.md +1 -1
  58. package/docs/ShipmentDTO.md +7 -7
  59. package/docs/ShipmentRequestDTO.md +2 -2
  60. package/docs/ShippingAddressDTO.md +8 -8
  61. package/docs/ShippingRequestDTO.md +2 -2
  62. package/docs/ShippingServiceModel.md +2 -2
  63. package/docs/SmsAccountEntity.md +1 -1
  64. package/docs/SmsPhoneNumberModel.md +1 -1
  65. package/docs/StockOrderModel.md +1 -1
  66. package/docs/StockProductPriceModel.md +1 -1
  67. package/docs/SupportTicketModel.md +1 -1
  68. package/docs/TcxInstallationModel.md +15 -15
  69. package/docs/TcxKeySummaryDTO.md +2 -2
  70. package/docs/TcxMultiTenantModel.md +7 -7
  71. package/docs/TcxSbcDTO.md +1 -1
  72. package/docs/TcxSetupEntity.md +1 -1
  73. package/docs/TcxWizardModel.md +5 -5
  74. package/docs/TicketSummaryModel.md +1 -1
  75. package/docs/UserEntity.md +2 -2
  76. 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
  */
@@ -788,11 +788,11 @@ export interface AdminRmaDTO {
788
788
  /**
789
789
  * Collection Tracking URL
790
790
  */
791
- 'collectionTrackingUrl': string | null;
791
+ 'collectionTrackingUrl'?: string | null;
792
792
  /**
793
793
  * Return Tracking URL
794
794
  */
795
- 'returnTrackingUrl': string | null;
795
+ 'returnTrackingUrl'?: string | null;
796
796
  }
797
797
  export declare const AdminRmaDTOReasonEnum: {
798
798
  readonly NUMBER_1: 1;
@@ -834,11 +834,11 @@ export interface AdminRmaItemDTO {
834
834
  /**
835
835
  * RMA Item MAC Address
836
836
  */
837
- 'macAddress': string | null;
837
+ 'macAddress'?: string | null;
838
838
  /**
839
839
  * RMA Item Serial Number
840
840
  */
841
- 'serialNumber': string | null;
841
+ 'serialNumber'?: string | null;
842
842
  /**
843
843
  * RMA Item Received Status
844
844
  */
@@ -984,7 +984,7 @@ export interface AdminUserModel {
984
984
  /**
985
985
  * Avatar
986
986
  */
987
- 'avatar': string | null;
987
+ 'avatar'?: string | null;
988
988
  /**
989
989
  * Role
990
990
  */
@@ -992,19 +992,19 @@ export interface AdminUserModel {
992
992
  /**
993
993
  * Email
994
994
  */
995
- 'email': string | null;
995
+ 'email'?: string | null;
996
996
  /**
997
997
  * Primary Colour
998
998
  */
999
- 'primaryHex': string | null;
999
+ 'primaryHex'?: string | null;
1000
1000
  /**
1001
1001
  * Secondary Colour
1002
1002
  */
1003
- 'secondaryHex': string | null;
1003
+ 'secondaryHex'?: string | null;
1004
1004
  /**
1005
1005
  * Scopes
1006
1006
  */
1007
- 'scopes': Array<string> | null;
1007
+ 'scopes'?: Array<string> | null;
1008
1008
  /**
1009
1009
  * Groups
1010
1010
  */
@@ -1311,11 +1311,11 @@ export interface AuthCodeResponseModel {
1311
1311
  /**
1312
1312
  * State
1313
1313
  */
1314
- 'state': string | null;
1314
+ 'state'?: string | null;
1315
1315
  /**
1316
1316
  * Redirect URI
1317
1317
  */
1318
- 'redirect_uri': string | null;
1318
+ 'redirect_uri'?: string | null;
1319
1319
  }
1320
1320
  /**
1321
1321
  * Graph Axis Data
@@ -1328,11 +1328,11 @@ export interface AxisDataDTO {
1328
1328
  /**
1329
1329
  * Data
1330
1330
  */
1331
- 'data': Array<string> | null;
1331
+ 'data'?: Array<string> | null;
1332
1332
  /**
1333
1333
  * Name
1334
1334
  */
1335
- 'name': string | null;
1335
+ 'name'?: string | null;
1336
1336
  }
1337
1337
  export declare const AxisDataDTOTypeEnum: {
1338
1338
  readonly Value: "value";
@@ -2028,11 +2028,11 @@ export interface CreditNoteItemDTO {
2028
2028
  /**
2029
2029
  * Quantity
2030
2030
  */
2031
- 'quantity': number | null;
2031
+ 'quantity'?: number | null;
2032
2032
  /**
2033
2033
  * Amount
2034
2034
  */
2035
- 'amount': number | null;
2035
+ 'amount'?: number | null;
2036
2036
  }
2037
2037
  /**
2038
2038
  * CreditNotesItemsEntity
@@ -2128,15 +2128,15 @@ export interface CreditStatusDTO {
2128
2128
  /**
2129
2129
  * Currency Code
2130
2130
  */
2131
- 'CurrencyCode': string | null;
2131
+ 'CurrencyCode'?: string | null;
2132
2132
  /**
2133
2133
  * Credit Limit
2134
2134
  */
2135
- 'CreditLimit': number | null;
2135
+ 'CreditLimit'?: number | null;
2136
2136
  /**
2137
2137
  * Credit
2138
2138
  */
2139
- 'Credit': number | null;
2139
+ 'Credit'?: number | null;
2140
2140
  }
2141
2141
  /**
2142
2142
  * CRM Activities Response
@@ -2162,7 +2162,7 @@ export interface CrmActivityDTO {
2162
2162
  /**
2163
2163
  * Activity Timestamp
2164
2164
  */
2165
- 'timestamp': string | null;
2165
+ 'timestamp'?: string | null;
2166
2166
  /**
2167
2167
  * Activity Title
2168
2168
  */
@@ -2174,15 +2174,15 @@ export interface CrmActivityDTO {
2174
2174
  /**
2175
2175
  * Activity User Name
2176
2176
  */
2177
- 'user': string | null;
2177
+ 'user'?: string | null;
2178
2178
  /**
2179
2179
  * Activity Contact Name
2180
2180
  */
2181
- 'contact': string | null;
2181
+ 'contact'?: string | null;
2182
2182
  /**
2183
2183
  * Activity Order ID
2184
2184
  */
2185
- 'orderId': number | null;
2185
+ 'orderId'?: number | null;
2186
2186
  }
2187
2187
  /**
2188
2188
  * CRM Contact
@@ -2224,7 +2224,7 @@ export interface CrmDateActivitiesDTO {
2224
2224
  /**
2225
2225
  * Date
2226
2226
  */
2227
- 'date': string | null;
2227
+ 'date'?: string | null;
2228
2228
  /**
2229
2229
  * Activities
2230
2230
  */
@@ -2377,7 +2377,7 @@ export interface CustomerCoordinatesDTO {
2377
2377
  /**
2378
2378
  * 3CX Reseller ID
2379
2379
  */
2380
- 'resellerId': string | null;
2380
+ 'resellerId'?: string | null;
2381
2381
  /**
2382
2382
  * Post Code
2383
2383
  */
@@ -2533,7 +2533,7 @@ export interface CustomerOrderRequestDTO {
2533
2533
  /**
2534
2534
  * Order Reference
2535
2535
  */
2536
- 'orderReference': string | null;
2536
+ 'orderReference'?: string | null;
2537
2537
  /**
2538
2538
  * Items
2539
2539
  */
@@ -2542,11 +2542,11 @@ export interface CustomerOrderRequestDTO {
2542
2542
  /**
2543
2543
  * Provisioning URL
2544
2544
  */
2545
- 'provisioningUrl': string | null;
2545
+ 'provisioningUrl'?: string | null;
2546
2546
  /**
2547
2547
  * Shipping Address
2548
2548
  */
2549
- 'shippingAddress': AddressModel | null;
2549
+ 'shippingAddress'?: AddressModel | null;
2550
2550
  /**
2551
2551
  * Part Ship Order
2552
2552
  */
@@ -2716,7 +2716,7 @@ export interface DetailedOrderRequestDTO {
2716
2716
  /**
2717
2717
  * Order Reference
2718
2718
  */
2719
- 'orderReference': string | null;
2719
+ 'orderReference'?: string | null;
2720
2720
  /**
2721
2721
  * Items
2722
2722
  */
@@ -2725,11 +2725,11 @@ export interface DetailedOrderRequestDTO {
2725
2725
  /**
2726
2726
  * Provisioning URL
2727
2727
  */
2728
- 'provisioningUrl': string | null;
2728
+ 'provisioningUrl'?: string | null;
2729
2729
  /**
2730
2730
  * Shipping Address
2731
2731
  */
2732
- 'shippingAddress': AddressModel | null;
2732
+ 'shippingAddress'?: AddressModel | null;
2733
2733
  /**
2734
2734
  * Part Ship Order
2735
2735
  */
@@ -2750,7 +2750,7 @@ export interface DivertRequestModel {
2750
2750
  /**
2751
2751
  * Destination
2752
2752
  */
2753
- 'destination': string | null;
2753
+ 'destination'?: string | null;
2754
2754
  }
2755
2755
  /**
2756
2756
  * Divert
@@ -2763,7 +2763,7 @@ export interface DivertResponseModel {
2763
2763
  /**
2764
2764
  * Divert Destination
2765
2765
  */
2766
- 'destination': string | null;
2766
+ 'destination'?: string | null;
2767
2767
  /**
2768
2768
  * Divert Status
2769
2769
  */
@@ -2797,7 +2797,7 @@ export interface EdTechProClientEntity {
2797
2797
  /**
2798
2798
  * Client API Key
2799
2799
  */
2800
- 'apiKey': string | null;
2800
+ 'apiKey'?: string | null;
2801
2801
  }
2802
2802
  /**
2803
2803
  * EdTechPro School
@@ -2826,7 +2826,7 @@ export interface EdTechProSchoolModel {
2826
2826
  /**
2827
2827
  * Order Reference
2828
2828
  */
2829
- 'orderReference': string | null;
2829
+ 'orderReference'?: string | null;
2830
2830
  /**
2831
2831
  * Creation Date
2832
2832
  */
@@ -2854,7 +2854,7 @@ export interface EdTechProSchoolModel {
2854
2854
  /**
2855
2855
  * API Key
2856
2856
  */
2857
- 'apiKey': string | null;
2857
+ 'apiKey'?: string | null;
2858
2858
  }
2859
2859
  /**
2860
2860
  * EdTechPro Schools
@@ -3130,7 +3130,7 @@ export interface FreshdeskTicketEntity {
3130
3130
  /**
3131
3131
  * status
3132
3132
  */
3133
- 'statusId': number | null;
3133
+ 'statusId'?: number | null;
3134
3134
  /**
3135
3135
  * lastUpdated
3136
3136
  */
@@ -3214,7 +3214,7 @@ export interface GraphDTO {
3214
3214
  /**
3215
3215
  * Currency
3216
3216
  */
3217
- 'currency': GraphDTOCurrencyEnum | null;
3217
+ 'currency'?: GraphDTOCurrencyEnum | null;
3218
3218
  /**
3219
3219
  * Locale
3220
3220
  */
@@ -3354,33 +3354,33 @@ export interface InstallationDetailsDTO {
3354
3354
  /**
3355
3355
  * PBX IP Address
3356
3356
  */
3357
- 'ipAddress': string | null;
3357
+ 'ipAddress'?: string | null;
3358
3358
  /**
3359
3359
  * PBX Failover IP Address
3360
3360
  */
3361
- 'failoverIpAddress': string | null;
3361
+ 'failoverIpAddress'?: string | null;
3362
3362
  /**
3363
3363
  * Instance ID
3364
3364
  */
3365
- 'instanceId': string | null;
3365
+ 'instanceId'?: string | null;
3366
3366
  /**
3367
3367
  * Project ID
3368
3368
  */
3369
- 'project': string | null;
3369
+ 'project'?: string | null;
3370
3370
  'sshKey': GenericFileModel;
3371
3371
  /**
3372
3372
  * Root Password
3373
3373
  */
3374
- 'osPassword': string | null;
3374
+ 'osPassword'?: string | null;
3375
3375
  'systemOwner': TcxUsersEntity;
3376
3376
  /**
3377
3377
  * Admin Email
3378
3378
  */
3379
- 'email': string | null;
3379
+ 'email'?: string | null;
3380
3380
  /**
3381
3381
  * 3CX Console URL
3382
3382
  */
3383
- 'url': string | null;
3383
+ 'url'?: string | null;
3384
3384
  'backup': RemoteStorageDTO;
3385
3385
  }
3386
3386
  /**
@@ -3804,7 +3804,7 @@ export interface ItemDiscountEntity {
3804
3804
  /**
3805
3805
  * type
3806
3806
  */
3807
- 'type': ItemDiscountEntityTypeEnum | null;
3807
+ 'type'?: ItemDiscountEntityTypeEnum | null;
3808
3808
  /**
3809
3809
  * description
3810
3810
  */
@@ -3911,7 +3911,7 @@ export interface ItemEntity {
3911
3911
  /**
3912
3912
  * 3CX Sales Code
3913
3913
  */
3914
- 'tcxSalesCode': string | null;
3914
+ 'tcxSalesCode'?: string | null;
3915
3915
  }
3916
3916
  /**
3917
3917
  * RMA Item Status Request Model
@@ -4085,43 +4085,43 @@ export interface NumberPortDTO {
4085
4085
  /**
4086
4086
  * Company Name
4087
4087
  */
4088
- 'companyName': string | null;
4088
+ 'companyName'?: string | null;
4089
4089
  /**
4090
4090
  * Address Line 1
4091
4091
  */
4092
- 'addressLine1': string | null;
4092
+ 'addressLine1'?: string | null;
4093
4093
  /**
4094
4094
  * Address Line 2
4095
4095
  */
4096
- 'addressLine2': string | null;
4096
+ 'addressLine2'?: string | null;
4097
4097
  /**
4098
4098
  * City
4099
4099
  */
4100
- 'city': string | null;
4100
+ 'city'?: string | null;
4101
4101
  /**
4102
4102
  * Post Code
4103
4103
  */
4104
- 'postCode': string | null;
4104
+ 'postCode'?: string | null;
4105
4105
  /**
4106
4106
  * Trunk ID
4107
4107
  */
4108
- 'trunkId': number | null;
4108
+ 'trunkId'?: number | null;
4109
4109
  /**
4110
4110
  * Starter Bundle ID
4111
4111
  */
4112
- 'tenantId': string | null;
4112
+ 'tenantId'?: string | null;
4113
4113
  /**
4114
4114
  * Requested Port Date
4115
4115
  */
4116
- 'requestedPortDate': string | null;
4116
+ 'requestedPortDate'?: string | null;
4117
4117
  /**
4118
4118
  * Port Date ASAP
4119
4119
  */
4120
- 'asap': boolean | null;
4120
+ 'asap'?: boolean | null;
4121
4121
  /**
4122
4122
  * Comment
4123
4123
  */
4124
- 'comment': string | null;
4124
+ 'comment'?: string | null;
4125
4125
  /**
4126
4126
  * Number Port ID
4127
4127
  */
@@ -4153,7 +4153,7 @@ export interface NumberPortDTO {
4153
4153
  /**
4154
4154
  * Ticket ID
4155
4155
  */
4156
- 'ticketId': number | null;
4156
+ 'ticketId'?: number | null;
4157
4157
  }
4158
4158
  /**
4159
4159
  * Number Port Note DTO
@@ -4187,19 +4187,19 @@ export interface NumberPortRangeDTO {
4187
4187
  /**
4188
4188
  * Range Start Number
4189
4189
  */
4190
- 'rangeStart': string | null;
4190
+ 'rangeStart'?: string | null;
4191
4191
  /**
4192
4192
  * Range End Number
4193
4193
  */
4194
- 'rangeEnd': string | null;
4194
+ 'rangeEnd'?: string | null;
4195
4195
  /**
4196
4196
  * Losing Communications Provider
4197
4197
  */
4198
- 'lcp': string | null;
4198
+ 'lcp'?: string | null;
4199
4199
  /**
4200
4200
  * Range Post Code
4201
4201
  */
4202
- 'postCode': string | null;
4202
+ 'postCode'?: string | null;
4203
4203
  /**
4204
4204
  * Number Port Range ID
4205
4205
  */
@@ -4211,7 +4211,7 @@ export interface NumberPortRangeDTO {
4211
4211
  /**
4212
4212
  * Range Holder
4213
4213
  */
4214
- 'rangeHolder': string | null;
4214
+ 'rangeHolder'?: string | null;
4215
4215
  }
4216
4216
  /**
4217
4217
  * NumberPortRangeDTO
@@ -4220,19 +4220,19 @@ export interface NumberPortRangeRequestDTO {
4220
4220
  /**
4221
4221
  * Range Start Number
4222
4222
  */
4223
- 'rangeStart': string | null;
4223
+ 'rangeStart'?: string | null;
4224
4224
  /**
4225
4225
  * Range End Number
4226
4226
  */
4227
- 'rangeEnd': string | null;
4227
+ 'rangeEnd'?: string | null;
4228
4228
  /**
4229
4229
  * Losing Communications Provider
4230
4230
  */
4231
- 'lcp': string | null;
4231
+ 'lcp'?: string | null;
4232
4232
  /**
4233
4233
  * Range Post Code
4234
4234
  */
4235
- 'postCode': string | null;
4235
+ 'postCode'?: string | null;
4236
4236
  }
4237
4237
  /**
4238
4238
  * Number Ports
@@ -4287,23 +4287,23 @@ export interface OpayoRedirectDTO {
4287
4287
  /**
4288
4288
  * acsUrl
4289
4289
  */
4290
- 'acsUrl': string | null;
4290
+ 'acsUrl'?: string | null;
4291
4291
  /**
4292
4292
  * paReq
4293
4293
  */
4294
- 'paReq': string | null;
4294
+ 'paReq'?: string | null;
4295
4295
  /**
4296
4296
  * Transaction ID
4297
4297
  */
4298
- 'transactionId': string | null;
4298
+ 'transactionId'?: string | null;
4299
4299
  /**
4300
4300
  * dsTranId
4301
4301
  */
4302
- 'dsTranId': string | null;
4302
+ 'dsTranId'?: string | null;
4303
4303
  /**
4304
4304
  * cReq
4305
4305
  */
4306
- 'cReq': string | null;
4306
+ 'cReq'?: string | null;
4307
4307
  }
4308
4308
  /**
4309
4309
  * Legacy Portal Order
@@ -4327,7 +4327,7 @@ export interface OrderDetailsDTO {
4327
4327
  /**
4328
4328
  * Reference
4329
4329
  */
4330
- 'reference': string | null;
4330
+ 'reference'?: string | null;
4331
4331
  /**
4332
4332
  * Invoice Number
4333
4333
  */
@@ -4335,7 +4335,7 @@ export interface OrderDetailsDTO {
4335
4335
  /**
4336
4336
  * Invoice ID
4337
4337
  */
4338
- 'invoiceId': string | null;
4338
+ 'invoiceId'?: string | null;
4339
4339
  /**
4340
4340
  * Date Time
4341
4341
  */
@@ -4353,7 +4353,7 @@ export interface OrderDetailsDTO {
4353
4353
  */
4354
4354
  'quote': boolean;
4355
4355
  'customer': AccountSummaryDTO;
4356
- 'shippingAddress': AddressModel | null;
4356
+ 'shippingAddress'?: AddressModel | null;
4357
4357
  /**
4358
4358
  * Items
4359
4359
  */
@@ -4365,12 +4365,12 @@ export interface OrderDetailsDTO {
4365
4365
  /**
4366
4366
  * Fulfillable
4367
4367
  */
4368
- 'fulfillable': boolean | null;
4368
+ 'fulfillable'?: boolean | null;
4369
4369
  /**
4370
4370
  * Provisioning URL
4371
4371
  */
4372
- 'provisioningUrl': string | null;
4373
- 'shippingService': ShippingServiceDTO | null;
4372
+ 'provisioningUrl'?: string | null;
4373
+ 'shippingService'?: ShippingServiceDTO | null;
4374
4374
  /**
4375
4375
  * Readonly
4376
4376
  */
@@ -4424,7 +4424,7 @@ export interface OrderEntity {
4424
4424
  /**
4425
4425
  * invoiceId
4426
4426
  */
4427
- 'invoiceId': string | null;
4427
+ 'invoiceId'?: string | null;
4428
4428
  /**
4429
4429
  * creditAccountId
4430
4430
  */
@@ -4636,7 +4636,7 @@ export interface OrderEntity {
4636
4636
  /**
4637
4637
  * fulfillable
4638
4638
  */
4639
- 'fulfillable': boolean | null;
4639
+ 'fulfillable'?: boolean | null;
4640
4640
  }
4641
4641
  /**
4642
4642
  * Order Item Details
@@ -4726,23 +4726,23 @@ export interface OrderRequestModel {
4726
4726
  /**
4727
4727
  * Client/Trust ID
4728
4728
  */
4729
- 'clientId': number | null;
4729
+ 'clientId'?: number | null;
4730
4730
  /**
4731
4731
  * Client/Trust Name
4732
4732
  */
4733
- 'clientName': string | null;
4733
+ 'clientName'?: string | null;
4734
4734
  /**
4735
4735
  * Client/Trust Contact Name
4736
4736
  */
4737
- 'clientContactName': string | null;
4737
+ 'clientContactName'?: string | null;
4738
4738
  /**
4739
4739
  * Client/Trust Contact Email
4740
4740
  */
4741
- 'clientContactEmail': string | null;
4741
+ 'clientContactEmail'?: string | null;
4742
4742
  /**
4743
4743
  * Agreed to Terms and Conditions
4744
4744
  */
4745
- 'terms': boolean | null;
4745
+ 'terms'?: boolean | null;
4746
4746
  /**
4747
4747
  * School Name
4748
4748
  */
@@ -4770,11 +4770,11 @@ export interface OrderRequestModel {
4770
4770
  /**
4771
4771
  * InstanceId
4772
4772
  */
4773
- 'instanceId': string | null;
4773
+ 'instanceId'?: string | null;
4774
4774
  /**
4775
4775
  * Order Reference
4776
4776
  */
4777
- 'orderReference': string | null;
4777
+ 'orderReference'?: string | null;
4778
4778
  }
4779
4779
  export declare const OrderRequestModelLicenceTypeEnum: {
4780
4780
  readonly Lite: "lite";
@@ -4793,15 +4793,15 @@ export interface OrderResponseDTO {
4793
4793
  /**
4794
4794
  * URL
4795
4795
  */
4796
- 'url': string | null;
4796
+ 'url'?: string | null;
4797
4797
  /**
4798
4798
  * Order ID
4799
4799
  */
4800
- 'orderID': string | null;
4800
+ 'orderID'?: string | null;
4801
4801
  /**
4802
4802
  * Unique ID
4803
4803
  */
4804
- 'uniqueID': string | null;
4804
+ 'uniqueID'?: string | null;
4805
4805
  }
4806
4806
  /**
4807
4807
  * Sales Orders
@@ -4835,7 +4835,7 @@ export interface OrderSummaryDTO {
4835
4835
  /**
4836
4836
  * Reference
4837
4837
  */
4838
- 'reference': string | null;
4838
+ 'reference'?: string | null;
4839
4839
  /**
4840
4840
  * Invoice Number
4841
4841
  */
@@ -4843,7 +4843,7 @@ export interface OrderSummaryDTO {
4843
4843
  /**
4844
4844
  * Invoice ID
4845
4845
  */
4846
- 'invoiceId': string | null;
4846
+ 'invoiceId'?: string | null;
4847
4847
  /**
4848
4848
  * Date Time
4849
4849
  */
@@ -4861,7 +4861,7 @@ export interface OrderSummaryDTO {
4861
4861
  */
4862
4862
  'quote': boolean;
4863
4863
  'customer': AccountSummaryDTO;
4864
- 'shippingAddress': AddressModel | null;
4864
+ 'shippingAddress'?: AddressModel | null;
4865
4865
  /**
4866
4866
  * Items
4867
4867
  */
@@ -4873,12 +4873,12 @@ export interface OrderSummaryDTO {
4873
4873
  /**
4874
4874
  * Fulfillable
4875
4875
  */
4876
- 'fulfillable': boolean | null;
4876
+ 'fulfillable'?: boolean | null;
4877
4877
  /**
4878
4878
  * Provisioning URL
4879
4879
  */
4880
- 'provisioningUrl': string | null;
4881
- 'shippingService': ShippingServiceDTO | null;
4880
+ 'provisioningUrl'?: string | null;
4881
+ 'shippingService'?: ShippingServiceDTO | null;
4882
4882
  /**
4883
4883
  * Readonly
4884
4884
  */
@@ -4919,7 +4919,7 @@ export interface OrderTotalModel {
4919
4919
  /**
4920
4920
  * Delivery
4921
4921
  */
4922
- 'delivery': number | null;
4922
+ 'delivery'?: number | null;
4923
4923
  }
4924
4924
  export declare const OrderTotalModelCurrencyEnum: {
4925
4925
  readonly Eur: "EUR";
@@ -5112,7 +5112,7 @@ export interface PartnerDTO {
5112
5112
  /**
5113
5113
  * 3CX Partner ID
5114
5114
  */
5115
- 'partnerId': string | null;
5115
+ 'partnerId'?: string | null;
5116
5116
  /**
5117
5117
  * 3CX Partner Company Name
5118
5118
  */
@@ -5156,7 +5156,7 @@ export interface PartnerDTO {
5156
5156
  /**
5157
5157
  * Customer
5158
5158
  */
5159
- 'customer': AccountSummaryDTO | null;
5159
+ 'customer'?: AccountSummaryDTO | null;
5160
5160
  }
5161
5161
  /**
5162
5162
  * Password Sender Request
@@ -5169,19 +5169,19 @@ export interface PasswordSenderDTO {
5169
5169
  /**
5170
5170
  * Password
5171
5171
  */
5172
- 'password': string | null;
5172
+ 'password'?: string | null;
5173
5173
  /**
5174
5174
  * Expiry Interval
5175
5175
  */
5176
- 'expiryInterval': number | null;
5176
+ 'expiryInterval'?: number | null;
5177
5177
  /**
5178
5178
  * Interval Type
5179
5179
  */
5180
- 'intervalType': PasswordSenderDTOIntervalTypeEnum | null;
5180
+ 'intervalType'?: PasswordSenderDTOIntervalTypeEnum | null;
5181
5181
  /**
5182
5182
  * Expiry
5183
5183
  */
5184
- 'expiry': string | null;
5184
+ 'expiry'?: string | null;
5185
5185
  /**
5186
5186
  * Recipient
5187
5187
  */
@@ -5189,15 +5189,15 @@ export interface PasswordSenderDTO {
5189
5189
  /**
5190
5190
  * URL
5191
5191
  */
5192
- 'url': string | null;
5192
+ 'url'?: string | null;
5193
5193
  /**
5194
5194
  * Description
5195
5195
  */
5196
- 'description': string | null;
5196
+ 'description'?: string | null;
5197
5197
  /**
5198
5198
  * Password URL
5199
5199
  */
5200
- 'passwordUrl': string | null;
5200
+ 'passwordUrl'?: string | null;
5201
5201
  }
5202
5202
  export declare const PasswordSenderDTOIntervalTypeEnum: {
5203
5203
  readonly Minute: "Minute";
@@ -5657,7 +5657,7 @@ export interface PriceListItemModel {
5657
5657
  /**
5658
5658
  * SKU
5659
5659
  */
5660
- 'sku': string | null;
5660
+ 'sku'?: string | null;
5661
5661
  /**
5662
5662
  * Price
5663
5663
  */
@@ -5665,11 +5665,11 @@ export interface PriceListItemModel {
5665
5665
  /**
5666
5666
  * RRP
5667
5667
  */
5668
- 'rrp': number | null;
5668
+ 'rrp'?: number | null;
5669
5669
  /**
5670
5670
  * Stock
5671
5671
  */
5672
- 'stock': number | null;
5672
+ 'stock'?: number | null;
5673
5673
  }
5674
5674
  /**
5675
5675
  * PrintersEntity
@@ -5826,7 +5826,7 @@ export interface ProductPriceListItemModel {
5826
5826
  /**
5827
5827
  * SKU
5828
5828
  */
5829
- 'sku': string | null;
5829
+ 'sku'?: string | null;
5830
5830
  /**
5831
5831
  * Price
5832
5832
  */
@@ -5834,11 +5834,11 @@ export interface ProductPriceListItemModel {
5834
5834
  /**
5835
5835
  * RRP
5836
5836
  */
5837
- 'rrp': number | null;
5837
+ 'rrp'?: number | null;
5838
5838
  /**
5839
5839
  * Stock
5840
5840
  */
5841
- 'stock': number | null;
5841
+ 'stock'?: number | null;
5842
5842
  /**
5843
5843
  * Brand
5844
5844
  */
@@ -5893,7 +5893,7 @@ export interface ProductSerialInfoModel {
5893
5893
  /**
5894
5894
  * Serial Prefix
5895
5895
  */
5896
- 'serial_prefixes': Array<string> | null;
5896
+ 'serial_prefixes'?: Array<string> | null;
5897
5897
  }
5898
5898
  /**
5899
5899
  * Product Summary
@@ -6037,15 +6037,15 @@ export interface ProspectDTO {
6037
6037
  /**
6038
6038
  * Telephone
6039
6039
  */
6040
- 'telephone': string | null;
6040
+ 'telephone'?: string | null;
6041
6041
  /**
6042
6042
  * Last Order Date
6043
6043
  */
6044
- 'lastOrderDate': string | null;
6044
+ 'lastOrderDate'?: string | null;
6045
6045
  /**
6046
6046
  * Call Back Date
6047
6047
  */
6048
- 'callbackDate': string | null;
6048
+ 'callbackDate'?: string | null;
6049
6049
  /**
6050
6050
  * Xero ID
6051
6051
  */
@@ -6267,7 +6267,7 @@ export interface RecordingBackupAzureModel {
6267
6267
  /**
6268
6268
  * Recordings Path
6269
6269
  */
6270
- 'recordings_path': string | null;
6270
+ 'recordings_path'?: string | null;
6271
6271
  }
6272
6272
  /**
6273
6273
  * Recordings Backup Info
@@ -6276,11 +6276,11 @@ export interface RecordingsBackupInfoDTO {
6276
6276
  /**
6277
6277
  * Azure Backup Storage
6278
6278
  */
6279
- 'backup': RecordingBackupAzureModel | null;
6279
+ 'backup'?: RecordingBackupAzureModel | null;
6280
6280
  /**
6281
6281
  * 3CX Remote Storage
6282
6282
  */
6283
- 'storage': TcxRemoteStorageModel | null;
6283
+ 'storage'?: TcxRemoteStorageModel | null;
6284
6284
  }
6285
6285
  export interface RecurringCharge {
6286
6286
  'createdDate'?: string;
@@ -6331,35 +6331,35 @@ export interface ReportRequestDTO {
6331
6331
  /**
6332
6332
  * Start
6333
6333
  */
6334
- 'start': string | null;
6334
+ 'start'?: string | null;
6335
6335
  /**
6336
6336
  * End
6337
6337
  */
6338
- 'end': string | null;
6338
+ 'end'?: string | null;
6339
6339
  /**
6340
6340
  * Month
6341
6341
  */
6342
- 'month': number | null;
6342
+ 'month'?: number | null;
6343
6343
  /**
6344
6344
  * Year
6345
6345
  */
6346
- 'year': number | null;
6346
+ 'year'?: number | null;
6347
6347
  /**
6348
6348
  * SKU
6349
6349
  */
6350
- 'sku': string | null;
6350
+ 'sku'?: string | null;
6351
6351
  /**
6352
6352
  * Price
6353
6353
  */
6354
- 'price': number | null;
6354
+ 'price'?: number | null;
6355
6355
  /**
6356
6356
  * Recipients
6357
6357
  */
6358
- 'recipients': Array<string> | null;
6358
+ 'recipients'?: Array<string> | null;
6359
6359
  /**
6360
6360
  * Graph Type
6361
6361
  */
6362
- 'graphType': ReportRequestDTOGraphTypeEnum | null;
6362
+ 'graphType'?: ReportRequestDTOGraphTypeEnum | null;
6363
6363
  }
6364
6364
  export declare const ReportRequestDTOReportEnum: {
6365
6365
  readonly _1: "1";
@@ -6548,11 +6548,11 @@ export interface RmaItemDTO {
6548
6548
  /**
6549
6549
  * RMA Item MAC Address
6550
6550
  */
6551
- 'macAddress': string | null;
6551
+ 'macAddress'?: string | null;
6552
6552
  /**
6553
6553
  * RMA Item Serial Number
6554
6554
  */
6555
- 'serialNumber': string | null;
6555
+ 'serialNumber'?: string | null;
6556
6556
  /**
6557
6557
  * RMA Item Received Status
6558
6558
  */
@@ -6583,11 +6583,11 @@ export interface RmaItemRequestDTO {
6583
6583
  /**
6584
6584
  * RMA Item MAC Address
6585
6585
  */
6586
- 'macAddress': string | null;
6586
+ 'macAddress'?: string | null;
6587
6587
  /**
6588
6588
  * RMA Item Serial Number
6589
6589
  */
6590
- 'serialNumber': string | null;
6590
+ 'serialNumber'?: string | null;
6591
6591
  }
6592
6592
  /**
6593
6593
  * RMA Order
@@ -6856,35 +6856,35 @@ export interface SbcDTO {
6856
6856
  /**
6857
6857
  * No Config
6858
6858
  */
6859
- 'noConfig': boolean | null;
6859
+ 'noConfig'?: boolean | null;
6860
6860
  /**
6861
6861
  * DHCP
6862
6862
  */
6863
- 'dhcp': boolean | null;
6863
+ 'dhcp'?: boolean | null;
6864
6864
  /**
6865
6865
  * 3CX URL
6866
6866
  */
6867
- 'url': boolean | null;
6867
+ 'url'?: boolean | null;
6868
6868
  /**
6869
6869
  * 3CX SBC Auth Key
6870
6870
  */
6871
- 'authKey': boolean | null;
6871
+ 'authKey'?: boolean | null;
6872
6872
  /**
6873
6873
  * LAN IP Address
6874
6874
  */
6875
- 'ipAddress': boolean | null;
6875
+ 'ipAddress'?: boolean | null;
6876
6876
  /**
6877
6877
  * LAN Subnet Mask
6878
6878
  */
6879
- 'subnetMask': boolean | null;
6879
+ 'subnetMask'?: boolean | null;
6880
6880
  /**
6881
6881
  * LAN Default Gateway
6882
6882
  */
6883
- 'defaultGateway': boolean | null;
6883
+ 'defaultGateway'?: boolean | null;
6884
6884
  /**
6885
6885
  * DNS
6886
6886
  */
6887
- 'dns': boolean | null;
6887
+ 'dns'?: boolean | null;
6888
6888
  }
6889
6889
  /**
6890
6890
  * Item MAC & Serial Details
@@ -6893,15 +6893,15 @@ export interface ScannedItemModel {
6893
6893
  /**
6894
6894
  * Title
6895
6895
  */
6896
- 'title': string | null;
6896
+ 'title'?: string | null;
6897
6897
  /**
6898
6898
  * SKU
6899
6899
  */
6900
- 'sku': string | null;
6900
+ 'sku'?: string | null;
6901
6901
  /**
6902
6902
  * 3CX Label
6903
6903
  */
6904
- 'tcxLabel': string | null;
6904
+ 'tcxLabel'?: string | null;
6905
6905
  /**
6906
6906
  * Serial Numbers
6907
6907
  */
@@ -6909,7 +6909,7 @@ export interface ScannedItemModel {
6909
6909
  /**
6910
6910
  * MAC Address
6911
6911
  */
6912
- 'macAddress': string | null;
6912
+ 'macAddress'?: string | null;
6913
6913
  }
6914
6914
  /**
6915
6915
  * OAuth2 Scope
@@ -6986,7 +6986,7 @@ export interface SeriesDTO {
6986
6986
  /**
6987
6987
  * Stack
6988
6988
  */
6989
- 'stack': string | null;
6989
+ 'stack'?: string | null;
6990
6990
  /**
6991
6991
  * Data
6992
6992
  */
@@ -7117,27 +7117,27 @@ export interface ShipmentDTO {
7117
7117
  /**
7118
7118
  * ID
7119
7119
  */
7120
- 'id': number | null;
7120
+ 'id'?: number | null;
7121
7121
  /**
7122
7122
  * Batch ID
7123
7123
  */
7124
- 'batchId': number | null;
7124
+ 'batchId'?: number | null;
7125
7125
  /**
7126
7126
  * Courier
7127
7127
  */
7128
- 'courier': ShipmentDTOCourierEnum | null;
7128
+ 'courier'?: ShipmentDTOCourierEnum | null;
7129
7129
  /**
7130
7130
  * Courier Reference
7131
7131
  */
7132
- 'reference': string | null;
7132
+ 'reference'?: string | null;
7133
7133
  /**
7134
7134
  * Courier Tracking
7135
7135
  */
7136
- 'tracking': string | null;
7136
+ 'tracking'?: string | null;
7137
7137
  /**
7138
7138
  * Courier Tracking URL
7139
7139
  */
7140
- 'trackingUrl': string | null;
7140
+ 'trackingUrl'?: string | null;
7141
7141
  /**
7142
7142
  * Date Time
7143
7143
  */
@@ -7154,7 +7154,7 @@ export interface ShipmentDTO {
7154
7154
  /**
7155
7155
  * Boxes Shipped
7156
7156
  */
7157
- 'boxes': number | null;
7157
+ 'boxes'?: number | null;
7158
7158
  }
7159
7159
  export declare const ShipmentDTOCourierEnum: {
7160
7160
  readonly Dpd: "DPD";
@@ -7343,7 +7343,7 @@ export interface ShipmentRequestDTO {
7343
7343
  /**
7344
7344
  * Address
7345
7345
  */
7346
- 'address': AddressModel | null;
7346
+ 'address'?: AddressModel | null;
7347
7347
  /**
7348
7348
  * Scanned Lines
7349
7349
  */
@@ -7355,7 +7355,7 @@ export interface ShipmentRequestDTO {
7355
7355
  /**
7356
7356
  * Ship Date
7357
7357
  */
7358
- 'shipDate': string | null;
7358
+ 'shipDate'?: string | null;
7359
7359
  /**
7360
7360
  * Items
7361
7361
  */
@@ -7375,35 +7375,35 @@ export interface ShippingAddressDTO {
7375
7375
  /**
7376
7376
  * Ship Name
7377
7377
  */
7378
- 'shipName': string | null;
7378
+ 'shipName'?: string | null;
7379
7379
  /**
7380
7380
  * Ship Company
7381
7381
  */
7382
- 'shipCompany': string | null;
7382
+ 'shipCompany'?: string | null;
7383
7383
  /**
7384
7384
  * Ship Address Line 1
7385
7385
  */
7386
- 'shipAddress1': string | null;
7386
+ 'shipAddress1'?: string | null;
7387
7387
  /**
7388
7388
  * Ship Address Line 2
7389
7389
  */
7390
- 'shipAddress2': string | null;
7390
+ 'shipAddress2'?: string | null;
7391
7391
  /**
7392
7392
  * Ship City
7393
7393
  */
7394
- 'shipCity': string | null;
7394
+ 'shipCity'?: string | null;
7395
7395
  /**
7396
7396
  * Ship Region
7397
7397
  */
7398
- 'shipRegion': string | null;
7398
+ 'shipRegion'?: string | null;
7399
7399
  /**
7400
7400
  * Ship Post Code
7401
7401
  */
7402
- 'shipPostCode': string | null;
7402
+ 'shipPostCode'?: string | null;
7403
7403
  /**
7404
7404
  * Ship ISO
7405
7405
  */
7406
- 'shipIso': string | null;
7406
+ 'shipIso'?: string | null;
7407
7407
  }
7408
7408
  export interface ShippingConsignmentModel {
7409
7409
  'service': ShippingServiceModel;
@@ -7453,8 +7453,8 @@ export interface ShippingRequestDTO {
7453
7453
  /**
7454
7454
  * Printer
7455
7455
  */
7456
- 'printer': ShippingRequestDTOPrinterEnum | null;
7457
- 'shipment': ShipmentRequestDTO | null;
7456
+ 'printer'?: ShippingRequestDTOPrinterEnum | null;
7457
+ 'shipment'?: ShipmentRequestDTO | null;
7458
7458
  }
7459
7459
  export declare const ShippingRequestDTOCourierEnum: {
7460
7460
  readonly Dpd: "DPD";
@@ -7512,11 +7512,11 @@ export interface ShippingServiceModel {
7512
7512
  /**
7513
7513
  * Label
7514
7514
  */
7515
- 'label': string | null;
7515
+ 'label'?: string | null;
7516
7516
  /**
7517
7517
  * Price
7518
7518
  */
7519
- 'price': number | null;
7519
+ 'price'?: number | null;
7520
7520
  }
7521
7521
  export declare const ShippingServiceModelCourierEnum: {
7522
7522
  readonly Dpd: "DPD";
@@ -7717,7 +7717,7 @@ export interface SmsAccountEntity {
7717
7717
  /**
7718
7718
  * trunkId
7719
7719
  */
7720
- 'trunkId': number | null;
7720
+ 'trunkId'?: number | null;
7721
7721
  /**
7722
7722
  * name
7723
7723
  */
@@ -7818,7 +7818,7 @@ export interface SmsPhoneNumberModel {
7818
7818
  /**
7819
7819
  * status
7820
7820
  */
7821
- 'status': SmsPhoneNumberModelStatusEnum | null;
7821
+ 'status'?: SmsPhoneNumberModelStatusEnum | null;
7822
7822
  }
7823
7823
  export declare const SmsPhoneNumberModelStatusEnum: {
7824
7824
  readonly Queued: "queued";
@@ -8169,7 +8169,7 @@ export interface StockOrderModel {
8169
8169
  /**
8170
8170
  * Delivery Method
8171
8171
  */
8172
- 'deliveryMethod': StockOrderModelDeliveryMethodEnum | null;
8172
+ 'deliveryMethod'?: StockOrderModelDeliveryMethodEnum | null;
8173
8173
  /**
8174
8174
  * Delivery Cost
8175
8175
  */
@@ -8425,7 +8425,7 @@ export interface StockProductPriceModel {
8425
8425
  /**
8426
8426
  * Price (£)
8427
8427
  */
8428
- 'price': number | null;
8428
+ 'price'?: number | null;
8429
8429
  }
8430
8430
  /**
8431
8431
  * Stock Products
@@ -8830,7 +8830,7 @@ export interface SupportTicketModel {
8830
8830
  /**
8831
8831
  * Support email address
8832
8832
  */
8833
- 'supportEmail': string | null;
8833
+ 'supportEmail'?: string | null;
8834
8834
  /**
8835
8835
  * Recipient emails
8836
8836
  */
@@ -9186,15 +9186,15 @@ export interface TcxInstallationModel {
9186
9186
  /**
9187
9187
  * 3CX Licence Key
9188
9188
  */
9189
- 'licenceKey': string | null;
9189
+ 'licenceKey'?: string | null;
9190
9190
  /**
9191
9191
  * End User
9192
9192
  */
9193
- 'endUser': string | null;
9193
+ 'endUser'?: string | null;
9194
9194
  /**
9195
9195
  * Reseller
9196
9196
  */
9197
- 'reseller': string | null;
9197
+ 'reseller'?: string | null;
9198
9198
  /**
9199
9199
  * Company Name
9200
9200
  */
@@ -9210,7 +9210,7 @@ export interface TcxInstallationModel {
9210
9210
  /**
9211
9211
  * Install Type
9212
9212
  */
9213
- 'installType': string | null;
9213
+ 'installType'?: string | null;
9214
9214
  /**
9215
9215
  * Config Type
9216
9216
  */
@@ -9218,27 +9218,27 @@ export interface TcxInstallationModel {
9218
9218
  /**
9219
9219
  * FQDN
9220
9220
  */
9221
- 'fqdn': string | null;
9221
+ 'fqdn'?: string | null;
9222
9222
  /**
9223
9223
  * PBX IP Address
9224
9224
  */
9225
- 'ipAddress': string | null;
9225
+ 'ipAddress'?: string | null;
9226
9226
  /**
9227
9227
  * Failover IP Address
9228
9228
  */
9229
- 'reservedIpAddress': string | null;
9229
+ 'reservedIpAddress'?: string | null;
9230
9230
  /**
9231
9231
  * 3CX Console URL
9232
9232
  */
9233
- 'tcxUrl': string | null;
9233
+ 'tcxUrl'?: string | null;
9234
9234
  /**
9235
9235
  * Wizard URL
9236
9236
  */
9237
- 'wizardUrl': string | null;
9237
+ 'wizardUrl'?: string | null;
9238
9238
  /**
9239
9239
  * 3CX Credentials URL
9240
9240
  */
9241
- 'credentialsUrl': string | null;
9241
+ 'credentialsUrl'?: string | null;
9242
9242
  /**
9243
9243
  * Hosting Price
9244
9244
  */
@@ -9278,15 +9278,15 @@ export interface TcxInstallationModel {
9278
9278
  /**
9279
9279
  * 3CX Software Version
9280
9280
  */
9281
- 'version': string | null;
9281
+ 'version'?: string | null;
9282
9282
  /**
9283
9283
  * Recordings Disk Size
9284
9284
  */
9285
- 'disk': number | null;
9285
+ 'disk'?: number | null;
9286
9286
  /**
9287
9287
  * Instance Spec
9288
9288
  */
9289
- 'flavour': string | null;
9289
+ 'flavour'?: string | null;
9290
9290
  /**
9291
9291
  * Auto Failover
9292
9292
  */
@@ -9294,11 +9294,11 @@ export interface TcxInstallationModel {
9294
9294
  /**
9295
9295
  * Extensions in Use
9296
9296
  */
9297
- 'extensions': number | null;
9297
+ 'extensions'?: number | null;
9298
9298
  /**
9299
9299
  * Max Allowed Extensions
9300
9300
  */
9301
- 'maxExtensions': number | null;
9301
+ 'maxExtensions'?: number | null;
9302
9302
  }
9303
9303
  /**
9304
9304
  * 3CX Installations
@@ -9332,7 +9332,7 @@ export interface TcxKeySummaryDTO {
9332
9332
  /**
9333
9333
  * End User
9334
9334
  */
9335
- 'endUser': string | null;
9335
+ 'endUser'?: string | null;
9336
9336
  /**
9337
9337
  * Simultaneous Calls
9338
9338
  */
@@ -9344,7 +9344,7 @@ export interface TcxKeySummaryDTO {
9344
9344
  /**
9345
9345
  * Expiry Date
9346
9346
  */
9347
- 'expiry': string | null;
9347
+ 'expiry'?: string | null;
9348
9348
  }
9349
9349
  /**
9350
9350
  * TcxKeysEntity
@@ -9469,27 +9469,27 @@ export interface TcxMultiTenantModel {
9469
9469
  /**
9470
9470
  * Host Server
9471
9471
  */
9472
- 'server': string | null;
9472
+ 'server'?: string | null;
9473
9473
  /**
9474
9474
  * Tenant Reference
9475
9475
  */
9476
- 'reference': string | null;
9476
+ 'reference'?: string | null;
9477
9477
  /**
9478
9478
  * Tenant Package
9479
9479
  */
9480
- 'package': TcxMultiTenantModelPackageEnum | null;
9480
+ 'package'?: TcxMultiTenantModelPackageEnum | null;
9481
9481
  /**
9482
9482
  * Price Per User
9483
9483
  */
9484
- 'price': number | null;
9484
+ 'price'?: number | null;
9485
9485
  /**
9486
9486
  * Admin Username
9487
9487
  */
9488
- 'username': string | null;
9488
+ 'username'?: string | null;
9489
9489
  /**
9490
9490
  * Admin Password
9491
9491
  */
9492
- 'password': string | null;
9492
+ 'password'?: string | null;
9493
9493
  /**
9494
9494
  * Tenant Name
9495
9495
  */
@@ -9513,7 +9513,7 @@ export interface TcxMultiTenantModel {
9513
9513
  /**
9514
9514
  * Tenant Main Number
9515
9515
  */
9516
- 'mainNumber': string | null;
9516
+ 'mainNumber'?: string | null;
9517
9517
  /**
9518
9518
  * Tenant Numbers
9519
9519
  */
@@ -9734,7 +9734,7 @@ export interface TcxSbcDTO {
9734
9734
  /**
9735
9735
  * ID
9736
9736
  */
9737
- 'id': number | null;
9737
+ 'id'?: number | null;
9738
9738
  /**
9739
9739
  * LAN IP Address
9740
9740
  */
@@ -9926,7 +9926,7 @@ export interface TcxSetupEntity {
9926
9926
  /**
9927
9927
  * Install Type
9928
9928
  */
9929
- 'installType': TcxSetupEntityInstallTypeEnum | null;
9929
+ 'installType'?: TcxSetupEntityInstallTypeEnum | null;
9930
9930
  /**
9931
9931
  * 3CX Install Version
9932
9932
  */
@@ -10190,15 +10190,15 @@ export interface TcxWizardModel {
10190
10190
  * Install Type
10191
10191
  */
10192
10192
  'installType': TcxWizardModelInstallTypeEnum;
10193
- 'backup': TcxBackupModel | null;
10193
+ 'backup'?: TcxBackupModel | null;
10194
10194
  'extensions': Array<TcxExtsEntity>;
10195
10195
  'numbers': Array<TcxNumbersEntity>;
10196
- 'officeHours': TcxOfficeHoursEntity | null;
10196
+ 'officeHours'?: TcxOfficeHoursEntity | null;
10197
10197
  'phones': Array<TcxPhoneModel>;
10198
10198
  'sbcs': Array<TcxSbcModel>;
10199
- 'sipTrunk': TcxSipTrunksEntity | null;
10200
- 'installationStatus': TcxWizardModelInstallationStatusEnum | null;
10201
- 'setup': TcxSetupEntity | null;
10199
+ 'sipTrunk'?: TcxSipTrunksEntity | null;
10200
+ 'installationStatus'?: TcxWizardModelInstallationStatusEnum | null;
10201
+ 'setup'?: TcxSetupEntity | null;
10202
10202
  /**
10203
10203
  * End User Wizard View
10204
10204
  */
@@ -10278,7 +10278,7 @@ export interface TicketSummaryModel {
10278
10278
  /**
10279
10279
  * status
10280
10280
  */
10281
- 'statusId': number | null;
10281
+ 'statusId'?: number | null;
10282
10282
  /**
10283
10283
  * lastUpdated
10284
10284
  */
@@ -10461,11 +10461,11 @@ export interface UserEntity {
10461
10461
  /**
10462
10462
  * primaryHex
10463
10463
  */
10464
- 'primaryHex': number | null;
10464
+ 'primaryHex'?: number | null;
10465
10465
  /**
10466
10466
  * secondaryHex
10467
10467
  */
10468
- 'secondaryHex': number | null;
10468
+ 'secondaryHex'?: number | null;
10469
10469
  }
10470
10470
  /**
10471
10471
  * XeroLogEntity
@@ -16950,60 +16950,60 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
16950
16950
  postAddAdminNote: (id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16951
16951
  /**
16952
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
16963
16953
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
16964
16954
  * @param {File} cloa CLOA (only provide on submission)
16955
+ * @param {string | null} [companyName] Company Name
16956
+ * @param {string | null} [addressLine1] Address Line 1
16957
+ * @param {string | null} [addressLine2] Address Line 2
16958
+ * @param {string | null} [city] City
16959
+ * @param {string | null} [postCode] Post Code
16960
+ * @param {number | null} [trunkId] Trunk ID
16961
+ * @param {string | null} [tenantId] Starter Bundle ID
16962
+ * @param {string | null} [requestedPortDate] Requested Port Date
16963
+ * @param {boolean | null} [asap] Port Date ASAP
16964
+ * @param {string | null} [comment] Comment
16965
16965
  * @param {*} [options] Override http request option.
16966
16966
  * @throws {RequiredError}
16967
16967
  */
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>;
16968
+ 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>;
16969
16969
  /**
16970
16970
  *
16971
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
16982
16972
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
16983
16973
  * @param {File} cloa CLOA (only provide on submission)
16974
+ * @param {string | null} [companyName] Company Name
16975
+ * @param {string | null} [addressLine1] Address Line 1
16976
+ * @param {string | null} [addressLine2] Address Line 2
16977
+ * @param {string | null} [city] City
16978
+ * @param {string | null} [postCode] Post Code
16979
+ * @param {number | null} [trunkId] Trunk ID
16980
+ * @param {string | null} [tenantId] Starter Bundle ID
16981
+ * @param {string | null} [requestedPortDate] Requested Port Date
16982
+ * @param {boolean | null} [asap] Port Date ASAP
16983
+ * @param {string | null} [comment] Comment
16984
16984
  * @param {*} [options] Override http request option.
16985
16985
  * @throws {RequiredError}
16986
16986
  */
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>;
16987
+ 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>;
16988
16988
  /**
16989
16989
  *
16990
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
17001
16991
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17002
16992
  * @param {File} cloa CLOA (only provide on submission)
16993
+ * @param {string | null} [companyName] Company Name
16994
+ * @param {string | null} [addressLine1] Address Line 1
16995
+ * @param {string | null} [addressLine2] Address Line 2
16996
+ * @param {string | null} [city] City
16997
+ * @param {string | null} [postCode] Post Code
16998
+ * @param {number | null} [trunkId] Trunk ID
16999
+ * @param {string | null} [tenantId] Starter Bundle ID
17000
+ * @param {string | null} [requestedPortDate] Requested Port Date
17001
+ * @param {boolean | null} [asap] Port Date ASAP
17002
+ * @param {string | null} [comment] Comment
17003
17003
  * @param {*} [options] Override http request option.
17004
17004
  * @throws {RequiredError}
17005
17005
  */
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>;
17006
+ 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>;
17007
17007
  /**
17008
17008
  *
17009
17009
  * @param {number} id Number Port ID
@@ -17080,60 +17080,60 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
17080
17080
  postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminNumberPortDTO>>;
17081
17081
  /**
17082
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
17093
17083
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17094
17084
  * @param {File} cloa CLOA (only provide on submission)
17085
+ * @param {string | null} [companyName] Company Name
17086
+ * @param {string | null} [addressLine1] Address Line 1
17087
+ * @param {string | null} [addressLine2] Address Line 2
17088
+ * @param {string | null} [city] City
17089
+ * @param {string | null} [postCode] Post Code
17090
+ * @param {number | null} [trunkId] Trunk ID
17091
+ * @param {string | null} [tenantId] Starter Bundle ID
17092
+ * @param {string | null} [requestedPortDate] Requested Port Date
17093
+ * @param {boolean | null} [asap] Port Date ASAP
17094
+ * @param {string | null} [comment] Comment
17095
17095
  * @param {*} [options] Override http request option.
17096
17096
  * @throws {RequiredError}
17097
17097
  */
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>>;
17098
+ 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>>;
17099
17099
  /**
17100
17100
  *
17101
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
17112
17102
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17113
17103
  * @param {File} cloa CLOA (only provide on submission)
17104
+ * @param {string | null} [companyName] Company Name
17105
+ * @param {string | null} [addressLine1] Address Line 1
17106
+ * @param {string | null} [addressLine2] Address Line 2
17107
+ * @param {string | null} [city] City
17108
+ * @param {string | null} [postCode] Post Code
17109
+ * @param {number | null} [trunkId] Trunk ID
17110
+ * @param {string | null} [tenantId] Starter Bundle ID
17111
+ * @param {string | null} [requestedPortDate] Requested Port Date
17112
+ * @param {boolean | null} [asap] Port Date ASAP
17113
+ * @param {string | null} [comment] Comment
17114
17114
  * @param {*} [options] Override http request option.
17115
17115
  * @throws {RequiredError}
17116
17116
  */
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>>;
17117
+ 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>>;
17118
17118
  /**
17119
17119
  *
17120
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
17131
17121
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17132
17122
  * @param {File} cloa CLOA (only provide on submission)
17123
+ * @param {string | null} [companyName] Company Name
17124
+ * @param {string | null} [addressLine1] Address Line 1
17125
+ * @param {string | null} [addressLine2] Address Line 2
17126
+ * @param {string | null} [city] City
17127
+ * @param {string | null} [postCode] Post Code
17128
+ * @param {number | null} [trunkId] Trunk ID
17129
+ * @param {string | null} [tenantId] Starter Bundle ID
17130
+ * @param {string | null} [requestedPortDate] Requested Port Date
17131
+ * @param {boolean | null} [asap] Port Date ASAP
17132
+ * @param {string | null} [comment] Comment
17133
17133
  * @param {*} [options] Override http request option.
17134
17134
  * @throws {RequiredError}
17135
17135
  */
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>>;
17136
+ 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>>;
17137
17137
  /**
17138
17138
  *
17139
17139
  * @param {number} id Number Port ID
@@ -17210,60 +17210,60 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
17210
17210
  postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): AxiosPromise<AdminNumberPortDTO>;
17211
17211
  /**
17212
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
17223
17213
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17224
17214
  * @param {File} cloa CLOA (only provide on submission)
17215
+ * @param {string | null} [companyName] Company Name
17216
+ * @param {string | null} [addressLine1] Address Line 1
17217
+ * @param {string | null} [addressLine2] Address Line 2
17218
+ * @param {string | null} [city] City
17219
+ * @param {string | null} [postCode] Post Code
17220
+ * @param {number | null} [trunkId] Trunk ID
17221
+ * @param {string | null} [tenantId] Starter Bundle ID
17222
+ * @param {string | null} [requestedPortDate] Requested Port Date
17223
+ * @param {boolean | null} [asap] Port Date ASAP
17224
+ * @param {string | null} [comment] Comment
17225
17225
  * @param {*} [options] Override http request option.
17226
17226
  * @throws {RequiredError}
17227
17227
  */
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>;
17228
+ 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>;
17229
17229
  /**
17230
17230
  *
17231
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
17242
17232
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17243
17233
  * @param {File} cloa CLOA (only provide on submission)
17234
+ * @param {string | null} [companyName] Company Name
17235
+ * @param {string | null} [addressLine1] Address Line 1
17236
+ * @param {string | null} [addressLine2] Address Line 2
17237
+ * @param {string | null} [city] City
17238
+ * @param {string | null} [postCode] Post Code
17239
+ * @param {number | null} [trunkId] Trunk ID
17240
+ * @param {string | null} [tenantId] Starter Bundle ID
17241
+ * @param {string | null} [requestedPortDate] Requested Port Date
17242
+ * @param {boolean | null} [asap] Port Date ASAP
17243
+ * @param {string | null} [comment] Comment
17244
17244
  * @param {*} [options] Override http request option.
17245
17245
  * @throws {RequiredError}
17246
17246
  */
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>;
17247
+ 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>;
17248
17248
  /**
17249
17249
  *
17250
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
17261
17251
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17262
17252
  * @param {File} cloa CLOA (only provide on submission)
17253
+ * @param {string | null} [companyName] Company Name
17254
+ * @param {string | null} [addressLine1] Address Line 1
17255
+ * @param {string | null} [addressLine2] Address Line 2
17256
+ * @param {string | null} [city] City
17257
+ * @param {string | null} [postCode] Post Code
17258
+ * @param {number | null} [trunkId] Trunk ID
17259
+ * @param {string | null} [tenantId] Starter Bundle ID
17260
+ * @param {string | null} [requestedPortDate] Requested Port Date
17261
+ * @param {boolean | null} [asap] Port Date ASAP
17262
+ * @param {string | null} [comment] Comment
17263
17263
  * @param {*} [options] Override http request option.
17264
17264
  * @throws {RequiredError}
17265
17265
  */
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>;
17266
+ 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>;
17267
17267
  /**
17268
17268
  *
17269
17269
  * @param {number} id Number Port ID
@@ -17340,60 +17340,60 @@ export declare class NumberPortingApi extends BaseAPI {
17340
17340
  postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminNumberPortDTO, any, {}>>;
17341
17341
  /**
17342
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
17353
17343
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17354
17344
  * @param {File} cloa CLOA (only provide on submission)
17345
+ * @param {string | null} [companyName] Company Name
17346
+ * @param {string | null} [addressLine1] Address Line 1
17347
+ * @param {string | null} [addressLine2] Address Line 2
17348
+ * @param {string | null} [city] City
17349
+ * @param {string | null} [postCode] Post Code
17350
+ * @param {number | null} [trunkId] Trunk ID
17351
+ * @param {string | null} [tenantId] Starter Bundle ID
17352
+ * @param {string | null} [requestedPortDate] Requested Port Date
17353
+ * @param {boolean | null} [asap] Port Date ASAP
17354
+ * @param {string | null} [comment] Comment
17355
17355
  * @param {*} [options] Override http request option.
17356
17356
  * @throws {RequiredError}
17357
17357
  */
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, {}>>;
17358
+ 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, {}>>;
17359
17359
  /**
17360
17360
  *
17361
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
17372
17362
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17373
17363
  * @param {File} cloa CLOA (only provide on submission)
17364
+ * @param {string | null} [companyName] Company Name
17365
+ * @param {string | null} [addressLine1] Address Line 1
17366
+ * @param {string | null} [addressLine2] Address Line 2
17367
+ * @param {string | null} [city] City
17368
+ * @param {string | null} [postCode] Post Code
17369
+ * @param {number | null} [trunkId] Trunk ID
17370
+ * @param {string | null} [tenantId] Starter Bundle ID
17371
+ * @param {string | null} [requestedPortDate] Requested Port Date
17372
+ * @param {boolean | null} [asap] Port Date ASAP
17373
+ * @param {string | null} [comment] Comment
17374
17374
  * @param {*} [options] Override http request option.
17375
17375
  * @throws {RequiredError}
17376
17376
  */
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, {}>>;
17377
+ 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, {}>>;
17378
17378
  /**
17379
17379
  *
17380
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
17391
17381
  * @param {Array<NumberPortRangeRequestDTO>} numberRanges Number Ranges
17392
17382
  * @param {File} cloa CLOA (only provide on submission)
17383
+ * @param {string | null} [companyName] Company Name
17384
+ * @param {string | null} [addressLine1] Address Line 1
17385
+ * @param {string | null} [addressLine2] Address Line 2
17386
+ * @param {string | null} [city] City
17387
+ * @param {string | null} [postCode] Post Code
17388
+ * @param {number | null} [trunkId] Trunk ID
17389
+ * @param {string | null} [tenantId] Starter Bundle ID
17390
+ * @param {string | null} [requestedPortDate] Requested Port Date
17391
+ * @param {boolean | null} [asap] Port Date ASAP
17392
+ * @param {string | null} [comment] Comment
17393
17393
  * @param {*} [options] Override http request option.
17394
17394
  * @throws {RequiredError}
17395
17395
  */
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, {}>>;
17396
+ 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, {}>>;
17397
17397
  /**
17398
17398
  *
17399
17399
  * @param {number} id Number Port ID
@@ -17424,22 +17424,22 @@ export declare const OAuth20ApiAxiosParamCreator: (configuration?: Configuration
17424
17424
  /**
17425
17425
  * Get an OAuth 2.0 access token
17426
17426
  * @summary Validates client credentials and returns access token
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)
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)
17439
17439
  * @param {*} [options] Override http request option.
17440
17440
  * @throws {RequiredError}
17441
17441
  */
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>;
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>;
17443
17443
  /**
17444
17444
  * Get an OAuth 2.0 auth code
17445
17445
  * @summary Get OAuth2.0 Auth Code
@@ -17497,22 +17497,22 @@ export declare const OAuth20ApiFp: (configuration?: Configuration) => {
17497
17497
  /**
17498
17498
  * Get an OAuth 2.0 access token
17499
17499
  * @summary Validates client credentials and returns access token
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)
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)
17512
17512
  * @param {*} [options] Override http request option.
17513
17513
  * @throws {RequiredError}
17514
17514
  */
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>>;
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>>;
17516
17516
  /**
17517
17517
  * Get an OAuth 2.0 auth code
17518
17518
  * @summary Get OAuth2.0 Auth Code
@@ -17570,22 +17570,22 @@ export declare const OAuth20ApiFactory: (configuration?: Configuration, basePath
17570
17570
  /**
17571
17571
  * Get an OAuth 2.0 access token
17572
17572
  * @summary Validates client credentials and returns access token
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)
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)
17585
17585
  * @param {*} [options] Override http request option.
17586
17586
  * @throws {RequiredError}
17587
17587
  */
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>;
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>;
17589
17589
  /**
17590
17590
  * Get an OAuth 2.0 auth code
17591
17591
  * @summary Get OAuth2.0 Auth Code
@@ -17643,22 +17643,22 @@ export declare class OAuth20Api extends BaseAPI {
17643
17643
  /**
17644
17644
  * Get an OAuth 2.0 access token
17645
17645
  * @summary Validates client credentials and returns access token
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, {}>>;
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, {}>>;
17662
17662
  /**
17663
17663
  * Get an OAuth 2.0 auth code
17664
17664
  * @summary Get OAuth2.0 Auth Code