yellowgrid-api-ts 3.2.215 → 3.2.217-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 (560) hide show
  1. package/.openapi-generator/FILES +344 -299
  2. package/.openapi-generator/VERSION +1 -1
  3. package/README.md +79 -1
  4. package/api.ts +3832 -58
  5. package/base.ts +2 -2
  6. package/common.ts +1 -1
  7. package/config.json +4 -3
  8. package/configuration.ts +1 -1
  9. package/dist/api.d.ts +2553 -202
  10. package/dist/api.js +5840 -2586
  11. package/dist/base.d.ts +1 -1
  12. package/dist/base.js +2 -2
  13. package/dist/common.d.ts +1 -1
  14. package/dist/common.js +1 -1
  15. package/dist/configuration.d.ts +1 -1
  16. package/dist/configuration.js +1 -1
  17. package/dist/index.d.ts +1 -1
  18. package/dist/index.js +1 -1
  19. package/dist/models/GraphTypeEnum.d.ts +13 -0
  20. package/dist/models/GraphTypeEnum.js +15 -0
  21. package/dist/models/HostingPriceListEnum.d.ts +5 -0
  22. package/dist/models/HostingPriceListEnum.js +5 -0
  23. package/dist/models/ReportEnum.d.ts +53 -0
  24. package/dist/models/ReportEnum.js +55 -0
  25. package/dist/models/StatusEnum.d.ts +18 -0
  26. package/dist/models/StatusEnum.js +20 -0
  27. package/dist/src/apis/AccountsApi.d.ts +258 -0
  28. package/dist/src/apis/AccountsApi.js +975 -0
  29. package/dist/src/apis/CRMApi.d.ts +26 -0
  30. package/dist/src/apis/CRMApi.js +122 -0
  31. package/dist/src/apis/Class3CXApi.d.ts +44 -0
  32. package/dist/src/apis/Class3CXApi.js +177 -0
  33. package/dist/src/apis/Class3CXInstallationWizardApi.d.ts +446 -0
  34. package/dist/src/apis/Class3CXInstallationWizardApi.js +1740 -0
  35. package/dist/src/apis/Class3CXInstallationsApi.d.ts +253 -0
  36. package/dist/src/apis/Class3CXInstallationsApi.js +806 -0
  37. package/dist/src/apis/Class3CXIntegrationsApi.d.ts +102 -0
  38. package/dist/src/apis/Class3CXIntegrationsApi.js +386 -0
  39. package/dist/src/apis/Class3CXMultiTenantApi.d.ts +122 -0
  40. package/dist/src/apis/Class3CXMultiTenantApi.js +431 -0
  41. package/dist/src/apis/MyPBXToolsApi.d.ts +32 -0
  42. package/dist/src/apis/MyPBXToolsApi.js +136 -0
  43. package/dist/src/apis/OAuth20Api.d.ts +185 -0
  44. package/dist/src/apis/OAuth20Api.js +507 -0
  45. package/dist/src/apis/OrdersApi.d.ts +154 -0
  46. package/dist/src/apis/OrdersApi.js +512 -0
  47. package/dist/src/apis/PricingApi.d.ts +154 -0
  48. package/dist/src/apis/PricingApi.js +308 -0
  49. package/dist/src/apis/ProductsApi.d.ts +135 -0
  50. package/dist/src/apis/ProductsApi.js +531 -0
  51. package/dist/src/apis/ProvisioningApi.d.ts +112 -0
  52. package/dist/src/apis/ProvisioningApi.js +427 -0
  53. package/dist/src/apis/SIPTrunksApi.d.ts +315 -0
  54. package/dist/src/apis/SIPTrunksApi.js +1197 -0
  55. package/dist/src/apis/SMSApi.d.ts +30 -0
  56. package/dist/src/apis/SMSApi.js +130 -0
  57. package/dist/src/apis/ServicesApi.d.ts +81 -0
  58. package/dist/src/apis/ServicesApi.js +386 -0
  59. package/dist/src/apis/ShippingApi.d.ts +45 -0
  60. package/dist/src/apis/ShippingApi.js +179 -0
  61. package/dist/src/apis/StockManagementApi.d.ts +345 -0
  62. package/dist/src/apis/StockManagementApi.js +1293 -0
  63. package/dist/src/apis/SystemApi.d.ts +37 -0
  64. package/dist/src/apis/SystemApi.js +146 -0
  65. package/dist/src/apis/TicketsApi.d.ts +79 -0
  66. package/dist/src/apis/TicketsApi.js +360 -0
  67. package/dist/src/apis/WebhooksApi.d.ts +56 -0
  68. package/dist/src/apis/WebhooksApi.js +189 -0
  69. package/dist/src/apis/index.d.ts +21 -0
  70. package/dist/src/apis/index.js +39 -0
  71. package/dist/src/index.d.ts +3 -0
  72. package/dist/src/index.js +21 -0
  73. package/dist/src/models/AbstractOrderRequestDTO.d.ts +71 -0
  74. package/dist/src/models/AbstractOrderRequestDTO.js +64 -0
  75. package/dist/src/models/AccountContactEntity.d.ts +104 -0
  76. package/dist/src/models/AccountContactEntity.js +73 -0
  77. package/dist/src/models/AccountContactModel.d.ts +104 -0
  78. package/dist/src/models/AccountContactModel.js +73 -0
  79. package/dist/src/models/AccountContactRequestModel.d.ts +80 -0
  80. package/dist/src/models/AccountContactRequestModel.js +65 -0
  81. package/dist/src/models/AccountDetailedSummaryDTO.d.ts +89 -0
  82. package/dist/src/models/AccountDetailedSummaryDTO.js +70 -0
  83. package/dist/src/models/AccountRequestModel.d.ts +128 -0
  84. package/dist/src/models/AccountRequestModel.js +81 -0
  85. package/dist/src/models/AccountSummaryDTO.d.ts +44 -0
  86. package/dist/src/models/AccountSummaryDTO.js +53 -0
  87. package/dist/src/models/AccountsResponseModel.d.ts +51 -0
  88. package/dist/src/models/AccountsResponseModel.js +56 -0
  89. package/dist/src/models/AddressModel.d.ts +110 -0
  90. package/dist/src/models/AddressModel.js +75 -0
  91. package/dist/src/models/AddressRequestModel.d.ts +50 -0
  92. package/dist/src/models/AddressRequestModel.js +55 -0
  93. package/dist/src/models/AdminOrderRequestDTO.d.ts +113 -0
  94. package/dist/src/models/AdminOrderRequestDTO.js +78 -0
  95. package/dist/src/models/AdminUserModel.d.ts +79 -0
  96. package/dist/src/models/AdminUserModel.js +72 -0
  97. package/dist/src/models/AgentHoursGraphModel.d.ts +51 -0
  98. package/dist/src/models/AgentHoursGraphModel.js +56 -0
  99. package/dist/src/models/AgentHoursGraphMonthModel.d.ts +38 -0
  100. package/dist/src/models/AgentHoursGraphMonthModel.js +51 -0
  101. package/dist/src/models/ApiLogEntity.d.ts +98 -0
  102. package/dist/src/models/ApiLogEntity.js +71 -0
  103. package/dist/src/models/AreaCodeModel.d.ts +38 -0
  104. package/dist/src/models/AreaCodeModel.js +51 -0
  105. package/dist/src/models/AttachmentModel.d.ts +56 -0
  106. package/dist/src/models/AttachmentModel.js +57 -0
  107. package/dist/src/models/AttributeSetEnum.d.ts +38 -0
  108. package/dist/src/models/AttributeSetEnum.js +51 -0
  109. package/dist/src/models/AuditLogEntity.d.ts +80 -0
  110. package/dist/src/models/AuditLogEntity.js +65 -0
  111. package/dist/src/models/AuthCodeResponseModel.d.ts +44 -0
  112. package/dist/src/models/AuthCodeResponseModel.js +53 -0
  113. package/dist/src/models/BasicItemDTO.d.ts +38 -0
  114. package/dist/src/models/BasicItemDTO.js +51 -0
  115. package/dist/src/models/BasicProductDTO.d.ts +38 -0
  116. package/dist/src/models/BasicProductDTO.js +51 -0
  117. package/dist/src/models/BatchEntity.d.ts +128 -0
  118. package/dist/src/models/BatchEntity.js +81 -0
  119. package/dist/src/models/CallBarringModel.d.ts +56 -0
  120. package/dist/src/models/CallBarringModel.js +57 -0
  121. package/dist/src/models/ClientDetailsModel.d.ts +68 -0
  122. package/dist/src/models/ClientDetailsModel.js +61 -0
  123. package/dist/src/models/ClientModel.d.ts +50 -0
  124. package/dist/src/models/ClientModel.js +55 -0
  125. package/dist/src/models/CompanyContractModel.d.ts +56 -0
  126. package/dist/src/models/CompanyContractModel.js +57 -0
  127. package/dist/src/models/ContactInfoModel.d.ts +56 -0
  128. package/dist/src/models/ContactInfoModel.js +57 -0
  129. package/dist/src/models/ConversationModel.d.ts +75 -0
  130. package/dist/src/models/ConversationModel.js +64 -0
  131. package/dist/src/models/CourierPriceEntity.d.ts +86 -0
  132. package/dist/src/models/CourierPriceEntity.js +67 -0
  133. package/dist/src/models/CreditAccountEntity.d.ts +152 -0
  134. package/dist/src/models/CreditAccountEntity.js +89 -0
  135. package/dist/src/models/CrmContactDTO.d.ts +68 -0
  136. package/dist/src/models/CrmContactDTO.js +61 -0
  137. package/dist/src/models/CustomerInformationModel.d.ts +68 -0
  138. package/dist/src/models/CustomerInformationModel.js +61 -0
  139. package/dist/src/models/CustomerItemRequestDTO.d.ts +81 -0
  140. package/dist/src/models/CustomerItemRequestDTO.js +66 -0
  141. package/dist/src/models/CustomerOrderRequestDTO.d.ts +71 -0
  142. package/dist/src/models/CustomerOrderRequestDTO.js +64 -0
  143. package/dist/src/models/CustomerPriceListEnum.d.ts +38 -0
  144. package/dist/src/models/CustomerPriceListEnum.js +51 -0
  145. package/dist/src/models/CustomerSummaryReportDTO.d.ts +65 -0
  146. package/dist/src/models/CustomerSummaryReportDTO.js +62 -0
  147. package/dist/src/models/DdiRangeRequestModel.d.ts +44 -0
  148. package/dist/src/models/DdiRangeRequestModel.js +53 -0
  149. package/dist/src/models/DdiRangesRequestModel.d.ts +33 -0
  150. package/dist/src/models/DdiRangesRequestModel.js +50 -0
  151. package/dist/src/models/DetailedItemRequestDTO.d.ts +99 -0
  152. package/dist/src/models/DetailedItemRequestDTO.js +72 -0
  153. package/dist/src/models/DetailedOrderRequestDTO.d.ts +71 -0
  154. package/dist/src/models/DetailedOrderRequestDTO.js +64 -0
  155. package/dist/src/models/DivertRequestModel.d.ts +38 -0
  156. package/dist/src/models/DivertRequestModel.js +51 -0
  157. package/dist/src/models/DivertResponseModel.d.ts +52 -0
  158. package/dist/src/models/DivertResponseModel.js +61 -0
  159. package/dist/src/models/EdTechProClientEntity.d.ts +56 -0
  160. package/dist/src/models/EdTechProClientEntity.js +57 -0
  161. package/dist/src/models/EdTechProSchoolModel.d.ts +104 -0
  162. package/dist/src/models/EdTechProSchoolModel.js +73 -0
  163. package/dist/src/models/EdTechProSchoolsModel.d.ts +51 -0
  164. package/dist/src/models/EdTechProSchoolsModel.js +56 -0
  165. package/dist/src/models/EdTechProSetupModel.d.ts +56 -0
  166. package/dist/src/models/EdTechProSetupModel.js +57 -0
  167. package/dist/src/models/EventDTO.d.ts +84 -0
  168. package/dist/src/models/EventDTO.js +73 -0
  169. package/dist/src/models/EventRequestDTO.d.ts +44 -0
  170. package/dist/src/models/EventRequestDTO.js +53 -0
  171. package/dist/src/models/EventSubscriptionModel.d.ts +38 -0
  172. package/dist/src/models/EventSubscriptionModel.js +51 -0
  173. package/dist/src/models/EventTypeEnum.d.ts +19 -0
  174. package/dist/src/models/EventTypeEnum.js +24 -0
  175. package/dist/src/models/EventUpdateDTO.d.ts +50 -0
  176. package/dist/src/models/EventUpdateDTO.js +55 -0
  177. package/dist/src/models/EventUpdateEntity.d.ts +56 -0
  178. package/dist/src/models/EventUpdateEntity.js +57 -0
  179. package/dist/src/models/EventUpdateRequestDTO.d.ts +44 -0
  180. package/dist/src/models/EventUpdateRequestDTO.js +53 -0
  181. package/dist/src/models/FraudManagementModel.d.ts +38 -0
  182. package/dist/src/models/FraudManagementModel.js +51 -0
  183. package/dist/src/models/FreshdeskCompanyTicketsModel.d.ts +51 -0
  184. package/dist/src/models/FreshdeskCompanyTicketsModel.js +56 -0
  185. package/dist/src/models/FreshdeskTicketEntity.d.ts +68 -0
  186. package/dist/src/models/FreshdeskTicketEntity.js +61 -0
  187. package/dist/src/models/FtpAccountsEntity.d.ts +56 -0
  188. package/dist/src/models/FtpAccountsEntity.js +57 -0
  189. package/dist/src/models/GenericFileModel.d.ts +44 -0
  190. package/dist/src/models/GenericFileModel.js +53 -0
  191. package/dist/src/models/GetGetPrice200Response.d.ts +32 -0
  192. package/dist/src/models/GetGetPrice200Response.js +49 -0
  193. package/dist/src/models/GetGetRecording200Response.d.ts +32 -0
  194. package/dist/src/models/GetGetRecording200Response.js +49 -0
  195. package/dist/src/models/HostingChangeResponseModel.d.ts +64 -0
  196. package/dist/src/models/HostingChangeResponseModel.js +65 -0
  197. package/dist/src/models/HostingRegionDTO.d.ts +59 -0
  198. package/dist/src/models/HostingRegionDTO.js +68 -0
  199. package/dist/src/models/InstanceAutoFailoverEntity.d.ts +56 -0
  200. package/dist/src/models/InstanceAutoFailoverEntity.js +57 -0
  201. package/dist/src/models/InstanceDeletionScheduleEntity.d.ts +50 -0
  202. package/dist/src/models/InstanceDeletionScheduleEntity.js +55 -0
  203. package/dist/src/models/InstanceEntity.d.ts +152 -0
  204. package/dist/src/models/InstanceEntity.js +89 -0
  205. package/dist/src/models/InstanceFailoverEntity.d.ts +92 -0
  206. package/dist/src/models/InstanceFailoverEntity.js +69 -0
  207. package/dist/src/models/InstanceMonitoringEntity.d.ts +44 -0
  208. package/dist/src/models/InstanceMonitoringEntity.js +53 -0
  209. package/dist/src/models/InstanceMonitoringLogEntity.d.ts +62 -0
  210. package/dist/src/models/InstanceMonitoringLogEntity.js +59 -0
  211. package/dist/src/models/InstanceScheduledTasksEntity.d.ts +62 -0
  212. package/dist/src/models/InstanceScheduledTasksEntity.js +59 -0
  213. package/dist/src/models/InstanceTcxDetailsEntity.d.ts +86 -0
  214. package/dist/src/models/InstanceTcxDetailsEntity.js +67 -0
  215. package/dist/src/models/InstanceUserCredentialsEntity.d.ts +56 -0
  216. package/dist/src/models/InstanceUserCredentialsEntity.js +57 -0
  217. package/dist/src/models/ItemDTO.d.ts +117 -0
  218. package/dist/src/models/ItemDTO.js +78 -0
  219. package/dist/src/models/ItemDiscountEntity.d.ts +77 -0
  220. package/dist/src/models/ItemDiscountEntity.js +70 -0
  221. package/dist/src/models/ItemEntity.d.ts +158 -0
  222. package/dist/src/models/ItemEntity.js +91 -0
  223. package/dist/src/models/LinkedOrderEntity.d.ts +38 -0
  224. package/dist/src/models/LinkedOrderEntity.js +51 -0
  225. package/dist/src/models/MFARequiredModel.d.ts +38 -0
  226. package/dist/src/models/MFARequiredModel.js +51 -0
  227. package/dist/src/models/MonthlyUsageModel.d.ts +38 -0
  228. package/dist/src/models/MonthlyUsageModel.js +51 -0
  229. package/dist/src/models/MultiTenantChangeResponseModel.d.ts +70 -0
  230. package/dist/src/models/MultiTenantChangeResponseModel.js +75 -0
  231. package/dist/src/models/NavigationModel.d.ts +50 -0
  232. package/dist/src/models/NavigationModel.js +55 -0
  233. package/dist/src/models/OfflineInstancesEntity.d.ts +56 -0
  234. package/dist/src/models/OfflineInstancesEntity.js +57 -0
  235. package/dist/src/models/OrderEntity.d.ts +374 -0
  236. package/dist/src/models/OrderEntity.js +163 -0
  237. package/dist/src/models/OrderRequestModel.d.ts +120 -0
  238. package/dist/src/models/OrderRequestModel.js +88 -0
  239. package/dist/src/models/OrderSummariesModel.d.ts +51 -0
  240. package/dist/src/models/OrderSummariesModel.js +56 -0
  241. package/dist/src/models/OrderSummaryDTO.d.ts +126 -0
  242. package/dist/src/models/OrderSummaryDTO.js +83 -0
  243. package/dist/src/models/OrderTotalModel.d.ts +111 -0
  244. package/dist/src/models/OrderTotalModel.js +100 -0
  245. package/dist/src/models/OrderedItemEntity.d.ts +110 -0
  246. package/dist/src/models/OrderedItemEntity.js +75 -0
  247. package/dist/src/models/PatchSetTcxWizardCnameRequest.d.ts +32 -0
  248. package/dist/src/models/PatchSetTcxWizardCnameRequest.js +49 -0
  249. package/dist/src/models/PatchUpdateAccountContactPasswordRequest.d.ts +32 -0
  250. package/dist/src/models/PatchUpdateAccountContactPasswordRequest.js +49 -0
  251. package/dist/src/models/PortalAccountModel.d.ts +171 -0
  252. package/dist/src/models/PortalAccountModel.js +96 -0
  253. package/dist/src/models/PortalLoginModel.d.ts +68 -0
  254. package/dist/src/models/PortalLoginModel.js +61 -0
  255. package/dist/src/models/PostAddWebhook200Response.d.ts +32 -0
  256. package/dist/src/models/PostAddWebhook200Response.js +49 -0
  257. package/dist/src/models/PostGetClientCredentialsRequest.d.ts +32 -0
  258. package/dist/src/models/PostGetClientCredentialsRequest.js +49 -0
  259. package/dist/src/models/PostGetProductForCustomerRequest.d.ts +50 -0
  260. package/dist/src/models/PostGetProductForCustomerRequest.js +55 -0
  261. package/dist/src/models/PostGetProductRequest.d.ts +44 -0
  262. package/dist/src/models/PostGetProductRequest.js +53 -0
  263. package/dist/src/models/PriceListItemModel.d.ts +56 -0
  264. package/dist/src/models/PriceListItemModel.js +57 -0
  265. package/dist/src/models/PrizesEntity.d.ts +62 -0
  266. package/dist/src/models/PrizesEntity.js +59 -0
  267. package/dist/src/models/ProductPriceListItemModel.d.ts +62 -0
  268. package/dist/src/models/ProductPriceListItemModel.js +59 -0
  269. package/dist/src/models/ProductSearchResultsModel.d.ts +33 -0
  270. package/dist/src/models/ProductSearchResultsModel.js +50 -0
  271. package/dist/src/models/ProductSerialInfoModel.d.ts +50 -0
  272. package/dist/src/models/ProductSerialInfoModel.js +55 -0
  273. package/dist/src/models/ProductSummaryDTO.d.ts +81 -0
  274. package/dist/src/models/ProductSummaryDTO.js +66 -0
  275. package/dist/src/models/PromoCodesEntity.d.ts +98 -0
  276. package/dist/src/models/PromoCodesEntity.js +71 -0
  277. package/dist/src/models/PromoItemsEntity.d.ts +74 -0
  278. package/dist/src/models/PromoItemsEntity.js +63 -0
  279. package/dist/src/models/ProvisioningModel.d.ts +56 -0
  280. package/dist/src/models/ProvisioningModel.js +57 -0
  281. package/dist/src/models/ProvisioningRequestEntity.d.ts +44 -0
  282. package/dist/src/models/ProvisioningRequestEntity.js +53 -0
  283. package/dist/src/models/RecordingBackupAzureModel.d.ts +50 -0
  284. package/dist/src/models/RecordingBackupAzureModel.js +55 -0
  285. package/dist/src/models/RecordingsBackupInfoDTO.d.ts +40 -0
  286. package/dist/src/models/RecordingsBackupInfoDTO.js +53 -0
  287. package/dist/src/models/ResourceNotReadyException.d.ts +44 -0
  288. package/dist/src/models/ResourceNotReadyException.js +53 -0
  289. package/dist/src/models/RootAccessModel.d.ts +44 -0
  290. package/dist/src/models/RootAccessModel.js +53 -0
  291. package/dist/src/models/S3BucketEntity.d.ts +50 -0
  292. package/dist/src/models/S3BucketEntity.js +55 -0
  293. package/dist/src/models/ScannedItemModel.d.ts +56 -0
  294. package/dist/src/models/ScannedItemModel.js +57 -0
  295. package/dist/src/models/ScopeModel.d.ts +38 -0
  296. package/dist/src/models/ScopeModel.js +51 -0
  297. package/dist/src/models/ServiceEnum.d.ts +14 -0
  298. package/dist/src/models/ServiceEnum.js +19 -0
  299. package/dist/src/models/ServiceHealthDTO.d.ts +48 -0
  300. package/dist/src/models/ServiceHealthDTO.js +61 -0
  301. package/dist/src/models/ServiceHealthEnum.d.ts +19 -0
  302. package/dist/src/models/ServiceHealthEnum.js +24 -0
  303. package/dist/src/models/ServiceStatusDTO.d.ts +60 -0
  304. package/dist/src/models/ServiceStatusDTO.js +65 -0
  305. package/dist/src/models/ServiceStatusEnum.d.ts +19 -0
  306. package/dist/src/models/ServiceStatusEnum.js +24 -0
  307. package/dist/src/models/ShipmentAddressEntity.d.ts +92 -0
  308. package/dist/src/models/ShipmentAddressEntity.js +69 -0
  309. package/dist/src/models/ShipmentEntity.d.ts +98 -0
  310. package/dist/src/models/ShipmentEntity.js +71 -0
  311. package/dist/src/models/ShipmentItemEntity.d.ts +56 -0
  312. package/dist/src/models/ShipmentItemEntity.js +57 -0
  313. package/dist/src/models/ShippingConsignmentModel.d.ts +51 -0
  314. package/dist/src/models/ShippingConsignmentModel.js +56 -0
  315. package/dist/src/models/ShippingInformationDTO.d.ts +45 -0
  316. package/dist/src/models/ShippingInformationDTO.js +54 -0
  317. package/dist/src/models/ShippingServiceDTO.d.ts +47 -0
  318. package/dist/src/models/ShippingServiceDTO.js +60 -0
  319. package/dist/src/models/ShippingServiceModel.d.ts +71 -0
  320. package/dist/src/models/ShippingServiceModel.js +68 -0
  321. package/dist/src/models/ShippingServicesModel.d.ts +33 -0
  322. package/dist/src/models/ShippingServicesModel.js +50 -0
  323. package/dist/src/models/SipTrunkChangeResponseModel.d.ts +77 -0
  324. package/dist/src/models/SipTrunkChangeResponseModel.js +78 -0
  325. package/dist/src/models/SipTrunkCreationRequestModel.d.ts +66 -0
  326. package/dist/src/models/SipTrunkCreationRequestModel.js +63 -0
  327. package/dist/src/models/SipTrunkEntity.d.ts +98 -0
  328. package/dist/src/models/SipTrunkEntity.js +71 -0
  329. package/dist/src/models/SipTrunksResponseModel.d.ts +51 -0
  330. package/dist/src/models/SipTrunksResponseModel.js +56 -0
  331. package/dist/src/models/SmsAccountEntity.d.ts +68 -0
  332. package/dist/src/models/SmsAccountEntity.js +61 -0
  333. package/dist/src/models/SmsDataModel.d.ts +33 -0
  334. package/dist/src/models/SmsDataModel.js +50 -0
  335. package/dist/src/models/SmsMessageModel.d.ts +44 -0
  336. package/dist/src/models/SmsMessageModel.js +53 -0
  337. package/dist/src/models/SmsNumbersEntity.d.ts +38 -0
  338. package/dist/src/models/SmsNumbersEntity.js +51 -0
  339. package/dist/src/models/SmsPayloadModel.d.ts +45 -0
  340. package/dist/src/models/SmsPayloadModel.js +54 -0
  341. package/dist/src/models/SmsPhoneNumberModel.d.ts +53 -0
  342. package/dist/src/models/SmsPhoneNumberModel.js +66 -0
  343. package/dist/src/models/SmsResponseModel.d.ts +67 -0
  344. package/dist/src/models/SmsResponseModel.js +68 -0
  345. package/dist/src/models/SmsWhitelistEntity.d.ts +38 -0
  346. package/dist/src/models/SmsWhitelistEntity.js +51 -0
  347. package/dist/src/models/StockOrderCourierEntity.d.ts +50 -0
  348. package/dist/src/models/StockOrderCourierEntity.js +55 -0
  349. package/dist/src/models/StockOrderDeductionModel.d.ts +50 -0
  350. package/dist/src/models/StockOrderDeductionModel.js +55 -0
  351. package/dist/src/models/StockOrderDeductionRequestModel.d.ts +38 -0
  352. package/dist/src/models/StockOrderDeductionRequestModel.js +51 -0
  353. package/dist/src/models/StockOrderDeductionsEntity.d.ts +50 -0
  354. package/dist/src/models/StockOrderDeductionsEntity.js +55 -0
  355. package/dist/src/models/StockOrderEntity.d.ts +158 -0
  356. package/dist/src/models/StockOrderEntity.js +91 -0
  357. package/dist/src/models/StockOrderItemEntity.d.ts +68 -0
  358. package/dist/src/models/StockOrderItemEntity.js +61 -0
  359. package/dist/src/models/StockOrderItemModel.d.ts +80 -0
  360. package/dist/src/models/StockOrderItemModel.js +65 -0
  361. package/dist/src/models/StockOrderItemRequestModel.d.ts +50 -0
  362. package/dist/src/models/StockOrderItemRequestModel.js +55 -0
  363. package/dist/src/models/StockOrderModel.d.ts +137 -0
  364. package/dist/src/models/StockOrderModel.js +97 -0
  365. package/dist/src/models/StockOrderProductEntity.d.ts +62 -0
  366. package/dist/src/models/StockOrderProductEntity.js +59 -0
  367. package/dist/src/models/StockOrderRequestModel.d.ts +46 -0
  368. package/dist/src/models/StockOrderRequestModel.js +55 -0
  369. package/dist/src/models/StockOrderSupplierEntity.d.ts +80 -0
  370. package/dist/src/models/StockOrderSupplierEntity.js +65 -0
  371. package/dist/src/models/StockOrderSupplierModel.d.ts +80 -0
  372. package/dist/src/models/StockOrderSupplierModel.js +65 -0
  373. package/dist/src/models/StockOrdersModel.d.ts +51 -0
  374. package/dist/src/models/StockOrdersModel.js +56 -0
  375. package/dist/src/models/StockProductModel.d.ts +120 -0
  376. package/dist/src/models/StockProductModel.js +81 -0
  377. package/dist/src/models/StockProductPriceModel.d.ts +39 -0
  378. package/dist/src/models/StockProductPriceModel.js +52 -0
  379. package/dist/src/models/StockProductSummariesModel.d.ts +51 -0
  380. package/dist/src/models/StockProductSummariesModel.js +56 -0
  381. package/dist/src/models/StockProductSummaryModel.d.ts +69 -0
  382. package/dist/src/models/StockProductSummaryModel.js +62 -0
  383. package/dist/src/models/StockTransactionsEntity.d.ts +74 -0
  384. package/dist/src/models/StockTransactionsEntity.js +63 -0
  385. package/dist/src/models/SupplierEntity.d.ts +80 -0
  386. package/dist/src/models/SupplierEntity.js +65 -0
  387. package/dist/src/models/SupplierItemEntity.d.ts +74 -0
  388. package/dist/src/models/SupplierItemEntity.js +63 -0
  389. package/dist/src/models/TcxBackupEntity.d.ts +80 -0
  390. package/dist/src/models/TcxBackupEntity.js +65 -0
  391. package/dist/src/models/TcxBackupModel.d.ts +140 -0
  392. package/dist/src/models/TcxBackupModel.js +85 -0
  393. package/dist/src/models/TcxBillingEntity.d.ts +86 -0
  394. package/dist/src/models/TcxBillingEntity.js +67 -0
  395. package/dist/src/models/TcxBulkLicenceDetailsModel.d.ts +40 -0
  396. package/dist/src/models/TcxBulkLicenceDetailsModel.js +53 -0
  397. package/dist/src/models/TcxDeadLicenceEntity.d.ts +44 -0
  398. package/dist/src/models/TcxDeadLicenceEntity.js +53 -0
  399. package/dist/src/models/TcxExtsEntity.d.ts +74 -0
  400. package/dist/src/models/TcxExtsEntity.js +63 -0
  401. package/dist/src/models/TcxHostingPricingEntity.d.ts +74 -0
  402. package/dist/src/models/TcxHostingPricingEntity.js +63 -0
  403. package/dist/src/models/TcxInstallationDetailsModel.d.ts +106 -0
  404. package/dist/src/models/TcxInstallationDetailsModel.js +75 -0
  405. package/dist/src/models/TcxInstallationModel.d.ts +200 -0
  406. package/dist/src/models/TcxInstallationModel.js +105 -0
  407. package/dist/src/models/TcxInstallationsModel.d.ts +51 -0
  408. package/dist/src/models/TcxInstallationsModel.js +56 -0
  409. package/dist/src/models/TcxKeySummaryDTO.d.ts +56 -0
  410. package/dist/src/models/TcxKeySummaryDTO.js +57 -0
  411. package/dist/src/models/TcxKeysEntity.d.ts +62 -0
  412. package/dist/src/models/TcxKeysEntity.js +59 -0
  413. package/dist/src/models/TcxLicenceDetailsErrorModel.d.ts +50 -0
  414. package/dist/src/models/TcxLicenceDetailsErrorModel.js +55 -0
  415. package/dist/src/models/TcxLicenceDetailsModel.d.ts +92 -0
  416. package/dist/src/models/TcxLicenceDetailsModel.js +69 -0
  417. package/dist/src/models/TcxMacsEntity.d.ts +44 -0
  418. package/dist/src/models/TcxMacsEntity.js +53 -0
  419. package/dist/src/models/TcxMultiTenantModel.d.ts +118 -0
  420. package/dist/src/models/TcxMultiTenantModel.js +83 -0
  421. package/dist/src/models/TcxMultiTenantUserModel.d.ts +44 -0
  422. package/dist/src/models/TcxMultiTenantUserModel.js +53 -0
  423. package/dist/src/models/TcxMultiTenantsModel.d.ts +51 -0
  424. package/dist/src/models/TcxMultiTenantsModel.js +56 -0
  425. package/dist/src/models/TcxNumbersEntity.d.ts +44 -0
  426. package/dist/src/models/TcxNumbersEntity.js +53 -0
  427. package/dist/src/models/TcxOfficeHoursEntity.d.ts +116 -0
  428. package/dist/src/models/TcxOfficeHoursEntity.js +77 -0
  429. package/dist/src/models/TcxPhoneModel.d.ts +68 -0
  430. package/dist/src/models/TcxPhoneModel.js +61 -0
  431. package/dist/src/models/TcxPhonesEntity.d.ts +62 -0
  432. package/dist/src/models/TcxPhonesEntity.js +59 -0
  433. package/dist/src/models/TcxRemoteStorageModel.d.ts +50 -0
  434. package/dist/src/models/TcxRemoteStorageModel.js +55 -0
  435. package/dist/src/models/TcxSbcDTO.d.ts +62 -0
  436. package/dist/src/models/TcxSbcDTO.js +59 -0
  437. package/dist/src/models/TcxSbcEntity.d.ts +122 -0
  438. package/dist/src/models/TcxSbcEntity.js +79 -0
  439. package/dist/src/models/TcxSbcModel.d.ts +122 -0
  440. package/dist/src/models/TcxSbcModel.js +79 -0
  441. package/dist/src/models/TcxSetupEntity.d.ts +207 -0
  442. package/dist/src/models/TcxSetupEntity.js +123 -0
  443. package/dist/src/models/TcxSetupsModel.d.ts +51 -0
  444. package/dist/src/models/TcxSetupsModel.js +56 -0
  445. package/dist/src/models/TcxSipTrunksEntity.d.ts +104 -0
  446. package/dist/src/models/TcxSipTrunksEntity.js +73 -0
  447. package/dist/src/models/TcxTemplateXmlEnum.d.ts +38 -0
  448. package/dist/src/models/TcxTemplateXmlEnum.js +51 -0
  449. package/dist/src/models/TcxUsersEntity.d.ts +62 -0
  450. package/dist/src/models/TcxUsersEntity.js +59 -0
  451. package/dist/src/models/TcxWizardConfigModel.d.ts +39 -0
  452. package/dist/src/models/TcxWizardConfigModel.js +52 -0
  453. package/dist/src/models/TcxWizardModel.d.ts +150 -0
  454. package/dist/src/models/TcxWizardModel.js +114 -0
  455. package/dist/src/models/TechSupportCompanySummaryDTO.d.ts +57 -0
  456. package/dist/src/models/TechSupportCompanySummaryDTO.js +58 -0
  457. package/dist/src/models/TelephonySupportTicketModel.d.ts +94 -0
  458. package/dist/src/models/TelephonySupportTicketModel.js +71 -0
  459. package/dist/src/models/TicketSummaryModel.d.ts +74 -0
  460. package/dist/src/models/TicketSummaryModel.js +63 -0
  461. package/dist/src/models/TicketTimeDTO.d.ts +80 -0
  462. package/dist/src/models/TicketTimeDTO.js +65 -0
  463. package/dist/src/models/TokenResponseModel.d.ts +44 -0
  464. package/dist/src/models/TokenResponseModel.js +53 -0
  465. package/dist/src/models/UpdateTypeEnum.d.ts +19 -0
  466. package/dist/src/models/UpdateTypeEnum.js +24 -0
  467. package/dist/src/models/UpgradeOrderResponseModel.d.ts +38 -0
  468. package/dist/src/models/UpgradeOrderResponseModel.js +51 -0
  469. package/dist/src/models/UpgradeRequestModel.d.ts +66 -0
  470. package/dist/src/models/UpgradeRequestModel.js +70 -0
  471. package/dist/src/models/UserEntity.d.ts +98 -0
  472. package/dist/src/models/UserEntity.js +71 -0
  473. package/dist/src/models/XeroLogEntity.d.ts +86 -0
  474. package/dist/src/models/XeroLogEntity.js +67 -0
  475. package/dist/src/models/index.d.ts +196 -0
  476. package/dist/src/models/index.js +214 -0
  477. package/dist/src/runtime.d.ts +184 -0
  478. package/dist/src/runtime.js +564 -0
  479. package/docs/AccountsApi.md +104 -1
  480. package/docs/AddressDTO.md +6 -0
  481. package/docs/AdminCustomerRmasModel.md +27 -0
  482. package/docs/AdminRmaDTO.md +59 -0
  483. package/docs/AdminRmaItemDTO.md +39 -0
  484. package/docs/AdminRmaNoteDTO.md +27 -0
  485. package/docs/AdminRmaSummaryDTO.md +37 -0
  486. package/docs/AxisDataDTO.md +25 -0
  487. package/docs/BillingApi.md +1 -1
  488. package/docs/CRMApi.md +1 -1
  489. package/docs/Class3CXApi.md +1 -1
  490. package/docs/Class3CXInstallationWizardApi.md +1 -1
  491. package/docs/Class3CXInstallationsApi.md +1 -1
  492. package/docs/Class3CXIntegrationsApi.md +1 -1
  493. package/docs/Class3CXMultiTenantApi.md +1 -1
  494. package/docs/CreditNoteItemEntity.md +2 -0
  495. package/docs/CreditNoteItemModel.md +2 -0
  496. package/docs/CrmActivityDTO.md +2 -2
  497. package/docs/CustomerCoordinatesDTO.md +31 -0
  498. package/docs/CustomerRmasModel.md +27 -0
  499. package/docs/EmailRequestModel.md +21 -0
  500. package/docs/GraphDTO.md +33 -0
  501. package/docs/ItemResolutionRequestModel.md +21 -0
  502. package/docs/MacAddressRequestModel.md +21 -0
  503. package/docs/MiscApi.md +63 -0
  504. package/docs/MyPBXToolsApi.md +1 -1
  505. package/docs/NameRequestModel.md +21 -0
  506. package/docs/NoteRequestModel.md +21 -0
  507. package/docs/NumberPortingApi.md +1 -1
  508. package/docs/OAuth20Api.md +4 -4
  509. package/docs/OrdersApi.md +1 -1
  510. package/docs/PasswordSenderDTO.md +37 -0
  511. package/docs/PasswordSenderEntity.md +33 -0
  512. package/docs/PostGenerateReport200Response.md +36 -0
  513. package/docs/PricingApi.md +1 -1
  514. package/docs/ProductsApi.md +1 -1
  515. package/docs/ProspectsApi.md +1 -1
  516. package/docs/ProvisioningApi.md +1 -1
  517. package/docs/RMAApi.md +1526 -0
  518. package/docs/ReasonRequestModel.md +21 -0
  519. package/docs/ReportRequestDTO.md +37 -0
  520. package/docs/ReportsApi.md +107 -0
  521. package/docs/ResolutionRequestModel.md +21 -0
  522. package/docs/RmaCollectionDTO.md +27 -0
  523. package/docs/RmaCreditItemRequestDTO.md +25 -0
  524. package/docs/RmaDTO.md +43 -0
  525. package/docs/RmaItemDTO.md +33 -0
  526. package/docs/RmaItemRequestDTO.md +25 -0
  527. package/docs/RmaReplacementOrderItemDTO.md +23 -0
  528. package/docs/RmaReplacementOrderRequestDTO.md +21 -0
  529. package/docs/RmaRequestDTO.md +34 -0
  530. package/docs/RmaReturnDTO.md +31 -0
  531. package/docs/RmaSummaryDTO.md +29 -0
  532. package/docs/RmaSummaryItemDTO.md +23 -0
  533. package/docs/SIPTrunksApi.md +1 -1
  534. package/docs/SMSApi.md +1 -1
  535. package/docs/SerialNumberRequestModel.md +21 -0
  536. package/docs/SeriesDTO.md +27 -0
  537. package/docs/ServicesApi.md +1 -1
  538. package/docs/ShippingApi.md +1 -1
  539. package/docs/StockManagementApi.md +1 -1
  540. package/docs/StockReportItemModel.md +31 -0
  541. package/docs/StockReportModel.md +29 -0
  542. package/docs/SupplierItemModel.md +2 -0
  543. package/docs/SupplierItemsResultsDTO.md +21 -0
  544. package/docs/SupplierProductModel.md +25 -0
  545. package/docs/SupplierProductResultsModel.md +27 -0
  546. package/docs/SuppliersApi.md +230 -0
  547. package/docs/SystemApi.md +1 -1
  548. package/docs/TableDTO.md +25 -0
  549. package/docs/TableDataDTO.md +21 -0
  550. package/docs/TableRowDTO.md +21 -0
  551. package/docs/TcxInstallationModel.md +2 -0
  552. package/docs/TicketsApi.md +1 -1
  553. package/docs/WebhooksApi.md +1 -1
  554. package/getEnums.php +31 -31
  555. package/index.ts +1 -1
  556. package/models/GraphTypeEnum.ts +14 -0
  557. package/models/HostingPriceListEnum.ts +5 -0
  558. package/models/ReportEnum.ts +54 -0
  559. package/openapitools.json +1 -1
  560. package/package.json +2 -2
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://api.local.yellowgrid.co.uk` For questions or technical support, please contact support@yellowgrid.co.uk.
4
4
  *
5
5
  * The version of the OpenAPI document: 0
6
6
  *
@@ -408,6 +408,10 @@ export interface AccountsResponseModel {
408
408
  * Address
409
409
  */
410
410
  export interface AddressDTO {
411
+ /**
412
+ * Company
413
+ */
414
+ 'company'?: string | null;
411
415
  /**
412
416
  * Address Line 1
413
417
  */
@@ -432,6 +436,14 @@ export interface AddressDTO {
432
436
  * Country
433
437
  */
434
438
  'iso'?: string;
439
+ /**
440
+ * Telephone
441
+ */
442
+ 'phone'?: string | null;
443
+ /**
444
+ * Name
445
+ */
446
+ 'name'?: string | null;
435
447
  }
436
448
  /**
437
449
  * Order Address
@@ -515,6 +527,27 @@ export interface AddressRequestModel {
515
527
  */
516
528
  'addressPostcode'?: string;
517
529
  }
530
+ /**
531
+ * Admin Customer RMA List Response
532
+ */
533
+ export interface AdminCustomerRmasModel {
534
+ /**
535
+ * Results
536
+ */
537
+ 'results'?: Array<AdminRmaSummaryDTO>;
538
+ /**
539
+ * Page
540
+ */
541
+ 'page'?: number;
542
+ /**
543
+ * Per Page
544
+ */
545
+ 'perPage'?: number;
546
+ /**
547
+ * Total Results
548
+ */
549
+ 'totalResults'?: number;
550
+ }
518
551
  /**
519
552
  * Admin Number Port Response
520
553
  */
@@ -671,6 +704,241 @@ export declare const AdminOrderRequestDTOPaymentMethodEnum: {
671
704
  readonly Bacs: "bacs";
672
705
  };
673
706
  export type AdminOrderRequestDTOPaymentMethodEnum = typeof AdminOrderRequestDTOPaymentMethodEnum[keyof typeof AdminOrderRequestDTOPaymentMethodEnum];
707
+ /**
708
+ * Admin RMA
709
+ */
710
+ export interface AdminRmaDTO {
711
+ /**
712
+ * RMA ID
713
+ */
714
+ 'id'?: number;
715
+ /**
716
+ * Contact Name
717
+ */
718
+ 'contactName'?: string;
719
+ /**
720
+ * Contact Email
721
+ */
722
+ 'contactEmail'?: string;
723
+ /**
724
+ * Associated Order ID
725
+ */
726
+ 'orderId'?: number;
727
+ /**
728
+ * RMA Reason
729
+ */
730
+ 'reason'?: AdminRmaDTOReasonEnum;
731
+ /**
732
+ * Fault Report
733
+ */
734
+ 'faultReport'?: string;
735
+ /**
736
+ * Ticket ID
737
+ */
738
+ 'ticketId'?: number;
739
+ /**
740
+ * RMA Resolution
741
+ */
742
+ 'resolution'?: AdminRmaDTOResolutionEnum;
743
+ /**
744
+ * RMA Status
745
+ */
746
+ 'status'?: AdminRmaDTOStatusEnum;
747
+ /**
748
+ * RMA Approval Status
749
+ */
750
+ 'approved'?: boolean;
751
+ /**
752
+ * RMA Return Address
753
+ */
754
+ 'address'?: AddressDTO | null;
755
+ /**
756
+ * Customer ID
757
+ */
758
+ 'customerId'?: number;
759
+ /**
760
+ * Customer Name
761
+ */
762
+ 'customerName'?: string;
763
+ /**
764
+ * Date Time
765
+ */
766
+ 'createdAt'?: string;
767
+ /**
768
+ * RMA Items
769
+ */
770
+ 'items'?: Array<AdminRmaItemDTO>;
771
+ /**
772
+ * RMA Notes
773
+ */
774
+ 'notes'?: Array<AdminRmaNoteDTO>;
775
+ /**
776
+ * Replacement Order
777
+ */
778
+ 'replacementOrders'?: Array<OrderSummaryDTO>;
779
+ /**
780
+ * Credit Notes
781
+ */
782
+ 'creditNotes'?: Array<CreditNoteDTO>;
783
+ /**
784
+ * Collection Tracking URL
785
+ */
786
+ 'collectionTrackingUrl'?: string | null;
787
+ /**
788
+ * Return Tracking URL
789
+ */
790
+ 'returnTrackingUrl'?: string | null;
791
+ }
792
+ export declare const AdminRmaDTOReasonEnum: {
793
+ readonly NUMBER_1: 1;
794
+ readonly NUMBER_2: 2;
795
+ readonly NUMBER_3: 3;
796
+ readonly NUMBER_4: 4;
797
+ };
798
+ export type AdminRmaDTOReasonEnum = typeof AdminRmaDTOReasonEnum[keyof typeof AdminRmaDTOReasonEnum];
799
+ export declare const AdminRmaDTOResolutionEnum: {
800
+ readonly NUMBER_1: 1;
801
+ readonly NUMBER_2: 2;
802
+ readonly NUMBER_3: 3;
803
+ };
804
+ export type AdminRmaDTOResolutionEnum = typeof AdminRmaDTOResolutionEnum[keyof typeof AdminRmaDTOResolutionEnum];
805
+ export declare const AdminRmaDTOStatusEnum: {
806
+ readonly NUMBER_1: 1;
807
+ readonly NUMBER_2: 2;
808
+ readonly NUMBER_3: 3;
809
+ readonly NUMBER_4: 4;
810
+ readonly NUMBER_5: 5;
811
+ };
812
+ export type AdminRmaDTOStatusEnum = typeof AdminRmaDTOStatusEnum[keyof typeof AdminRmaDTOStatusEnum];
813
+ /**
814
+ * Admin RMA Item
815
+ */
816
+ export interface AdminRmaItemDTO {
817
+ /**
818
+ * RMA Item ID
819
+ */
820
+ 'id'?: number;
821
+ /**
822
+ * RMA Order Item ID
823
+ */
824
+ 'itemId'?: number;
825
+ /**
826
+ * RMA Item Name
827
+ */
828
+ 'itemName'?: string;
829
+ /**
830
+ * RMA Item MAC Address
831
+ */
832
+ 'macAddress'?: string;
833
+ /**
834
+ * RMA Item Serial Number
835
+ */
836
+ 'serialNumber'?: string;
837
+ /**
838
+ * RMA Item Received Status
839
+ */
840
+ 'received'?: boolean;
841
+ /**
842
+ * RMA Item Status
843
+ */
844
+ 'status'?: AdminRmaItemDTOStatusEnum;
845
+ /**
846
+ * RMA Item Note
847
+ */
848
+ 'note'?: string;
849
+ /**
850
+ * RMA Item Resolution
851
+ */
852
+ 'resolution'?: AdminRmaItemDTOResolutionEnum;
853
+ /**
854
+ * RMA Item Replacement SKU
855
+ */
856
+ 'replacementSku'?: string | null;
857
+ }
858
+ export declare const AdminRmaItemDTOStatusEnum: {
859
+ readonly NUMBER_1: 1;
860
+ readonly NUMBER_2: 2;
861
+ readonly NUMBER_3: 3;
862
+ };
863
+ export type AdminRmaItemDTOStatusEnum = typeof AdminRmaItemDTOStatusEnum[keyof typeof AdminRmaItemDTOStatusEnum];
864
+ export declare const AdminRmaItemDTOResolutionEnum: {
865
+ readonly NUMBER_1: 1;
866
+ readonly NUMBER_2: 2;
867
+ readonly NUMBER_3: 3;
868
+ readonly NUMBER_4: 4;
869
+ readonly NUMBER_5: 5;
870
+ };
871
+ export type AdminRmaItemDTOResolutionEnum = typeof AdminRmaItemDTOResolutionEnum[keyof typeof AdminRmaItemDTOResolutionEnum];
872
+ /**
873
+ * Admin RMA Note
874
+ */
875
+ export interface AdminRmaNoteDTO {
876
+ /**
877
+ * RMA Note ID
878
+ */
879
+ 'id'?: number;
880
+ /**
881
+ * Note Content
882
+ */
883
+ 'note'?: string;
884
+ /**
885
+ * Note Creator
886
+ */
887
+ 'createdBy'?: string;
888
+ /**
889
+ * Date Time
890
+ */
891
+ 'createdAt'?: string;
892
+ }
893
+ /**
894
+ * Admin RMA Summary
895
+ */
896
+ export interface AdminRmaSummaryDTO {
897
+ /**
898
+ * RMA ID
899
+ */
900
+ 'id'?: number;
901
+ /**
902
+ * Order ID
903
+ */
904
+ 'orderId'?: number;
905
+ /**
906
+ * Order Reference
907
+ */
908
+ 'orderReference'?: string;
909
+ /**
910
+ * RMA Status
911
+ */
912
+ 'status'?: AdminRmaSummaryDTOStatusEnum;
913
+ /**
914
+ * RMA Summary Items
915
+ */
916
+ 'items'?: Array<RmaSummaryItemDTO>;
917
+ /**
918
+ * RMA Customer ID
919
+ */
920
+ 'customerId'?: number;
921
+ /**
922
+ * RMA Customer Name
923
+ */
924
+ 'customerName'?: string;
925
+ /**
926
+ * RMA Ticket ID
927
+ */
928
+ 'ticketId'?: number;
929
+ /**
930
+ * Date Time
931
+ */
932
+ 'createdAt'?: string;
933
+ }
934
+ export declare const AdminRmaSummaryDTOStatusEnum: {
935
+ readonly NUMBER_1: 1;
936
+ readonly NUMBER_2: 2;
937
+ readonly NUMBER_3: 3;
938
+ readonly NUMBER_4: 4;
939
+ readonly NUMBER_5: 5;
940
+ };
941
+ export type AdminRmaSummaryDTOStatusEnum = typeof AdminRmaSummaryDTOStatusEnum[keyof typeof AdminRmaSummaryDTOStatusEnum];
674
942
  /**
675
943
  * Admin User
676
944
  */
@@ -956,12 +1224,16 @@ export declare const AuditLogEntityTypeEnum: {
956
1224
  readonly NumberPortNotes: "number_port_notes";
957
1225
  readonly PopsOfflineInstances: "pops_offline_instances";
958
1226
  readonly PopsOrderedItems: "pops_ordered_items";
1227
+ readonly PopsPasswordSender: "pops_password_sender";
959
1228
  readonly PopsPrizes: "pops_prizes";
960
1229
  readonly PopsPrinters: "pops_printers";
961
1230
  readonly PopsPromoCodes: "pops_promo_codes";
962
1231
  readonly PopsPromoItems: "pops_promo_items";
963
1232
  readonly PopsProvisioning: "pops_provisioning";
964
1233
  readonly PopsProspectsV2: "pops_prospects_v2";
1234
+ readonly Rma: "rma";
1235
+ readonly RmaItems: "rma_items";
1236
+ readonly RmaNotes: "rma_notes";
965
1237
  readonly S3Buckets: "s3_buckets";
966
1238
  readonly PopsShipmentAddress: "pops_shipment_address";
967
1239
  readonly PopsShipments: "pops_shipments";
@@ -1019,6 +1291,30 @@ export interface AuthCodeResponseModel {
1019
1291
  */
1020
1292
  'redirect_uri'?: string | null;
1021
1293
  }
1294
+ /**
1295
+ * Graph Axis Data
1296
+ */
1297
+ export interface AxisDataDTO {
1298
+ /**
1299
+ * Type
1300
+ */
1301
+ 'type'?: AxisDataDTOTypeEnum;
1302
+ /**
1303
+ * Data
1304
+ */
1305
+ 'data'?: Array<string> | null;
1306
+ /**
1307
+ * Name
1308
+ */
1309
+ 'name'?: string | null;
1310
+ }
1311
+ export declare const AxisDataDTOTypeEnum: {
1312
+ readonly Value: "value";
1313
+ readonly Category: "category";
1314
+ readonly Time: "time";
1315
+ readonly Log: "log";
1316
+ };
1317
+ export type AxisDataDTOTypeEnum = typeof AxisDataDTOTypeEnum[keyof typeof AxisDataDTOTypeEnum];
1022
1318
  /**
1023
1319
  * Basic Order Item
1024
1320
  */
@@ -1589,6 +1885,10 @@ export interface CreditNoteItemEntity {
1589
1885
  * amount
1590
1886
  */
1591
1887
  'amount'?: number;
1888
+ /**
1889
+ * quantity
1890
+ */
1891
+ 'quantity'?: number;
1592
1892
  }
1593
1893
  /**
1594
1894
  * Credit Note Item
@@ -1614,6 +1914,10 @@ export interface CreditNoteItemModel {
1614
1914
  * amount
1615
1915
  */
1616
1916
  'amount'?: number;
1917
+ /**
1918
+ * quantity
1919
+ */
1920
+ 'quantity'?: number;
1617
1921
  }
1618
1922
  /**
1619
1923
  * Credit Note Model
@@ -1694,10 +1998,6 @@ export interface CrmActivityDTO {
1694
1998
  * Activity Description
1695
1999
  */
1696
2000
  'description'?: string;
1697
- /**
1698
- * Activity URL
1699
- */
1700
- 'url'?: string | null;
1701
2001
  /**
1702
2002
  * Activity User Name
1703
2003
  */
@@ -1706,6 +2006,10 @@ export interface CrmActivityDTO {
1706
2006
  * Activity Contact Name
1707
2007
  */
1708
2008
  'contact'?: string | null;
2009
+ /**
2010
+ * Activity Order ID
2011
+ */
2012
+ 'orderId'?: number | null;
1709
2013
  }
1710
2014
  /**
1711
2015
  * CRM Contact
@@ -1843,6 +2147,35 @@ export interface CrmNoteModel {
1843
2147
  */
1844
2148
  'callId'?: number;
1845
2149
  }
2150
+ /**
2151
+ * Customer Coordinates
2152
+ */
2153
+ export interface CustomerCoordinatesDTO {
2154
+ /**
2155
+ * ID
2156
+ */
2157
+ 'id'?: string;
2158
+ /**
2159
+ * Company
2160
+ */
2161
+ 'company'?: string;
2162
+ /**
2163
+ * 3CX Reseller ID
2164
+ */
2165
+ 'resellerId'?: string | null;
2166
+ /**
2167
+ * Post Code
2168
+ */
2169
+ 'postCode'?: string;
2170
+ /**
2171
+ * Latitude
2172
+ */
2173
+ 'latitude'?: string;
2174
+ /**
2175
+ * Longitude
2176
+ */
2177
+ 'longitude'?: string;
2178
+ }
1846
2179
  /**
1847
2180
  * SIP Trunk Customer
1848
2181
  */
@@ -2021,6 +2354,27 @@ export interface CustomerPriceListEnum {
2021
2354
  */
2022
2355
  'name'?: string;
2023
2356
  }
2357
+ /**
2358
+ * Customer RMAs
2359
+ */
2360
+ export interface CustomerRmasModel {
2361
+ /**
2362
+ * Results
2363
+ */
2364
+ 'results'?: Array<RmaSummaryDTO>;
2365
+ /**
2366
+ * Page
2367
+ */
2368
+ 'page'?: number;
2369
+ /**
2370
+ * Per Page
2371
+ */
2372
+ 'perPage'?: number;
2373
+ /**
2374
+ * Total Results
2375
+ */
2376
+ 'totalResults'?: number;
2377
+ }
2024
2378
  /**
2025
2379
  * Customer Summary Report
2026
2380
  */
@@ -2324,14 +2678,23 @@ export interface EdTechProSetupModel {
2324
2678
  'installed'?: boolean;
2325
2679
  }
2326
2680
  /**
2327
- * Service Event DTO
2681
+ * Email Request Model
2328
2682
  */
2329
- export interface EventDTO {
2683
+ export interface EmailRequestModel {
2330
2684
  /**
2331
- * Service Event Title
2685
+ * Email Address
2332
2686
  */
2333
- 'title'?: string;
2334
- /**
2687
+ 'email'?: string;
2688
+ }
2689
+ /**
2690
+ * Service Event DTO
2691
+ */
2692
+ export interface EventDTO {
2693
+ /**
2694
+ * Service Event Title
2695
+ */
2696
+ 'title'?: string;
2697
+ /**
2335
2698
  * Service Event Type
2336
2699
  */
2337
2700
  'type'?: number;
@@ -2599,6 +2962,73 @@ export interface GetGetPrice200Response {
2599
2962
  export interface GetGetRecording200Response {
2600
2963
  'recordingData'?: string;
2601
2964
  }
2965
+ /**
2966
+ * Graph
2967
+ */
2968
+ export interface GraphDTO {
2969
+ /**
2970
+ * Title
2971
+ */
2972
+ 'title'?: string;
2973
+ /**
2974
+ * X Axis
2975
+ */
2976
+ 'xAxis'?: Array<AxisDataDTO>;
2977
+ /**
2978
+ * Y Axis
2979
+ */
2980
+ 'yAxis'?: Array<AxisDataDTO>;
2981
+ /**
2982
+ * Legend
2983
+ */
2984
+ 'legend'?: Array<string>;
2985
+ /**
2986
+ * Series
2987
+ */
2988
+ 'series'?: Array<SeriesDTO>;
2989
+ /**
2990
+ * Currency
2991
+ */
2992
+ 'currency'?: GraphDTOCurrencyEnum | null;
2993
+ /**
2994
+ * Locale
2995
+ */
2996
+ 'locale'?: string;
2997
+ }
2998
+ export declare const GraphDTOCurrencyEnum: {
2999
+ readonly Eur: "EUR";
3000
+ readonly Usd: "USD";
3001
+ readonly Jpy: "JPY";
3002
+ readonly Bgn: "BGN";
3003
+ readonly Czk: "CZK";
3004
+ readonly Dkk: "DKK";
3005
+ readonly Gbp: "GBP";
3006
+ readonly Huf: "HUF";
3007
+ readonly Pln: "PLN";
3008
+ readonly Ron: "RON";
3009
+ readonly Sek: "SEK";
3010
+ readonly Chf: "CHF";
3011
+ readonly Isk: "ISK";
3012
+ readonly Nok: "NOK";
3013
+ readonly Try: "TRY";
3014
+ readonly Aud: "AUD";
3015
+ readonly Brl: "BRL";
3016
+ readonly Cad: "CAD";
3017
+ readonly Cny: "CNY";
3018
+ readonly Hkd: "HKD";
3019
+ readonly Idr: "IDR";
3020
+ readonly Ils: "ILS";
3021
+ readonly Inr: "INR";
3022
+ readonly Krw: "KRW";
3023
+ readonly Mxn: "MXN";
3024
+ readonly Myr: "MYR";
3025
+ readonly Nzd: "NZD";
3026
+ readonly Php: "PHP";
3027
+ readonly Sgd: "SGD";
3028
+ readonly Thb: "THB";
3029
+ readonly Zar: "ZAR";
3030
+ };
3031
+ export type GraphDTOCurrencyEnum = typeof GraphDTOCurrencyEnum[keyof typeof GraphDTOCurrencyEnum];
2602
3032
  /**
2603
3033
  * Change Response
2604
3034
  */
@@ -3224,6 +3654,23 @@ export interface ItemEntity {
3224
3654
  */
3225
3655
  'tcxSalesCode'?: string | null;
3226
3656
  }
3657
+ /**
3658
+ * RMA Item Status Request Model
3659
+ */
3660
+ export interface ItemResolutionRequestModel {
3661
+ /**
3662
+ * RMA Item Resolution
3663
+ */
3664
+ 'resolution'?: ItemResolutionRequestModelResolutionEnum;
3665
+ }
3666
+ export declare const ItemResolutionRequestModelResolutionEnum: {
3667
+ readonly NUMBER_1: 1;
3668
+ readonly NUMBER_2: 2;
3669
+ readonly NUMBER_3: 3;
3670
+ readonly NUMBER_4: 4;
3671
+ readonly NUMBER_5: 5;
3672
+ };
3673
+ export type ItemResolutionRequestModelResolutionEnum = typeof ItemResolutionRequestModelResolutionEnum[keyof typeof ItemResolutionRequestModelResolutionEnum];
3227
3674
  /**
3228
3675
  * LinkedOrdersEntity
3229
3676
  */
@@ -3263,6 +3710,15 @@ export interface MacAddressDTO {
3263
3710
  */
3264
3711
  'macAddress'?: string;
3265
3712
  }
3713
+ /**
3714
+ * RMA Item MAC Address Request Model
3715
+ */
3716
+ export interface MacAddressRequestModel {
3717
+ /**
3718
+ * MAC Address
3719
+ */
3720
+ 'macAddress'?: string;
3721
+ }
3266
3722
  /**
3267
3723
  * Monthly Contract Usage
3268
3724
  */
@@ -3314,6 +3770,15 @@ export declare const MultiTenantChangeResponseModelTypeEnum: {
3314
3770
  readonly CallBarring: "Call Barring";
3315
3771
  };
3316
3772
  export type MultiTenantChangeResponseModelTypeEnum = typeof MultiTenantChangeResponseModelTypeEnum[keyof typeof MultiTenantChangeResponseModelTypeEnum];
3773
+ /**
3774
+ * Name Request
3775
+ */
3776
+ export interface NameRequestModel {
3777
+ /**
3778
+ * Name
3779
+ */
3780
+ 'name'?: string;
3781
+ }
3317
3782
  /**
3318
3783
  * Navigation Endpoint
3319
3784
  */
@@ -3335,6 +3800,15 @@ export interface NavigationModel {
3335
3800
  */
3336
3801
  'openNewPage'?: boolean;
3337
3802
  }
3803
+ /**
3804
+ * Note Request
3805
+ */
3806
+ export interface NoteRequestModel {
3807
+ /**
3808
+ * Note
3809
+ */
3810
+ 'note'?: string;
3811
+ }
3338
3812
  export interface NumberPortAdminNoteBody {
3339
3813
  /**
3340
3814
  * Note
@@ -4393,6 +4867,86 @@ export interface PartnerDTO {
4393
4867
  */
4394
4868
  'customer'?: AccountSummaryDTO | null;
4395
4869
  }
4870
+ /**
4871
+ * Password Sender Request
4872
+ */
4873
+ export interface PasswordSenderDTO {
4874
+ /**
4875
+ * Username
4876
+ */
4877
+ 'username'?: string;
4878
+ /**
4879
+ * Password
4880
+ */
4881
+ 'password'?: string | null;
4882
+ /**
4883
+ * Expiry Interval
4884
+ */
4885
+ 'expiryInterval'?: number | null;
4886
+ /**
4887
+ * Interval Type
4888
+ */
4889
+ 'intervalType'?: PasswordSenderDTOIntervalTypeEnum | null;
4890
+ /**
4891
+ * Expiry
4892
+ */
4893
+ 'expiry'?: string | null;
4894
+ /**
4895
+ * Recipient
4896
+ */
4897
+ 'recipient'?: Array<string>;
4898
+ /**
4899
+ * URL
4900
+ */
4901
+ 'url'?: string | null;
4902
+ /**
4903
+ * Description
4904
+ */
4905
+ 'description'?: string | null;
4906
+ /**
4907
+ * Password URL
4908
+ */
4909
+ 'passwordUrl'?: string | null;
4910
+ }
4911
+ export declare const PasswordSenderDTOIntervalTypeEnum: {
4912
+ readonly Minute: "Minute";
4913
+ readonly Hour: "Hour";
4914
+ readonly Day: "Day";
4915
+ };
4916
+ export type PasswordSenderDTOIntervalTypeEnum = typeof PasswordSenderDTOIntervalTypeEnum[keyof typeof PasswordSenderDTOIntervalTypeEnum];
4917
+ /**
4918
+ * PasswordSenderEntity
4919
+ */
4920
+ export interface PasswordSenderEntity {
4921
+ /**
4922
+ * uniqueId
4923
+ */
4924
+ 'uniqueId'?: string;
4925
+ /**
4926
+ * url
4927
+ */
4928
+ 'url'?: string;
4929
+ /**
4930
+ * username
4931
+ */
4932
+ 'username'?: string;
4933
+ /**
4934
+ * password
4935
+ */
4936
+ 'password'?: string;
4937
+ /**
4938
+ * expiryTime
4939
+ */
4940
+ 'expiryTime'?: string;
4941
+ /**
4942
+ * emailRecipient
4943
+ */
4944
+ 'emailRecipient'?: string;
4945
+ /**
4946
+ * description
4947
+ */
4948
+ 'description'?: string;
4949
+ }
4396
4950
  export interface PatchUpdateAccountCnameRequest {
4397
4951
  /**
4398
4952
  * CNAME
@@ -4470,6 +5024,7 @@ export declare const PatchUpdateTcxHostingPriceListRequestPriceListEnum: {
4470
5024
  readonly _4: "4";
4471
5025
  readonly _5: "5";
4472
5026
  readonly _6: "6";
5027
+ readonly _7: "7";
4473
5028
  };
4474
5029
  export type PatchUpdateTcxHostingPriceListRequestPriceListEnum = typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum[keyof typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum];
4475
5030
  export interface PatchUpdateTcxPartnerIdRequest {
@@ -4625,6 +5180,10 @@ export interface PostAddOrderNoteRequest {
4625
5180
  export interface PostAddWebhook200Response {
4626
5181
  'url'?: string;
4627
5182
  }
5183
+ /**
5184
+ * @type PostGenerateReport200Response
5185
+ */
5186
+ export type PostGenerateReport200Response = GraphDTO | TableDTO;
4628
5187
  export interface PostGetClientCredentialsRequest {
4629
5188
  /**
4630
5189
  * OAuth 2.0 scopes
@@ -5150,6 +5709,22 @@ export interface PutTransferConnectionRequest {
5150
5709
  */
5151
5710
  'customerId'?: number;
5152
5711
  }
5712
+ /**
5713
+ * RMA Reason Request Model
5714
+ */
5715
+ export interface ReasonRequestModel {
5716
+ /**
5717
+ * RMA Reason
5718
+ */
5719
+ 'reason'?: ReasonRequestModelReasonEnum;
5720
+ }
5721
+ export declare const ReasonRequestModelReasonEnum: {
5722
+ readonly NUMBER_1: 1;
5723
+ readonly NUMBER_2: 2;
5724
+ readonly NUMBER_3: 3;
5725
+ readonly NUMBER_4: 4;
5726
+ };
5727
+ export type ReasonRequestModelReasonEnum = typeof ReasonRequestModelReasonEnum[keyof typeof ReasonRequestModelReasonEnum];
5153
5728
  /**
5154
5729
  * Azure Recordings Backup
5155
5730
  */
@@ -5209,6 +5784,80 @@ export interface RemoteStorageDTO {
5209
5784
  */
5210
5785
  'region'?: string;
5211
5786
  }
5787
+ /**
5788
+ * Report Request
5789
+ */
5790
+ export interface ReportRequestDTO {
5791
+ /**
5792
+ * Report
5793
+ */
5794
+ 'report'?: ReportRequestDTOReportEnum;
5795
+ /**
5796
+ * Start
5797
+ */
5798
+ 'start'?: string | null;
5799
+ /**
5800
+ * End
5801
+ */
5802
+ 'end'?: string | null;
5803
+ /**
5804
+ * Month
5805
+ */
5806
+ 'month'?: number | null;
5807
+ /**
5808
+ * Year
5809
+ */
5810
+ 'year'?: number | null;
5811
+ /**
5812
+ * SKU
5813
+ */
5814
+ 'sku'?: string | null;
5815
+ /**
5816
+ * Price
5817
+ */
5818
+ 'price'?: number | null;
5819
+ /**
5820
+ * Recipients
5821
+ */
5822
+ 'recipients'?: Array<string> | null;
5823
+ /**
5824
+ * Graph Type
5825
+ */
5826
+ 'graphType'?: ReportRequestDTOGraphTypeEnum | null;
5827
+ }
5828
+ export declare const ReportRequestDTOReportEnum: {
5829
+ readonly _1: "1";
5830
+ readonly _2: "2";
5831
+ readonly _3: "3";
5832
+ readonly _4: "4";
5833
+ readonly _5: "5";
5834
+ readonly _6: "6";
5835
+ readonly _7: "7";
5836
+ readonly _8: "8";
5837
+ readonly _9: "9";
5838
+ readonly _10: "10";
5839
+ };
5840
+ export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
5841
+ export declare const ReportRequestDTOGraphTypeEnum: {
5842
+ readonly StackedArea: "stacked-area";
5843
+ readonly Table: "table";
5844
+ };
5845
+ export type ReportRequestDTOGraphTypeEnum = typeof ReportRequestDTOGraphTypeEnum[keyof typeof ReportRequestDTOGraphTypeEnum];
5846
+ /**
5847
+ * RMA Resolution Request Model
5848
+ */
5849
+ export interface ResolutionRequestModel {
5850
+ /**
5851
+ * RMA Reason
5852
+ */
5853
+ 'resolution'?: ResolutionRequestModelResolutionEnum;
5854
+ }
5855
+ export declare const ResolutionRequestModelResolutionEnum: {
5856
+ readonly NUMBER_1: 1;
5857
+ readonly NUMBER_2: 2;
5858
+ readonly NUMBER_3: 3;
5859
+ };
5860
+ export type ResolutionRequestModelResolutionEnum = typeof ResolutionRequestModelResolutionEnum[keyof typeof ResolutionRequestModelResolutionEnum];
5212
5861
  /**
5213
5862
  * Resource Not Ready
5214
5863
  */
@@ -5227,80 +5876,388 @@ export interface ResourceNotReadyException {
5227
5876
  'status'?: string;
5228
5877
  }
5229
5878
  /**
5230
- * Root Access Model
5879
+ * RMA Collection Request
5231
5880
  */
5232
- export interface RootAccessModel {
5881
+ export interface RmaCollectionDTO {
5882
+ 'address'?: AddressDTO;
5233
5883
  /**
5234
- * Username
5884
+ * Number of boxes
5235
5885
  */
5236
- 'username'?: string;
5886
+ 'boxes'?: number;
5237
5887
  /**
5238
- * Password
5888
+ * Date Time
5239
5889
  */
5240
- 'password'?: string;
5890
+ 'collectionTimeFrom'?: string;
5241
5891
  /**
5242
- * Expiry Date
5892
+ * Date Time
5243
5893
  */
5244
- 'expiryDate'?: string;
5894
+ 'collectionTimeTo'?: string;
5245
5895
  }
5246
5896
  /**
5247
- * S3 Bucket
5897
+ * RMA Credit Request Item
5248
5898
  */
5249
- export interface S3BucketEntity {
5250
- /**
5251
- * name
5252
- */
5253
- 'name'?: string;
5899
+ export interface RmaCreditItemRequestDTO {
5254
5900
  /**
5255
- * region
5901
+ * RMA Item ID
5256
5902
  */
5257
- 'region'?: string;
5903
+ 'rmaItemId'?: number;
5258
5904
  /**
5259
- * accessKeyId
5905
+ * Refund Percentage
5260
5906
  */
5261
- 'accessKeyId'?: string;
5907
+ 'refundPercentage'?: RmaCreditItemRequestDTORefundPercentageEnum;
5262
5908
  /**
5263
- * secretAccessKey
5909
+ * Return Item to Stock
5264
5910
  */
5265
- 'secretAccessKey'?: string;
5911
+ 'returnStock'?: boolean;
5266
5912
  }
5913
+ export declare const RmaCreditItemRequestDTORefundPercentageEnum: {
5914
+ readonly NUMBER_100: 100;
5915
+ readonly NUMBER_85: 85;
5916
+ };
5917
+ export type RmaCreditItemRequestDTORefundPercentageEnum = typeof RmaCreditItemRequestDTORefundPercentageEnum[keyof typeof RmaCreditItemRequestDTORefundPercentageEnum];
5267
5918
  /**
5268
- * Legacy Portal SBC
5919
+ * RMA
5269
5920
  */
5270
- export interface SbcDTO {
5921
+ export interface RmaDTO {
5271
5922
  /**
5272
- * No Config
5923
+ * RMA ID
5273
5924
  */
5274
- 'noConfig'?: boolean | null;
5925
+ 'id'?: number;
5275
5926
  /**
5276
- * DHCP
5927
+ * Contact Name
5277
5928
  */
5278
- 'dhcp'?: boolean | null;
5929
+ 'contactName'?: string;
5279
5930
  /**
5280
- * 3CX URL
5931
+ * Contact Email
5281
5932
  */
5282
- 'url'?: boolean | null;
5933
+ 'contactEmail'?: string;
5283
5934
  /**
5284
- * 3CX SBC Auth Key
5935
+ * Associated Order ID
5285
5936
  */
5286
- 'authKey'?: boolean | null;
5937
+ 'orderId'?: number;
5287
5938
  /**
5288
- * LAN IP Address
5939
+ * RMA Reason
5289
5940
  */
5290
- 'ipAddress'?: boolean | null;
5941
+ 'reason'?: RmaDTOReasonEnum;
5291
5942
  /**
5292
- * LAN Subnet Mask
5943
+ * Fault Report
5293
5944
  */
5294
- 'subnetMask'?: boolean | null;
5945
+ 'faultReport'?: string;
5295
5946
  /**
5296
- * LAN Default Gateway
5947
+ * Ticket ID
5297
5948
  */
5298
- 'defaultGateway'?: boolean | null;
5949
+ 'ticketId'?: number;
5299
5950
  /**
5300
- * DNS
5951
+ * RMA Resolution
5301
5952
  */
5302
- 'dns'?: boolean | null;
5303
- }
5953
+ 'resolution'?: RmaDTOResolutionEnum;
5954
+ /**
5955
+ * RMA Status
5956
+ */
5957
+ 'status'?: RmaDTOStatusEnum;
5958
+ /**
5959
+ * RMA Approval Status
5960
+ */
5961
+ 'approved'?: boolean;
5962
+ /**
5963
+ * RMA Return Address
5964
+ */
5965
+ 'address'?: AddressDTO | null;
5966
+ /**
5967
+ * RMA Items
5968
+ */
5969
+ 'items'?: Array<RmaItemDTO>;
5970
+ }
5971
+ export declare const RmaDTOReasonEnum: {
5972
+ readonly NUMBER_1: 1;
5973
+ readonly NUMBER_2: 2;
5974
+ readonly NUMBER_3: 3;
5975
+ readonly NUMBER_4: 4;
5976
+ };
5977
+ export type RmaDTOReasonEnum = typeof RmaDTOReasonEnum[keyof typeof RmaDTOReasonEnum];
5978
+ export declare const RmaDTOResolutionEnum: {
5979
+ readonly NUMBER_1: 1;
5980
+ readonly NUMBER_2: 2;
5981
+ readonly NUMBER_3: 3;
5982
+ };
5983
+ export type RmaDTOResolutionEnum = typeof RmaDTOResolutionEnum[keyof typeof RmaDTOResolutionEnum];
5984
+ export declare const RmaDTOStatusEnum: {
5985
+ readonly NUMBER_1: 1;
5986
+ readonly NUMBER_2: 2;
5987
+ readonly NUMBER_3: 3;
5988
+ readonly NUMBER_4: 4;
5989
+ readonly NUMBER_5: 5;
5990
+ };
5991
+ export type RmaDTOStatusEnum = typeof RmaDTOStatusEnum[keyof typeof RmaDTOStatusEnum];
5992
+ /**
5993
+ * RMA Item
5994
+ */
5995
+ export interface RmaItemDTO {
5996
+ /**
5997
+ * RMA Item ID
5998
+ */
5999
+ 'id'?: number;
6000
+ /**
6001
+ * RMA Order Item ID
6002
+ */
6003
+ 'itemId'?: number;
6004
+ /**
6005
+ * RMA Item Name
6006
+ */
6007
+ 'itemName'?: string;
6008
+ /**
6009
+ * RMA Item MAC Address
6010
+ */
6011
+ 'macAddress'?: string;
6012
+ /**
6013
+ * RMA Item Serial Number
6014
+ */
6015
+ 'serialNumber'?: string;
6016
+ /**
6017
+ * RMA Item Received Status
6018
+ */
6019
+ 'received'?: boolean;
6020
+ /**
6021
+ * RMA Item Status
6022
+ */
6023
+ 'status'?: RmaItemDTOStatusEnum;
6024
+ }
6025
+ export declare const RmaItemDTOStatusEnum: {
6026
+ readonly NUMBER_1: 1;
6027
+ readonly NUMBER_2: 2;
6028
+ readonly NUMBER_3: 3;
6029
+ };
6030
+ export type RmaItemDTOStatusEnum = typeof RmaItemDTOStatusEnum[keyof typeof RmaItemDTOStatusEnum];
6031
+ /**
6032
+ * RMA Request Item
6033
+ */
6034
+ export interface RmaItemRequestDTO {
6035
+ /**
6036
+ * RMA Item ID
6037
+ */
6038
+ 'itemId'?: number;
6039
+ /**
6040
+ * RMA Item MAC Address
6041
+ */
6042
+ 'macAddress'?: string | null;
6043
+ /**
6044
+ * RMA Item Serial Number
6045
+ */
6046
+ 'serialNumber'?: string;
6047
+ }
6048
+ /**
6049
+ * RMA Replacement Order Item
6050
+ */
6051
+ export interface RmaReplacementOrderItemDTO {
6052
+ /**
6053
+ * Replaced RMA Item ID
6054
+ */
6055
+ 'id'?: string;
6056
+ /**
6057
+ * Replacement RMA Item SKU
6058
+ */
6059
+ 'sku'?: string;
6060
+ }
6061
+ /**
6062
+ * RMA Replacement Order Request
6063
+ */
6064
+ export interface RmaReplacementOrderRequestDTO {
6065
+ /**
6066
+ * RMA Replacement Order Items
6067
+ */
6068
+ 'items'?: Array<RmaReplacementOrderItemDTO>;
6069
+ }
6070
+ export interface RmaRequestDTO {
6071
+ /**
6072
+ * Contact Name
6073
+ */
6074
+ 'contactName'?: string;
6075
+ /**
6076
+ * Contact Email
6077
+ */
6078
+ 'contactEmail'?: string;
6079
+ /**
6080
+ * Associated Order ID
6081
+ */
6082
+ 'orderId'?: number;
6083
+ /**
6084
+ * RMA Reason
6085
+ */
6086
+ 'reason'?: RmaRequestDTOReasonEnum;
6087
+ /**
6088
+ * Fault Report
6089
+ */
6090
+ 'faultReport'?: string;
6091
+ /**
6092
+ * RMA Resolution
6093
+ */
6094
+ 'requestedResolution'?: RmaRequestDTORequestedResolutionEnum;
6095
+ /**
6096
+ * RMA Items
6097
+ */
6098
+ 'items'?: Array<RmaItemRequestDTO>;
6099
+ 'address'?: AddressDTO;
6100
+ }
6101
+ export declare const RmaRequestDTOReasonEnum: {
6102
+ readonly NUMBER_1: 1;
6103
+ readonly NUMBER_2: 2;
6104
+ readonly NUMBER_3: 3;
6105
+ readonly NUMBER_4: 4;
6106
+ };
6107
+ export type RmaRequestDTOReasonEnum = typeof RmaRequestDTOReasonEnum[keyof typeof RmaRequestDTOReasonEnum];
6108
+ export declare const RmaRequestDTORequestedResolutionEnum: {
6109
+ readonly NUMBER_1: 1;
6110
+ readonly NUMBER_2: 2;
6111
+ readonly NUMBER_3: 3;
6112
+ };
6113
+ export type RmaRequestDTORequestedResolutionEnum = typeof RmaRequestDTORequestedResolutionEnum[keyof typeof RmaRequestDTORequestedResolutionEnum];
6114
+ /**
6115
+ * RMA Return Request
6116
+ */
6117
+ export interface RmaReturnDTO {
6118
+ 'address'?: AddressDTO;
6119
+ /**
6120
+ * RMA Item IDs
6121
+ */
6122
+ 'items'?: Array<number>;
6123
+ /**
6124
+ * Shipping Service Code
6125
+ */
6126
+ 'service'?: string;
6127
+ /**
6128
+ * Number of boxes to ship
6129
+ */
6130
+ 'boxes'?: number;
6131
+ /**
6132
+ * Contact Email
6133
+ */
6134
+ 'contactEmail'?: string;
6135
+ /**
6136
+ * Contact Telephone
6137
+ */
6138
+ 'contactTelephone'?: string;
6139
+ }
6140
+ /**
6141
+ * RMA Summary DTO
6142
+ */
6143
+ export interface RmaSummaryDTO {
6144
+ /**
6145
+ * RMA ID
6146
+ */
6147
+ 'id'?: number;
6148
+ /**
6149
+ * Order ID
6150
+ */
6151
+ 'orderId'?: number;
6152
+ /**
6153
+ * Order Reference
6154
+ */
6155
+ 'orderReference'?: string;
6156
+ /**
6157
+ * RMA Status
6158
+ */
6159
+ 'status'?: RmaSummaryDTOStatusEnum;
6160
+ /**
6161
+ * RMA Summary Items
6162
+ */
6163
+ 'items'?: Array<RmaSummaryItemDTO>;
6164
+ }
6165
+ export declare const RmaSummaryDTOStatusEnum: {
6166
+ readonly NUMBER_1: 1;
6167
+ readonly NUMBER_2: 2;
6168
+ readonly NUMBER_3: 3;
6169
+ readonly NUMBER_4: 4;
6170
+ readonly NUMBER_5: 5;
6171
+ };
6172
+ export type RmaSummaryDTOStatusEnum = typeof RmaSummaryDTOStatusEnum[keyof typeof RmaSummaryDTOStatusEnum];
6173
+ /**
6174
+ * RMA Item Summary
6175
+ */
6176
+ export interface RmaSummaryItemDTO {
6177
+ /**
6178
+ * RMA Item Name
6179
+ */
6180
+ 'itemName'?: string;
6181
+ /**
6182
+ * RMA Item Quantity
6183
+ */
6184
+ 'quantity'?: number;
6185
+ }
6186
+ /**
6187
+ * Root Access Model
6188
+ */
6189
+ export interface RootAccessModel {
6190
+ /**
6191
+ * Username
6192
+ */
6193
+ 'username'?: string;
6194
+ /**
6195
+ * Password
6196
+ */
6197
+ 'password'?: string;
6198
+ /**
6199
+ * Expiry Date
6200
+ */
6201
+ 'expiryDate'?: string;
6202
+ }
6203
+ /**
6204
+ * S3 Bucket
6205
+ */
6206
+ export interface S3BucketEntity {
6207
+ /**
6208
+ * name
6209
+ */
6210
+ 'name'?: string;
6211
+ /**
6212
+ * region
6213
+ */
6214
+ 'region'?: string;
6215
+ /**
6216
+ * accessKeyId
6217
+ */
6218
+ 'accessKeyId'?: string;
6219
+ /**
6220
+ * secretAccessKey
6221
+ */
6222
+ 'secretAccessKey'?: string;
6223
+ }
6224
+ /**
6225
+ * Legacy Portal SBC
6226
+ */
6227
+ export interface SbcDTO {
6228
+ /**
6229
+ * No Config
6230
+ */
6231
+ 'noConfig'?: boolean | null;
6232
+ /**
6233
+ * DHCP
6234
+ */
6235
+ 'dhcp'?: boolean | null;
6236
+ /**
6237
+ * 3CX URL
6238
+ */
6239
+ 'url'?: boolean | null;
6240
+ /**
6241
+ * 3CX SBC Auth Key
6242
+ */
6243
+ 'authKey'?: boolean | null;
6244
+ /**
6245
+ * LAN IP Address
6246
+ */
6247
+ 'ipAddress'?: boolean | null;
6248
+ /**
6249
+ * LAN Subnet Mask
6250
+ */
6251
+ 'subnetMask'?: boolean | null;
6252
+ /**
6253
+ * LAN Default Gateway
6254
+ */
6255
+ 'defaultGateway'?: boolean | null;
6256
+ /**
6257
+ * DNS
6258
+ */
6259
+ 'dns'?: boolean | null;
6260
+ }
5304
6261
  /**
5305
6262
  * Item MAC & Serial Details
5306
6263
  */
@@ -5339,6 +6296,40 @@ export interface ScopeModel {
5339
6296
  */
5340
6297
  'description'?: string;
5341
6298
  }
6299
+ /**
6300
+ * Serial Number Request
6301
+ */
6302
+ export interface SerialNumberRequestModel {
6303
+ /**
6304
+ * Serial Number
6305
+ */
6306
+ 'serialNumber'?: string;
6307
+ }
6308
+ /**
6309
+ * Graph Series Data
6310
+ */
6311
+ export interface SeriesDTO {
6312
+ /**
6313
+ * Name
6314
+ */
6315
+ 'name'?: string;
6316
+ /**
6317
+ * Type
6318
+ */
6319
+ 'type'?: SeriesDTOTypeEnum;
6320
+ /**
6321
+ * Stack
6322
+ */
6323
+ 'stack'?: string | null;
6324
+ /**
6325
+ * Data
6326
+ */
6327
+ 'data'?: Array<string>;
6328
+ }
6329
+ export declare const SeriesDTOTypeEnum: {
6330
+ readonly Line: "line";
6331
+ };
6332
+ export type SeriesDTOTypeEnum = typeof SeriesDTOTypeEnum[keyof typeof SeriesDTOTypeEnum];
5342
6333
  /**
5343
6334
  * Service Health DTO
5344
6335
  */
@@ -6784,25 +7775,113 @@ export interface StockProductSummaryModel {
6784
7775
  'manufacturer'?: StockOrderSupplierModel;
6785
7776
  }
6786
7777
  /**
6787
- * StockTransactionsEntity
7778
+ * Stock Report Item
6788
7779
  */
6789
- export interface StockTransactionsEntity {
7780
+ export interface StockReportItemModel {
6790
7781
  /**
6791
- * id
7782
+ * Title
6792
7783
  */
6793
- 'id'?: number;
7784
+ 'title'?: string;
6794
7785
  /**
6795
- * sku
7786
+ * SKU
6796
7787
  */
6797
7788
  'sku'?: string;
6798
7789
  /**
6799
- * initialStock
7790
+ * In Stock
6800
7791
  */
6801
- 'initialStock'?: number;
7792
+ 'quantity'?: number;
6802
7793
  /**
6803
- * action
7794
+ * Currency
6804
7795
  */
6805
- 'action'?: string;
7796
+ 'currency'?: StockReportItemModelCurrencyEnum;
7797
+ /**
7798
+ * Cost Price
7799
+ */
7800
+ 'basePrice'?: number;
7801
+ /**
7802
+ * Line Total
7803
+ */
7804
+ 'totalValue'?: number;
7805
+ }
7806
+ export declare const StockReportItemModelCurrencyEnum: {
7807
+ readonly Eur: "EUR";
7808
+ readonly Usd: "USD";
7809
+ readonly Jpy: "JPY";
7810
+ readonly Bgn: "BGN";
7811
+ readonly Czk: "CZK";
7812
+ readonly Dkk: "DKK";
7813
+ readonly Gbp: "GBP";
7814
+ readonly Huf: "HUF";
7815
+ readonly Pln: "PLN";
7816
+ readonly Ron: "RON";
7817
+ readonly Sek: "SEK";
7818
+ readonly Chf: "CHF";
7819
+ readonly Isk: "ISK";
7820
+ readonly Nok: "NOK";
7821
+ readonly Try: "TRY";
7822
+ readonly Aud: "AUD";
7823
+ readonly Brl: "BRL";
7824
+ readonly Cad: "CAD";
7825
+ readonly Cny: "CNY";
7826
+ readonly Hkd: "HKD";
7827
+ readonly Idr: "IDR";
7828
+ readonly Ils: "ILS";
7829
+ readonly Inr: "INR";
7830
+ readonly Krw: "KRW";
7831
+ readonly Mxn: "MXN";
7832
+ readonly Myr: "MYR";
7833
+ readonly Nzd: "NZD";
7834
+ readonly Php: "PHP";
7835
+ readonly Sgd: "SGD";
7836
+ readonly Thb: "THB";
7837
+ readonly Zar: "ZAR";
7838
+ };
7839
+ export type StockReportItemModelCurrencyEnum = typeof StockReportItemModelCurrencyEnum[keyof typeof StockReportItemModelCurrencyEnum];
7840
+ /**
7841
+ * Stock Report
7842
+ */
7843
+ export interface StockReportModel {
7844
+ /**
7845
+ * Items
7846
+ */
7847
+ 'products'?: Array<StockReportItemModel>;
7848
+ /**
7849
+ * Units In Stock
7850
+ */
7851
+ 'unitsInStock'?: number;
7852
+ /**
7853
+ * Value Of USD Stock
7854
+ */
7855
+ 'usdStock'?: number;
7856
+ /**
7857
+ * Value Of GBP Stock
7858
+ */
7859
+ 'gbpStock'?: number;
7860
+ /**
7861
+ * Total value of stock in GBP
7862
+ */
7863
+ 'totalStockGbp'?: number;
7864
+ }
7865
+ /**
7866
+ * StockTransactionsEntity
7867
+ */
7868
+ export interface StockTransactionsEntity {
7869
+ /**
7870
+ * id
7871
+ */
7872
+ 'id'?: number;
7873
+ /**
7874
+ * sku
7875
+ */
7876
+ 'sku'?: string;
7877
+ /**
7878
+ * initialStock
7879
+ */
7880
+ 'initialStock'?: number;
7881
+ /**
7882
+ * action
7883
+ */
7884
+ 'action'?: string;
6806
7885
  /**
6807
7886
  * quantity
6808
7887
  */
@@ -6934,6 +8013,16 @@ export interface SupplierItemModel {
6934
8013
  * supplierSku
6935
8014
  */
6936
8015
  'supplierSku'?: string;
8016
+ 'supplier'?: SupplierModel;
8017
+ }
8018
+ /**
8019
+ * Supplier Item Results
8020
+ */
8021
+ export interface SupplierItemsResultsDTO {
8022
+ /**
8023
+ * Results
8024
+ */
8025
+ 'results'?: Array<SupplierItemModel>;
6937
8026
  }
6938
8027
  /**
6939
8028
  * Supplier
@@ -6976,6 +8065,44 @@ export interface SupplierModel {
6976
8065
  */
6977
8066
  'xeroAccountNumber'?: string;
6978
8067
  }
8068
+ /**
8069
+ * Supplier Product
8070
+ */
8071
+ export interface SupplierProductModel {
8072
+ /**
8073
+ * SKU
8074
+ */
8075
+ 'sku'?: string;
8076
+ /**
8077
+ * Description
8078
+ */
8079
+ 'description'?: string;
8080
+ /**
8081
+ * Items
8082
+ */
8083
+ 'items'?: Array<SupplierItemModel>;
8084
+ }
8085
+ /**
8086
+ * Supplier Product Results
8087
+ */
8088
+ export interface SupplierProductResultsModel {
8089
+ /**
8090
+ * Results
8091
+ */
8092
+ 'results'?: Array<SupplierProductModel>;
8093
+ /**
8094
+ * Page
8095
+ */
8096
+ 'page'?: number;
8097
+ /**
8098
+ * Per Page
8099
+ */
8100
+ 'perPage'?: number;
8101
+ /**
8102
+ * Total Results
8103
+ */
8104
+ 'totalResults'?: number;
8105
+ }
6979
8106
  /**
6980
8107
  * Telephony Support Ticket
6981
8108
  */
@@ -7025,6 +8152,29 @@ export interface SupportTicketModel {
7025
8152
  */
7026
8153
  'conversations'?: Array<ConversationModel>;
7027
8154
  }
8155
+ /**
8156
+ * Table
8157
+ */
8158
+ export interface TableDTO {
8159
+ /**
8160
+ * Title
8161
+ */
8162
+ 'title'?: string;
8163
+ 'headers'?: TableRowDTO;
8164
+ /**
8165
+ * Rows
8166
+ */
8167
+ 'rows'?: Array<TableRowDTO>;
8168
+ }
8169
+ /**
8170
+ * Table Data
8171
+ */
8172
+ export interface TableDataDTO {
8173
+ /**
8174
+ * Value
8175
+ */
8176
+ 'value'?: string;
8177
+ }
7028
8178
  /**
7029
8179
  * TableAttribsEntity
7030
8180
  */
@@ -7062,6 +8212,15 @@ export interface TableHistoryEntity {
7062
8212
  */
7063
8213
  'page'?: number;
7064
8214
  }
8215
+ /**
8216
+ * Table Row
8217
+ */
8218
+ export interface TableRowDTO {
8219
+ /**
8220
+ * Table Data
8221
+ */
8222
+ 'data'?: Array<TableDataDTO>;
8223
+ }
7065
8224
  /**
7066
8225
  * 3CX Wizard Restore From Backup
7067
8226
  */
@@ -7304,6 +8463,10 @@ export interface TcxInstallationModel {
7304
8463
  * Wizard ID
7305
8464
  */
7306
8465
  'wizardId'?: string;
8466
+ /**
8467
+ * Customer ID
8468
+ */
8469
+ 'customerId'?: number;
7307
8470
  /**
7308
8471
  * Instance ID
7309
8472
  */
@@ -8713,6 +9876,12 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
8713
9876
  * @throws {RequiredError}
8714
9877
  */
8715
9878
  getGetCustomerKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9879
+ /**
9880
+ * Get Customer Map
9881
+ * @param {*} [options] Override http request option.
9882
+ * @throws {RequiredError}
9883
+ */
9884
+ getGetCustomerMap: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8716
9885
  /**
8717
9886
  * Get Account Finance
8718
9887
  * @param {string} id Account Xero ID
@@ -8727,6 +9896,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
8727
9896
  * @throws {RequiredError}
8728
9897
  */
8729
9898
  getGetLastAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9899
+ /**
9900
+ * Download New Price List
9901
+ * @summary Download New Price List
9902
+ * @param {string} id Xero ID
9903
+ * @param {*} [options] Override http request option.
9904
+ * @throws {RequiredError}
9905
+ */
9906
+ getGetNewPriceList: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8730
9907
  /**
8731
9908
  * Get Account 3CX Details
8732
9909
  * @param {string} id Xero ID
@@ -9081,6 +10258,12 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
9081
10258
  * @throws {RequiredError}
9082
10259
  */
9083
10260
  getGetCustomerKeys(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxKeySummaryDTO>>>;
10261
+ /**
10262
+ * Get Customer Map
10263
+ * @param {*} [options] Override http request option.
10264
+ * @throws {RequiredError}
10265
+ */
10266
+ getGetCustomerMap(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerCoordinatesDTO>>>;
9084
10267
  /**
9085
10268
  * Get Account Finance
9086
10269
  * @param {string} id Account Xero ID
@@ -9095,6 +10278,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
9095
10278
  * @throws {RequiredError}
9096
10279
  */
9097
10280
  getGetLastAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountSummaryDTO>>;
10281
+ /**
10282
+ * Download New Price List
10283
+ * @summary Download New Price List
10284
+ * @param {string} id Xero ID
10285
+ * @param {*} [options] Override http request option.
10286
+ * @throws {RequiredError}
10287
+ */
10288
+ getGetNewPriceList(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
9098
10289
  /**
9099
10290
  * Get Account 3CX Details
9100
10291
  * @param {string} id Xero ID
@@ -9449,6 +10640,12 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
9449
10640
  * @throws {RequiredError}
9450
10641
  */
9451
10642
  getGetCustomerKeys(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxKeySummaryDTO>>;
10643
+ /**
10644
+ * Get Customer Map
10645
+ * @param {*} [options] Override http request option.
10646
+ * @throws {RequiredError}
10647
+ */
10648
+ getGetCustomerMap(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerCoordinatesDTO>>;
9452
10649
  /**
9453
10650
  * Get Account Finance
9454
10651
  * @param {string} id Account Xero ID
@@ -9463,6 +10660,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
9463
10660
  * @throws {RequiredError}
9464
10661
  */
9465
10662
  getGetLastAccount(options?: RawAxiosRequestConfig): AxiosPromise<AccountSummaryDTO>;
10663
+ /**
10664
+ * Download New Price List
10665
+ * @summary Download New Price List
10666
+ * @param {string} id Xero ID
10667
+ * @param {*} [options] Override http request option.
10668
+ * @throws {RequiredError}
10669
+ */
10670
+ getGetNewPriceList(id: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
9466
10671
  /**
9467
10672
  * Get Account 3CX Details
9468
10673
  * @param {string} id Xero ID
@@ -9817,6 +11022,12 @@ export declare class AccountsApi extends BaseAPI {
9817
11022
  * @throws {RequiredError}
9818
11023
  */
9819
11024
  getGetCustomerKeys(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxKeySummaryDTO[], any, {}>>;
11025
+ /**
11026
+ * Get Customer Map
11027
+ * @param {*} [options] Override http request option.
11028
+ * @throws {RequiredError}
11029
+ */
11030
+ getGetCustomerMap(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerCoordinatesDTO[], any, {}>>;
9820
11031
  /**
9821
11032
  * Get Account Finance
9822
11033
  * @param {string} id Account Xero ID
@@ -9831,6 +11042,14 @@ export declare class AccountsApi extends BaseAPI {
9831
11042
  * @throws {RequiredError}
9832
11043
  */
9833
11044
  getGetLastAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountSummaryDTO, any, {}>>;
11045
+ /**
11046
+ * Download New Price List
11047
+ * @summary Download New Price List
11048
+ * @param {string} id Xero ID
11049
+ * @param {*} [options] Override http request option.
11050
+ * @throws {RequiredError}
11051
+ */
11052
+ getGetNewPriceList(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
9834
11053
  /**
9835
11054
  * Get Account 3CX Details
9836
11055
  * @param {string} id Xero ID
@@ -12931,6 +14150,54 @@ export declare const GetGetTenantsStatusEnum: {
12931
14150
  readonly FailedOver: "Failed Over";
12932
14151
  };
12933
14152
  export type GetGetTenantsStatusEnum = typeof GetGetTenantsStatusEnum[keyof typeof GetGetTenantsStatusEnum];
14153
+ /**
14154
+ * MiscApi - axios parameter creator
14155
+ */
14156
+ export declare const MiscApiAxiosParamCreator: (configuration?: Configuration) => {
14157
+ /**
14158
+ * Share Credentials
14159
+ * @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
14160
+ * @param {*} [options] Override http request option.
14161
+ * @throws {RequiredError}
14162
+ */
14163
+ postSendPassword: (passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14164
+ };
14165
+ /**
14166
+ * MiscApi - functional programming interface
14167
+ */
14168
+ export declare const MiscApiFp: (configuration?: Configuration) => {
14169
+ /**
14170
+ * Share Credentials
14171
+ * @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
14172
+ * @param {*} [options] Override http request option.
14173
+ * @throws {RequiredError}
14174
+ */
14175
+ postSendPassword(passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PasswordSenderDTO>>;
14176
+ };
14177
+ /**
14178
+ * MiscApi - factory interface
14179
+ */
14180
+ export declare const MiscApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
14181
+ /**
14182
+ * Share Credentials
14183
+ * @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
14184
+ * @param {*} [options] Override http request option.
14185
+ * @throws {RequiredError}
14186
+ */
14187
+ postSendPassword(passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig): AxiosPromise<PasswordSenderDTO>;
14188
+ };
14189
+ /**
14190
+ * MiscApi - object-oriented interface
14191
+ */
14192
+ export declare class MiscApi extends BaseAPI {
14193
+ /**
14194
+ * Share Credentials
14195
+ * @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
14196
+ * @param {*} [options] Override http request option.
14197
+ * @throws {RequiredError}
14198
+ */
14199
+ postSendPassword(passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PasswordSenderDTO, any, {}>>;
14200
+ }
12934
14201
  /**
12935
14202
  * MyPBXToolsApi - axios parameter creator
12936
14203
  */
@@ -13825,6 +15092,8 @@ export declare const PostAccessTokenScopeEnum: {
13825
15092
  readonly ProductsRead: "products.read";
13826
15093
  readonly ProvisioningRead: "provisioning.read";
13827
15094
  readonly ProvisioningWrite: "provisioning.write";
15095
+ readonly RmaRead: "rma.read";
15096
+ readonly RmaWrite: "rma.write";
13828
15097
  readonly SmsRead: "sms.read";
13829
15098
  readonly SmsWrite: "sms.write";
13830
15099
  readonly TrunksRead: "trunks.read";
@@ -13861,6 +15130,8 @@ export declare const PostAuthoriseScopeEnum: {
13861
15130
  readonly ProductsRead: "products.read";
13862
15131
  readonly ProvisioningRead: "provisioning.read";
13863
15132
  readonly ProvisioningWrite: "provisioning.write";
15133
+ readonly RmaRead: "rma.read";
15134
+ readonly RmaWrite: "rma.write";
13864
15135
  readonly SmsRead: "sms.read";
13865
15136
  readonly SmsWrite: "sms.write";
13866
15137
  readonly TrunksRead: "trunks.read";
@@ -15856,278 +17127,1202 @@ export declare const ProvisioningApiAxiosParamCreator: (configuration?: Configur
15856
17127
  * @param {*} [options] Override http request option.
15857
17128
  * @throws {RequiredError}
15858
17129
  */
15859
- postAddFanvilGroup: (provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17130
+ postAddFanvilGroup: (provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17131
+ /**
17132
+ * Add MAC address to DB and FDPS group
17133
+ * @summary Add MAC address to DB and FDPS group
17134
+ * @param {string} id Group ID
17135
+ * @param {string} mac MAC Address
17136
+ * @param {*} [options] Override http request option.
17137
+ * @throws {RequiredError}
17138
+ */
17139
+ postAddFanvilMac: (id: string, mac: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17140
+ /**
17141
+ * Create a MAC address in FDPS
17142
+ * @param {MacAddressDTO} [macAddressDTO] Mac Address
17143
+ * @param {*} [options] Override http request option.
17144
+ * @throws {RequiredError}
17145
+ */
17146
+ postCreateMac: (macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17147
+ };
17148
+ /**
17149
+ * ProvisioningApi - functional programming interface
17150
+ */
17151
+ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
17152
+ /**
17153
+ * Remove MAC address from DB and FDPS group
17154
+ * @summary Remove MAC address from DB and FDPS group
17155
+ * @param {string} id Group ID
17156
+ * @param {string} mac MAC Address
17157
+ * @param {*} [options] Override http request option.
17158
+ * @throws {RequiredError}
17159
+ */
17160
+ deleteAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17161
+ /**
17162
+ * Delete a MAC address in FDPS
17163
+ * @param {string} mac MAC Address
17164
+ * @param {*} [options] Override http request option.
17165
+ * @throws {RequiredError}
17166
+ */
17167
+ deleteCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17168
+ /**
17169
+ * Delete a Fanvil provisioning group
17170
+ * @summary Delete group from DB and FDPS
17171
+ * @param {string} id Group ID
17172
+ * @param {*} [options] Override http request option.
17173
+ * @throws {RequiredError}
17174
+ */
17175
+ deleteDeleteFanvilGroup(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17176
+ /**
17177
+ * Check if a MAC address exists in FDPS
17178
+ * @param {string} mac MAC Address
17179
+ * @param {*} [options] Override http request option.
17180
+ * @throws {RequiredError}
17181
+ */
17182
+ getCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCheckMacExists200Response>>;
17183
+ /**
17184
+ * Get group Fanvil encryption key
17185
+ * @summary Get group Fanvil encryption key
17186
+ * @param {string} id Group ID
17187
+ * @param {string} mac MAC Address
17188
+ * @param {*} [options] Override http request option.
17189
+ * @throws {RequiredError}
17190
+ */
17191
+ getGetFanvilEncryptionKey(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
17192
+ /**
17193
+ * Get MAC addresses on group at FDPS
17194
+ * @summary Get MAC addresses on group at FDPS
17195
+ * @param {string} id Group ID
17196
+ * @param {*} [options] Override http request option.
17197
+ * @throws {RequiredError}
17198
+ */
17199
+ getGetFanvilGroupMacs(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
17200
+ /**
17201
+ * Get provisioning groups
17202
+ * @summary Get all provisioning groups or filter by customer ID
17203
+ * @param {string} [id] Customer ID
17204
+ * @param {*} [options] Override http request option.
17205
+ * @throws {RequiredError}
17206
+ */
17207
+ getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
17208
+ /**
17209
+ * Create a Fanvil provisioning group
17210
+ * @summary Add group to DB and FDPS
17211
+ * @param {ProvisioningRequestEntity} [provisioningRequestEntity] Provisioning Group Request
17212
+ * @param {*} [options] Override http request option.
17213
+ * @throws {RequiredError}
17214
+ */
17215
+ postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
17216
+ /**
17217
+ * Add MAC address to DB and FDPS group
17218
+ * @summary Add MAC address to DB and FDPS group
17219
+ * @param {string} id Group ID
17220
+ * @param {string} mac MAC Address
17221
+ * @param {*} [options] Override http request option.
17222
+ * @throws {RequiredError}
17223
+ */
17224
+ postAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17225
+ /**
17226
+ * Create a MAC address in FDPS
17227
+ * @param {MacAddressDTO} [macAddressDTO] Mac Address
17228
+ * @param {*} [options] Override http request option.
17229
+ * @throws {RequiredError}
17230
+ */
17231
+ postCreateMac(macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MacAddressDTO>>;
17232
+ };
17233
+ /**
17234
+ * ProvisioningApi - factory interface
17235
+ */
17236
+ export declare const ProvisioningApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
17237
+ /**
17238
+ * Remove MAC address from DB and FDPS group
17239
+ * @summary Remove MAC address from DB and FDPS group
17240
+ * @param {string} id Group ID
17241
+ * @param {string} mac MAC Address
17242
+ * @param {*} [options] Override http request option.
17243
+ * @throws {RequiredError}
17244
+ */
17245
+ deleteAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17246
+ /**
17247
+ * Delete a MAC address in FDPS
17248
+ * @param {string} mac MAC Address
17249
+ * @param {*} [options] Override http request option.
17250
+ * @throws {RequiredError}
17251
+ */
17252
+ deleteCheckMacExists(mac: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17253
+ /**
17254
+ * Delete a Fanvil provisioning group
17255
+ * @summary Delete group from DB and FDPS
17256
+ * @param {string} id Group ID
17257
+ * @param {*} [options] Override http request option.
17258
+ * @throws {RequiredError}
17259
+ */
17260
+ deleteDeleteFanvilGroup(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17261
+ /**
17262
+ * Check if a MAC address exists in FDPS
17263
+ * @param {string} mac MAC Address
17264
+ * @param {*} [options] Override http request option.
17265
+ * @throws {RequiredError}
17266
+ */
17267
+ getCheckMacExists(mac: string, options?: RawAxiosRequestConfig): AxiosPromise<GetCheckMacExists200Response>;
17268
+ /**
17269
+ * Get group Fanvil encryption key
17270
+ * @summary Get group Fanvil encryption key
17271
+ * @param {string} id Group ID
17272
+ * @param {string} mac MAC Address
17273
+ * @param {*} [options] Override http request option.
17274
+ * @throws {RequiredError}
17275
+ */
17276
+ getGetFanvilEncryptionKey(id: string, mac: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
17277
+ /**
17278
+ * Get MAC addresses on group at FDPS
17279
+ * @summary Get MAC addresses on group at FDPS
17280
+ * @param {string} id Group ID
17281
+ * @param {*} [options] Override http request option.
17282
+ * @throws {RequiredError}
17283
+ */
17284
+ getGetFanvilGroupMacs(id: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
17285
+ /**
17286
+ * Get provisioning groups
17287
+ * @summary Get all provisioning groups or filter by customer ID
17288
+ * @param {string} [id] Customer ID
17289
+ * @param {*} [options] Override http request option.
17290
+ * @throws {RequiredError}
17291
+ */
17292
+ getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
17293
+ /**
17294
+ * Create a Fanvil provisioning group
17295
+ * @summary Add group to DB and FDPS
17296
+ * @param {ProvisioningRequestEntity} [provisioningRequestEntity] Provisioning Group Request
17297
+ * @param {*} [options] Override http request option.
17298
+ * @throws {RequiredError}
17299
+ */
17300
+ postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
17301
+ /**
17302
+ * Add MAC address to DB and FDPS group
17303
+ * @summary Add MAC address to DB and FDPS group
17304
+ * @param {string} id Group ID
17305
+ * @param {string} mac MAC Address
17306
+ * @param {*} [options] Override http request option.
17307
+ * @throws {RequiredError}
17308
+ */
17309
+ postAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17310
+ /**
17311
+ * Create a MAC address in FDPS
17312
+ * @param {MacAddressDTO} [macAddressDTO] Mac Address
17313
+ * @param {*} [options] Override http request option.
17314
+ * @throws {RequiredError}
17315
+ */
17316
+ postCreateMac(macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig): AxiosPromise<MacAddressDTO>;
17317
+ };
17318
+ /**
17319
+ * ProvisioningApi - object-oriented interface
17320
+ */
17321
+ export declare class ProvisioningApi extends BaseAPI {
17322
+ /**
17323
+ * Remove MAC address from DB and FDPS group
17324
+ * @summary Remove MAC address from DB and FDPS group
17325
+ * @param {string} id Group ID
17326
+ * @param {string} mac MAC Address
17327
+ * @param {*} [options] Override http request option.
17328
+ * @throws {RequiredError}
17329
+ */
17330
+ deleteAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
17331
+ /**
17332
+ * Delete a MAC address in FDPS
17333
+ * @param {string} mac MAC Address
17334
+ * @param {*} [options] Override http request option.
17335
+ * @throws {RequiredError}
17336
+ */
17337
+ deleteCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
17338
+ /**
17339
+ * Delete a Fanvil provisioning group
17340
+ * @summary Delete group from DB and FDPS
17341
+ * @param {string} id Group ID
17342
+ * @param {*} [options] Override http request option.
17343
+ * @throws {RequiredError}
17344
+ */
17345
+ deleteDeleteFanvilGroup(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
17346
+ /**
17347
+ * Check if a MAC address exists in FDPS
17348
+ * @param {string} mac MAC Address
17349
+ * @param {*} [options] Override http request option.
17350
+ * @throws {RequiredError}
17351
+ */
17352
+ getCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCheckMacExists200Response, any, {}>>;
17353
+ /**
17354
+ * Get group Fanvil encryption key
17355
+ * @summary Get group Fanvil encryption key
17356
+ * @param {string} id Group ID
17357
+ * @param {string} mac MAC Address
17358
+ * @param {*} [options] Override http request option.
17359
+ * @throws {RequiredError}
17360
+ */
17361
+ getGetFanvilEncryptionKey(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
17362
+ /**
17363
+ * Get MAC addresses on group at FDPS
17364
+ * @summary Get MAC addresses on group at FDPS
17365
+ * @param {string} id Group ID
17366
+ * @param {*} [options] Override http request option.
17367
+ * @throws {RequiredError}
17368
+ */
17369
+ getGetFanvilGroupMacs(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
17370
+ /**
17371
+ * Get provisioning groups
17372
+ * @summary Get all provisioning groups or filter by customer ID
17373
+ * @param {string} [id] Customer ID
17374
+ * @param {*} [options] Override http request option.
17375
+ * @throws {RequiredError}
17376
+ */
17377
+ getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
17378
+ /**
17379
+ * Create a Fanvil provisioning group
17380
+ * @summary Add group to DB and FDPS
17381
+ * @param {ProvisioningRequestEntity} [provisioningRequestEntity] Provisioning Group Request
17382
+ * @param {*} [options] Override http request option.
17383
+ * @throws {RequiredError}
17384
+ */
17385
+ postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
17386
+ /**
17387
+ * Add MAC address to DB and FDPS group
17388
+ * @summary Add MAC address to DB and FDPS group
17389
+ * @param {string} id Group ID
17390
+ * @param {string} mac MAC Address
17391
+ * @param {*} [options] Override http request option.
17392
+ * @throws {RequiredError}
17393
+ */
17394
+ postAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
17395
+ /**
17396
+ * Create a MAC address in FDPS
17397
+ * @param {MacAddressDTO} [macAddressDTO] Mac Address
17398
+ * @param {*} [options] Override http request option.
17399
+ * @throws {RequiredError}
17400
+ */
17401
+ postCreateMac(macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MacAddressDTO, any, {}>>;
17402
+ }
17403
+ /**
17404
+ * RMAApi - axios parameter creator
17405
+ */
17406
+ export declare const RMAApiAxiosParamCreator: (configuration?: Configuration) => {
17407
+ /**
17408
+ * Delete an RMA item
17409
+ * @param {number} id
17410
+ * @param {number} itemId
17411
+ * @param {*} [options] Override http request option.
17412
+ * @throws {RequiredError}
17413
+ */
17414
+ deleteDeleteRmaItem: (id: number, itemId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17415
+ /**
17416
+ * Delete an RMA
17417
+ * @param {number} id
17418
+ * @param {*} [options] Override http request option.
17419
+ * @throws {RequiredError}
17420
+ */
17421
+ deleteGetAdminRma: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17422
+ /**
17423
+ * Get Customer RMAs
17424
+ * @param {number} [pageSize] Number Of Results
17425
+ * @param {number} [page] Page Number
17426
+ * @param {string} [search] Search
17427
+ * @param {*} [options] Override http request option.
17428
+ * @throws {RequiredError}
17429
+ */
17430
+ getCreateRma: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17431
+ /**
17432
+ * Get Admin RMA by ID
17433
+ * @param {number} id
17434
+ * @param {*} [options] Override http request option.
17435
+ * @throws {RequiredError}
17436
+ */
17437
+ getGetAdminRma: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17438
+ /**
17439
+ * Get Admin RMAs
17440
+ * @param {number} [pageSize] Number Of Results
17441
+ * @param {number} [page] Page Number
17442
+ * @param {string} [search] Search
17443
+ * @param {*} [options] Override http request option.
17444
+ * @throws {RequiredError}
17445
+ */
17446
+ getGetAdminRmas: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17447
+ /**
17448
+ * Get RMA by ID
17449
+ * @param {number} id RMA ID
17450
+ * @param {*} [options] Override http request option.
17451
+ * @throws {RequiredError}
17452
+ */
17453
+ getGetRma: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17454
+ /**
17455
+ * Approve an RMA
17456
+ * @param {number} id
17457
+ * @param {*} [options] Override http request option.
17458
+ * @throws {RequiredError}
17459
+ */
17460
+ patchApproveRma: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17461
+ /**
17462
+ * Mark RMA item as binned
17463
+ * @param {number} id
17464
+ * @param {number} itemId
17465
+ * @param {*} [options] Override http request option.
17466
+ * @throws {RequiredError}
17467
+ */
17468
+ patchMarkRmaItemAsBinned: (id: number, itemId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17469
+ /**
17470
+ * Mark RMA item as received
17471
+ * @param {number} id
17472
+ * @param {number} itemId
17473
+ * @param {*} [options] Override http request option.
17474
+ * @throws {RequiredError}
17475
+ */
17476
+ patchMarkRmaItemAsReceived: (id: number, itemId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17477
+ /**
17478
+ * Mark RMA item as unresolved
17479
+ * @param {number} id
17480
+ * @param {number} itemId
17481
+ * @param {*} [options] Override http request option.
17482
+ * @throws {RequiredError}
17483
+ */
17484
+ patchMarkRmaItemAsUnresolved: (id: number, itemId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17485
+ /**
17486
+ * Reject an RMA
17487
+ * @param {number} id
17488
+ * @param {NoteRequestModel} [noteRequestModel] RMA Rejection Request
17489
+ * @param {*} [options] Override http request option.
17490
+ * @throws {RequiredError}
17491
+ */
17492
+ patchRejectRma: (id: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17493
+ /**
17494
+ * Resolve an RMA
17495
+ * @param {number} id
17496
+ * @param {*} [options] Override http request option.
17497
+ * @throws {RequiredError}
17498
+ */
17499
+ patchResolveRma: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17500
+ /**
17501
+ * Update contact name for an rma
17502
+ * @param {number} id
17503
+ * @param {EmailRequestModel} [emailRequestModel] Email Request
17504
+ * @param {*} [options] Override http request option.
17505
+ * @throws {RequiredError}
17506
+ */
17507
+ patchUpdateRmaContactEmail: (id: number, emailRequestModel?: EmailRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17508
+ /**
17509
+ * Update contact name for an rma
17510
+ * @param {number} id
17511
+ * @param {NameRequestModel} [nameRequestModel] Name Request
17512
+ * @param {*} [options] Override http request option.
17513
+ * @throws {RequiredError}
17514
+ */
17515
+ patchUpdateRmaContactName: (id: number, nameRequestModel?: NameRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17516
+ /**
17517
+ * Update RMA item MAC address
17518
+ * @param {number} id
17519
+ * @param {number} itemId
17520
+ * @param {MacAddressRequestModel} [macAddressRequestModel] Update RMA item MAC address request
17521
+ * @param {*} [options] Override http request option.
17522
+ * @throws {RequiredError}
17523
+ */
17524
+ patchUpdateRmaItemMacAddress: (id: number, itemId: number, macAddressRequestModel?: MacAddressRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17525
+ /**
17526
+ * Update RMA item note
17527
+ * @param {number} id
17528
+ * @param {number} itemId
17529
+ * @param {NoteRequestModel} [noteRequestModel] Update RMA item note request
17530
+ * @param {*} [options] Override http request option.
17531
+ * @throws {RequiredError}
17532
+ */
17533
+ patchUpdateRmaItemNote: (id: number, itemId: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17534
+ /**
17535
+ * Update RMA item serial number
17536
+ * @param {number} id
17537
+ * @param {number} itemId
17538
+ * @param {SerialNumberRequestModel} [serialNumberRequestModel] Update RMA item serial number request
17539
+ * @param {*} [options] Override http request option.
17540
+ * @throws {RequiredError}
17541
+ */
17542
+ patchUpdateRmaItemSerialNumber: (id: number, itemId: number, serialNumberRequestModel?: SerialNumberRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17543
+ /**
17544
+ * Update RMA reason
17545
+ * @param {number} id
17546
+ * @param {ReasonRequestModel} [reasonRequestModel] Update RMA Reason Request
17547
+ * @param {*} [options] Override http request option.
17548
+ * @throws {RequiredError}
17549
+ */
17550
+ patchUpdateRmaReason: (id: number, reasonRequestModel?: ReasonRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17551
+ /**
17552
+ * Update RMA resolution
17553
+ * @param {number} id
17554
+ * @param {ResolutionRequestModel} [resolutionRequestModel] Update RMA Resolution Request
17555
+ * @param {*} [options] Override http request option.
17556
+ * @throws {RequiredError}
17557
+ */
17558
+ patchUpdateRmaResolution: (id: number, resolutionRequestModel?: ResolutionRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17559
+ /**
17560
+ * Update RMA return address
17561
+ * @param {number} id
17562
+ * @param {AddressDTO} [addressDTO] Update RMA return address
17563
+ * @param {*} [options] Override http request option.
17564
+ * @throws {RequiredError}
17565
+ */
17566
+ patchUpdateRmaReturnAddress: (id: number, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17567
+ /**
17568
+ * Create a replacement order for an RMA
17569
+ * @param {number} id
17570
+ * @param {RmaReplacementOrderRequestDTO} [rmaReplacementOrderRequestDTO] RMA Replacement Order Request
17571
+ * @param {*} [options] Override http request option.
17572
+ * @throws {RequiredError}
17573
+ */
17574
+ postCreateReplacementOrder: (id: number, rmaReplacementOrderRequestDTO?: RmaReplacementOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17575
+ /**
17576
+ * Create an RMA
17577
+ * @param {RmaRequestDTO} [rmaRequestDTO] RMA Request
17578
+ * @param {*} [options] Override http request option.
17579
+ * @throws {RequiredError}
17580
+ */
17581
+ postCreateRma: (rmaRequestDTO?: RmaRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17582
+ /**
17583
+ * Create a collection for an RMA
17584
+ * @param {number} id
17585
+ * @param {RmaCollectionDTO} [rmaCollectionDTO] RMA Collection Request
17586
+ * @param {*} [options] Override http request option.
17587
+ * @throws {RequiredError}
17588
+ */
17589
+ postCreateRmaCollection: (id: number, rmaCollectionDTO?: RmaCollectionDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17590
+ /**
17591
+ * Create a credit note for an RMA
17592
+ * @param {number} id
17593
+ * @param {Array<RmaCreditItemRequestDTO>} [rmaCreditItemRequestDTO] RMA Items to be credited
17594
+ * @param {*} [options] Override http request option.
17595
+ * @throws {RequiredError}
17596
+ */
17597
+ postCreateRmaCreditNote: (id: number, rmaCreditItemRequestDTO?: Array<RmaCreditItemRequestDTO>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17598
+ /**
17599
+ * Create an RMA note
17600
+ * @param {number} id
17601
+ * @param {NoteRequestModel} [noteRequestModel] RMA Note Request
17602
+ * @param {*} [options] Override http request option.
17603
+ * @throws {RequiredError}
17604
+ */
17605
+ postCreateRmaNote: (id: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17606
+ /**
17607
+ * Create a collection for an RMA
17608
+ * @param {number} id
17609
+ * @param {RmaReturnDTO} [rmaReturnDTO] RMA Return Request
17610
+ * @param {*} [options] Override http request option.
17611
+ * @throws {RequiredError}
17612
+ */
17613
+ postCreateRmaReturn: (id: number, rmaReturnDTO?: RmaReturnDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17614
+ };
17615
+ /**
17616
+ * RMAApi - functional programming interface
17617
+ */
17618
+ export declare const RMAApiFp: (configuration?: Configuration) => {
17619
+ /**
17620
+ * Delete an RMA item
17621
+ * @param {number} id
17622
+ * @param {number} itemId
17623
+ * @param {*} [options] Override http request option.
17624
+ * @throws {RequiredError}
17625
+ */
17626
+ deleteDeleteRmaItem(id: number, itemId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17627
+ /**
17628
+ * Delete an RMA
17629
+ * @param {number} id
17630
+ * @param {*} [options] Override http request option.
17631
+ * @throws {RequiredError}
17632
+ */
17633
+ deleteGetAdminRma(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17634
+ /**
17635
+ * Get Customer RMAs
17636
+ * @param {number} [pageSize] Number Of Results
17637
+ * @param {number} [page] Page Number
17638
+ * @param {string} [search] Search
17639
+ * @param {*} [options] Override http request option.
17640
+ * @throws {RequiredError}
17641
+ */
17642
+ getCreateRma(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CustomerRmasModel>>;
17643
+ /**
17644
+ * Get Admin RMA by ID
17645
+ * @param {number} id
17646
+ * @param {*} [options] Override http request option.
17647
+ * @throws {RequiredError}
17648
+ */
17649
+ getGetAdminRma(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminRmaDTO>>;
17650
+ /**
17651
+ * Get Admin RMAs
17652
+ * @param {number} [pageSize] Number Of Results
17653
+ * @param {number} [page] Page Number
17654
+ * @param {string} [search] Search
17655
+ * @param {*} [options] Override http request option.
17656
+ * @throws {RequiredError}
17657
+ */
17658
+ getGetAdminRmas(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminCustomerRmasModel>>;
17659
+ /**
17660
+ * Get RMA by ID
17661
+ * @param {number} id RMA ID
17662
+ * @param {*} [options] Override http request option.
17663
+ * @throws {RequiredError}
17664
+ */
17665
+ getGetRma(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RmaDTO>>;
17666
+ /**
17667
+ * Approve an RMA
17668
+ * @param {number} id
17669
+ * @param {*} [options] Override http request option.
17670
+ * @throws {RequiredError}
17671
+ */
17672
+ patchApproveRma(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17673
+ /**
17674
+ * Mark RMA item as binned
17675
+ * @param {number} id
17676
+ * @param {number} itemId
17677
+ * @param {*} [options] Override http request option.
17678
+ * @throws {RequiredError}
17679
+ */
17680
+ patchMarkRmaItemAsBinned(id: number, itemId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17681
+ /**
17682
+ * Mark RMA item as received
17683
+ * @param {number} id
17684
+ * @param {number} itemId
17685
+ * @param {*} [options] Override http request option.
17686
+ * @throws {RequiredError}
17687
+ */
17688
+ patchMarkRmaItemAsReceived(id: number, itemId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17689
+ /**
17690
+ * Mark RMA item as unresolved
17691
+ * @param {number} id
17692
+ * @param {number} itemId
17693
+ * @param {*} [options] Override http request option.
17694
+ * @throws {RequiredError}
17695
+ */
17696
+ patchMarkRmaItemAsUnresolved(id: number, itemId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17697
+ /**
17698
+ * Reject an RMA
17699
+ * @param {number} id
17700
+ * @param {NoteRequestModel} [noteRequestModel] RMA Rejection Request
17701
+ * @param {*} [options] Override http request option.
17702
+ * @throws {RequiredError}
17703
+ */
17704
+ patchRejectRma(id: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17705
+ /**
17706
+ * Resolve an RMA
17707
+ * @param {number} id
17708
+ * @param {*} [options] Override http request option.
17709
+ * @throws {RequiredError}
17710
+ */
17711
+ patchResolveRma(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17712
+ /**
17713
+ * Update contact name for an rma
17714
+ * @param {number} id
17715
+ * @param {EmailRequestModel} [emailRequestModel] Email Request
17716
+ * @param {*} [options] Override http request option.
17717
+ * @throws {RequiredError}
17718
+ */
17719
+ patchUpdateRmaContactEmail(id: number, emailRequestModel?: EmailRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17720
+ /**
17721
+ * Update contact name for an rma
17722
+ * @param {number} id
17723
+ * @param {NameRequestModel} [nameRequestModel] Name Request
17724
+ * @param {*} [options] Override http request option.
17725
+ * @throws {RequiredError}
17726
+ */
17727
+ patchUpdateRmaContactName(id: number, nameRequestModel?: NameRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17728
+ /**
17729
+ * Update RMA item MAC address
17730
+ * @param {number} id
17731
+ * @param {number} itemId
17732
+ * @param {MacAddressRequestModel} [macAddressRequestModel] Update RMA item MAC address request
17733
+ * @param {*} [options] Override http request option.
17734
+ * @throws {RequiredError}
17735
+ */
17736
+ patchUpdateRmaItemMacAddress(id: number, itemId: number, macAddressRequestModel?: MacAddressRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17737
+ /**
17738
+ * Update RMA item note
17739
+ * @param {number} id
17740
+ * @param {number} itemId
17741
+ * @param {NoteRequestModel} [noteRequestModel] Update RMA item note request
17742
+ * @param {*} [options] Override http request option.
17743
+ * @throws {RequiredError}
17744
+ */
17745
+ patchUpdateRmaItemNote(id: number, itemId: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17746
+ /**
17747
+ * Update RMA item serial number
17748
+ * @param {number} id
17749
+ * @param {number} itemId
17750
+ * @param {SerialNumberRequestModel} [serialNumberRequestModel] Update RMA item serial number request
17751
+ * @param {*} [options] Override http request option.
17752
+ * @throws {RequiredError}
17753
+ */
17754
+ patchUpdateRmaItemSerialNumber(id: number, itemId: number, serialNumberRequestModel?: SerialNumberRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17755
+ /**
17756
+ * Update RMA reason
17757
+ * @param {number} id
17758
+ * @param {ReasonRequestModel} [reasonRequestModel] Update RMA Reason Request
17759
+ * @param {*} [options] Override http request option.
17760
+ * @throws {RequiredError}
17761
+ */
17762
+ patchUpdateRmaReason(id: number, reasonRequestModel?: ReasonRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17763
+ /**
17764
+ * Update RMA resolution
17765
+ * @param {number} id
17766
+ * @param {ResolutionRequestModel} [resolutionRequestModel] Update RMA Resolution Request
17767
+ * @param {*} [options] Override http request option.
17768
+ * @throws {RequiredError}
17769
+ */
17770
+ patchUpdateRmaResolution(id: number, resolutionRequestModel?: ResolutionRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17771
+ /**
17772
+ * Update RMA return address
17773
+ * @param {number} id
17774
+ * @param {AddressDTO} [addressDTO] Update RMA return address
17775
+ * @param {*} [options] Override http request option.
17776
+ * @throws {RequiredError}
17777
+ */
17778
+ patchUpdateRmaReturnAddress(id: number, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17779
+ /**
17780
+ * Create a replacement order for an RMA
17781
+ * @param {number} id
17782
+ * @param {RmaReplacementOrderRequestDTO} [rmaReplacementOrderRequestDTO] RMA Replacement Order Request
17783
+ * @param {*} [options] Override http request option.
17784
+ * @throws {RequiredError}
17785
+ */
17786
+ postCreateReplacementOrder(id: number, rmaReplacementOrderRequestDTO?: RmaReplacementOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminRmaDTO>>;
17787
+ /**
17788
+ * Create an RMA
17789
+ * @param {RmaRequestDTO} [rmaRequestDTO] RMA Request
17790
+ * @param {*} [options] Override http request option.
17791
+ * @throws {RequiredError}
17792
+ */
17793
+ postCreateRma(rmaRequestDTO?: RmaRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RmaDTO>>;
17794
+ /**
17795
+ * Create a collection for an RMA
17796
+ * @param {number} id
17797
+ * @param {RmaCollectionDTO} [rmaCollectionDTO] RMA Collection Request
17798
+ * @param {*} [options] Override http request option.
17799
+ * @throws {RequiredError}
17800
+ */
17801
+ postCreateRmaCollection(id: number, rmaCollectionDTO?: RmaCollectionDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminRmaDTO>>;
17802
+ /**
17803
+ * Create a credit note for an RMA
17804
+ * @param {number} id
17805
+ * @param {Array<RmaCreditItemRequestDTO>} [rmaCreditItemRequestDTO] RMA Items to be credited
17806
+ * @param {*} [options] Override http request option.
17807
+ * @throws {RequiredError}
17808
+ */
17809
+ postCreateRmaCreditNote(id: number, rmaCreditItemRequestDTO?: Array<RmaCreditItemRequestDTO>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminRmaDTO>>;
17810
+ /**
17811
+ * Create an RMA note
17812
+ * @param {number} id
17813
+ * @param {NoteRequestModel} [noteRequestModel] RMA Note Request
17814
+ * @param {*} [options] Override http request option.
17815
+ * @throws {RequiredError}
17816
+ */
17817
+ postCreateRmaNote(id: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17818
+ /**
17819
+ * Create a collection for an RMA
17820
+ * @param {number} id
17821
+ * @param {RmaReturnDTO} [rmaReturnDTO] RMA Return Request
17822
+ * @param {*} [options] Override http request option.
17823
+ * @throws {RequiredError}
17824
+ */
17825
+ postCreateRmaReturn(id: number, rmaReturnDTO?: RmaReturnDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminRmaDTO>>;
17826
+ };
17827
+ /**
17828
+ * RMAApi - factory interface
17829
+ */
17830
+ export declare const RMAApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
17831
+ /**
17832
+ * Delete an RMA item
17833
+ * @param {number} id
17834
+ * @param {number} itemId
17835
+ * @param {*} [options] Override http request option.
17836
+ * @throws {RequiredError}
17837
+ */
17838
+ deleteDeleteRmaItem(id: number, itemId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17839
+ /**
17840
+ * Delete an RMA
17841
+ * @param {number} id
17842
+ * @param {*} [options] Override http request option.
17843
+ * @throws {RequiredError}
17844
+ */
17845
+ deleteGetAdminRma(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17846
+ /**
17847
+ * Get Customer RMAs
17848
+ * @param {number} [pageSize] Number Of Results
17849
+ * @param {number} [page] Page Number
17850
+ * @param {string} [search] Search
17851
+ * @param {*} [options] Override http request option.
17852
+ * @throws {RequiredError}
17853
+ */
17854
+ getCreateRma(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<CustomerRmasModel>;
17855
+ /**
17856
+ * Get Admin RMA by ID
17857
+ * @param {number} id
17858
+ * @param {*} [options] Override http request option.
17859
+ * @throws {RequiredError}
17860
+ */
17861
+ getGetAdminRma(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminRmaDTO>;
17862
+ /**
17863
+ * Get Admin RMAs
17864
+ * @param {number} [pageSize] Number Of Results
17865
+ * @param {number} [page] Page Number
17866
+ * @param {string} [search] Search
17867
+ * @param {*} [options] Override http request option.
17868
+ * @throws {RequiredError}
17869
+ */
17870
+ getGetAdminRmas(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminCustomerRmasModel>;
17871
+ /**
17872
+ * Get RMA by ID
17873
+ * @param {number} id RMA ID
17874
+ * @param {*} [options] Override http request option.
17875
+ * @throws {RequiredError}
17876
+ */
17877
+ getGetRma(id: number, options?: RawAxiosRequestConfig): AxiosPromise<RmaDTO>;
17878
+ /**
17879
+ * Approve an RMA
17880
+ * @param {number} id
17881
+ * @param {*} [options] Override http request option.
17882
+ * @throws {RequiredError}
17883
+ */
17884
+ patchApproveRma(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17885
+ /**
17886
+ * Mark RMA item as binned
17887
+ * @param {number} id
17888
+ * @param {number} itemId
17889
+ * @param {*} [options] Override http request option.
17890
+ * @throws {RequiredError}
17891
+ */
17892
+ patchMarkRmaItemAsBinned(id: number, itemId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17893
+ /**
17894
+ * Mark RMA item as received
17895
+ * @param {number} id
17896
+ * @param {number} itemId
17897
+ * @param {*} [options] Override http request option.
17898
+ * @throws {RequiredError}
17899
+ */
17900
+ patchMarkRmaItemAsReceived(id: number, itemId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17901
+ /**
17902
+ * Mark RMA item as unresolved
17903
+ * @param {number} id
17904
+ * @param {number} itemId
17905
+ * @param {*} [options] Override http request option.
17906
+ * @throws {RequiredError}
17907
+ */
17908
+ patchMarkRmaItemAsUnresolved(id: number, itemId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17909
+ /**
17910
+ * Reject an RMA
17911
+ * @param {number} id
17912
+ * @param {NoteRequestModel} [noteRequestModel] RMA Rejection Request
17913
+ * @param {*} [options] Override http request option.
17914
+ * @throws {RequiredError}
17915
+ */
17916
+ patchRejectRma(id: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17917
+ /**
17918
+ * Resolve an RMA
17919
+ * @param {number} id
17920
+ * @param {*} [options] Override http request option.
17921
+ * @throws {RequiredError}
17922
+ */
17923
+ patchResolveRma(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17924
+ /**
17925
+ * Update contact name for an rma
17926
+ * @param {number} id
17927
+ * @param {EmailRequestModel} [emailRequestModel] Email Request
17928
+ * @param {*} [options] Override http request option.
17929
+ * @throws {RequiredError}
17930
+ */
17931
+ patchUpdateRmaContactEmail(id: number, emailRequestModel?: EmailRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17932
+ /**
17933
+ * Update contact name for an rma
17934
+ * @param {number} id
17935
+ * @param {NameRequestModel} [nameRequestModel] Name Request
17936
+ * @param {*} [options] Override http request option.
17937
+ * @throws {RequiredError}
17938
+ */
17939
+ patchUpdateRmaContactName(id: number, nameRequestModel?: NameRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17940
+ /**
17941
+ * Update RMA item MAC address
17942
+ * @param {number} id
17943
+ * @param {number} itemId
17944
+ * @param {MacAddressRequestModel} [macAddressRequestModel] Update RMA item MAC address request
17945
+ * @param {*} [options] Override http request option.
17946
+ * @throws {RequiredError}
17947
+ */
17948
+ patchUpdateRmaItemMacAddress(id: number, itemId: number, macAddressRequestModel?: MacAddressRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17949
+ /**
17950
+ * Update RMA item note
17951
+ * @param {number} id
17952
+ * @param {number} itemId
17953
+ * @param {NoteRequestModel} [noteRequestModel] Update RMA item note request
17954
+ * @param {*} [options] Override http request option.
17955
+ * @throws {RequiredError}
17956
+ */
17957
+ patchUpdateRmaItemNote(id: number, itemId: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17958
+ /**
17959
+ * Update RMA item serial number
17960
+ * @param {number} id
17961
+ * @param {number} itemId
17962
+ * @param {SerialNumberRequestModel} [serialNumberRequestModel] Update RMA item serial number request
17963
+ * @param {*} [options] Override http request option.
17964
+ * @throws {RequiredError}
17965
+ */
17966
+ patchUpdateRmaItemSerialNumber(id: number, itemId: number, serialNumberRequestModel?: SerialNumberRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17967
+ /**
17968
+ * Update RMA reason
17969
+ * @param {number} id
17970
+ * @param {ReasonRequestModel} [reasonRequestModel] Update RMA Reason Request
17971
+ * @param {*} [options] Override http request option.
17972
+ * @throws {RequiredError}
17973
+ */
17974
+ patchUpdateRmaReason(id: number, reasonRequestModel?: ReasonRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17975
+ /**
17976
+ * Update RMA resolution
17977
+ * @param {number} id
17978
+ * @param {ResolutionRequestModel} [resolutionRequestModel] Update RMA Resolution Request
17979
+ * @param {*} [options] Override http request option.
17980
+ * @throws {RequiredError}
17981
+ */
17982
+ patchUpdateRmaResolution(id: number, resolutionRequestModel?: ResolutionRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17983
+ /**
17984
+ * Update RMA return address
17985
+ * @param {number} id
17986
+ * @param {AddressDTO} [addressDTO] Update RMA return address
17987
+ * @param {*} [options] Override http request option.
17988
+ * @throws {RequiredError}
17989
+ */
17990
+ patchUpdateRmaReturnAddress(id: number, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17991
+ /**
17992
+ * Create a replacement order for an RMA
17993
+ * @param {number} id
17994
+ * @param {RmaReplacementOrderRequestDTO} [rmaReplacementOrderRequestDTO] RMA Replacement Order Request
17995
+ * @param {*} [options] Override http request option.
17996
+ * @throws {RequiredError}
17997
+ */
17998
+ postCreateReplacementOrder(id: number, rmaReplacementOrderRequestDTO?: RmaReplacementOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<AdminRmaDTO>;
17999
+ /**
18000
+ * Create an RMA
18001
+ * @param {RmaRequestDTO} [rmaRequestDTO] RMA Request
18002
+ * @param {*} [options] Override http request option.
18003
+ * @throws {RequiredError}
18004
+ */
18005
+ postCreateRma(rmaRequestDTO?: RmaRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<RmaDTO>;
18006
+ /**
18007
+ * Create a collection for an RMA
18008
+ * @param {number} id
18009
+ * @param {RmaCollectionDTO} [rmaCollectionDTO] RMA Collection Request
18010
+ * @param {*} [options] Override http request option.
18011
+ * @throws {RequiredError}
18012
+ */
18013
+ postCreateRmaCollection(id: number, rmaCollectionDTO?: RmaCollectionDTO, options?: RawAxiosRequestConfig): AxiosPromise<AdminRmaDTO>;
18014
+ /**
18015
+ * Create a credit note for an RMA
18016
+ * @param {number} id
18017
+ * @param {Array<RmaCreditItemRequestDTO>} [rmaCreditItemRequestDTO] RMA Items to be credited
18018
+ * @param {*} [options] Override http request option.
18019
+ * @throws {RequiredError}
18020
+ */
18021
+ postCreateRmaCreditNote(id: number, rmaCreditItemRequestDTO?: Array<RmaCreditItemRequestDTO>, options?: RawAxiosRequestConfig): AxiosPromise<AdminRmaDTO>;
18022
+ /**
18023
+ * Create an RMA note
18024
+ * @param {number} id
18025
+ * @param {NoteRequestModel} [noteRequestModel] RMA Note Request
18026
+ * @param {*} [options] Override http request option.
18027
+ * @throws {RequiredError}
18028
+ */
18029
+ postCreateRmaNote(id: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
18030
+ /**
18031
+ * Create a collection for an RMA
18032
+ * @param {number} id
18033
+ * @param {RmaReturnDTO} [rmaReturnDTO] RMA Return Request
18034
+ * @param {*} [options] Override http request option.
18035
+ * @throws {RequiredError}
18036
+ */
18037
+ postCreateRmaReturn(id: number, rmaReturnDTO?: RmaReturnDTO, options?: RawAxiosRequestConfig): AxiosPromise<AdminRmaDTO>;
18038
+ };
18039
+ /**
18040
+ * RMAApi - object-oriented interface
18041
+ */
18042
+ export declare class RMAApi extends BaseAPI {
18043
+ /**
18044
+ * Delete an RMA item
18045
+ * @param {number} id
18046
+ * @param {number} itemId
18047
+ * @param {*} [options] Override http request option.
18048
+ * @throws {RequiredError}
18049
+ */
18050
+ deleteDeleteRmaItem(id: number, itemId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
18051
+ /**
18052
+ * Delete an RMA
18053
+ * @param {number} id
18054
+ * @param {*} [options] Override http request option.
18055
+ * @throws {RequiredError}
18056
+ */
18057
+ deleteGetAdminRma(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15860
18058
  /**
15861
- * Add MAC address to DB and FDPS group
15862
- * @summary Add MAC address to DB and FDPS group
15863
- * @param {string} id Group ID
15864
- * @param {string} mac MAC Address
18059
+ * Get Customer RMAs
18060
+ * @param {number} [pageSize] Number Of Results
18061
+ * @param {number} [page] Page Number
18062
+ * @param {string} [search] Search
15865
18063
  * @param {*} [options] Override http request option.
15866
18064
  * @throws {RequiredError}
15867
18065
  */
15868
- postAddFanvilMac: (id: string, mac: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
18066
+ getCreateRma(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerRmasModel, any, {}>>;
15869
18067
  /**
15870
- * Create a MAC address in FDPS
15871
- * @param {MacAddressDTO} [macAddressDTO] Mac Address
18068
+ * Get Admin RMA by ID
18069
+ * @param {number} id
15872
18070
  * @param {*} [options] Override http request option.
15873
18071
  * @throws {RequiredError}
15874
18072
  */
15875
- postCreateMac: (macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15876
- };
15877
- /**
15878
- * ProvisioningApi - functional programming interface
15879
- */
15880
- export declare const ProvisioningApiFp: (configuration?: Configuration) => {
18073
+ getGetAdminRma(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRmaDTO, any, {}>>;
15881
18074
  /**
15882
- * Remove MAC address from DB and FDPS group
15883
- * @summary Remove MAC address from DB and FDPS group
15884
- * @param {string} id Group ID
15885
- * @param {string} mac MAC Address
18075
+ * Get Admin RMAs
18076
+ * @param {number} [pageSize] Number Of Results
18077
+ * @param {number} [page] Page Number
18078
+ * @param {string} [search] Search
15886
18079
  * @param {*} [options] Override http request option.
15887
18080
  * @throws {RequiredError}
15888
18081
  */
15889
- deleteAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
18082
+ getGetAdminRmas(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminCustomerRmasModel, any, {}>>;
15890
18083
  /**
15891
- * Delete a MAC address in FDPS
15892
- * @param {string} mac MAC Address
18084
+ * Get RMA by ID
18085
+ * @param {number} id RMA ID
15893
18086
  * @param {*} [options] Override http request option.
15894
18087
  * @throws {RequiredError}
15895
18088
  */
15896
- deleteCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
18089
+ getGetRma(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RmaDTO, any, {}>>;
15897
18090
  /**
15898
- * Delete a Fanvil provisioning group
15899
- * @summary Delete group from DB and FDPS
15900
- * @param {string} id Group ID
18091
+ * Approve an RMA
18092
+ * @param {number} id
15901
18093
  * @param {*} [options] Override http request option.
15902
18094
  * @throws {RequiredError}
15903
18095
  */
15904
- deleteDeleteFanvilGroup(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
18096
+ patchApproveRma(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15905
18097
  /**
15906
- * Check if a MAC address exists in FDPS
15907
- * @param {string} mac MAC Address
18098
+ * Mark RMA item as binned
18099
+ * @param {number} id
18100
+ * @param {number} itemId
15908
18101
  * @param {*} [options] Override http request option.
15909
18102
  * @throws {RequiredError}
15910
18103
  */
15911
- getCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCheckMacExists200Response>>;
18104
+ patchMarkRmaItemAsBinned(id: number, itemId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15912
18105
  /**
15913
- * Get group Fanvil encryption key
15914
- * @summary Get group Fanvil encryption key
15915
- * @param {string} id Group ID
15916
- * @param {string} mac MAC Address
18106
+ * Mark RMA item as received
18107
+ * @param {number} id
18108
+ * @param {number} itemId
15917
18109
  * @param {*} [options] Override http request option.
15918
18110
  * @throws {RequiredError}
15919
18111
  */
15920
- getGetFanvilEncryptionKey(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
18112
+ patchMarkRmaItemAsReceived(id: number, itemId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15921
18113
  /**
15922
- * Get MAC addresses on group at FDPS
15923
- * @summary Get MAC addresses on group at FDPS
15924
- * @param {string} id Group ID
18114
+ * Mark RMA item as unresolved
18115
+ * @param {number} id
18116
+ * @param {number} itemId
15925
18117
  * @param {*} [options] Override http request option.
15926
18118
  * @throws {RequiredError}
15927
18119
  */
15928
- getGetFanvilGroupMacs(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
18120
+ patchMarkRmaItemAsUnresolved(id: number, itemId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15929
18121
  /**
15930
- * Get provisioning groups
15931
- * @summary Get all provisioning groups or filter by customer ID
15932
- * @param {string} [id] Customer ID
18122
+ * Reject an RMA
18123
+ * @param {number} id
18124
+ * @param {NoteRequestModel} [noteRequestModel] RMA Rejection Request
15933
18125
  * @param {*} [options] Override http request option.
15934
18126
  * @throws {RequiredError}
15935
18127
  */
15936
- getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningModel>>>;
18128
+ patchRejectRma(id: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15937
18129
  /**
15938
- * Create a Fanvil provisioning group
15939
- * @summary Add group to DB and FDPS
15940
- * @param {ProvisioningRequestEntity} [provisioningRequestEntity] Provisioning Group Request
18130
+ * Resolve an RMA
18131
+ * @param {number} id
15941
18132
  * @param {*} [options] Override http request option.
15942
18133
  * @throws {RequiredError}
15943
18134
  */
15944
- postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProvisioningModel>>;
18135
+ patchResolveRma(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15945
18136
  /**
15946
- * Add MAC address to DB and FDPS group
15947
- * @summary Add MAC address to DB and FDPS group
15948
- * @param {string} id Group ID
15949
- * @param {string} mac MAC Address
18137
+ * Update contact name for an rma
18138
+ * @param {number} id
18139
+ * @param {EmailRequestModel} [emailRequestModel] Email Request
15950
18140
  * @param {*} [options] Override http request option.
15951
18141
  * @throws {RequiredError}
15952
18142
  */
15953
- postAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
18143
+ patchUpdateRmaContactEmail(id: number, emailRequestModel?: EmailRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15954
18144
  /**
15955
- * Create a MAC address in FDPS
15956
- * @param {MacAddressDTO} [macAddressDTO] Mac Address
18145
+ * Update contact name for an rma
18146
+ * @param {number} id
18147
+ * @param {NameRequestModel} [nameRequestModel] Name Request
15957
18148
  * @param {*} [options] Override http request option.
15958
18149
  * @throws {RequiredError}
15959
18150
  */
15960
- postCreateMac(macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MacAddressDTO>>;
15961
- };
15962
- /**
15963
- * ProvisioningApi - factory interface
15964
- */
15965
- export declare const ProvisioningApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
18151
+ patchUpdateRmaContactName(id: number, nameRequestModel?: NameRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15966
18152
  /**
15967
- * Remove MAC address from DB and FDPS group
15968
- * @summary Remove MAC address from DB and FDPS group
15969
- * @param {string} id Group ID
15970
- * @param {string} mac MAC Address
18153
+ * Update RMA item MAC address
18154
+ * @param {number} id
18155
+ * @param {number} itemId
18156
+ * @param {MacAddressRequestModel} [macAddressRequestModel] Update RMA item MAC address request
15971
18157
  * @param {*} [options] Override http request option.
15972
18158
  * @throws {RequiredError}
15973
18159
  */
15974
- deleteAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
18160
+ patchUpdateRmaItemMacAddress(id: number, itemId: number, macAddressRequestModel?: MacAddressRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15975
18161
  /**
15976
- * Delete a MAC address in FDPS
15977
- * @param {string} mac MAC Address
18162
+ * Update RMA item note
18163
+ * @param {number} id
18164
+ * @param {number} itemId
18165
+ * @param {NoteRequestModel} [noteRequestModel] Update RMA item note request
15978
18166
  * @param {*} [options] Override http request option.
15979
18167
  * @throws {RequiredError}
15980
18168
  */
15981
- deleteCheckMacExists(mac: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
18169
+ patchUpdateRmaItemNote(id: number, itemId: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15982
18170
  /**
15983
- * Delete a Fanvil provisioning group
15984
- * @summary Delete group from DB and FDPS
15985
- * @param {string} id Group ID
18171
+ * Update RMA item serial number
18172
+ * @param {number} id
18173
+ * @param {number} itemId
18174
+ * @param {SerialNumberRequestModel} [serialNumberRequestModel] Update RMA item serial number request
15986
18175
  * @param {*} [options] Override http request option.
15987
18176
  * @throws {RequiredError}
15988
18177
  */
15989
- deleteDeleteFanvilGroup(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
18178
+ patchUpdateRmaItemSerialNumber(id: number, itemId: number, serialNumberRequestModel?: SerialNumberRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15990
18179
  /**
15991
- * Check if a MAC address exists in FDPS
15992
- * @param {string} mac MAC Address
18180
+ * Update RMA reason
18181
+ * @param {number} id
18182
+ * @param {ReasonRequestModel} [reasonRequestModel] Update RMA Reason Request
15993
18183
  * @param {*} [options] Override http request option.
15994
18184
  * @throws {RequiredError}
15995
18185
  */
15996
- getCheckMacExists(mac: string, options?: RawAxiosRequestConfig): AxiosPromise<GetCheckMacExists200Response>;
18186
+ patchUpdateRmaReason(id: number, reasonRequestModel?: ReasonRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15997
18187
  /**
15998
- * Get group Fanvil encryption key
15999
- * @summary Get group Fanvil encryption key
16000
- * @param {string} id Group ID
16001
- * @param {string} mac MAC Address
18188
+ * Update RMA resolution
18189
+ * @param {number} id
18190
+ * @param {ResolutionRequestModel} [resolutionRequestModel] Update RMA Resolution Request
16002
18191
  * @param {*} [options] Override http request option.
16003
18192
  * @throws {RequiredError}
16004
18193
  */
16005
- getGetFanvilEncryptionKey(id: string, mac: string, options?: RawAxiosRequestConfig): AxiosPromise<string>;
18194
+ patchUpdateRmaResolution(id: number, resolutionRequestModel?: ResolutionRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16006
18195
  /**
16007
- * Get MAC addresses on group at FDPS
16008
- * @summary Get MAC addresses on group at FDPS
16009
- * @param {string} id Group ID
18196
+ * Update RMA return address
18197
+ * @param {number} id
18198
+ * @param {AddressDTO} [addressDTO] Update RMA return address
16010
18199
  * @param {*} [options] Override http request option.
16011
18200
  * @throws {RequiredError}
16012
18201
  */
16013
- getGetFanvilGroupMacs(id: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
18202
+ patchUpdateRmaReturnAddress(id: number, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16014
18203
  /**
16015
- * Get provisioning groups
16016
- * @summary Get all provisioning groups or filter by customer ID
16017
- * @param {string} [id] Customer ID
18204
+ * Create a replacement order for an RMA
18205
+ * @param {number} id
18206
+ * @param {RmaReplacementOrderRequestDTO} [rmaReplacementOrderRequestDTO] RMA Replacement Order Request
16018
18207
  * @param {*} [options] Override http request option.
16019
18208
  * @throws {RequiredError}
16020
18209
  */
16021
- getGetGroups(id?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningModel>>;
18210
+ postCreateReplacementOrder(id: number, rmaReplacementOrderRequestDTO?: RmaReplacementOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRmaDTO, any, {}>>;
16022
18211
  /**
16023
- * Create a Fanvil provisioning group
16024
- * @summary Add group to DB and FDPS
16025
- * @param {ProvisioningRequestEntity} [provisioningRequestEntity] Provisioning Group Request
18212
+ * Create an RMA
18213
+ * @param {RmaRequestDTO} [rmaRequestDTO] RMA Request
16026
18214
  * @param {*} [options] Override http request option.
16027
18215
  * @throws {RequiredError}
16028
18216
  */
16029
- postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): AxiosPromise<ProvisioningModel>;
18217
+ postCreateRma(rmaRequestDTO?: RmaRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RmaDTO, any, {}>>;
16030
18218
  /**
16031
- * Add MAC address to DB and FDPS group
16032
- * @summary Add MAC address to DB and FDPS group
16033
- * @param {string} id Group ID
16034
- * @param {string} mac MAC Address
18219
+ * Create a collection for an RMA
18220
+ * @param {number} id
18221
+ * @param {RmaCollectionDTO} [rmaCollectionDTO] RMA Collection Request
16035
18222
  * @param {*} [options] Override http request option.
16036
18223
  * @throws {RequiredError}
16037
18224
  */
16038
- postAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
18225
+ postCreateRmaCollection(id: number, rmaCollectionDTO?: RmaCollectionDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRmaDTO, any, {}>>;
16039
18226
  /**
16040
- * Create a MAC address in FDPS
16041
- * @param {MacAddressDTO} [macAddressDTO] Mac Address
18227
+ * Create a credit note for an RMA
18228
+ * @param {number} id
18229
+ * @param {Array<RmaCreditItemRequestDTO>} [rmaCreditItemRequestDTO] RMA Items to be credited
16042
18230
  * @param {*} [options] Override http request option.
16043
18231
  * @throws {RequiredError}
16044
18232
  */
16045
- postCreateMac(macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig): AxiosPromise<MacAddressDTO>;
16046
- };
16047
- /**
16048
- * ProvisioningApi - object-oriented interface
16049
- */
16050
- export declare class ProvisioningApi extends BaseAPI {
18233
+ postCreateRmaCreditNote(id: number, rmaCreditItemRequestDTO?: Array<RmaCreditItemRequestDTO>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRmaDTO, any, {}>>;
16051
18234
  /**
16052
- * Remove MAC address from DB and FDPS group
16053
- * @summary Remove MAC address from DB and FDPS group
16054
- * @param {string} id Group ID
16055
- * @param {string} mac MAC Address
18235
+ * Create an RMA note
18236
+ * @param {number} id
18237
+ * @param {NoteRequestModel} [noteRequestModel] RMA Note Request
16056
18238
  * @param {*} [options] Override http request option.
16057
18239
  * @throws {RequiredError}
16058
18240
  */
16059
- deleteAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
18241
+ postCreateRmaNote(id: number, noteRequestModel?: NoteRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16060
18242
  /**
16061
- * Delete a MAC address in FDPS
16062
- * @param {string} mac MAC Address
18243
+ * Create a collection for an RMA
18244
+ * @param {number} id
18245
+ * @param {RmaReturnDTO} [rmaReturnDTO] RMA Return Request
16063
18246
  * @param {*} [options] Override http request option.
16064
18247
  * @throws {RequiredError}
16065
18248
  */
16066
- deleteCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
18249
+ postCreateRmaReturn(id: number, rmaReturnDTO?: RmaReturnDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRmaDTO, any, {}>>;
18250
+ }
18251
+ /**
18252
+ * ReportsApi - axios parameter creator
18253
+ */
18254
+ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration) => {
16067
18255
  /**
16068
- * Delete a Fanvil provisioning group
16069
- * @summary Delete group from DB and FDPS
16070
- * @param {string} id Group ID
18256
+ *
16071
18257
  * @param {*} [options] Override http request option.
16072
18258
  * @throws {RequiredError}
16073
18259
  */
16074
- deleteDeleteFanvilGroup(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
18260
+ getGetStockReport: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16075
18261
  /**
16076
- * Check if a MAC address exists in FDPS
16077
- * @param {string} mac MAC Address
18262
+ * Generate Reports
18263
+ * @summary Generate Reports
18264
+ * @param {ReportRequestDTO} [reportRequestDTO] Report Request
16078
18265
  * @param {*} [options] Override http request option.
16079
18266
  * @throws {RequiredError}
16080
18267
  */
16081
- getCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCheckMacExists200Response, any, {}>>;
18268
+ postGenerateReport: (reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
18269
+ };
18270
+ /**
18271
+ * ReportsApi - functional programming interface
18272
+ */
18273
+ export declare const ReportsApiFp: (configuration?: Configuration) => {
16082
18274
  /**
16083
- * Get group Fanvil encryption key
16084
- * @summary Get group Fanvil encryption key
16085
- * @param {string} id Group ID
16086
- * @param {string} mac MAC Address
18275
+ *
16087
18276
  * @param {*} [options] Override http request option.
16088
18277
  * @throws {RequiredError}
16089
18278
  */
16090
- getGetFanvilEncryptionKey(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
18279
+ getGetStockReport(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StockReportModel>>;
16091
18280
  /**
16092
- * Get MAC addresses on group at FDPS
16093
- * @summary Get MAC addresses on group at FDPS
16094
- * @param {string} id Group ID
18281
+ * Generate Reports
18282
+ * @summary Generate Reports
18283
+ * @param {ReportRequestDTO} [reportRequestDTO] Report Request
16095
18284
  * @param {*} [options] Override http request option.
16096
18285
  * @throws {RequiredError}
16097
18286
  */
16098
- getGetFanvilGroupMacs(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
18287
+ postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PostGenerateReport200Response>>;
18288
+ };
18289
+ /**
18290
+ * ReportsApi - factory interface
18291
+ */
18292
+ export declare const ReportsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
16099
18293
  /**
16100
- * Get provisioning groups
16101
- * @summary Get all provisioning groups or filter by customer ID
16102
- * @param {string} [id] Customer ID
18294
+ *
16103
18295
  * @param {*} [options] Override http request option.
16104
18296
  * @throws {RequiredError}
16105
18297
  */
16106
- getGetGroups(id?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel[], any, {}>>;
18298
+ getGetStockReport(options?: RawAxiosRequestConfig): AxiosPromise<StockReportModel>;
16107
18299
  /**
16108
- * Create a Fanvil provisioning group
16109
- * @summary Add group to DB and FDPS
16110
- * @param {ProvisioningRequestEntity} [provisioningRequestEntity] Provisioning Group Request
18300
+ * Generate Reports
18301
+ * @summary Generate Reports
18302
+ * @param {ReportRequestDTO} [reportRequestDTO] Report Request
16111
18303
  * @param {*} [options] Override http request option.
16112
18304
  * @throws {RequiredError}
16113
18305
  */
16114
- postAddFanvilGroup(provisioningRequestEntity?: ProvisioningRequestEntity, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningModel, any, {}>>;
18306
+ postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<PostGenerateReport200Response>;
18307
+ };
18308
+ /**
18309
+ * ReportsApi - object-oriented interface
18310
+ */
18311
+ export declare class ReportsApi extends BaseAPI {
16115
18312
  /**
16116
- * Add MAC address to DB and FDPS group
16117
- * @summary Add MAC address to DB and FDPS group
16118
- * @param {string} id Group ID
16119
- * @param {string} mac MAC Address
18313
+ *
16120
18314
  * @param {*} [options] Override http request option.
16121
18315
  * @throws {RequiredError}
16122
18316
  */
16123
- postAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
18317
+ getGetStockReport(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StockReportModel, any, {}>>;
16124
18318
  /**
16125
- * Create a MAC address in FDPS
16126
- * @param {MacAddressDTO} [macAddressDTO] Mac Address
18319
+ * Generate Reports
18320
+ * @summary Generate Reports
18321
+ * @param {ReportRequestDTO} [reportRequestDTO] Report Request
16127
18322
  * @param {*} [options] Override http request option.
16128
18323
  * @throws {RequiredError}
16129
18324
  */
16130
- postCreateMac(macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MacAddressDTO, any, {}>>;
18325
+ postGenerateReport(reportRequestDTO?: ReportRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PostGenerateReport200Response, any, {}>>;
16131
18326
  }
16132
18327
  /**
16133
18328
  * SIPTrunksApi - axios parameter creator
@@ -18185,6 +20380,162 @@ export declare class StockManagementApi extends BaseAPI {
18185
20380
  */
18186
20381
  putReceiveStockOrderItem(orderId: number, itemId: number, received: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
18187
20382
  }
20383
+ /**
20384
+ * SuppliersApi - axios parameter creator
20385
+ */
20386
+ export declare const SuppliersApiAxiosParamCreator: (configuration?: Configuration) => {
20387
+ /**
20388
+ * Get Supplier Item
20389
+ * @summary Get Supplier Item
20390
+ * @param {string} id ID (SKU)
20391
+ * @param {*} [options] Override http request option.
20392
+ * @throws {RequiredError}
20393
+ */
20394
+ getGetSupplierItem: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20395
+ /**
20396
+ * Get Supplier Items
20397
+ * @summary Get Supplier Items
20398
+ * @param {number} [pageSize] Number Of Results
20399
+ * @param {number} [page] Page Number
20400
+ * @param {string} [search] Search
20401
+ * @param {*} [options] Override http request option.
20402
+ * @throws {RequiredError}
20403
+ */
20404
+ getGetSupplierItems: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20405
+ /**
20406
+ * Get Suppliers
20407
+ * @summary Get Suppliers
20408
+ * @param {*} [options] Override http request option.
20409
+ * @throws {RequiredError}
20410
+ */
20411
+ getGetSuppliers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20412
+ /**
20413
+ * Update Supplier Product
20414
+ * @summary Update Supplier Product
20415
+ * @param {string} id ID (SKU)
20416
+ * @param {SupplierProductModel} [supplierProductModel] Supplier Product
20417
+ * @param {*} [options] Override http request option.
20418
+ * @throws {RequiredError}
20419
+ */
20420
+ putGetSupplierItem: (id: string, supplierProductModel?: SupplierProductModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20421
+ };
20422
+ /**
20423
+ * SuppliersApi - functional programming interface
20424
+ */
20425
+ export declare const SuppliersApiFp: (configuration?: Configuration) => {
20426
+ /**
20427
+ * Get Supplier Item
20428
+ * @summary Get Supplier Item
20429
+ * @param {string} id ID (SKU)
20430
+ * @param {*} [options] Override http request option.
20431
+ * @throws {RequiredError}
20432
+ */
20433
+ getGetSupplierItem(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupplierProductModel>>;
20434
+ /**
20435
+ * Get Supplier Items
20436
+ * @summary Get Supplier Items
20437
+ * @param {number} [pageSize] Number Of Results
20438
+ * @param {number} [page] Page Number
20439
+ * @param {string} [search] Search
20440
+ * @param {*} [options] Override http request option.
20441
+ * @throws {RequiredError}
20442
+ */
20443
+ getGetSupplierItems(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupplierProductResultsModel>>;
20444
+ /**
20445
+ * Get Suppliers
20446
+ * @summary Get Suppliers
20447
+ * @param {*} [options] Override http request option.
20448
+ * @throws {RequiredError}
20449
+ */
20450
+ getGetSuppliers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SupplierModel>>>;
20451
+ /**
20452
+ * Update Supplier Product
20453
+ * @summary Update Supplier Product
20454
+ * @param {string} id ID (SKU)
20455
+ * @param {SupplierProductModel} [supplierProductModel] Supplier Product
20456
+ * @param {*} [options] Override http request option.
20457
+ * @throws {RequiredError}
20458
+ */
20459
+ putGetSupplierItem(id: string, supplierProductModel?: SupplierProductModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupplierProductModel>>;
20460
+ };
20461
+ /**
20462
+ * SuppliersApi - factory interface
20463
+ */
20464
+ export declare const SuppliersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20465
+ /**
20466
+ * Get Supplier Item
20467
+ * @summary Get Supplier Item
20468
+ * @param {string} id ID (SKU)
20469
+ * @param {*} [options] Override http request option.
20470
+ * @throws {RequiredError}
20471
+ */
20472
+ getGetSupplierItem(id: string, options?: RawAxiosRequestConfig): AxiosPromise<SupplierProductModel>;
20473
+ /**
20474
+ * Get Supplier Items
20475
+ * @summary Get Supplier Items
20476
+ * @param {number} [pageSize] Number Of Results
20477
+ * @param {number} [page] Page Number
20478
+ * @param {string} [search] Search
20479
+ * @param {*} [options] Override http request option.
20480
+ * @throws {RequiredError}
20481
+ */
20482
+ getGetSupplierItems(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<SupplierProductResultsModel>;
20483
+ /**
20484
+ * Get Suppliers
20485
+ * @summary Get Suppliers
20486
+ * @param {*} [options] Override http request option.
20487
+ * @throws {RequiredError}
20488
+ */
20489
+ getGetSuppliers(options?: RawAxiosRequestConfig): AxiosPromise<Array<SupplierModel>>;
20490
+ /**
20491
+ * Update Supplier Product
20492
+ * @summary Update Supplier Product
20493
+ * @param {string} id ID (SKU)
20494
+ * @param {SupplierProductModel} [supplierProductModel] Supplier Product
20495
+ * @param {*} [options] Override http request option.
20496
+ * @throws {RequiredError}
20497
+ */
20498
+ putGetSupplierItem(id: string, supplierProductModel?: SupplierProductModel, options?: RawAxiosRequestConfig): AxiosPromise<SupplierProductModel>;
20499
+ };
20500
+ /**
20501
+ * SuppliersApi - object-oriented interface
20502
+ */
20503
+ export declare class SuppliersApi extends BaseAPI {
20504
+ /**
20505
+ * Get Supplier Item
20506
+ * @summary Get Supplier Item
20507
+ * @param {string} id ID (SKU)
20508
+ * @param {*} [options] Override http request option.
20509
+ * @throws {RequiredError}
20510
+ */
20511
+ getGetSupplierItem(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupplierProductModel, any, {}>>;
20512
+ /**
20513
+ * Get Supplier Items
20514
+ * @summary Get Supplier Items
20515
+ * @param {number} [pageSize] Number Of Results
20516
+ * @param {number} [page] Page Number
20517
+ * @param {string} [search] Search
20518
+ * @param {*} [options] Override http request option.
20519
+ * @throws {RequiredError}
20520
+ */
20521
+ getGetSupplierItems(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupplierProductResultsModel, any, {}>>;
20522
+ /**
20523
+ * Get Suppliers
20524
+ * @summary Get Suppliers
20525
+ * @param {*} [options] Override http request option.
20526
+ * @throws {RequiredError}
20527
+ */
20528
+ getGetSuppliers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupplierModel[], any, {}>>;
20529
+ /**
20530
+ * Update Supplier Product
20531
+ * @summary Update Supplier Product
20532
+ * @param {string} id ID (SKU)
20533
+ * @param {SupplierProductModel} [supplierProductModel] Supplier Product
20534
+ * @param {*} [options] Override http request option.
20535
+ * @throws {RequiredError}
20536
+ */
20537
+ putGetSupplierItem(id: string, supplierProductModel?: SupplierProductModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupplierProductModel, any, {}>>;
20538
+ }
18188
20539
  /**
18189
20540
  * SystemApi - axios parameter creator
18190
20541
  */