yellowgrid-api-ts 3.2.172 → 3.2.174-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 (501) hide show
  1. package/.openapi-generator/FILES +291 -293
  2. package/README.md +1 -4
  3. package/api.ts +1 -185
  4. package/base.ts +2 -2
  5. package/common.ts +1 -1
  6. package/config.json +3 -3
  7. package/configuration.ts +1 -1
  8. package/dist/api.d.ts +1 -97
  9. package/dist/api.js +5 -199
  10. package/dist/base.d.ts +1 -1
  11. package/dist/base.js +2 -2
  12. package/dist/common.d.ts +1 -1
  13. package/dist/common.js +1 -1
  14. package/dist/configuration.d.ts +1 -1
  15. package/dist/configuration.js +1 -1
  16. package/dist/index.d.ts +1 -1
  17. package/dist/index.js +1 -1
  18. package/dist/models/StatusEnum.d.ts +18 -0
  19. package/dist/models/StatusEnum.js +20 -0
  20. package/dist/src/apis/AccountsApi.d.ts +258 -0
  21. package/dist/src/apis/AccountsApi.js +975 -0
  22. package/dist/src/apis/CRMApi.d.ts +26 -0
  23. package/dist/src/apis/CRMApi.js +122 -0
  24. package/dist/src/apis/Class3CXApi.d.ts +44 -0
  25. package/dist/src/apis/Class3CXApi.js +177 -0
  26. package/dist/src/apis/Class3CXInstallationWizardApi.d.ts +446 -0
  27. package/dist/src/apis/Class3CXInstallationWizardApi.js +1740 -0
  28. package/dist/src/apis/Class3CXInstallationsApi.d.ts +253 -0
  29. package/dist/src/apis/Class3CXInstallationsApi.js +806 -0
  30. package/dist/src/apis/Class3CXIntegrationsApi.d.ts +102 -0
  31. package/dist/src/apis/Class3CXIntegrationsApi.js +386 -0
  32. package/dist/src/apis/Class3CXMultiTenantApi.d.ts +122 -0
  33. package/dist/src/apis/Class3CXMultiTenantApi.js +431 -0
  34. package/dist/src/apis/MyPBXToolsApi.d.ts +32 -0
  35. package/dist/src/apis/MyPBXToolsApi.js +136 -0
  36. package/dist/src/apis/OAuth20Api.d.ts +185 -0
  37. package/dist/src/apis/OAuth20Api.js +507 -0
  38. package/dist/src/apis/OrdersApi.d.ts +154 -0
  39. package/dist/src/apis/OrdersApi.js +512 -0
  40. package/dist/src/apis/PricingApi.d.ts +154 -0
  41. package/dist/src/apis/PricingApi.js +308 -0
  42. package/dist/src/apis/ProductsApi.d.ts +135 -0
  43. package/dist/src/apis/ProductsApi.js +531 -0
  44. package/dist/src/apis/ProvisioningApi.d.ts +112 -0
  45. package/dist/src/apis/ProvisioningApi.js +427 -0
  46. package/dist/src/apis/SIPTrunksApi.d.ts +315 -0
  47. package/dist/src/apis/SIPTrunksApi.js +1197 -0
  48. package/dist/src/apis/SMSApi.d.ts +30 -0
  49. package/dist/src/apis/SMSApi.js +130 -0
  50. package/dist/src/apis/ServicesApi.d.ts +81 -0
  51. package/dist/src/apis/ServicesApi.js +386 -0
  52. package/dist/src/apis/ShippingApi.d.ts +45 -0
  53. package/dist/src/apis/ShippingApi.js +179 -0
  54. package/dist/src/apis/StockManagementApi.d.ts +345 -0
  55. package/dist/src/apis/StockManagementApi.js +1293 -0
  56. package/dist/src/apis/SystemApi.d.ts +37 -0
  57. package/dist/src/apis/SystemApi.js +146 -0
  58. package/dist/src/apis/TicketsApi.d.ts +79 -0
  59. package/dist/src/apis/TicketsApi.js +360 -0
  60. package/dist/src/apis/WebhooksApi.d.ts +56 -0
  61. package/dist/src/apis/WebhooksApi.js +189 -0
  62. package/dist/src/apis/index.d.ts +21 -0
  63. package/dist/src/apis/index.js +39 -0
  64. package/dist/src/index.d.ts +3 -0
  65. package/dist/src/index.js +21 -0
  66. package/dist/src/models/AbstractOrderRequestDTO.d.ts +71 -0
  67. package/dist/src/models/AbstractOrderRequestDTO.js +64 -0
  68. package/dist/src/models/AccountContactEntity.d.ts +104 -0
  69. package/dist/src/models/AccountContactEntity.js +73 -0
  70. package/dist/src/models/AccountContactModel.d.ts +104 -0
  71. package/dist/src/models/AccountContactModel.js +73 -0
  72. package/dist/src/models/AccountContactRequestModel.d.ts +80 -0
  73. package/dist/src/models/AccountContactRequestModel.js +65 -0
  74. package/dist/src/models/AccountDetailedSummaryDTO.d.ts +89 -0
  75. package/dist/src/models/AccountDetailedSummaryDTO.js +70 -0
  76. package/dist/src/models/AccountRequestModel.d.ts +128 -0
  77. package/dist/src/models/AccountRequestModel.js +81 -0
  78. package/dist/src/models/AccountSummaryDTO.d.ts +44 -0
  79. package/dist/src/models/AccountSummaryDTO.js +53 -0
  80. package/dist/src/models/AccountsResponseModel.d.ts +51 -0
  81. package/dist/src/models/AccountsResponseModel.js +56 -0
  82. package/dist/src/models/AddressModel.d.ts +110 -0
  83. package/dist/src/models/AddressModel.js +75 -0
  84. package/dist/src/models/AddressRequestModel.d.ts +50 -0
  85. package/dist/src/models/AddressRequestModel.js +55 -0
  86. package/dist/src/models/AdminOrderRequestDTO.d.ts +113 -0
  87. package/dist/src/models/AdminOrderRequestDTO.js +78 -0
  88. package/dist/src/models/AdminUserModel.d.ts +79 -0
  89. package/dist/src/models/AdminUserModel.js +72 -0
  90. package/dist/src/models/AgentHoursGraphModel.d.ts +51 -0
  91. package/dist/src/models/AgentHoursGraphModel.js +56 -0
  92. package/dist/src/models/AgentHoursGraphMonthModel.d.ts +38 -0
  93. package/dist/src/models/AgentHoursGraphMonthModel.js +51 -0
  94. package/dist/src/models/ApiLogEntity.d.ts +98 -0
  95. package/dist/src/models/ApiLogEntity.js +71 -0
  96. package/dist/src/models/AreaCodeModel.d.ts +38 -0
  97. package/dist/src/models/AreaCodeModel.js +51 -0
  98. package/dist/src/models/AttachmentModel.d.ts +56 -0
  99. package/dist/src/models/AttachmentModel.js +57 -0
  100. package/dist/src/models/AttributeSetEnum.d.ts +38 -0
  101. package/dist/src/models/AttributeSetEnum.js +51 -0
  102. package/dist/src/models/AuditLogEntity.d.ts +80 -0
  103. package/dist/src/models/AuditLogEntity.js +65 -0
  104. package/dist/src/models/AuthCodeResponseModel.d.ts +44 -0
  105. package/dist/src/models/AuthCodeResponseModel.js +53 -0
  106. package/dist/src/models/BasicItemDTO.d.ts +38 -0
  107. package/dist/src/models/BasicItemDTO.js +51 -0
  108. package/dist/src/models/BasicProductDTO.d.ts +38 -0
  109. package/dist/src/models/BasicProductDTO.js +51 -0
  110. package/dist/src/models/BatchEntity.d.ts +128 -0
  111. package/dist/src/models/BatchEntity.js +81 -0
  112. package/dist/src/models/CallBarringModel.d.ts +56 -0
  113. package/dist/src/models/CallBarringModel.js +57 -0
  114. package/dist/src/models/ClientDetailsModel.d.ts +68 -0
  115. package/dist/src/models/ClientDetailsModel.js +61 -0
  116. package/dist/src/models/ClientModel.d.ts +50 -0
  117. package/dist/src/models/ClientModel.js +55 -0
  118. package/dist/src/models/CompanyContractModel.d.ts +56 -0
  119. package/dist/src/models/CompanyContractModel.js +57 -0
  120. package/dist/src/models/ContactInfoModel.d.ts +56 -0
  121. package/dist/src/models/ContactInfoModel.js +57 -0
  122. package/dist/src/models/ConversationModel.d.ts +75 -0
  123. package/dist/src/models/ConversationModel.js +64 -0
  124. package/dist/src/models/CourierPriceEntity.d.ts +86 -0
  125. package/dist/src/models/CourierPriceEntity.js +67 -0
  126. package/dist/src/models/CreditAccountEntity.d.ts +152 -0
  127. package/dist/src/models/CreditAccountEntity.js +89 -0
  128. package/dist/src/models/CrmContactDTO.d.ts +68 -0
  129. package/dist/src/models/CrmContactDTO.js +61 -0
  130. package/dist/src/models/CustomerInformationModel.d.ts +68 -0
  131. package/dist/src/models/CustomerInformationModel.js +61 -0
  132. package/dist/src/models/CustomerItemRequestDTO.d.ts +81 -0
  133. package/dist/src/models/CustomerItemRequestDTO.js +66 -0
  134. package/dist/src/models/CustomerOrderRequestDTO.d.ts +71 -0
  135. package/dist/src/models/CustomerOrderRequestDTO.js +64 -0
  136. package/dist/src/models/CustomerPriceListEnum.d.ts +38 -0
  137. package/dist/src/models/CustomerPriceListEnum.js +51 -0
  138. package/dist/src/models/CustomerSummaryReportDTO.d.ts +65 -0
  139. package/dist/src/models/CustomerSummaryReportDTO.js +62 -0
  140. package/dist/src/models/DdiRangeRequestModel.d.ts +44 -0
  141. package/dist/src/models/DdiRangeRequestModel.js +53 -0
  142. package/dist/src/models/DdiRangesRequestModel.d.ts +33 -0
  143. package/dist/src/models/DdiRangesRequestModel.js +50 -0
  144. package/dist/src/models/DetailedItemRequestDTO.d.ts +99 -0
  145. package/dist/src/models/DetailedItemRequestDTO.js +72 -0
  146. package/dist/src/models/DetailedOrderRequestDTO.d.ts +71 -0
  147. package/dist/src/models/DetailedOrderRequestDTO.js +64 -0
  148. package/dist/src/models/DivertRequestModel.d.ts +38 -0
  149. package/dist/src/models/DivertRequestModel.js +51 -0
  150. package/dist/src/models/DivertResponseModel.d.ts +52 -0
  151. package/dist/src/models/DivertResponseModel.js +61 -0
  152. package/dist/src/models/EdTechProClientEntity.d.ts +56 -0
  153. package/dist/src/models/EdTechProClientEntity.js +57 -0
  154. package/dist/src/models/EdTechProSchoolModel.d.ts +104 -0
  155. package/dist/src/models/EdTechProSchoolModel.js +73 -0
  156. package/dist/src/models/EdTechProSchoolsModel.d.ts +51 -0
  157. package/dist/src/models/EdTechProSchoolsModel.js +56 -0
  158. package/dist/src/models/EdTechProSetupModel.d.ts +56 -0
  159. package/dist/src/models/EdTechProSetupModel.js +57 -0
  160. package/dist/src/models/EventDTO.d.ts +84 -0
  161. package/dist/src/models/EventDTO.js +73 -0
  162. package/dist/src/models/EventRequestDTO.d.ts +44 -0
  163. package/dist/src/models/EventRequestDTO.js +53 -0
  164. package/dist/src/models/EventSubscriptionModel.d.ts +38 -0
  165. package/dist/src/models/EventSubscriptionModel.js +51 -0
  166. package/dist/src/models/EventTypeEnum.d.ts +19 -0
  167. package/dist/src/models/EventTypeEnum.js +24 -0
  168. package/dist/src/models/EventUpdateDTO.d.ts +50 -0
  169. package/dist/src/models/EventUpdateDTO.js +55 -0
  170. package/dist/src/models/EventUpdateEntity.d.ts +56 -0
  171. package/dist/src/models/EventUpdateEntity.js +57 -0
  172. package/dist/src/models/EventUpdateRequestDTO.d.ts +44 -0
  173. package/dist/src/models/EventUpdateRequestDTO.js +53 -0
  174. package/dist/src/models/FraudManagementModel.d.ts +38 -0
  175. package/dist/src/models/FraudManagementModel.js +51 -0
  176. package/dist/src/models/FreshdeskCompanyTicketsModel.d.ts +51 -0
  177. package/dist/src/models/FreshdeskCompanyTicketsModel.js +56 -0
  178. package/dist/src/models/FreshdeskTicketEntity.d.ts +68 -0
  179. package/dist/src/models/FreshdeskTicketEntity.js +61 -0
  180. package/dist/src/models/FtpAccountsEntity.d.ts +56 -0
  181. package/dist/src/models/FtpAccountsEntity.js +57 -0
  182. package/dist/src/models/GenericFileModel.d.ts +44 -0
  183. package/dist/src/models/GenericFileModel.js +53 -0
  184. package/dist/src/models/GetGetPrice200Response.d.ts +32 -0
  185. package/dist/src/models/GetGetPrice200Response.js +49 -0
  186. package/dist/src/models/GetGetRecording200Response.d.ts +32 -0
  187. package/dist/src/models/GetGetRecording200Response.js +49 -0
  188. package/dist/src/models/HostingChangeResponseModel.d.ts +64 -0
  189. package/dist/src/models/HostingChangeResponseModel.js +65 -0
  190. package/dist/src/models/HostingRegionDTO.d.ts +59 -0
  191. package/dist/src/models/HostingRegionDTO.js +68 -0
  192. package/dist/src/models/InstanceAutoFailoverEntity.d.ts +56 -0
  193. package/dist/src/models/InstanceAutoFailoverEntity.js +57 -0
  194. package/dist/src/models/InstanceDeletionScheduleEntity.d.ts +50 -0
  195. package/dist/src/models/InstanceDeletionScheduleEntity.js +55 -0
  196. package/dist/src/models/InstanceEntity.d.ts +152 -0
  197. package/dist/src/models/InstanceEntity.js +89 -0
  198. package/dist/src/models/InstanceFailoverEntity.d.ts +92 -0
  199. package/dist/src/models/InstanceFailoverEntity.js +69 -0
  200. package/dist/src/models/InstanceMonitoringEntity.d.ts +44 -0
  201. package/dist/src/models/InstanceMonitoringEntity.js +53 -0
  202. package/dist/src/models/InstanceMonitoringLogEntity.d.ts +62 -0
  203. package/dist/src/models/InstanceMonitoringLogEntity.js +59 -0
  204. package/dist/src/models/InstanceScheduledTasksEntity.d.ts +62 -0
  205. package/dist/src/models/InstanceScheduledTasksEntity.js +59 -0
  206. package/dist/src/models/InstanceTcxDetailsEntity.d.ts +86 -0
  207. package/dist/src/models/InstanceTcxDetailsEntity.js +67 -0
  208. package/dist/src/models/InstanceUserCredentialsEntity.d.ts +56 -0
  209. package/dist/src/models/InstanceUserCredentialsEntity.js +57 -0
  210. package/dist/src/models/ItemDTO.d.ts +117 -0
  211. package/dist/src/models/ItemDTO.js +78 -0
  212. package/dist/src/models/ItemDiscountEntity.d.ts +77 -0
  213. package/dist/src/models/ItemDiscountEntity.js +70 -0
  214. package/dist/src/models/ItemEntity.d.ts +158 -0
  215. package/dist/src/models/ItemEntity.js +91 -0
  216. package/dist/src/models/LinkedOrderEntity.d.ts +38 -0
  217. package/dist/src/models/LinkedOrderEntity.js +51 -0
  218. package/dist/src/models/MFARequiredModel.d.ts +38 -0
  219. package/dist/src/models/MFARequiredModel.js +51 -0
  220. package/dist/src/models/MonthlyUsageModel.d.ts +38 -0
  221. package/dist/src/models/MonthlyUsageModel.js +51 -0
  222. package/dist/src/models/MultiTenantChangeResponseModel.d.ts +70 -0
  223. package/dist/src/models/MultiTenantChangeResponseModel.js +75 -0
  224. package/dist/src/models/NavigationModel.d.ts +50 -0
  225. package/dist/src/models/NavigationModel.js +55 -0
  226. package/dist/src/models/OfflineInstancesEntity.d.ts +56 -0
  227. package/dist/src/models/OfflineInstancesEntity.js +57 -0
  228. package/dist/src/models/OrderEntity.d.ts +374 -0
  229. package/dist/src/models/OrderEntity.js +163 -0
  230. package/dist/src/models/OrderRequestModel.d.ts +120 -0
  231. package/dist/src/models/OrderRequestModel.js +88 -0
  232. package/dist/src/models/OrderSummariesModel.d.ts +51 -0
  233. package/dist/src/models/OrderSummariesModel.js +56 -0
  234. package/dist/src/models/OrderSummaryDTO.d.ts +126 -0
  235. package/dist/src/models/OrderSummaryDTO.js +83 -0
  236. package/dist/src/models/OrderTotalModel.d.ts +111 -0
  237. package/dist/src/models/OrderTotalModel.js +100 -0
  238. package/dist/src/models/OrderedItemEntity.d.ts +110 -0
  239. package/dist/src/models/OrderedItemEntity.js +75 -0
  240. package/dist/src/models/PatchSetTcxWizardCnameRequest.d.ts +32 -0
  241. package/dist/src/models/PatchSetTcxWizardCnameRequest.js +49 -0
  242. package/dist/src/models/PatchUpdateAccountContactPasswordRequest.d.ts +32 -0
  243. package/dist/src/models/PatchUpdateAccountContactPasswordRequest.js +49 -0
  244. package/dist/src/models/PortalAccountModel.d.ts +171 -0
  245. package/dist/src/models/PortalAccountModel.js +96 -0
  246. package/dist/src/models/PortalLoginModel.d.ts +68 -0
  247. package/dist/src/models/PortalLoginModel.js +61 -0
  248. package/dist/src/models/PostAddWebhook200Response.d.ts +32 -0
  249. package/dist/src/models/PostAddWebhook200Response.js +49 -0
  250. package/dist/src/models/PostGetClientCredentialsRequest.d.ts +32 -0
  251. package/dist/src/models/PostGetClientCredentialsRequest.js +49 -0
  252. package/dist/src/models/PostGetProductForCustomerRequest.d.ts +50 -0
  253. package/dist/src/models/PostGetProductForCustomerRequest.js +55 -0
  254. package/dist/src/models/PostGetProductRequest.d.ts +44 -0
  255. package/dist/src/models/PostGetProductRequest.js +53 -0
  256. package/dist/src/models/PriceListItemModel.d.ts +56 -0
  257. package/dist/src/models/PriceListItemModel.js +57 -0
  258. package/dist/src/models/PrizesEntity.d.ts +62 -0
  259. package/dist/src/models/PrizesEntity.js +59 -0
  260. package/dist/src/models/ProductPriceListItemModel.d.ts +62 -0
  261. package/dist/src/models/ProductPriceListItemModel.js +59 -0
  262. package/dist/src/models/ProductSearchResultsModel.d.ts +33 -0
  263. package/dist/src/models/ProductSearchResultsModel.js +50 -0
  264. package/dist/src/models/ProductSerialInfoModel.d.ts +50 -0
  265. package/dist/src/models/ProductSerialInfoModel.js +55 -0
  266. package/dist/src/models/ProductSummaryDTO.d.ts +81 -0
  267. package/dist/src/models/ProductSummaryDTO.js +66 -0
  268. package/dist/src/models/PromoCodesEntity.d.ts +98 -0
  269. package/dist/src/models/PromoCodesEntity.js +71 -0
  270. package/dist/src/models/PromoItemsEntity.d.ts +74 -0
  271. package/dist/src/models/PromoItemsEntity.js +63 -0
  272. package/dist/src/models/ProvisioningModel.d.ts +56 -0
  273. package/dist/src/models/ProvisioningModel.js +57 -0
  274. package/dist/src/models/ProvisioningRequestEntity.d.ts +44 -0
  275. package/dist/src/models/ProvisioningRequestEntity.js +53 -0
  276. package/dist/src/models/RecordingBackupAzureModel.d.ts +50 -0
  277. package/dist/src/models/RecordingBackupAzureModel.js +55 -0
  278. package/dist/src/models/RecordingsBackupInfoDTO.d.ts +40 -0
  279. package/dist/src/models/RecordingsBackupInfoDTO.js +53 -0
  280. package/dist/src/models/ResourceNotReadyException.d.ts +44 -0
  281. package/dist/src/models/ResourceNotReadyException.js +53 -0
  282. package/dist/src/models/RootAccessModel.d.ts +44 -0
  283. package/dist/src/models/RootAccessModel.js +53 -0
  284. package/dist/src/models/S3BucketEntity.d.ts +50 -0
  285. package/dist/src/models/S3BucketEntity.js +55 -0
  286. package/dist/src/models/ScannedItemModel.d.ts +56 -0
  287. package/dist/src/models/ScannedItemModel.js +57 -0
  288. package/dist/src/models/ScopeModel.d.ts +38 -0
  289. package/dist/src/models/ScopeModel.js +51 -0
  290. package/dist/src/models/ServiceEnum.d.ts +14 -0
  291. package/dist/src/models/ServiceEnum.js +19 -0
  292. package/dist/src/models/ServiceHealthDTO.d.ts +48 -0
  293. package/dist/src/models/ServiceHealthDTO.js +61 -0
  294. package/dist/src/models/ServiceHealthEnum.d.ts +19 -0
  295. package/dist/src/models/ServiceHealthEnum.js +24 -0
  296. package/dist/src/models/ServiceStatusDTO.d.ts +60 -0
  297. package/dist/src/models/ServiceStatusDTO.js +65 -0
  298. package/dist/src/models/ServiceStatusEnum.d.ts +19 -0
  299. package/dist/src/models/ServiceStatusEnum.js +24 -0
  300. package/dist/src/models/ShipmentAddressEntity.d.ts +92 -0
  301. package/dist/src/models/ShipmentAddressEntity.js +69 -0
  302. package/dist/src/models/ShipmentEntity.d.ts +98 -0
  303. package/dist/src/models/ShipmentEntity.js +71 -0
  304. package/dist/src/models/ShipmentItemEntity.d.ts +56 -0
  305. package/dist/src/models/ShipmentItemEntity.js +57 -0
  306. package/dist/src/models/ShippingConsignmentModel.d.ts +51 -0
  307. package/dist/src/models/ShippingConsignmentModel.js +56 -0
  308. package/dist/src/models/ShippingInformationDTO.d.ts +45 -0
  309. package/dist/src/models/ShippingInformationDTO.js +54 -0
  310. package/dist/src/models/ShippingServiceDTO.d.ts +47 -0
  311. package/dist/src/models/ShippingServiceDTO.js +60 -0
  312. package/dist/src/models/ShippingServiceModel.d.ts +71 -0
  313. package/dist/src/models/ShippingServiceModel.js +68 -0
  314. package/dist/src/models/ShippingServicesModel.d.ts +33 -0
  315. package/dist/src/models/ShippingServicesModel.js +50 -0
  316. package/dist/src/models/SipTrunkChangeResponseModel.d.ts +77 -0
  317. package/dist/src/models/SipTrunkChangeResponseModel.js +78 -0
  318. package/dist/src/models/SipTrunkCreationRequestModel.d.ts +66 -0
  319. package/dist/src/models/SipTrunkCreationRequestModel.js +63 -0
  320. package/dist/src/models/SipTrunkEntity.d.ts +98 -0
  321. package/dist/src/models/SipTrunkEntity.js +71 -0
  322. package/dist/src/models/SipTrunksResponseModel.d.ts +51 -0
  323. package/dist/src/models/SipTrunksResponseModel.js +56 -0
  324. package/dist/src/models/SmsAccountEntity.d.ts +68 -0
  325. package/dist/src/models/SmsAccountEntity.js +61 -0
  326. package/dist/src/models/SmsDataModel.d.ts +33 -0
  327. package/dist/src/models/SmsDataModel.js +50 -0
  328. package/dist/src/models/SmsMessageModel.d.ts +44 -0
  329. package/dist/src/models/SmsMessageModel.js +53 -0
  330. package/dist/src/models/SmsNumbersEntity.d.ts +38 -0
  331. package/dist/src/models/SmsNumbersEntity.js +51 -0
  332. package/dist/src/models/SmsPayloadModel.d.ts +45 -0
  333. package/dist/src/models/SmsPayloadModel.js +54 -0
  334. package/dist/src/models/SmsPhoneNumberModel.d.ts +53 -0
  335. package/dist/src/models/SmsPhoneNumberModel.js +66 -0
  336. package/dist/src/models/SmsResponseModel.d.ts +67 -0
  337. package/dist/src/models/SmsResponseModel.js +68 -0
  338. package/dist/src/models/SmsWhitelistEntity.d.ts +38 -0
  339. package/dist/src/models/SmsWhitelistEntity.js +51 -0
  340. package/dist/src/models/StockOrderCourierEntity.d.ts +50 -0
  341. package/dist/src/models/StockOrderCourierEntity.js +55 -0
  342. package/dist/src/models/StockOrderDeductionModel.d.ts +50 -0
  343. package/dist/src/models/StockOrderDeductionModel.js +55 -0
  344. package/dist/src/models/StockOrderDeductionRequestModel.d.ts +38 -0
  345. package/dist/src/models/StockOrderDeductionRequestModel.js +51 -0
  346. package/dist/src/models/StockOrderDeductionsEntity.d.ts +50 -0
  347. package/dist/src/models/StockOrderDeductionsEntity.js +55 -0
  348. package/dist/src/models/StockOrderEntity.d.ts +158 -0
  349. package/dist/src/models/StockOrderEntity.js +91 -0
  350. package/dist/src/models/StockOrderItemEntity.d.ts +68 -0
  351. package/dist/src/models/StockOrderItemEntity.js +61 -0
  352. package/dist/src/models/StockOrderItemModel.d.ts +80 -0
  353. package/dist/src/models/StockOrderItemModel.js +65 -0
  354. package/dist/src/models/StockOrderItemRequestModel.d.ts +50 -0
  355. package/dist/src/models/StockOrderItemRequestModel.js +55 -0
  356. package/dist/src/models/StockOrderModel.d.ts +137 -0
  357. package/dist/src/models/StockOrderModel.js +97 -0
  358. package/dist/src/models/StockOrderProductEntity.d.ts +62 -0
  359. package/dist/src/models/StockOrderProductEntity.js +59 -0
  360. package/dist/src/models/StockOrderRequestModel.d.ts +46 -0
  361. package/dist/src/models/StockOrderRequestModel.js +55 -0
  362. package/dist/src/models/StockOrderSupplierEntity.d.ts +80 -0
  363. package/dist/src/models/StockOrderSupplierEntity.js +65 -0
  364. package/dist/src/models/StockOrderSupplierModel.d.ts +80 -0
  365. package/dist/src/models/StockOrderSupplierModel.js +65 -0
  366. package/dist/src/models/StockOrdersModel.d.ts +51 -0
  367. package/dist/src/models/StockOrdersModel.js +56 -0
  368. package/dist/src/models/StockProductModel.d.ts +120 -0
  369. package/dist/src/models/StockProductModel.js +81 -0
  370. package/dist/src/models/StockProductPriceModel.d.ts +39 -0
  371. package/dist/src/models/StockProductPriceModel.js +52 -0
  372. package/dist/src/models/StockProductSummariesModel.d.ts +51 -0
  373. package/dist/src/models/StockProductSummariesModel.js +56 -0
  374. package/dist/src/models/StockProductSummaryModel.d.ts +69 -0
  375. package/dist/src/models/StockProductSummaryModel.js +62 -0
  376. package/dist/src/models/StockTransactionsEntity.d.ts +74 -0
  377. package/dist/src/models/StockTransactionsEntity.js +63 -0
  378. package/dist/src/models/SupplierEntity.d.ts +80 -0
  379. package/dist/src/models/SupplierEntity.js +65 -0
  380. package/dist/src/models/SupplierItemEntity.d.ts +74 -0
  381. package/dist/src/models/SupplierItemEntity.js +63 -0
  382. package/dist/src/models/TcxBackupEntity.d.ts +80 -0
  383. package/dist/src/models/TcxBackupEntity.js +65 -0
  384. package/dist/src/models/TcxBackupModel.d.ts +140 -0
  385. package/dist/src/models/TcxBackupModel.js +85 -0
  386. package/dist/src/models/TcxBillingEntity.d.ts +86 -0
  387. package/dist/src/models/TcxBillingEntity.js +67 -0
  388. package/dist/src/models/TcxBulkLicenceDetailsModel.d.ts +40 -0
  389. package/dist/src/models/TcxBulkLicenceDetailsModel.js +53 -0
  390. package/dist/src/models/TcxDeadLicenceEntity.d.ts +44 -0
  391. package/dist/src/models/TcxDeadLicenceEntity.js +53 -0
  392. package/dist/src/models/TcxExtsEntity.d.ts +74 -0
  393. package/dist/src/models/TcxExtsEntity.js +63 -0
  394. package/dist/src/models/TcxHostingPricingEntity.d.ts +74 -0
  395. package/dist/src/models/TcxHostingPricingEntity.js +63 -0
  396. package/dist/src/models/TcxInstallationDetailsModel.d.ts +106 -0
  397. package/dist/src/models/TcxInstallationDetailsModel.js +75 -0
  398. package/dist/src/models/TcxInstallationModel.d.ts +200 -0
  399. package/dist/src/models/TcxInstallationModel.js +105 -0
  400. package/dist/src/models/TcxInstallationsModel.d.ts +51 -0
  401. package/dist/src/models/TcxInstallationsModel.js +56 -0
  402. package/dist/src/models/TcxKeySummaryDTO.d.ts +56 -0
  403. package/dist/src/models/TcxKeySummaryDTO.js +57 -0
  404. package/dist/src/models/TcxKeysEntity.d.ts +62 -0
  405. package/dist/src/models/TcxKeysEntity.js +59 -0
  406. package/dist/src/models/TcxLicenceDetailsErrorModel.d.ts +50 -0
  407. package/dist/src/models/TcxLicenceDetailsErrorModel.js +55 -0
  408. package/dist/src/models/TcxLicenceDetailsModel.d.ts +92 -0
  409. package/dist/src/models/TcxLicenceDetailsModel.js +69 -0
  410. package/dist/src/models/TcxMacsEntity.d.ts +44 -0
  411. package/dist/src/models/TcxMacsEntity.js +53 -0
  412. package/dist/src/models/TcxMultiTenantModel.d.ts +118 -0
  413. package/dist/src/models/TcxMultiTenantModel.js +83 -0
  414. package/dist/src/models/TcxMultiTenantUserModel.d.ts +44 -0
  415. package/dist/src/models/TcxMultiTenantUserModel.js +53 -0
  416. package/dist/src/models/TcxMultiTenantsModel.d.ts +51 -0
  417. package/dist/src/models/TcxMultiTenantsModel.js +56 -0
  418. package/dist/src/models/TcxNumbersEntity.d.ts +44 -0
  419. package/dist/src/models/TcxNumbersEntity.js +53 -0
  420. package/dist/src/models/TcxOfficeHoursEntity.d.ts +116 -0
  421. package/dist/src/models/TcxOfficeHoursEntity.js +77 -0
  422. package/dist/src/models/TcxPhoneModel.d.ts +68 -0
  423. package/dist/src/models/TcxPhoneModel.js +61 -0
  424. package/dist/src/models/TcxPhonesEntity.d.ts +62 -0
  425. package/dist/src/models/TcxPhonesEntity.js +59 -0
  426. package/dist/src/models/TcxRemoteStorageModel.d.ts +50 -0
  427. package/dist/src/models/TcxRemoteStorageModel.js +55 -0
  428. package/dist/src/models/TcxSbcDTO.d.ts +62 -0
  429. package/dist/src/models/TcxSbcDTO.js +59 -0
  430. package/dist/src/models/TcxSbcEntity.d.ts +122 -0
  431. package/dist/src/models/TcxSbcEntity.js +79 -0
  432. package/dist/src/models/TcxSbcModel.d.ts +122 -0
  433. package/dist/src/models/TcxSbcModel.js +79 -0
  434. package/dist/src/models/TcxSetupEntity.d.ts +207 -0
  435. package/dist/src/models/TcxSetupEntity.js +123 -0
  436. package/dist/src/models/TcxSetupsModel.d.ts +51 -0
  437. package/dist/src/models/TcxSetupsModel.js +56 -0
  438. package/dist/src/models/TcxSipTrunksEntity.d.ts +104 -0
  439. package/dist/src/models/TcxSipTrunksEntity.js +73 -0
  440. package/dist/src/models/TcxTemplateXmlEnum.d.ts +38 -0
  441. package/dist/src/models/TcxTemplateXmlEnum.js +51 -0
  442. package/dist/src/models/TcxUsersEntity.d.ts +62 -0
  443. package/dist/src/models/TcxUsersEntity.js +59 -0
  444. package/dist/src/models/TcxWizardConfigModel.d.ts +39 -0
  445. package/dist/src/models/TcxWizardConfigModel.js +52 -0
  446. package/dist/src/models/TcxWizardModel.d.ts +150 -0
  447. package/dist/src/models/TcxWizardModel.js +114 -0
  448. package/dist/src/models/TechSupportCompanySummaryDTO.d.ts +57 -0
  449. package/dist/src/models/TechSupportCompanySummaryDTO.js +58 -0
  450. package/dist/src/models/TelephonySupportTicketModel.d.ts +94 -0
  451. package/dist/src/models/TelephonySupportTicketModel.js +71 -0
  452. package/dist/src/models/TicketSummaryModel.d.ts +74 -0
  453. package/dist/src/models/TicketSummaryModel.js +63 -0
  454. package/dist/src/models/TicketTimeDTO.d.ts +80 -0
  455. package/dist/src/models/TicketTimeDTO.js +65 -0
  456. package/dist/src/models/TokenResponseModel.d.ts +44 -0
  457. package/dist/src/models/TokenResponseModel.js +53 -0
  458. package/dist/src/models/UpdateTypeEnum.d.ts +19 -0
  459. package/dist/src/models/UpdateTypeEnum.js +24 -0
  460. package/dist/src/models/UpgradeOrderResponseModel.d.ts +38 -0
  461. package/dist/src/models/UpgradeOrderResponseModel.js +51 -0
  462. package/dist/src/models/UpgradeRequestModel.d.ts +66 -0
  463. package/dist/src/models/UpgradeRequestModel.js +70 -0
  464. package/dist/src/models/UserEntity.d.ts +98 -0
  465. package/dist/src/models/UserEntity.js +71 -0
  466. package/dist/src/models/XeroLogEntity.d.ts +86 -0
  467. package/dist/src/models/XeroLogEntity.js +67 -0
  468. package/dist/src/models/index.d.ts +196 -0
  469. package/dist/src/models/index.js +214 -0
  470. package/dist/src/runtime.d.ts +184 -0
  471. package/dist/src/runtime.js +564 -0
  472. package/docs/AccountFinanceDTO.md +0 -2
  473. package/docs/AccountsApi.md +1 -59
  474. package/docs/BillingApi.md +1 -66
  475. package/docs/CRMApi.md +1 -1
  476. package/docs/Class3CXApi.md +1 -1
  477. package/docs/Class3CXInstallationWizardApi.md +1 -1
  478. package/docs/Class3CXInstallationsApi.md +1 -1
  479. package/docs/Class3CXIntegrationsApi.md +1 -1
  480. package/docs/Class3CXMultiTenantApi.md +1 -1
  481. package/docs/MyPBXToolsApi.md +1 -1
  482. package/docs/NumberPortingApi.md +1 -1
  483. package/docs/OAuth20Api.md +1 -1
  484. package/docs/OrdersApi.md +1 -1
  485. package/docs/PartnerDTO.md +0 -2
  486. package/docs/PricingApi.md +1 -1
  487. package/docs/ProductsApi.md +1 -1
  488. package/docs/ProspectsApi.md +1 -1
  489. package/docs/ProvisioningApi.md +1 -1
  490. package/docs/SIPTrunksApi.md +1 -1
  491. package/docs/SMSApi.md +1 -1
  492. package/docs/ServicesApi.md +1 -1
  493. package/docs/ShippingApi.md +1 -1
  494. package/docs/StockManagementApi.md +1 -1
  495. package/docs/SystemApi.md +1 -1
  496. package/docs/TicketsApi.md +1 -1
  497. package/docs/WebhooksApi.md +1 -1
  498. package/getEnums.php +31 -31
  499. package/index.ts +1 -1
  500. package/package.json +1 -1
  501. package/docs/PutTransferConnectionRequest.md +0 -20
package/api.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * Yellowgrid
5
- * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://bitbucket.org` For questions or technical support, please contact support@yellowgrid.co.uk.
5
+ * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://localhost` For questions or technical support, please contact support@yellowgrid.co.uk.
6
6
  *
7
7
  * The version of the OpenAPI document: 0
8
8
  *
@@ -289,10 +289,6 @@ export interface AccountFinanceDTO {
289
289
  * Overdue Amount
290
290
  */
291
291
  'overdue'?: number;
292
- /**
293
- * On Hold
294
- */
295
- 'onHold'?: boolean;
296
292
  'priceList'?: CustomerPriceListEnum;
297
293
  /**
298
294
  * SIP Trunk Channel Cost
@@ -4351,10 +4347,6 @@ export interface PartnerDTO {
4351
4347
  * 3CX Installation URL
4352
4348
  */
4353
4349
  'installationUrl'?: string;
4354
- /**
4355
- * Aligned
4356
- */
4357
- 'aligned'?: boolean;
4358
4350
  }
4359
4351
  export interface PatchUpdateAccountCnameRequest {
4360
4352
  /**
@@ -5056,12 +5048,6 @@ export interface PutAllocateItemsRequestItemsInner {
5056
5048
  */
5057
5049
  'quantity'?: number;
5058
5050
  }
5059
- export interface PutTransferConnectionRequest {
5060
- /**
5061
- * Customer ID
5062
- */
5063
- 'customerId'?: number;
5064
- }
5065
5051
  /**
5066
5052
  * Azure Recordings Backup
5067
5053
  */
@@ -5397,7 +5383,6 @@ export const ShipmentDTOCourierEnum = {
5397
5383
  Dpd: 'DPD',
5398
5384
  ChorltonPallet: 'Chorlton Pallet',
5399
5385
  Pops: 'POPS',
5400
- Interparcel: 'Interparcel',
5401
5386
  } as const;
5402
5387
 
5403
5388
  export type ShipmentDTOCourierEnum = typeof ShipmentDTOCourierEnum[keyof typeof ShipmentDTOCourierEnum];
@@ -5605,7 +5590,6 @@ export const ShipmentRequestDTOCourierEnum = {
5605
5590
  Dpd: 'DPD',
5606
5591
  ChorltonPallet: 'Chorlton Pallet',
5607
5592
  Pops: 'POPS',
5608
- Interparcel: 'Interparcel',
5609
5593
  } as const;
5610
5594
 
5611
5595
  export type ShipmentRequestDTOCourierEnum = typeof ShipmentRequestDTOCourierEnum[keyof typeof ShipmentRequestDTOCourierEnum];
@@ -5703,7 +5687,6 @@ export const ShippingRequestDTOCourierEnum = {
5703
5687
  Dpd: 'DPD',
5704
5688
  ChorltonPallet: 'Chorlton Pallet',
5705
5689
  Pops: 'POPS',
5706
- Interparcel: 'Interparcel',
5707
5690
  } as const;
5708
5691
 
5709
5692
  export type ShippingRequestDTOCourierEnum = typeof ShippingRequestDTOCourierEnum[keyof typeof ShippingRequestDTOCourierEnum];
@@ -5733,7 +5716,6 @@ export const ShippingServiceDTOCourierEnum = {
5733
5716
  Dpd: 'DPD',
5734
5717
  ChorltonPallet: 'Chorlton Pallet',
5735
5718
  Pops: 'POPS',
5736
- Interparcel: 'Interparcel',
5737
5719
  } as const;
5738
5720
 
5739
5721
  export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
@@ -5772,7 +5754,6 @@ export const ShippingServiceModelCourierEnum = {
5772
5754
  Dpd: 'DPD',
5773
5755
  ChorltonPallet: 'Chorlton Pallet',
5774
5756
  Pops: 'POPS',
5775
- Interparcel: 'Interparcel',
5776
5757
  } as const;
5777
5758
 
5778
5759
  export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
@@ -9212,43 +9193,6 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
9212
9193
  const localVarQueryParameter = {} as any;
9213
9194
 
9214
9195
 
9215
- setSearchParams(localVarUrlObj, localVarQueryParameter);
9216
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9217
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
9218
-
9219
- return {
9220
- url: toPathString(localVarUrlObj),
9221
- options: localVarRequestOptions,
9222
- };
9223
- },
9224
- /**
9225
- * Set Account On Hold
9226
- * @param {string} id Xero ID
9227
- * @param {PatchSetOnHoldStateEnum} state On Hold State
9228
- * @param {*} [options] Override http request option.
9229
- * @throws {RequiredError}
9230
- */
9231
- patchSetOnHold: async (id: string, state: PatchSetOnHoldStateEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9232
- // verify required parameter 'id' is not null or undefined
9233
- assertParamExists('patchSetOnHold', 'id', id)
9234
- // verify required parameter 'state' is not null or undefined
9235
- assertParamExists('patchSetOnHold', 'state', state)
9236
- const localVarPath = `/admin/accounts/{id}/onHold/{state}`
9237
- .replace('{id}', encodeURIComponent(String(id)))
9238
- .replace('{state}', encodeURIComponent(String(state)));
9239
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
9240
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
9241
- let baseOptions;
9242
- if (configuration) {
9243
- baseOptions = configuration.baseOptions;
9244
- }
9245
-
9246
- const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
9247
- const localVarHeaderParameter = {} as any;
9248
- const localVarQueryParameter = {} as any;
9249
-
9250
- localVarHeaderParameter['Accept'] = 'application/json';
9251
-
9252
9196
  setSearchParams(localVarUrlObj, localVarQueryParameter);
9253
9197
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9254
9198
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -10411,19 +10355,6 @@ export const AccountsApiFp = function(configuration?: Configuration) {
10411
10355
  const localVarOperationServerBasePath = operationServerMap['AccountsApi.patchSetAccountStatus']?.[localVarOperationServerIndex]?.url;
10412
10356
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
10413
10357
  },
10414
- /**
10415
- * Set Account On Hold
10416
- * @param {string} id Xero ID
10417
- * @param {PatchSetOnHoldStateEnum} state On Hold State
10418
- * @param {*} [options] Override http request option.
10419
- * @throws {RequiredError}
10420
- */
10421
- async patchSetOnHold(id: string, state: PatchSetOnHoldStateEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>> {
10422
- const localVarAxiosArgs = await localVarAxiosParamCreator.patchSetOnHold(id, state, options);
10423
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
10424
- const localVarOperationServerBasePath = operationServerMap['AccountsApi.patchSetOnHold']?.[localVarOperationServerIndex]?.url;
10425
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
10426
- },
10427
10358
  /**
10428
10359
  * Set Account Portal Access
10429
10360
  * @param {string} id Xero ID
@@ -10946,16 +10877,6 @@ export const AccountsApiFactory = function (configuration?: Configuration, baseP
10946
10877
  patchSetAccountStatus(id: string, state: PatchSetAccountStatusStateEnum, options?: RawAxiosRequestConfig): AxiosPromise<void> {
10947
10878
  return localVarFp.patchSetAccountStatus(id, state, options).then((request) => request(axios, basePath));
10948
10879
  },
10949
- /**
10950
- * Set Account On Hold
10951
- * @param {string} id Xero ID
10952
- * @param {PatchSetOnHoldStateEnum} state On Hold State
10953
- * @param {*} [options] Override http request option.
10954
- * @throws {RequiredError}
10955
- */
10956
- patchSetOnHold(id: string, state: PatchSetOnHoldStateEnum, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO> {
10957
- return localVarFp.patchSetOnHold(id, state, options).then((request) => request(axios, basePath));
10958
- },
10959
10880
  /**
10960
10881
  * Set Account Portal Access
10961
10882
  * @param {string} id Xero ID
@@ -11416,17 +11337,6 @@ export class AccountsApi extends BaseAPI {
11416
11337
  return AccountsApiFp(this.configuration).patchSetAccountStatus(id, state, options).then((request) => request(this.axios, this.basePath));
11417
11338
  }
11418
11339
 
11419
- /**
11420
- * Set Account On Hold
11421
- * @param {string} id Xero ID
11422
- * @param {PatchSetOnHoldStateEnum} state On Hold State
11423
- * @param {*} [options] Override http request option.
11424
- * @throws {RequiredError}
11425
- */
11426
- public patchSetOnHold(id: string, state: PatchSetOnHoldStateEnum, options?: RawAxiosRequestConfig) {
11427
- return AccountsApiFp(this.configuration).patchSetOnHold(id, state, options).then((request) => request(this.axios, this.basePath));
11428
- }
11429
-
11430
11340
  /**
11431
11341
  * Set Account Portal Access
11432
11342
  * @param {string} id Xero ID
@@ -11722,11 +11632,6 @@ export const PatchSetAccountStatusStateEnum = {
11722
11632
  Disable: 'disable',
11723
11633
  } as const;
11724
11634
  export type PatchSetAccountStatusStateEnum = typeof PatchSetAccountStatusStateEnum[keyof typeof PatchSetAccountStatusStateEnum];
11725
- export const PatchSetOnHoldStateEnum = {
11726
- Enable: 'enable',
11727
- Disable: 'disable',
11728
- } as const;
11729
- export type PatchSetOnHoldStateEnum = typeof PatchSetOnHoldStateEnum[keyof typeof PatchSetOnHoldStateEnum];
11730
11635
  export const PatchSetPortalAccessStateEnum = {
11731
11636
  Enable: 'enable',
11732
11637
  Disable: 'disable',
@@ -11769,55 +11674,6 @@ export const BillingApiAxiosParamCreator = function (configuration?: Configurati
11769
11674
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
11770
11675
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
11771
11676
 
11772
- return {
11773
- url: toPathString(localVarUrlObj),
11774
- options: localVarRequestOptions,
11775
- };
11776
- },
11777
- /**
11778
- * Transfer Billing Connection
11779
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
11780
- * @param {number} [id] Connection ID
11781
- * @param {string} [cli] CLI
11782
- * @param {boolean} [skipDDis] Skip DDIs
11783
- * @param {*} [options] Override http request option.
11784
- * @throws {RequiredError}
11785
- */
11786
- putTransferConnection: async (putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
11787
- // verify required parameter 'putTransferConnectionRequest' is not null or undefined
11788
- assertParamExists('putTransferConnection', 'putTransferConnectionRequest', putTransferConnectionRequest)
11789
- const localVarPath = `/billing/admin/connections`;
11790
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
11791
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
11792
- let baseOptions;
11793
- if (configuration) {
11794
- baseOptions = configuration.baseOptions;
11795
- }
11796
-
11797
- const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
11798
- const localVarHeaderParameter = {} as any;
11799
- const localVarQueryParameter = {} as any;
11800
-
11801
- if (id !== undefined) {
11802
- localVarQueryParameter['id'] = id;
11803
- }
11804
-
11805
- if (cli !== undefined) {
11806
- localVarQueryParameter['cli'] = cli;
11807
- }
11808
-
11809
- if (skipDDis !== undefined) {
11810
- localVarQueryParameter['skipDDis'] = skipDDis;
11811
- }
11812
-
11813
- localVarHeaderParameter['Content-Type'] = 'application/json';
11814
- localVarHeaderParameter['Accept'] = 'application/json';
11815
-
11816
- setSearchParams(localVarUrlObj, localVarQueryParameter);
11817
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
11818
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
11819
- localVarRequestOptions.data = serializeDataIfNeeded(putTransferConnectionRequest, localVarRequestOptions, configuration)
11820
-
11821
11677
  return {
11822
11678
  url: toPathString(localVarUrlObj),
11823
11679
  options: localVarRequestOptions,
@@ -11844,21 +11700,6 @@ export const BillingApiFp = function(configuration?: Configuration) {
11844
11700
  const localVarOperationServerBasePath = operationServerMap['BillingApi.getGetAllCustomer']?.[localVarOperationServerIndex]?.url;
11845
11701
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
11846
11702
  },
11847
- /**
11848
- * Transfer Billing Connection
11849
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
11850
- * @param {number} [id] Connection ID
11851
- * @param {string} [cli] CLI
11852
- * @param {boolean} [skipDDis] Skip DDIs
11853
- * @param {*} [options] Override http request option.
11854
- * @throws {RequiredError}
11855
- */
11856
- async putTransferConnection(putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
11857
- const localVarAxiosArgs = await localVarAxiosParamCreator.putTransferConnection(putTransferConnectionRequest, id, cli, skipDDis, options);
11858
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
11859
- const localVarOperationServerBasePath = operationServerMap['BillingApi.putTransferConnection']?.[localVarOperationServerIndex]?.url;
11860
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
11861
- },
11862
11703
  }
11863
11704
  };
11864
11705
 
@@ -11877,18 +11718,6 @@ export const BillingApiFactory = function (configuration?: Configuration, basePa
11877
11718
  getGetAllCustomer(options?: RawAxiosRequestConfig): AxiosPromise<{ [key: string]: { [key: string]: string; }; }> {
11878
11719
  return localVarFp.getGetAllCustomer(options).then((request) => request(axios, basePath));
11879
11720
  },
11880
- /**
11881
- * Transfer Billing Connection
11882
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
11883
- * @param {number} [id] Connection ID
11884
- * @param {string} [cli] CLI
11885
- * @param {boolean} [skipDDis] Skip DDIs
11886
- * @param {*} [options] Override http request option.
11887
- * @throws {RequiredError}
11888
- */
11889
- putTransferConnection(putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<object> {
11890
- return localVarFp.putTransferConnection(putTransferConnectionRequest, id, cli, skipDDis, options).then((request) => request(axios, basePath));
11891
- },
11892
11721
  };
11893
11722
  };
11894
11723
 
@@ -11905,19 +11734,6 @@ export class BillingApi extends BaseAPI {
11905
11734
  public getGetAllCustomer(options?: RawAxiosRequestConfig) {
11906
11735
  return BillingApiFp(this.configuration).getGetAllCustomer(options).then((request) => request(this.axios, this.basePath));
11907
11736
  }
11908
-
11909
- /**
11910
- * Transfer Billing Connection
11911
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
11912
- * @param {number} [id] Connection ID
11913
- * @param {string} [cli] CLI
11914
- * @param {boolean} [skipDDis] Skip DDIs
11915
- * @param {*} [options] Override http request option.
11916
- * @throws {RequiredError}
11917
- */
11918
- public putTransferConnection(putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig) {
11919
- return BillingApiFp(this.configuration).putTransferConnection(putTransferConnectionRequest, id, cli, skipDDis, options).then((request) => request(this.axios, this.basePath));
11920
- }
11921
11737
  }
11922
11738
 
11923
11739
 
package/base.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * Yellowgrid
5
- * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://bitbucket.org` For questions or technical support, please contact support@yellowgrid.co.uk.
5
+ * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://localhost` For questions or technical support, please contact support@yellowgrid.co.uk.
6
6
  *
7
7
  * The version of the OpenAPI document: 0
8
8
  *
@@ -19,7 +19,7 @@ import type { Configuration } from './configuration';
19
19
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
20
20
  import globalAxios from 'axios';
21
21
 
22
- export const BASE_PATH = "https://bitbucket.org".replace(/\/+$/, "");
22
+ export const BASE_PATH = "https://localhost".replace(/\/+$/, "");
23
23
 
24
24
  export const COLLECTION_FORMATS = {
25
25
  csv: ",",
package/common.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * Yellowgrid
5
- * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://bitbucket.org` For questions or technical support, please contact support@yellowgrid.co.uk.
5
+ * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://localhost` For questions or technical support, please contact support@yellowgrid.co.uk.
6
6
  *
7
7
  * The version of the OpenAPI document: 0
8
8
  *
package/config.json CHANGED
@@ -1,3 +1,3 @@
1
- {
2
- "npmName": "yellowgrid-api-ts"
3
- }
1
+ {
2
+ "npmName": "yellowgrid-api-ts"
3
+ }
package/configuration.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /* tslint:disable */
2
2
  /**
3
3
  * Yellowgrid
4
- * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://bitbucket.org` For questions or technical support, please contact support@yellowgrid.co.uk.
4
+ * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://localhost` For questions or technical support, please contact support@yellowgrid.co.uk.
5
5
  *
6
6
  * The version of the OpenAPI document: 0
7
7
  *
package/dist/api.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Yellowgrid
3
- * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://bitbucket.org` For questions or technical support, please contact support@yellowgrid.co.uk.
3
+ * Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://localhost` For questions or technical support, please contact support@yellowgrid.co.uk.
4
4
  *
5
5
  * The version of the OpenAPI document: 0
6
6
  *
@@ -279,10 +279,6 @@ export interface AccountFinanceDTO {
279
279
  * Overdue Amount
280
280
  */
281
281
  'overdue'?: number;
282
- /**
283
- * On Hold
284
- */
285
- 'onHold'?: boolean;
286
282
  'priceList'?: CustomerPriceListEnum;
287
283
  /**
288
284
  * SIP Trunk Channel Cost
@@ -4303,10 +4299,6 @@ export interface PartnerDTO {
4303
4299
  * 3CX Installation URL
4304
4300
  */
4305
4301
  'installationUrl'?: string;
4306
- /**
4307
- * Aligned
4308
- */
4309
- 'aligned'?: boolean;
4310
4302
  }
4311
4303
  export interface PatchUpdateAccountCnameRequest {
4312
4304
  /**
@@ -4999,12 +4991,6 @@ export interface PutAllocateItemsRequestItemsInner {
4999
4991
  */
5000
4992
  'quantity'?: number;
5001
4993
  }
5002
- export interface PutTransferConnectionRequest {
5003
- /**
5004
- * Customer ID
5005
- */
5006
- 'customerId'?: number;
5007
- }
5008
4994
  /**
5009
4995
  * Azure Recordings Backup
5010
4996
  */
@@ -5333,7 +5319,6 @@ export declare const ShipmentDTOCourierEnum: {
5333
5319
  readonly Dpd: "DPD";
5334
5320
  readonly ChorltonPallet: "Chorlton Pallet";
5335
5321
  readonly Pops: "POPS";
5336
- readonly Interparcel: "Interparcel";
5337
5322
  };
5338
5323
  export type ShipmentDTOCourierEnum = typeof ShipmentDTOCourierEnum[keyof typeof ShipmentDTOCourierEnum];
5339
5324
  /**
@@ -5538,7 +5523,6 @@ export declare const ShipmentRequestDTOCourierEnum: {
5538
5523
  readonly Dpd: "DPD";
5539
5524
  readonly ChorltonPallet: "Chorlton Pallet";
5540
5525
  readonly Pops: "POPS";
5541
- readonly Interparcel: "Interparcel";
5542
5526
  };
5543
5527
  export type ShipmentRequestDTOCourierEnum = typeof ShipmentRequestDTOCourierEnum[keyof typeof ShipmentRequestDTOCourierEnum];
5544
5528
  /**
@@ -5633,7 +5617,6 @@ export declare const ShippingRequestDTOCourierEnum: {
5633
5617
  readonly Dpd: "DPD";
5634
5618
  readonly ChorltonPallet: "Chorlton Pallet";
5635
5619
  readonly Pops: "POPS";
5636
- readonly Interparcel: "Interparcel";
5637
5620
  };
5638
5621
  export type ShippingRequestDTOCourierEnum = typeof ShippingRequestDTOCourierEnum[keyof typeof ShippingRequestDTOCourierEnum];
5639
5622
  export declare const ShippingRequestDTOPrinterEnum: {
@@ -5659,7 +5642,6 @@ export declare const ShippingServiceDTOCourierEnum: {
5659
5642
  readonly Dpd: "DPD";
5660
5643
  readonly ChorltonPallet: "Chorlton Pallet";
5661
5644
  readonly Pops: "POPS";
5662
- readonly Interparcel: "Interparcel";
5663
5645
  };
5664
5646
  export type ShippingServiceDTOCourierEnum = typeof ShippingServiceDTOCourierEnum[keyof typeof ShippingServiceDTOCourierEnum];
5665
5647
  /**
@@ -5695,7 +5677,6 @@ export declare const ShippingServiceModelCourierEnum: {
5695
5677
  readonly Dpd: "DPD";
5696
5678
  readonly ChorltonPallet: "Chorlton Pallet";
5697
5679
  readonly Pops: "POPS";
5698
- readonly Interparcel: "Interparcel";
5699
5680
  };
5700
5681
  export type ShippingServiceModelCourierEnum = typeof ShippingServiceModelCourierEnum[keyof typeof ShippingServiceModelCourierEnum];
5701
5682
  export interface ShippingServicesModel {
@@ -8634,14 +8615,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
8634
8615
  * @throws {RequiredError}
8635
8616
  */
8636
8617
  patchSetAccountStatus: (id: string, state: PatchSetAccountStatusStateEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8637
- /**
8638
- * Set Account On Hold
8639
- * @param {string} id Xero ID
8640
- * @param {PatchSetOnHoldStateEnum} state On Hold State
8641
- * @param {*} [options] Override http request option.
8642
- * @throws {RequiredError}
8643
- */
8644
- patchSetOnHold: (id: string, state: PatchSetOnHoldStateEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8645
8618
  /**
8646
8619
  * Set Account Portal Access
8647
8620
  * @param {string} id Xero ID
@@ -8994,14 +8967,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
8994
8967
  * @throws {RequiredError}
8995
8968
  */
8996
8969
  patchSetAccountStatus(id: string, state: PatchSetAccountStatusStateEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8997
- /**
8998
- * Set Account On Hold
8999
- * @param {string} id Xero ID
9000
- * @param {PatchSetOnHoldStateEnum} state On Hold State
9001
- * @param {*} [options] Override http request option.
9002
- * @throws {RequiredError}
9003
- */
9004
- patchSetOnHold(id: string, state: PatchSetOnHoldStateEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>>;
9005
8970
  /**
9006
8971
  * Set Account Portal Access
9007
8972
  * @param {string} id Xero ID
@@ -9354,14 +9319,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
9354
9319
  * @throws {RequiredError}
9355
9320
  */
9356
9321
  patchSetAccountStatus(id: string, state: PatchSetAccountStatusStateEnum, options?: RawAxiosRequestConfig): AxiosPromise<void>;
9357
- /**
9358
- * Set Account On Hold
9359
- * @param {string} id Xero ID
9360
- * @param {PatchSetOnHoldStateEnum} state On Hold State
9361
- * @param {*} [options] Override http request option.
9362
- * @throws {RequiredError}
9363
- */
9364
- patchSetOnHold(id: string, state: PatchSetOnHoldStateEnum, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO>;
9365
9322
  /**
9366
9323
  * Set Account Portal Access
9367
9324
  * @param {string} id Xero ID
@@ -9714,14 +9671,6 @@ export declare class AccountsApi extends BaseAPI {
9714
9671
  * @throws {RequiredError}
9715
9672
  */
9716
9673
  patchSetAccountStatus(id: string, state: PatchSetAccountStatusStateEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9717
- /**
9718
- * Set Account On Hold
9719
- * @param {string} id Xero ID
9720
- * @param {PatchSetOnHoldStateEnum} state On Hold State
9721
- * @param {*} [options] Override http request option.
9722
- * @throws {RequiredError}
9723
- */
9724
- patchSetOnHold(id: string, state: PatchSetOnHoldStateEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountFinanceDTO, any, {}>>;
9725
9674
  /**
9726
9675
  * Set Account Portal Access
9727
9676
  * @param {string} id Xero ID
@@ -9939,11 +9888,6 @@ export declare const PatchSetAccountStatusStateEnum: {
9939
9888
  readonly Disable: "disable";
9940
9889
  };
9941
9890
  export type PatchSetAccountStatusStateEnum = typeof PatchSetAccountStatusStateEnum[keyof typeof PatchSetAccountStatusStateEnum];
9942
- export declare const PatchSetOnHoldStateEnum: {
9943
- readonly Enable: "enable";
9944
- readonly Disable: "disable";
9945
- };
9946
- export type PatchSetOnHoldStateEnum = typeof PatchSetOnHoldStateEnum[keyof typeof PatchSetOnHoldStateEnum];
9947
9891
  export declare const PatchSetPortalAccessStateEnum: {
9948
9892
  readonly Enable: "enable";
9949
9893
  readonly Disable: "disable";
@@ -9965,16 +9909,6 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
9965
9909
  * @throws {RequiredError}
9966
9910
  */
9967
9911
  getGetAllCustomer: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9968
- /**
9969
- * Transfer Billing Connection
9970
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
9971
- * @param {number} [id] Connection ID
9972
- * @param {string} [cli] CLI
9973
- * @param {boolean} [skipDDis] Skip DDIs
9974
- * @param {*} [options] Override http request option.
9975
- * @throws {RequiredError}
9976
- */
9977
- putTransferConnection: (putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9978
9912
  };
9979
9913
  /**
9980
9914
  * BillingApi - functional programming interface
@@ -9991,16 +9925,6 @@ export declare const BillingApiFp: (configuration?: Configuration) => {
9991
9925
  [key: string]: string;
9992
9926
  };
9993
9927
  }>>;
9994
- /**
9995
- * Transfer Billing Connection
9996
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
9997
- * @param {number} [id] Connection ID
9998
- * @param {string} [cli] CLI
9999
- * @param {boolean} [skipDDis] Skip DDIs
10000
- * @param {*} [options] Override http request option.
10001
- * @throws {RequiredError}
10002
- */
10003
- putTransferConnection(putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
10004
9928
  };
10005
9929
  /**
10006
9930
  * BillingApi - factory interface
@@ -10017,16 +9941,6 @@ export declare const BillingApiFactory: (configuration?: Configuration, basePath
10017
9941
  [key: string]: string;
10018
9942
  };
10019
9943
  }>;
10020
- /**
10021
- * Transfer Billing Connection
10022
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
10023
- * @param {number} [id] Connection ID
10024
- * @param {string} [cli] CLI
10025
- * @param {boolean} [skipDDis] Skip DDIs
10026
- * @param {*} [options] Override http request option.
10027
- * @throws {RequiredError}
10028
- */
10029
- putTransferConnection(putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<object>;
10030
9944
  };
10031
9945
  /**
10032
9946
  * BillingApi - object-oriented interface
@@ -10043,16 +9957,6 @@ export declare class BillingApi extends BaseAPI {
10043
9957
  [key: string]: string;
10044
9958
  };
10045
9959
  }, any, {}>>;
10046
- /**
10047
- * Transfer Billing Connection
10048
- * @param {PutTransferConnectionRequest} putTransferConnectionRequest Transfer Request
10049
- * @param {number} [id] Connection ID
10050
- * @param {string} [cli] CLI
10051
- * @param {boolean} [skipDDis] Skip DDIs
10052
- * @param {*} [options] Override http request option.
10053
- * @throws {RequiredError}
10054
- */
10055
- putTransferConnection(putTransferConnectionRequest: PutTransferConnectionRequest, id?: number, cli?: string, skipDDis?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
10056
9960
  }
10057
9961
  /**
10058
9962
  * CRMApi - axios parameter creator